Portage is a package management system used by Gentoo Linux
# 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.2 2008/05/25 12:40:20 coldwind Exp $
25 May 2008; Santiago M. Mola
decorator-2.2.0.ebuild:
add ~amd64 wrt bug #220011
*decorator-2.2.0 (02 May 2008)
02 May 2008; Rob Cakebread
+decorator-2.2.0.ebuild:
Initial commit. Thanks Qiangning Hong
DIST decorator-2.2.0.zip 132380 RMD160 b23d92251172affa182d4c7bf8a2861f840648f4 SHA1 66a5d99d1ab68990e366c7ebc08bca4edc7acc3c SHA256 6b414459ab21512b13a3cab2cc0bb8cae5c13f2ec8d7b16147af8ed3b9e7efaa
EBUILD decorator-2.2.0.ebuild 786 RMD160 6b1d73ae4c0af28a7435521e7a2806adaf79d0aa SHA1 79c3c91d65e4a3a55a97f446dd08eb1b90f017e4 SHA256 0c561d0800b02e7251fe9725e201048e1e41deda460114b156ea47974c2dc59d
MISC ChangeLog 524 RMD160 3c90fb63fffec0141b5314cfe4ac90eb525d9ef2 SHA1 af0f7df62e49bc2aa0d708136ad4f988bf04fcc9 SHA256 b3da3d16775e2d2d969d2b68f2ccb5c99d79e31cbfd32ea920cd6de28fa6ce17
MISC metadata.xml 160 RMD160 e730f96ab97c5be577a6d6d05f04990374a0dffb SHA1 2aa5e6be9c265c0e7bceb78ee9fd20df5f818e36 SHA256 6cd954a9de2307c57d32b25fa3599dee2908a4ddc6a98594f593d53577307a3a
# 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.3 2008/05/25 12:40:20 coldwind 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="~amd64 ~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"
}