--- /dev/null
+# ChangeLog for dev-python/django-positions
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*django-positions-9999 (04 Aug 2011)
+ 04 Aug 2011; W. Trevor King <wking@drexel.edu> ChangeLog, metadata.xml, django-positions-9999.ebuild :
+ - Created ebuild suite for django-positions.
+ - 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.
--- /dev/null
+EBUILD django-positions-9999.ebuild 712 RMD160 40420f2c75832210ec8a16832c3e8608d3fd7fed SHA1 95b3a98a227b7a1b98cfcaac94d299eaa3d5358d SHA256 358b08d48f637d5675d154da6fc9bd1f7a1aa68e6eb55c91eb660c05bd3d114f
+MISC ChangeLog 696 RMD160 060abd3951a5fe129ba8456e5410eba532221241 SHA1 021ae5414bb8be82aa0405dbb864578c565aa12d SHA256 2b75d97009db8a179cd4448983fa4331072023234f78951ad8772da3b09b9db0
+MISC metadata.xml 247 RMD160 6735f3a5dd2d7a2b70589d1693f35d54291b7147 SHA1 c015969fe50967340dd050a44cb9f8a30b5e34a5 SHA256 9e65060e5f9d0a50d28c7a69d9c27fed6c3037fdd3e420cc276627fde2794f72
--- /dev/null
+# 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/jpwatts/${PN}.git"
+ SRC_URI=""
+else
+ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+fi
+
+DESCRIPTION="Django field for custom model ordering."
+HOMEPAGE="https://github.com/jpwatts/${PN}"
+LICENSE="BSD"
+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}"
+}
--- /dev/null
+<?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>