Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/geoip-python/
Date: Sun, 13 Jan 2019 14:31:43
Message-Id: 1547389876.ea3d5b9ccba225aa4e9f93ba63c838bfc6b816fc.asturm@gentoo
1 commit: ea3d5b9ccba225aa4e9f93ba63c838bfc6b816fc
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 13 01:17:19 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 13 14:31:16 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea3d5b9c
7
8 dev-python/geoip-python: Drop 1.3.2 (r0)
9
10 No ppc revdeps.
11
12 Package-Manager: Portage-2.3.55, Repoman-2.3.12
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 dev-python/geoip-python/geoip-python-1.3.2.ebuild | 43 -----------------------
16 1 file changed, 43 deletions(-)
17
18 diff --git a/dev-python/geoip-python/geoip-python-1.3.2.ebuild b/dev-python/geoip-python/geoip-python-1.3.2.ebuild
19 deleted file mode 100644
20 index 16ee2baa878..00000000000
21 --- a/dev-python/geoip-python/geoip-python-1.3.2.ebuild
22 +++ /dev/null
23 @@ -1,43 +0,0 @@
24 -# Copyright 1999-2015 Gentoo Foundation
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -EAPI=5
28 -PYTHON_COMPAT=( python{2_7,3_4} pypy pypy3 )
29 -
30 -inherit distutils-r1
31 -
32 -MY_PN="geoip-api-python"
33 -MY_P="${MY_PN}-${PV}"
34 -
35 -DESCRIPTION="Python bindings for GeoIP"
36 -HOMEPAGE="https://github.com/maxmind/geoip-api-python"
37 -SRC_URI="https://github.com/maxmind/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
38 -
39 -LICENSE="GPL-2+"
40 -SLOT="0"
41 -KEYWORDS="amd64 ~ia64 ppc ~sparc x86 ~x86-fbsd"
42 -IUSE="examples test"
43 -
44 -RDEPEND=">=dev-libs/geoip-1.4.8"
45 -DEPEND="${RDEPEND}
46 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
47 -
48 -S="${WORKDIR}/${MY_P}"
49 -
50 -DOCS=( README.rst ChangeLog.md )
51 -
52 -python_compile() {
53 - if [[ python_is_python3 || "$EPYTHON}" == 'pypy3' ]]; then
54 - local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
55 - fi
56 - distutils-r1_python_compile
57 -}
58 -
59 -python_test() {
60 - esetup.py test
61 -}
62 -
63 -python_install_all() {
64 - use examples && local EXAMPLES=( examples/. )
65 - distutils-r1_python_install_all
66 -}