diff options
author | Rob Cakebread <pythonhead@gentoo.org> | 2008-05-02 04:47:32 +0000 |
---|---|---|
committer | Rob Cakebread <pythonhead@gentoo.org> | 2008-05-02 04:47:32 +0000 |
commit | 6c025abb7b0f40365f80949e9fcec9b8683fc225 (patch) | |
tree | 3b4914570f2f35a0649f456982ee7e827a3d594b /dev-python/decorator | |
parent | Redo how we add noexecstack since #if checks do not work in .s files. (diff) | |
download | gentoo-2-6c025abb7b0f40365f80949e9fcec9b8683fc225.tar.gz gentoo-2-6c025abb7b0f40365f80949e9fcec9b8683fc225.tar.bz2 gentoo-2-6c025abb7b0f40365f80949e9fcec9b8683fc225.zip |
Initial commit. Thanks Qiangning Hong <hongqn@gmail.com> bug #176640
(Portage version: 2.1.5_rc6)
Diffstat (limited to 'dev-python/decorator')
-rw-r--r-- | dev-python/decorator/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/decorator/Manifest | 4 | ||||
-rw-r--r-- | dev-python/decorator/decorator-2.2.0.ebuild | 28 | ||||
-rw-r--r-- | dev-python/decorator/metadata.xml | 5 |
4 files changed, 47 insertions, 0 deletions
diff --git a/dev-python/decorator/ChangeLog b/dev-python/decorator/ChangeLog new file mode 100644 index 000000000000..28a496612709 --- /dev/null +++ b/dev-python/decorator/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-python/decorator +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.1 2008/05/02 04:47:32 pythonhead Exp $ + +*decorator-2.2.0 (02 May 2008) + + 02 May 2008; Rob Cakebread <pythonhead@gentoo.org> +metadata.xml, + +decorator-2.2.0.ebuild: + Initial commit. Thanks Qiangning Hong <hongqn@gmail.com> bug #176640 + diff --git a/dev-python/decorator/Manifest b/dev-python/decorator/Manifest new file mode 100644 index 000000000000..1ee11219cdea --- /dev/null +++ b/dev-python/decorator/Manifest @@ -0,0 +1,4 @@ +DIST decorator-2.2.0.zip 132380 RMD160 b23d92251172affa182d4c7bf8a2861f840648f4 SHA1 66a5d99d1ab68990e366c7ebc08bca4edc7acc3c SHA256 6b414459ab21512b13a3cab2cc0bb8cae5c13f2ec8d7b16147af8ed3b9e7efaa +EBUILD decorator-2.2.0.ebuild 675 RMD160 67b6250316c0a3134a0f3eb1feb1ce36430c5774 SHA1 1a2875e2238445b2e028661bd8cf8f8611372cf3 SHA256 6665159756cab9bc48f04b8b4bb5e680bc80739c30b8a4bea0b7d311ead0fa3f +MISC ChangeLog 320 RMD160 d5a0a255ebc64709d69b6c4aa9a0009fff96a181 SHA1 b9b87651672ae7956e4beb1425d2a4eb084a0521 SHA256 7fcf07427c8a0595ee8e078d589ee515f6a35c02791ab652409155f8b094635c +MISC metadata.xml 160 RMD160 e730f96ab97c5be577a6d6d05f04990374a0dffb SHA1 2aa5e6be9c265c0e7bceb78ee9fd20df5f818e36 SHA256 6cd954a9de2307c57d32b25fa3599dee2908a4ddc6a98594f593d53577307a3a diff --git a/dev-python/decorator/decorator-2.2.0.ebuild b/dev-python/decorator/decorator-2.2.0.ebuild new file mode 100644 index 000000000000..7bf34f502c0e --- /dev/null +++ b/dev-python/decorator/decorator-2.2.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-2.2.0.ebuild,v 1.1 2008/05/02 04:47:32 pythonhead Exp $ + +inherit distutils + + +DESCRIPTION="Simplifies the usage of decorators for the average programmer" +HOMEPAGE="http://www.phyast.pitt.edu/~micheles/python/documentation.html" +SRC_URI="http://www.phyast.pitt.edu/~micheles/python/${P}.zip" +LICENSE="BSD" +KEYWORDS="~x86" +SLOT="0" +IUSE="doc" +S="${WORKDIR}" +DEPEND="app-arch/unzip" +DOCS="CHANGES.txt documentation.txt documentation.pdf" + + +src_install() { + distutils_src_install + use doc && dohtml documentation.html +} + +src_test() { + PYTHONPATH=. "${python}" doctester.py documentation.txt || die "tests failed" +} + diff --git a/dev-python/decorator/metadata.xml b/dev-python/decorator/metadata.xml new file mode 100644 index 000000000000..301d2207cc29 --- /dev/null +++ b/dev-python/decorator/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>python</herd> +</pkgmetadata> |