Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/Shapely/
Date: Fri, 31 Jan 2020 13:07:38
Message-Id: 1580476028.889b58175de32496ffa9cc4a62a20a7f9dd37aec.asturm@gentoo
1 commit: 889b58175de32496ffa9cc4a62a20a7f9dd37aec
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 30 15:51:11 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 31 13:07:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=889b5817
7
8 sci-libs/Shapely: Drop 1.5.17-r1
9
10 Package-Manager: Portage-2.3.86, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 sci-libs/Shapely/Manifest | 1 -
14 sci-libs/Shapely/Shapely-1.5.17-r1.ebuild | 48 -------------------------------
15 2 files changed, 49 deletions(-)
16
17 diff --git a/sci-libs/Shapely/Manifest b/sci-libs/Shapely/Manifest
18 index b64bd533a44..7a73e5495f0 100644
19 --- a/sci-libs/Shapely/Manifest
20 +++ b/sci-libs/Shapely/Manifest
21 @@ -1,2 +1 @@
22 -DIST Shapely-1.5.17.tar.gz 180663 BLAKE2B 1a41de8c264989abeac27fe9b63abd81ad6f03f0eecd313131d04190b8bbebc6c6bd6b45b1782fbfd163025cda4977b7e93a24a711c76fddfaedb0fe880cea53 SHA512 eea241942ffbf377001445fab4017c9a2746d6bc0baa6c801a08ca95e608bbdaea7ad9568f00cbecdb559e634402bc6d213ebccb4074e59325e1cc4b3771626d
23 DIST Shapely-1.6.4.post2.tar.gz 225745 BLAKE2B 96e995db6dd1464bac7c2562efdc7f298a5f23c388e44f334db685b1cfa1025ff403db870e11328977a267483726504e03b6d7c47fe4234a3a5966a13b2b7311 SHA512 027c816ef2104f654569ca658b52b87c60e5ba6a45927fcc51c23dd1922f3f9f7fdcea3601160b0a999e39611617142833ccac790777093be8b96a0d9083f78f
24
25 diff --git a/sci-libs/Shapely/Shapely-1.5.17-r1.ebuild b/sci-libs/Shapely/Shapely-1.5.17-r1.ebuild
26 deleted file mode 100644
27 index 692e04da131..00000000000
28 --- a/sci-libs/Shapely/Shapely-1.5.17-r1.ebuild
29 +++ /dev/null
30 @@ -1,48 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python3_6 )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Geometric objects, predicates, and operations"
41 -HOMEPAGE="https://pypi.org/project/Shapely/"
42 -
43 -if [[ ${PV} == "9999" ]] ; then
44 - inherit git-r3
45 - SRC_URI=""
46 - EGIT_REPO_URI="https://github.com/Toblerity/${PN}.git"
47 -else
48 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
49 - KEYWORDS="amd64 x86"
50 -fi
51 -
52 -LICENSE="BSD"
53 -SLOT="0"
54 -IUSE="test"
55 -RESTRICT="!test? ( test )"
56 -
57 -RDEPEND=">=sci-libs/geos-3.3
58 - dev-python/numpy[${PYTHON_USEDEP}]"
59 -DEPEND="${RDEPEND}
60 - dev-python/setuptools[${PYTHON_USEDEP}]
61 - dev-python/cython[${PYTHON_USEDEP}]
62 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
63 -
64 -python_prepare_all() {
65 - # fix install path for Cython definition file
66 - sed -i \
67 - -e "s|\(data_files.*\)'shapely'|\1'share/shapely'|" \
68 - setup.py || die
69 -
70 - distutils-r1_python_prepare_all
71 -}
72 -
73 -python_test() {
74 - distutils_install_for_testing
75 - cd "${TEST_DIR}/lib" || die
76 - cp -r "${S}/tests" . || die
77 - py.test tests || die
78 -}