Add django-tables2 package.
authorW. Trevor King <wking@drexel.edu>
Wed, 20 Jul 2011 19:54:45 +0000 (15:54 -0400)
committerW. Trevor King <wking@drexel.edu>
Wed, 20 Jul 2011 19:54:45 +0000 (15:54 -0400)
dev-python/django-tables2/ChangeLog [new file with mode: 0644]
dev-python/django-tables2/Manifest [new file with mode: 0644]
dev-python/django-tables2/django-tables2-9999.ebuild [new file with mode: 0644]
dev-python/django-tables2/metadata.xml [new file with mode: 0644]

diff --git a/dev-python/django-tables2/ChangeLog b/dev-python/django-tables2/ChangeLog
new file mode 100644 (file)
index 0000000..3cd519e
--- /dev/null
@@ -0,0 +1,13 @@
+# ChangeLog for dev-python/django-tables2
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*django-tables2-9999 (20 Jul 2011)
+  20 Jul 2011; W. Trevor King <wking@drexel.edu> ChangeLog, metadata.xml, django-tables2-9999.ebuild :
+  - Created ebuild suite for django-tables2.
+  - Added initial ChangeLog which should be updated whenever the
+  package is updated in any way. This changelog is targetted to
+  users. This means that the comments should well explained and
+  written in clean English. The details about writing correct
+  changelogs are explained in the skel.ChangeLog file which you can
+  find in the root directory of the portage repository.
diff --git a/dev-python/django-tables2/Manifest b/dev-python/django-tables2/Manifest
new file mode 100644 (file)
index 0000000..b40ec64
--- /dev/null
@@ -0,0 +1,3 @@
+EBUILD django-tables2-9999.ebuild 713 RMD160 03fd9ce40c9b4d88552b072d2a280c269bffc883 SHA1 78d28a63b7c28c0bdf8e1f6b10a51ca6ad5dc8f1 SHA256 5583daf89738e675d3567518e6b0957690391307214f6eacaf22666df0a54248
+MISC ChangeLog 688 RMD160 f8921100a9c478ea08bc2909fa90faba047fac31 SHA1 06d92810c7db31e09763e443b6ef73bec61ff3f7 SHA256 f3e2c86502cd1aa5a82902c92b8c2daabc8e81c05f94738563f72d973dfbf790
+MISC metadata.xml 247 RMD160 6735f3a5dd2d7a2b70589d1693f35d54291b7147 SHA1 c015969fe50967340dd050a44cb9f8a30b5e34a5 SHA256 9e65060e5f9d0a50d28c7a69d9c27fed6c3037fdd3e420cc276627fde2794f72
diff --git a/dev-python/django-tables2/django-tables2-9999.ebuild b/dev-python/django-tables2/django-tables2-9999.ebuild
new file mode 100644 (file)
index 0000000..876f415
--- /dev/null
@@ -0,0 +1,38 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="3"
+
+SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="3.*"
+
+inherit eutils distutils
+
+if [[ ${PV} == "9999" ]] ; then
+       inherit git
+       EGIT_REPO_URI="git://github.com/bradleyayers/${PN}.git"
+       SRC_URI=""
+else
+       SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+fi
+
+DESCRIPTION="Table framework for Django"
+HOMEPAGE="http://${PN}.readthedocs.org/en/latest/"
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE="test"
+
+DEPEND="dev-python/django"
+RDEPEND="dev-python/setuptools
+       ${DEPEND}"
+
+src_unpack() {
+       if [[ ${PV} == "9999" ]] ; then
+               git_src_unpack
+       else
+               unpack ${A}
+       fi
+       cd "${S}"
+}
diff --git a/dev-python/django-tables2/metadata.xml b/dev-python/django-tables2/metadata.xml
new file mode 100644 (file)
index 0000000..d124928
--- /dev/null
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <herd></herd>
+       <maintainer>
+               <email>wking@drexel.edu</email>
+               <name>W. Trevor King</name>
+       </maintainer>
+</pkgmetadata>