From 662d64c520b8624885626f13de1995a03f6f7b7e Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 8 Dec 2010 09:39:49 -0500 Subject: [PATCH 1/1] Add dev-python/splittable-kwargs. --- ChangeLog | 14 ++++++++++++ Manifest | 3 +++ metadata.xml | 9 ++++++++ splittable-kwargs-9999.ebuild | 43 +++++++++++++++++++++++++++++++++++ 4 files changed, 69 insertions(+) create mode 100644 ChangeLog create mode 100644 Manifest create mode 100644 metadata.xml create mode 100644 splittable-kwargs-9999.ebuild diff --git a/ChangeLog b/ChangeLog new file mode 100644 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 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 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 index 0000000..d124928 --- /dev/null +++ b/metadata.xml @@ -0,0 +1,9 @@ + + + + + + wking@drexel.edu + W. Trevor King + + diff --git a/splittable-kwargs-9999.ebuild b/splittable-kwargs-9999.ebuild new file mode 100644 index 0000000..c898f0a --- /dev/null +++ b/splittable-kwargs-9999.ebuild @@ -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 +} -- 2.26.2