diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-04-26 09:04:49 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-04-26 09:04:49 +0000 |
commit | 67c236e89df312328acb762451b5b3234f212140 (patch) | |
tree | 64789eb327d06b3726ec28cb36bd074fec2edf2f /dev-python/decorator | |
parent | Bump to 1.2.2, dep for bug #260168 (diff) | |
download | gentoo-2-67c236e89df312328acb762451b5b3234f212140.tar.gz gentoo-2-67c236e89df312328acb762451b5b3234f212140.tar.bz2 gentoo-2-67c236e89df312328acb762451b5b3234f212140.zip |
Bump to 2.3.2, dep for bug #260168
(Portage version: 2.2_rc31/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/decorator')
-rw-r--r-- | dev-python/decorator/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/decorator/decorator-2.3.2.ebuild | 21 |
2 files changed, 27 insertions, 1 deletions
diff --git a/dev-python/decorator/ChangeLog b/dev-python/decorator/ChangeLog index 8728f0481bf1..9fd19f89d994 100644 --- a/dev-python/decorator/ChangeLog +++ b/dev-python/decorator/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/decorator # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.3 2009/03/27 11:41:12 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.4 2009/04/26 09:04:49 patrick Exp $ + +*decorator-2.3.2 (26 Apr 2009) + + 26 Apr 2009; Patrick Lauer <patrick@gentoo.org> +decorator-2.3.2.ebuild: + Bump to 2.3.2, dep for bug #260168 *decorator-3.0.1 (27 Mar 2009) diff --git a/dev-python/decorator/decorator-2.3.2.ebuild b/dev-python/decorator/decorator-2.3.2.ebuild new file mode 100644 index 000000000000..9a79e607289f --- /dev/null +++ b/dev-python/decorator/decorator-2.3.2.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-2.3.2.ebuild,v 1.1 2009/04/26 09:04:49 patrick 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://pypi.python.org/packages/source/D/decorator/${P}.tar.gz" +LICENSE="BSD" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="doc" +DEPEND="app-arch/unzip" +RDEPEND="" +DOCS="CHANGES.txt documentation.txt" + +src_install() { + distutils_src_install + use doc && dohtml documentation.html +} |