Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyproj/
Date: Tue, 02 May 2017 08:48:07
Message-Id: 1493714819.c11c02bd7067df603c5690ea7ae6a01ed830a095.mgorny@gentoo
1 commit: c11c02bd7067df603c5690ea7ae6a01ed830a095
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 2 08:09:19 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 2 08:46:59 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c11c02bd
7
8 dev-python/pyproj: Clean old versions up
9
10 dev-python/pyproj/Manifest | 1 -
11 dev-python/pyproj/pyproj-1.9.4.ebuild | 36 -----------------------------------
12 2 files changed, 37 deletions(-)
13
14 diff --git a/dev-python/pyproj/Manifest b/dev-python/pyproj/Manifest
15 index f89eced8df4..25c5dbbf19a 100644
16 --- a/dev-python/pyproj/Manifest
17 +++ b/dev-python/pyproj/Manifest
18 @@ -1,2 +1 @@
19 -DIST pyproj-1.9.4.tar.gz 7838454 SHA256 71b4d8c52d781e2b4afe2d3609e9d700cb631ddbf51060bc702644733cc70869 SHA512 96b118e75ba8360ca56176631c44567c7b6596f98189a99bfbdc2d0f8bff1bba814a86d66ac1c54964951a3534c2a5cfb54a0fc4d8eda52c77069a8b64f8db3a WHIRLPOOL 750f466566aab3d2edb155407f37efc7f514901bd782b5be589f1c788059c81c8e17e519d53410be169cec971aa3524268bd86e08f9f90a1e2b742343f6b0ae2
20 DIST pyproj-1.9.5.1.tar.gz 4424543 SHA256 53fa54c8fa8a1dfcd6af4bf09ce1aae5d4d949da63b90570ac5ec849efaf3ea8 SHA512 b0e0f85be01a3399cb41c4bf29d1a63ecb519fd45d6092a3558060d93c715afafd12f7532c8665839225ad7243e739a117677f6747bf34a0ccbde5e75c85f324 WHIRLPOOL 5ddb28a2ee6bbc3e50a0d76355f51b93c50c078459a6bc582f6a1538abbe349b45b0fe3bbc195e751b575ef5096a47ee6e88cf8e5dd4c69b9e917589da29ac05
21
22 diff --git a/dev-python/pyproj/pyproj-1.9.4.ebuild b/dev-python/pyproj/pyproj-1.9.4.ebuild
23 deleted file mode 100644
24 index 9a2cbeaeb4b..00000000000
25 --- a/dev-python/pyproj/pyproj-1.9.4.ebuild
26 +++ /dev/null
27 @@ -1,36 +0,0 @@
28 -# Copyright 1999-2015 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=5
32 -
33 -PYTHON_COMPAT=( python2_7 )
34 -
35 -inherit distutils-r1 flag-o-matic
36 -
37 -DESCRIPTION="Python interface to PROJ.4 library"
38 -HOMEPAGE="https://github.com/jswhit/pyproj"
39 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="MIT"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86 ~amd64-linux"
44 -IUSE="doc"
45 -
46 -python_prepare_all() {
47 - distutils-r1_python_prepare_all
48 - append-cflags -fno-strict-aliasing
49 -}
50 -
51 -python_test() {
52 - einfo "Testruns do not have regular unittest type tests, instead for test.py,"
53 - einfo "the output need be compared with a separate file, sample.out."
54 - "${PYTHON}" test/test.py || die
55 -
56 - einfo ""; einfo "Now the file test2.py is run to test pickling"; einfo ""
57 - "${PYTHON}" test/test2.py || die
58 -}
59 -
60 -python_install_all() {
61 - use doc && local HTML_DOCS=( docs/. )
62 - distutils-r1_python_install_all
63 -}