Add dev-python/splittable-kwargs.
authorW. Trevor King <wking@drexel.edu>
Wed, 8 Dec 2010 14:39:49 +0000 (09:39 -0500)
committerW. Trevor King <wking@drexel.edu>
Wed, 8 Dec 2010 14:39:49 +0000 (09:39 -0500)
ChangeLog [new file with mode: 0644]
Manifest [new file with mode: 0644]
metadata.xml [new file with mode: 0644]
splittable-kwargs-9999.ebuild [new file with mode: 0644]

diff --git a/ChangeLog b/ChangeLog
new file mode 100644 (file)
index 0000000..6da417f
--- /dev/null
+++ b/ChangeLog
@@ -0,0 +1,14 @@
+# ChangeLog for dev-python/splittable-kwargs
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+*splittable-kwargs-9999 (08 Dec 2010)
+  08 Dec 2010; W. Trevor King <wking@drexel.edu> ChangeLog, metadata.xml, splittable-kwargs-9999.ebuild :
+  - Created ebuild suite for splittable-kwargs.
+  - 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/Manifest b/Manifest
new file mode 100644 (file)
index 0000000..58eaf09
--- /dev/null
+++ b/Manifest
@@ -0,0 +1,3 @@
+EBUILD splittable-kwargs-9999.ebuild 907 RMD160 f32bd5c2ec48eb643ab23ab4919122944a2310c6 SHA1 55e42a93f552287749a1c4169467e190f01338f2 SHA256 c55803248e3c7806b22c549b772b26371b55d46859b58233b7ed09d1f59c097d
+MISC ChangeLog 737 RMD160 eca8f9e9f17898648232c6149949cf593fdae8bd SHA1 ff486f6ec781b58bc79361c9c1e42c090a2ec459 SHA256 31986edd93ec159091b1653d3bb25a4ed4074da07ea8144ac24ae862a00593dd
+MISC metadata.xml 247 RMD160 6735f3a5dd2d7a2b70589d1693f35d54291b7147 SHA1 c015969fe50967340dd050a44cb9f8a30b5e34a5 SHA256 9e65060e5f9d0a50d28c7a69d9c27fed6c3037fdd3e420cc276627fde2794f72
diff --git a/metadata.xml b/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>
diff --git a/splittable-kwargs-9999.ebuild b/splittable-kwargs-9999.ebuild
new file mode 100644 (file)
index 0000000..c898f0a
--- /dev/null
@@ -0,0 +1,43 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="2"
+PYTHON_DEPEND="2:2.6"
+SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="3.*"
+
+inherit eutils distutils
+
+MY_PN="splittable_kwargs" #${PN/-/_}"
+
+if [[ ${PV} == "9999" ]] ; then
+       inherit git
+       EGIT_REPO_URI="http://www.physics.drexel.edu/~wking/code/git/${MY_PN}.git"
+       SRC_URI=""
+else
+       SRC_URI="http://www.physics.drexel.edu/~wking/code/got/gitweb.cgi?p=${MY_PN}.git;a=snapshot;h=v${PV};sf=tgz"
+fi
+
+DESCRIPTION="Split **kwargs arguments among several functions."
+HOMEPAGE="http://http://www.physics.drexel.edu/~wking/unfolding-disasters/posts/splittable_kwargs/"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE="test"
+
+
+src_unpack() {
+       if [[ ${PV} == "9999" ]] ; then
+               git_src_unpack
+       else
+               unpack ${A}
+       fi
+       cd "${S}"
+}
+
+src_install() {
+       distutils_src_install
+       dodoc README
+}