Gentoo Archives: gentoo-commits

From: "Rob Cakebread (pythonhead)" <pythonhead@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/decorator: metadata.xml ChangeLog Manifest decorator-2.2.0.ebuild
Date: Fri, 02 May 2008 04:47:36
Message-Id: E1JrnBF-0008Re-6k@stork.gentoo.org
1 pythonhead 08/05/02 04:47:33
2
3 Added: metadata.xml ChangeLog Manifest
4 decorator-2.2.0.ebuild
5 Log:
6 Initial commit. Thanks Qiangning Hong <hongqn@×××××.com> bug #176640
7 (Portage version: 2.1.5_rc6)
8
9 Revision Changes Path
10 1.1 dev-python/decorator/metadata.xml
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/decorator/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/decorator/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>python</herd>
21 </pkgmetadata>
22
23
24
25 1.1 dev-python/decorator/ChangeLog
26
27 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.1&view=markup
28 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.1&content-type=text/plain
29
30 Index: ChangeLog
31 ===================================================================
32 # ChangeLog for dev-python/decorator
33 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
34 # $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.1 2008/05/02 04:47:32 pythonhead Exp $
35
36 *decorator-2.2.0 (02 May 2008)
37
38 02 May 2008; Rob Cakebread <pythonhead@g.o> +metadata.xml,
39 +decorator-2.2.0.ebuild:
40 Initial commit. Thanks Qiangning Hong <hongqn@×××××.com> bug #176640
41
42
43
44
45 1.1 dev-python/decorator/Manifest
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/decorator/Manifest?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/decorator/Manifest?rev=1.1&content-type=text/plain
49
50 Index: Manifest
51 ===================================================================
52 DIST decorator-2.2.0.zip 132380 RMD160 b23d92251172affa182d4c7bf8a2861f840648f4 SHA1 66a5d99d1ab68990e366c7ebc08bca4edc7acc3c SHA256 6b414459ab21512b13a3cab2cc0bb8cae5c13f2ec8d7b16147af8ed3b9e7efaa
53 EBUILD decorator-2.2.0.ebuild 675 RMD160 67b6250316c0a3134a0f3eb1feb1ce36430c5774 SHA1 1a2875e2238445b2e028661bd8cf8f8611372cf3 SHA256 6665159756cab9bc48f04b8b4bb5e680bc80739c30b8a4bea0b7d311ead0fa3f
54 MISC ChangeLog 320 RMD160 d5a0a255ebc64709d69b6c4aa9a0009fff96a181 SHA1 b9b87651672ae7956e4beb1425d2a4eb084a0521 SHA256 7fcf07427c8a0595ee8e078d589ee515f6a35c02791ab652409155f8b094635c
55 MISC metadata.xml 160 RMD160 e730f96ab97c5be577a6d6d05f04990374a0dffb SHA1 2aa5e6be9c265c0e7bceb78ee9fd20df5f818e36 SHA256 6cd954a9de2307c57d32b25fa3599dee2908a4ddc6a98594f593d53577307a3a
56
57
58
59 1.1 dev-python/decorator/decorator-2.2.0.ebuild
60
61 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/decorator/decorator-2.2.0.ebuild?rev=1.1&view=markup
62 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/decorator/decorator-2.2.0.ebuild?rev=1.1&content-type=text/plain
63
64 Index: decorator-2.2.0.ebuild
65 ===================================================================
66 # Copyright 1999-2008 Gentoo Foundation
67 # Distributed under the terms of the GNU General Public License v2
68 # $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-2.2.0.ebuild,v 1.1 2008/05/02 04:47:32 pythonhead Exp $
69
70 inherit distutils
71
72
73 DESCRIPTION="Simplifies the usage of decorators for the average programmer"
74 HOMEPAGE="http://www.phyast.pitt.edu/~micheles/python/documentation.html"
75 SRC_URI="http://www.phyast.pitt.edu/~micheles/python/${P}.zip"
76 LICENSE="BSD"
77 KEYWORDS="~x86"
78 SLOT="0"
79 IUSE="doc"
80 S="${WORKDIR}"
81 DEPEND="app-arch/unzip"
82 DOCS="CHANGES.txt documentation.txt documentation.pdf"
83
84
85 src_install() {
86 distutils_src_install
87 use doc && dohtml documentation.html
88 }
89
90 src_test() {
91 PYTHONPATH=. "${python}" doctester.py documentation.txt || die "tests failed"
92 }
93
94
95
96
97 --
98 gentoo-commits@l.g.o mailing list