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: Mon, 30 Dec 2019 22:20:54
Message-Id: 1577744395.17d6a6154dfba58bb28de32f4a19df8fa561016b.asturm@gentoo
1 commit: 17d6a6154dfba58bb28de32f4a19df8fa561016b
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 29 21:16:37 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 30 22:19:55 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17d6a615
7
8 sci-libs/geos: Drop 3.8.0 (r0)
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/geos-3.8.0.ebuild | 62 -----------------------------------------
14 1 file changed, 62 deletions(-)
15
16 diff --git a/sci-libs/geos/geos-3.8.0.ebuild b/sci-libs/geos/geos-3.8.0.ebuild
17 deleted file mode 100644
18 index 3ad295e1f4b..00000000000
19 --- a/sci-libs/geos/geos-3.8.0.ebuild
20 +++ /dev/null
21 @@ -1,62 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -PYTHON_COMPAT=( python2_7 )
28 -
29 -inherit python-single-r1
30 -
31 -MY_PV=${PV/_/}
32 -S=${WORKDIR}/${PN}-${MY_PV}
33 -
34 -DESCRIPTION="Geometry engine library for Geographic Information Systems"
35 -HOMEPAGE="http://trac.osgeo.org/geos/"
36 -SRC_URI="http://download.osgeo.org/geos/${PN}-${MY_PV}.tar.bz2"
37 -
38 -LICENSE="LGPL-2.1"
39 -SLOT="0"
40 -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
41 -IUSE="doc python ruby static-libs"
42 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
43 -
44 -RDEPEND="
45 - python? ( ${PYTHON_DEPS} )
46 - ruby? ( dev-lang/ruby:* )
47 -"
48 -DEPEND="${RDEPEND}
49 - doc? ( app-doc/doxygen )
50 - python? ( dev-lang/swig:0 )
51 - ruby? ( dev-lang/swig:0 )
52 -"
53 -
54 -RESTRICT="test"
55 -
56 -pkg_setup() {
57 - use python && python-single-r1_pkg_setup
58 -}
59 -
60 -src_prepare() {
61 - default
62 - echo "#!${EPREFIX}/bin/bash" > py-compile
63 -}
64 -
65 -src_configure() {
66 - econf \
67 - $(use_enable python) \
68 - $(use_enable ruby) \
69 - $(use_enable static-libs static)
70 -}
71 -
72 -src_compile() {
73 - default
74 - use doc && emake -C "${S}/doc" doxygen-html
75 -}
76 -
77 -src_install() {
78 - use doc && HTML_DOCS=( doc/doxygen_docs/html/. )
79 - default
80 - use python && python_optimize "${D}$(python_get_sitedir)"/geos/
81 -
82 - find "${D}" -name '*.la' -delete || die
83 -}