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/geos/
Date: Sun, 29 Dec 2019 23:56:57
Message-Id: 1577663795.84575c43150d00c3faddb514ae446fb7250990f1.asturm@gentoo
1 commit: 84575c43150d00c3faddb514ae446fb7250990f1
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 29 21:18:18 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 29 23:56:35 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84575c43
7
8 sci-libs/geos: Drop 3.7.0
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 sci-libs/geos/Manifest | 1 -
14 sci-libs/geos/geos-3.7.0.ebuild | 61 -----------------------------------------
15 2 files changed, 62 deletions(-)
16
17 diff --git a/sci-libs/geos/Manifest b/sci-libs/geos/Manifest
18 index c6bf7a54fcc..7a85d86d687 100644
19 --- a/sci-libs/geos/Manifest
20 +++ b/sci-libs/geos/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST geos-3.7.0.tar.bz2 2028814 BLAKE2B 17385d9be831d4812391a30627e13989d3ca099ca9b0a719a92cdb2503dadff3693d4b3d320652764185db05782b33760ca14d155365d87167bb4ef6d6c2463c SHA512 fcca5e503efa32bb388376b2a06b9ca5c74fbcddba750cce6b3b4109eb2eb122058aead12b9462cdd881f425cd75d7241645ab344f25ce022bc0659954560742
23 DIST geos-3.7.2.tar.bz2 2071465 BLAKE2B ba968488aa5d845e582d3771d8d2b1f67b0f301e73fad5834a0805a912c8f3b1200bba93d8758f43539ce269758de348d999db3db9738e7abf5c1a443f388d8c SHA512 ff0fde2e21ed9d2770c139aa50c6efd22d9cff3c6bfd8f1ef86b064efd1ad318b08dec66e34661bc1c7a341b0837978853494f27d63988be865a8ee4f7611d38
24 DIST geos-3.8.0.tar.bz2 2399403 BLAKE2B 0f9b6d7f9a4052b9b84e77d534be6e2909e5dc4995287f34e3b7e7c1537c9a73088d4a49f96f43034723eb37c88674aae469e26d7db3eb40efbcdf5551553a1a SHA512 c89b25b42092152ef261090f25ff64b229f30f67d42fdf44c2871e78b66bb2c42e23b9ae21f9aea0e48823bdb0267d609ab2ee77d310abcb76fa672c6614d8f1
25
26 diff --git a/sci-libs/geos/geos-3.7.0.ebuild b/sci-libs/geos/geos-3.7.0.ebuild
27 deleted file mode 100644
28 index 4c8405e7855..00000000000
29 --- a/sci-libs/geos/geos-3.7.0.ebuild
30 +++ /dev/null
31 @@ -1,61 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -PYTHON_COMPAT=( python2_7 )
38 -
39 -inherit python-single-r1
40 -
41 -DESCRIPTION="Geometry engine library for Geographic Information Systems"
42 -HOMEPAGE="http://trac.osgeo.org/geos/"
43 -SRC_URI="http://download.osgeo.org/geos/${P}.tar.bz2"
44 -
45 -LICENSE="LGPL-2.1"
46 -SLOT="0"
47 -KEYWORDS="amd64 arm arm64 ia64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
48 -IUSE="doc python ruby static-libs"
49 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
50 -
51 -RDEPEND="
52 - python? ( ${PYTHON_DEPS} )
53 - ruby? ( dev-lang/ruby:* )
54 -"
55 -DEPEND="${RDEPEND}
56 - doc? ( app-doc/doxygen )
57 - python? ( dev-lang/swig:0 )
58 - ruby? ( dev-lang/swig:0 )
59 -"
60 -
61 -PATCHES=( "${FILESDIR}"/3.4.2-solaris-isnan.patch )
62 -
63 -RESTRICT="test"
64 -
65 -pkg_setup() {
66 - use python && python-single-r1_pkg_setup
67 -}
68 -
69 -src_prepare() {
70 - default
71 - echo "#!${EPREFIX}/bin/bash" > py-compile
72 -}
73 -
74 -src_configure() {
75 - econf \
76 - $(use_enable python) \
77 - $(use_enable ruby) \
78 - $(use_enable static-libs static)
79 -}
80 -
81 -src_compile() {
82 - default
83 - use doc && emake -C "${S}/doc" doxygen-html
84 -}
85 -
86 -src_install() {
87 - use doc && HTML_DOCS=( doc/doxygen_docs/html/. )
88 - default
89 - use python && python_optimize "${D}$(python_get_sitedir)"/geos/
90 -
91 - find "${D}" -name '*.la' -delete || die
92 -}