Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/polygon: polygon-2.0.6.ebuild ChangeLog polygon-3.0.6.ebuild
Date: Fri, 27 Jun 2014 14:31:44
Message-Id: 20140627143005.1F1B32004E@flycatcher.gentoo.org
1 jer 14/06/27 14:30:05
2
3 Modified: ChangeLog
4 Added: polygon-2.0.6.ebuild polygon-3.0.6.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.11 dev-python/polygon/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/polygon/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 11 Nov 2012 13:35:09 -0000 1.10
24 +++ ChangeLog 27 Jun 2014 14:30:04 -0000 1.11
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-python/polygon
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/polygon/ChangeLog,v 1.10 2012/11/11 13:35:09 blueness Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/polygon/ChangeLog,v 1.11 2014/06/27 14:30:04 jer Exp $
31 +
32 +*polygon-3.0.6 (27 Jun 2014)
33 +*polygon-2.0.6 (27 Jun 2014)
34 +
35 + 27 Jun 2014; Jeroen Roovers <jer@g.o> +polygon-2.0.6.ebuild,
36 + +polygon-3.0.6.ebuild:
37 + Version bump.
38
39 11 Nov 2012; Anthony G. Basile <blueness@g.o> polygon-2.0.4.ebuild:
40 Rapid stabilization to heal tree, bug #442318
41
42
43
44 1.1 dev-python/polygon/polygon-2.0.6.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/polygon-2.0.6.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/polygon-2.0.6.ebuild?rev=1.1&content-type=text/plain
48
49 Index: polygon-2.0.6.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-python/polygon/polygon-2.0.6.ebuild,v 1.1 2014/06/27 14:30:04 jer Exp $
54
55 EAPI=5
56 PYTHON_COMPAT=( python2_7 )
57
58 inherit distutils-r1
59
60 DESCRIPTION="Python package to handle polygonal shapes in 2D"
61 HOMEPAGE="http://www.j-raedler.de/projects/polygon/"
62 SRC_URI="mirror://bitbucket/jraedler/${PN}2/downloads/Polygon2-${PV}.zip"
63
64 LICENSE="LGPL-2"
65 SLOT="2"
66 KEYWORDS="~amd64 ~ppc ~x86"
67
68 DEPEND="app-arch/unzip"
69
70 S=${WORKDIR}/Polygon2-${PV}
71
72 DOCS=( HISTORY doc/Polygon.txt )
73
74 src_test() {
75 python_test() {
76 PYTHONPATH="${BUILD_DIR}/lib" ${EPYTHON} test/Test.py || die
77 }
78 python_foreach_impl python_test
79 }
80
81
82
83 1.1 dev-python/polygon/polygon-3.0.6.ebuild
84
85 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/polygon-3.0.6.ebuild?rev=1.1&view=markup
86 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/polygon/polygon-3.0.6.ebuild?rev=1.1&content-type=text/plain
87
88 Index: polygon-3.0.6.ebuild
89 ===================================================================
90 # Copyright 1999-2014 Gentoo Foundation
91 # Distributed under the terms of the GNU General Public License v2
92 # $Header: /var/cvsroot/gentoo-x86/dev-python/polygon/polygon-3.0.6.ebuild,v 1.1 2014/06/27 14:30:04 jer Exp $
93
94 EAPI=5
95 PYTHON_COMPAT=( python3_{2,3,4} )
96
97 inherit distutils-r1
98
99 DESCRIPTION="Python package to handle polygonal shapes in 2D"
100 HOMEPAGE="http://www.j-raedler.de/projects/polygon"
101 SRC_URI="mirror://bitbucket/jraedler/${PN}3/downloads/Polygon3-${PV}.zip"
102
103 LICENSE="LGPL-2"
104 SLOT="3"
105 KEYWORDS="~amd64 ~ppc ~x86"
106
107 DEPEND="app-arch/unzip"
108
109 S=${WORKDIR}/Polygon3-${PV}
110
111 DOCS=( HISTORY doc/Polygon.txt )
112
113 src_test() {
114 python_test() {
115 PYTHONPATH="${BUILD_DIR}/lib" ${EPYTHON} test/Test.py || die
116 }
117 python_foreach_impl python_test
118 }