From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/proj/
Date: Sat, 17 Jun 2023 17:07:11 +0000 (UTC) [thread overview]
Message-ID: <1687021614.ca935654e70d7c6f0b7868aceb6a1748a82d384a.asturm@gentoo> (raw)
commit: ca935654e70d7c6f0b7868aceb6a1748a82d384a
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 17 17:05:17 2023 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Jun 17 17:06:54 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca935654
sci-libs/proj: drop 9.1.1-r1, 9.2.0
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-libs/proj/Manifest | 3 --
sci-libs/proj/proj-9.1.1-r1.ebuild | 68 --------------------------------
sci-libs/proj/proj-9.2.0.ebuild | 79 --------------------------------------
3 files changed, 150 deletions(-)
diff --git a/sci-libs/proj/Manifest b/sci-libs/proj/Manifest
index 12b085cd9ca8..a1b660bc8bee 100644
--- a/sci-libs/proj/Manifest
+++ b/sci-libs/proj/Manifest
@@ -1,5 +1,2 @@
-DIST proj-9.1.1.tar.gz 5311995 BLAKE2B d51652f649ac97f419740e30facd86b04ee0872197d235aecc9d8fd50c18340bc7969a4a78c33f28753fc8b5556e7e8bdc47e0b6a9d9971e214575481cf25c0b SHA512 b9d19a999e063e465579eb86da3fd2aa32fd894f0d15ba178733bcbad92246b3b3ea1811a276cd556874e171a5ba7cfd678ce563c0b8626c6db9349a64c04726
-DIST proj-9.2.0.tar.gz 5521397 BLAKE2B e3793c619b662a22c1e63d38885dae012256d798f7acde4e29f2021502c45b32eff1e0025c2418b8eea38c30ed15b6baba375ca52b07f3d416aae53e5bfaef1e SHA512 b9c5c72ba2ff1ab4b3c34ab43da411613d27e5206d38c734909fd7a8ab84a113f25a85633c1da1d35af5de22534e3d82f5a66edae52547d3016b51c3bf53f771
DIST proj-9.2.1.tar.gz 5536575 BLAKE2B e08dc370cfac2c6358e1b28e44f3893c75e07fd64a4235041edf836885d31af33605673486edb122cec8aa13a2c564156c429a68e5045de52d8ea970d2e440f1 SHA512 5640e9bd4ea24a0e0b1521c90b8f709b64b9ee357190aaf08af0cff5df68ae93bdfb27211bde5c50340b067fc218b4f2aa8fb998ed2852ebeb2c2ad0ac4629ef
-DIST proj-data-1.12.tar.gz 611423889 BLAKE2B 5376f041aae1a23668a0cae79f4deadff29aad80a1187f837cd5c62c21dc49738fc598c52825f5d8575cd135b55c188d9456b5da72adc6a507fa778f0cad6596 SHA512 788d7c3ad70dd7aab21824ff189dd0cddc28b7e64999f6a9953d7af95f9fabab7143b0f1c3bed19d5deb8f3e3a7be62723fc5fda778fcaefab0ab6d449db5def
DIST proj-data-1.13.tar.gz 709788173 BLAKE2B 33a487f327d2b35acfd6c7c12286bcd6e338c3459540482f968ef7038d78cea9d1519d89ba979f493e007fa961e0eb955889bf2348a235705ec3b71abf1e31c1 SHA512 14eca1b47dad913de608babc73708a35da8bb614c5374e990564a32549998a16e90d4c548f2dac0cd555fc8a4a645eeaf649db929cc38906bee1050e378a662e
diff --git a/sci-libs/proj/proj-9.1.1-r1.ebuild b/sci-libs/proj/proj-9.1.1-r1.ebuild
deleted file mode 100644
index fa1a13f83779..000000000000
--- a/sci-libs/proj/proj-9.1.1-r1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-# Check https://proj.org/download.html for latest data tarball
-PROJ_DATA="proj-data-1.12.tar.gz"
-DESCRIPTION="PROJ coordinate transformation software"
-HOMEPAGE="https://proj.org/"
-SRC_URI="https://download.osgeo.org/proj/${P}.tar.gz
- https://download.osgeo.org/proj/${PROJ_DATA}"
-
-LICENSE="MIT"
-# Changes on every major release
-SLOT="0/$(ver_cut 1)"
-KEYWORDS="amd64 ~arm arm64 ~ia64 ~loong ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="curl test +tiff"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-db/sqlite:3
- curl? ( net-misc/curl )
- tiff? ( media-libs/tiff:= )"
-DEPEND="${RDEPEND}
- test? ( dev-cpp/gtest )"
-
-src_unpack() {
- unpack ${P}.tar.gz
-
- cd "${S}"/data || die
- mv README README.DATA || die
-
- unpack ${PROJ_DATA}
-}
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_TESTING=$(usex test)
- -DBUILD_PROJSYNC=$(usex curl)
- -DENABLE_CURL=$(usex curl)
- -DENABLE_TIFF=$(usex tiff)
- )
-
- use test && mycmakeargs+=( -DUSE_EXTERNAL_GTEST=ON )
-
- cmake_src_configure
-}
-
-src_test() {
- local myctestargs=(
- # proj_test_cpp_api: https://lists.osgeo.org/pipermail/proj/2019-September/008836.html
- # testprojinfo: Also related to map data?
- -E "(proj_test_cpp_api|testprojinfo)"
- )
-
- cmake_src_test
-}
-
-src_install() {
- cmake_src_install
-
- cd data || die
- dodoc README.DATA
-
- find "${ED}" -name '*.la' -type f -delete || die
-}
diff --git a/sci-libs/proj/proj-9.2.0.ebuild b/sci-libs/proj/proj-9.2.0.ebuild
deleted file mode 100644
index 816fcfaec6bf..000000000000
--- a/sci-libs/proj/proj-9.2.0.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-# Check https://proj.org/download.html for latest data tarball
-PROJ_DATA="proj-data-1.13.tar.gz"
-DESCRIPTION="PROJ coordinate transformation software"
-HOMEPAGE="https://proj.org/"
-SRC_URI="
- https://download.osgeo.org/proj/${P}.tar.gz
- https://download.osgeo.org/proj/${PROJ_DATA}
-"
-
-LICENSE="MIT"
-# Changes on every major release
-SLOT="0/$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="curl test +tiff"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-db/sqlite:3
- curl? ( net-misc/curl )
- tiff? ( media-libs/tiff:= )
-"
-DEPEND="
- ${RDEPEND}
- test? ( dev-cpp/gtest )
-"
-
-src_unpack() {
- unpack ${P}.tar.gz
-
- cd "${S}"/data || die
- mv README README.DATA || die
-
- unpack ${PROJ_DATA}
-}
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_TESTING=$(usex test)
- -DBUILD_PROJSYNC=$(usex curl)
- -DENABLE_CURL=$(usex curl)
- -DENABLE_TIFF=$(usex tiff)
- )
-
- if use test ; then
- mycmakeargs+=(
- -DUSE_EXTERNAL_GTEST=ON
- -DBUILD_BENCHMARKS=OFF
- -DRUN_NETWORK_DEPENDENT_TESTS=OFF
- )
- fi
-
- cmake_src_configure
-}
-
-src_test() {
- local myctestargs=(
- # proj_test_cpp_api: https://lists.osgeo.org/pipermail/proj/2019-September/008836.html
- # testprojinfo: Also related to map data?
- -E "(proj_test_cpp_api|testprojinfo)"
- )
-
- cmake_src_test
-}
-
-src_install() {
- cmake_src_install
-
- cd data || die
- dodoc README.DATA
-
- find "${ED}" -name '*.la' -type f -delete || die
-}
next reply other threads:[~2023-06-17 17:07 UTC|newest]
Thread overview: 107+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-17 17:07 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-24 7:45 [gentoo-commits] repo/gentoo:master commit in: sci-libs/proj/ Arthur Zamarin
2024-10-21 18:41 Arthur Zamarin
2024-10-21 18:41 Arthur Zamarin
2024-10-21 18:41 Arthur Zamarin
2023-09-04 7:55 罗百科
2023-06-16 22:59 Sam James
2023-06-16 22:59 Sam James
2023-06-16 21:02 Sam James
2023-06-16 20:54 Sam James
2023-06-03 11:15 Arthur Zamarin
2023-06-02 0:25 Sam James
2023-05-15 21:44 Andreas Sturmlechner
2023-04-23 16:39 Sam James
2023-03-10 12:54 Sam James
2023-03-10 12:24 Sam James
2023-03-10 10:06 Sam James
2023-01-13 17:32 Arthur Zamarin
2023-01-05 9:05 Sam James
2023-01-05 9:01 Sam James
2023-01-05 9:01 Sam James
2023-01-05 8:50 Sam James
2022-12-18 8:32 Sam James
2022-12-16 1:40 Sam James
2022-12-04 9:23 WANG Xuerui
2022-12-02 18:12 Arthur Zamarin
2022-12-02 2:51 Sam James
2022-12-02 2:51 Sam James
2022-11-25 8:43 Arthur Zamarin
2022-11-25 8:04 Arthur Zamarin
2022-11-25 7:55 Sam James
2022-11-25 7:51 Sam James
2022-09-01 21:49 Sam James
2022-06-17 0:01 Sam James
2022-05-04 23:28 Sam James
2022-03-06 8:01 Sam James
2022-03-02 9:05 Agostino Sarubbo
2022-03-02 3:44 Sam James
2022-03-02 3:42 Sam James
2022-03-02 3:42 Sam James
2022-03-02 2:19 Sam James
2022-01-02 8:11 Sam James
2022-01-02 8:11 Sam James
2021-12-06 15:20 Sam James
2021-12-06 8:03 Agostino Sarubbo
2021-12-06 1:17 Sam James
2021-12-06 1:17 Sam James
2021-12-05 18:28 Sam James
2021-11-03 0:33 Sam James
2021-09-05 5:48 Sam James
2021-08-14 23:15 Marek Szuba
2021-08-14 23:15 Marek Szuba
2021-07-06 7:12 Sam James
2021-07-06 4:12 Sam James
2021-05-07 14:40 Sam James
2021-05-07 14:38 Sam James
2021-03-02 3:49 Sam James
2021-03-02 3:49 Sam James
2021-03-01 23:37 Sam James
2021-02-18 18:57 David Seifert
2021-02-14 2:10 Sam James
2021-02-13 20:33 Sam James
2021-02-13 17:58 Sam James
2021-02-13 17:56 Sam James
2021-01-12 12:02 Sam James
2021-01-06 15:17 Fabian Groffen
2020-12-09 20:25 罗百科
2020-07-20 21:34 Andreas Sturmlechner
2020-07-20 6:42 Agostino Sarubbo
2020-07-19 7:43 Agostino Sarubbo
2020-07-17 18:35 Agostino Sarubbo
2020-07-17 15:09 Agostino Sarubbo
2020-07-17 3:03 Sam James
2020-06-21 16:06 Andreas Sturmlechner
2020-06-21 16:06 Andreas Sturmlechner
2020-06-21 16:06 Andreas Sturmlechner
2020-04-29 10:37 Andrey Grozin
2020-04-13 18:46 Andreas Sturmlechner
2020-03-29 17:56 Mart Raudsepp
2020-02-12 7:51 Agostino Sarubbo
2020-02-11 19:50 Agostino Sarubbo
2020-02-11 19:43 Agostino Sarubbo
2020-02-06 9:04 Sergei Trofimovich
2020-02-03 15:24 Agostino Sarubbo
2020-02-03 13:32 Agostino Sarubbo
2020-02-03 12:30 Agostino Sarubbo
2020-01-30 20:07 Andreas Sturmlechner
2020-01-30 16:31 Andrey Grozin
2020-01-27 9:53 Sergei Trofimovich
2020-01-01 11:01 Andreas Sturmlechner
2019-12-24 16:52 Andrey Grozin
2019-10-20 14:21 Andreas Sturmlechner
2019-10-20 14:21 Andreas Sturmlechner
2019-10-20 14:21 Andreas Sturmlechner
2019-10-20 14:21 Andreas Sturmlechner
2019-10-20 14:21 Andreas Sturmlechner
2019-05-16 19:30 Aaron Bauman
2019-05-06 16:16 Andrey Grozin
2018-05-20 11:13 Mikle Kolyada
2018-04-26 5:20 Matt Turner
2018-04-15 18:58 Thomas Deutschmann
2018-04-15 18:40 Sergei Trofimovich
2018-04-14 17:37 Aaron Bauman
2018-03-28 4:16 Matt Turner
2017-07-20 20:57 Sergei Trofimovich
2017-07-11 8:41 Alexis Ballier
2016-02-27 13:31 Amy Winston
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1687021614.ca935654e70d7c6f0b7868aceb6a1748a82d384a.asturm@gentoo \
--to=asturm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox