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/Fiona: Fiona-9999.ebuild ChangeLog
Date: Thu, 30 Apr 2015 15:13:27
Message-Id: 20150430151317.7EB969BC@oystercatcher.gentoo.org
1 slis 15/04/30 15:13:16
2
3 Modified: Fiona-9999.ebuild ChangeLog
4 Log:
5 updated live ebuild
6
7 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x55265D89)
8
9 Revision Changes Path
10 1.6 sci-libs/Fiona/Fiona-9999.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/Fiona/Fiona-9999.ebuild?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/Fiona/Fiona-9999.ebuild?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/Fiona/Fiona-9999.ebuild?r1=1.5&r2=1.6
15
16 Index: Fiona-9999.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-libs/Fiona/Fiona-9999.ebuild,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- Fiona-9999.ebuild 3 Apr 2015 12:41:25 -0000 1.5
23 +++ Fiona-9999.ebuild 30 Apr 2015 15:13:16 -0000 1.6
24 @@ -1,33 +1,44 @@
25 # Copyright 1999-2015 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/Fiona/Fiona-9999.ebuild,v 1.5 2015/04/03 12:41:25 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/Fiona/Fiona-9999.ebuild,v 1.6 2015/04/30 15:13:16 slis Exp $
29
30 EAPI="5"
31 +PYTHON_COMPAT=( python{2_6,2_7,3_3,3_4} )
32
33 -PYTHON_COMPAT=( python2_7 python3_{3,4} )
34 +inherit distutils-r1
35
36 -inherit distutils-r1 git-r3
37 -
38 -DESCRIPTION="OGR's neat, nimble, no-nonsense API"
39 +DESCRIPTION="Fiona is OGR's neat, nimble, no-nonsense API"
40 HOMEPAGE="https://pypi.python.org/pypi/Fiona"
41 -SRC_URI=""
42 -EGIT_REPO_URI="http://github.com/Toblerity/${PN}.git"
43 +
44 +if [[ ${PV} == "9999" ]] ; then
45 + inherit git-r3
46 + SRC_URI=""
47 + EGIT_REPO_URI="http://github.com/Toblerity/${PN}.git"
48 +else
49 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
50 + KEYWORDS="~amd64 ~x86"
51 +fi
52
53 LICENSE="BSD"
54 SLOT="0"
55 -KEYWORDS=""
56 IUSE="test"
57
58 -RDEPEND="
59 - dev-python/click[${PYTHON_USEDEP}]
60 - >=sci-libs/gdal-1.8[${PYTHON_USEDEP}]"
61 +RDEPEND=">=sci-libs/gdal-1.8
62 + dev-python/click"
63 DEPEND="${RDEPEND}
64 dev-python/setuptools[${PYTHON_USEDEP}]
65 dev-python/six[${PYTHON_USEDEP}]
66 - test? (
67 - dev-python/nose[${PYTHON_USEDEP}]
68 - dev-python/pytest[${PYTHON_USEDEP}]
69 - )"
70 + test? ( dev-python/nose )
71 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )
72 + ${PYTHON_DEPS}"
73 +
74 +src_prepare() {
75 + epatch "${FILESDIR}/scriptname.patch"
76 +}
77 +
78 +pkg_postinst() {
79 + einfo "Fiona script is installed as /usr/bin/Fiona"
80 +}
81
82 python_test() {
83 esetup.py test
84
85
86
87 1.11 sci-libs/Fiona/ChangeLog
88
89 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/Fiona/ChangeLog?rev=1.11&view=markup
90 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/Fiona/ChangeLog?rev=1.11&content-type=text/plain
91 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/Fiona/ChangeLog?r1=1.10&r2=1.11
92
93 Index: ChangeLog
94 ===================================================================
95 RCS file: /var/cvsroot/gentoo-x86/sci-libs/Fiona/ChangeLog,v
96 retrieving revision 1.10
97 retrieving revision 1.11
98 diff -u -r1.10 -r1.11
99 --- ChangeLog 30 Apr 2015 15:00:24 -0000 1.10
100 +++ ChangeLog 30 Apr 2015 15:13:16 -0000 1.11
101 @@ -1,6 +1,9 @@
102 # ChangeLog for sci-libs/Fiona
103 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
104 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/Fiona/ChangeLog,v 1.10 2015/04/30 15:00:24 slis Exp $
105 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/Fiona/ChangeLog,v 1.11 2015/04/30 15:13:16 slis Exp $
106 +
107 + 30 Apr 2015; Sławek Lis <slis@g.o> Fiona-9999.ebuild:
108 + updated live ebuild
109
110 30 Apr 2015; Sławek Lis <slis@g.o> Fiona-1.5.1.ebuild,
111 files/scriptname.patch: