commit:     077208e946f5f535c24eb5a834a2178b820f15af
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 08:06:59 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 08:30:29 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=077208e9

sci-libs/geos: drop 3.10.0, 3.10.2

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-libs/geos/Manifest           |  2 --
 sci-libs/geos/geos-3.10.0.ebuild | 43 ----------------------------------------
 sci-libs/geos/geos-3.10.2.ebuild | 43 ----------------------------------------
 3 files changed, 88 deletions(-)

diff --git a/sci-libs/geos/Manifest b/sci-libs/geos/Manifest
index b3cfefdbfa44..e090e325a34b 100644
--- a/sci-libs/geos/Manifest
+++ b/sci-libs/geos/Manifest
@@ -1,4 +1,2 @@
-DIST geos-3.10.0.tar.bz2 6799370 BLAKE2B 
dd1490318fccda8ccaf5152f8521ab98ef5e4b143e12e861d02124421985a8b2c966bca6f966aa167fb60f703d25c132b8c7ee4d61e382a449bce5eb40d4cb89
 SHA512 
12657c6649bfbf6efa3232a054969c6229bb23fc16a7c72d6ca5fdb662e0d08e14bbcaa6944a17de8972b6c236608d94c870ead0b04fada2d2af3d42c238058e
-DIST geos-3.10.2.tar.bz2 6714655 BLAKE2B 
1bc4f29a28b2b49faa9e1ea2aba7359d6dcb124136e0a2d2069508f7b95fae09e59ecb0acf3742d9261444055e85471cf45baba6e278c8b3501e91eacf3bb886
 SHA512 
390381711ccf56b862c2736cf6329200822f121de1c49df52b8b85cabea8c7787b199df2196acacc2e5c677ff3ebe042d93d70e89deadbc19d754499edb65126
 DIST geos-3.11.0.tar.bz2 6727294 BLAKE2B 
7d2cb7ae2dc6c5eb13836c16c8164402c1e964f98df95d5aaf9f6fd957ebcdbdefb43ae4fb17a5a671b6dfdb812bdacfdbfdfdea6e5bd44f135e3701a3cc914d
 SHA512 
40c7553bbb93673c231ddd0131b73bf43b3f50524bc5bd9e6934c068d2c09632f388b7429254ae15d9641da2d15e3a626b430438854e98d9e7419ad04e535189
 DIST geos-3.11.1.tar.bz2 6753232 BLAKE2B 
376050ca3224e5220f69d82ff62d79ff7ea3d35d5fe90b7ab4e0cabcb4200b47d7569110538c201df9cb28da784f09f8207a9a8233ee002ab2ec87f5cf336ba1
 SHA512 
708500aba9b04208ee46a531d55ddf63a213dfaa2922dae937b524300b2b46c95143ed6cd3ff1414e9099f2be95e5df5a2e0b49df43acf93a9478215259f20d3

diff --git a/sci-libs/geos/geos-3.10.0.ebuild b/sci-libs/geos/geos-3.10.0.ebuild
deleted file mode 100644
index ee5577541ea4..000000000000
--- a/sci-libs/geos/geos-3.10.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="Geometry engine library for Geographic Information Systems"
-HOMEPAGE="https://libgeos.org/";
-SRC_URI="https://download.osgeo.org/geos/${P}.tar.bz2";
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ia64 ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
-IUSE="doc"
-
-BDEPEND="doc? ( app-doc/doxygen )"
-
-src_configure() {
-       local mycmakeargs=(
-               -DBUILD_DOCUMENTATION=$(usex doc)
-
-               # bug #709368
-               $(usex arm '-DDISABLE_GEOS_INLINE=ON' '')
-       )
-
-       cmake_src_configure
-}
-
-src_compile() {
-       cmake_src_compile
-
-       use doc && cmake_src_compile docs
-}
-
-src_install() {
-       cmake_src_install
-
-       if use doc ; then
-               HTML_DOCS=( "${BUILD_DIR}"/doc/doxygen_docs/html/. )
-               einstalldocs
-       fi
-}

diff --git a/sci-libs/geos/geos-3.10.2.ebuild b/sci-libs/geos/geos-3.10.2.ebuild
deleted file mode 100644
index f43f7504f26b..000000000000
--- a/sci-libs/geos/geos-3.10.2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Geometry engine library for Geographic Information Systems"
-HOMEPAGE="https://libgeos.org/";
-SRC_URI="https://download.osgeo.org/geos/${P}.tar.bz2";
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ia64 ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
-IUSE="doc"
-
-BDEPEND="doc? ( app-doc/doxygen )"
-
-src_configure() {
-       local mycmakeargs=(
-               -DBUILD_DOCUMENTATION=$(usex doc)
-
-               # bug #709368
-               $(usex arm '-DDISABLE_GEOS_INLINE=ON' '')
-       )
-
-       cmake_src_configure
-}
-
-src_compile() {
-       cmake_src_compile
-
-       use doc && cmake_src_compile docs
-}
-
-src_install() {
-       cmake_src_install
-
-       if use doc ; then
-               HTML_DOCS=( "${BUILD_DIR}"/doc/doxygen_docs/html/. )
-               einstalldocs
-       fi
-}

Reply via email to