Gentoo Archives: gentoo-commits

From: "Slawek Lis (slis)" <slis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/Shapely: Shapely-1.3.2.ebuild ChangeLog
Date: Fri, 20 Jun 2014 09:30:30
Message-Id: 20140620093027.4CE8D2004E@flycatcher.gentoo.org
1 slis 14/06/20 09:30:27
2
3 Modified: ChangeLog
4 Added: Shapely-1.3.2.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x55265D89)
9
10 Revision Changes Path
11 1.3 sci-libs/Shapely/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/Shapely/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/Shapely/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/Shapely/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-libs/Shapely/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 20 Jun 2014 09:29:34 -0000 1.2
24 +++ ChangeLog 20 Jun 2014 09:30:27 -0000 1.3
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-libs/Shapely
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/Shapely/ChangeLog,v 1.2 2014/06/20 09:29:34 slis Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/Shapely/ChangeLog,v 1.3 2014/06/20 09:30:27 slis Exp $
30 +
31 +*Shapely-1.3.2 (20 Jun 2014)
32 +
33 + 20 Jun 2014; Sławek Lis <slis@g.o> +Shapely-1.3.2.ebuild:
34 + Version bump
35
36 20 Jun 2014; Sławek Lis <slis@g.o> +files/setup_unicode.patch,
37 Shapely-1.3.0.ebuild:
38
39
40
41 1.1 sci-libs/Shapely/Shapely-1.3.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/Shapely/Shapely-1.3.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/Shapely/Shapely-1.3.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: Shapely-1.3.2.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-libs/Shapely/Shapely-1.3.2.ebuild,v 1.1 2014/06/20 09:30:27 slis Exp $
51
52 EAPI="5"
53 PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} )
54
55 inherit distutils-r1
56
57 DESCRIPTION="Geometric objects, predicates, and operations"
58 HOMEPAGE="https://pypi.python.org/pypi/Shapely"
59
60 if [[ ${PV} == "9999" ]] ; then
61 inherit git-r3
62 SRC_URI=""
63 EGIT_REPO_URI="https://github.com/Toblerity/${PN}.git"
64 else
65 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
66 KEYWORDS="~amd64 ~x86"
67 fi
68
69 LICENSE="BSD"
70 SLOT="0"
71 IUSE="test"
72
73 RDEPEND=">=sci-libs/geos-3.1"
74 DEPEND="${RDEPEND}
75 dev-python/setuptools[${PYTHON_USEDEP}]
76 test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
77
78 src_prepare() {
79 epatch "${FILESDIR}/setup_unicode.patch"
80 }
81
82 python_test() {
83 esetup.py test
84 }