Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/polygon: metadata.xml ChangeLog polygon-3.0.4.ebuild polygon-2.0.4.ebuild Manifest
Date: Wed, 04 Jan 2012 21:49:28
Message-Id: 20120104214917.BA6BE20034@flycatcher.gentoo.org
1 bicatali 12/01/04 21:49:17
2
3 Added: metadata.xml ChangeLog polygon-3.0.4.ebuild
4 polygon-2.0.4.ebuild Manifest
5 Log:
6 Initial import
7
8 (Portage version: 2.1.10.41/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.1 dev-python/polygon/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/metadata.xml?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/metadata.xml?rev=1.1&content-type=text/plain
15
16 Index: metadata.xml
17 ===================================================================
18 <?xml version="1.0" encoding="UTF-8"?>
19 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
20 <pkgmetadata>
21 <herd>python</herd>
22 <longdescription lang="en">
23 Polygon is a python package that handles polygonal shapes in 2D. It contains
24 Python bindings for gpc, the General Polygon Clipping Library by
25 Alan Murta and some extensions written in C and pure Python.
26 </longdescription>
27 </pkgmetadata>
28
29
30
31 1.1 dev-python/polygon/ChangeLog
32
33 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/ChangeLog?rev=1.1&view=markup
34 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/ChangeLog?rev=1.1&content-type=text/plain
35
36 Index: ChangeLog
37 ===================================================================
38 # ChangeLog for dev-python/polygon
39 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
40 # $Header: /var/cvsroot/gentoo-x86/dev-python/polygon/ChangeLog,v 1.1 2012/01/04 21:49:17 bicatali Exp $
41
42 *polygon-3.0.4 (04 Jan 2012)
43 *polygon-2.0.4 (04 Jan 2012)
44
45 04 Jan 2012; Sébastien Fabbro <bicatali@g.o> +polygon-2.0.4.ebuild,
46 +polygon-3.0.4.ebuild, +metadata.xml:
47 Initial import
48
49
50
51
52 1.1 dev-python/polygon/polygon-3.0.4.ebuild
53
54 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/polygon-3.0.4.ebuild?rev=1.1&view=markup
55 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/polygon-3.0.4.ebuild?rev=1.1&content-type=text/plain
56
57 Index: polygon-3.0.4.ebuild
58 ===================================================================
59 # Copyright 1999-2012 Gentoo Foundation
60 # Distributed under the terms of the GNU General Public License v2
61 # $Header: /var/cvsroot/gentoo-x86/dev-python/polygon/polygon-3.0.4.ebuild,v 1.1 2012/01/04 21:49:17 bicatali Exp $
62
63 EAPI=3
64 PYTHON_DEPEND="3"
65 SUPPORT_PYTHON_ABIS="1"
66 RESTRICT_PYTHON_ABIS="2.*"
67
68 inherit distutils
69
70 DESCRIPTION="Python package to handle polygonal shapes in 2D"
71 HOMEPAGE="http://www.j-raedler.de/projects/polygon"
72 SRC_URI="https://github.com/downloads/jraedler/Polygon3/Polygon-${PV}a-src.zip"
73
74 LICENSE="LGPL-2"
75 SLOT="3"
76 KEYWORDS="~amd64 ~x86"
77 IUSE=""
78
79 RDEPEND=""
80 DEPEND="${RDEPEND}
81 app-arch/unzip"
82
83 S="${WORKDIR}/Polygon-${PV}"
84
85 src_test() {
86 testing() {
87 PYTHONPATH="$(dir -d build-${PYTHON_ABI}/lib*)" "$(PYTHON)" test/Test.py
88 }
89 python_execute_function testing
90 }
91
92 src_install() {
93 distutils_src_install
94 dodoc HISTORY doc/Polygon.txt
95 }
96
97
98
99 1.1 dev-python/polygon/polygon-2.0.4.ebuild
100
101 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/polygon-2.0.4.ebuild?rev=1.1&view=markup
102 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/polygon-2.0.4.ebuild?rev=1.1&content-type=text/plain
103
104 Index: polygon-2.0.4.ebuild
105 ===================================================================
106 # Copyright 1999-2012 Gentoo Foundation
107 # Distributed under the terms of the GNU General Public License v2
108 # $Header: /var/cvsroot/gentoo-x86/dev-python/polygon/polygon-2.0.4.ebuild,v 1.1 2012/01/04 21:49:17 bicatali Exp $
109
110 EAPI=3
111 PYTHON_DEPEND="2"
112 SUPPORT_PYTHON_ABIS="1"
113 RESTRICT_PYTHON_ABIS="3.*"
114
115 inherit distutils
116
117 DESCRIPTION="Python package to handle polygonal shapes in 2D"
118 HOMEPAGE="http://www.j-raedler.de/projects/polygon/"
119 SRC_URI="https://github.com/downloads/jraedler/Polygon2/Polygon-${PV}.zip"
120
121 LICENSE="LGPL-2"
122 SLOT="2"
123 KEYWORDS="~amd64 ~x86"
124 IUSE=""
125
126 RDEPEND=""
127 DEPEND="${RDEPEND}
128 app-arch/unzip"
129
130 S="${WORKDIR}/Polygon-${PV}"
131
132 src_test() {
133 testing() {
134 PYTHONPATH="$(dir -d build-${PYTHON_ABI}/lib*)" "$(PYTHON)" test/Test.py
135 }
136 python_execute_function testing
137 }
138
139 src_install() {
140 distutils_src_install
141 dodoc HISTORY doc/Polygon.txt
142 }
143
144
145
146 1.1 dev-python/polygon/Manifest
147
148 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/Manifest?rev=1.1&view=markup
149 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/Manifest?rev=1.1&content-type=text/plain
150
151 Index: Manifest
152 ===================================================================
153 DIST Polygon-2.0.4.zip 73544 RMD160 dfb26325998f3e8b44ac36f6ef2c0be30b8d9fd9 SHA1 aa734572c911c0ddb4b39d1bf21f8ecbfa3685c8 SHA256 a9a85d81cc9faabba398001b1e9d32444e98147ac6e31cbdc5ef512c4f7c43dd
154 DIST Polygon-3.0.4a-src.zip 163024 RMD160 be1fca82612a7f70d0da70a217b1b7ec4c9a1c9a SHA1 5030b2c687b2d5b70437d6d5fc341fac818c99dd SHA256 2ebef747544660a17a4aefc5a5a8429b6c64af8e0044130f98ed241b48e8fd9d
155 EBUILD polygon-2.0.4.ebuild 756 RMD160 7e6415cc7492e537af0a9f1cfd4e8051d148254f SHA1 f608174bd188361a335bd8d507bd1297d623deb2 SHA256 66f92d337a3477125251a851119bab684fbe94b41ec26784bb739a9a4b24988f
156 EBUILD polygon-3.0.4.ebuild 760 RMD160 80e8e8369438d007a8239eb3d7e2849b7d267161 SHA1 326a800a84aa4f0e202e9cdeec61b68d8ac23428 SHA256 98bd6a610e71a1011382693e12692bf8e8fadd4d23fed749417993ca7affc051
157 MISC ChangeLog 314 RMD160 26768b2e01959e16358fb88cde933f14118d48ff SHA1 a25594415cc517290c450ce45ba64b78b79925f9 SHA256 99f7bded74d2db466b958aa75fec712e30bc1cf36c39775a874e21ecce7f75cb
158 MISC metadata.xml 417 RMD160 8adacb5edc99072df7ec8f3efa4e8033f8cfbe05 SHA1 3bb4dfcd22e5270bd6f151bea79f1d13a1692345 SHA256 6bcbb5801c689f8b955aa4732e134863f86982df231864b8af04aa3503ae12d2