public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/proj/
Date: Thu, 18 Feb 2021 18:57:01 +0000 (UTC)	[thread overview]
Message-ID: <1613674585.64bc798517604a967479a39034c5d916f8a34071.soap@gentoo> (raw)

commit:     64bc798517604a967479a39034c5d916f8a34071
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Thu Feb 18 18:56:25 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Feb 18 18:56:25 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64bc7985

sci-libs/proj: Remove old

Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 sci-libs/proj/Manifest          |  2 --
 sci-libs/proj/proj-7.0.1.ebuild | 53 -----------------------------------------
 sci-libs/proj/proj-7.1.1.ebuild | 53 -----------------------------------------
 3 files changed, 108 deletions(-)

diff --git a/sci-libs/proj/Manifest b/sci-libs/proj/Manifest
index 9c5e1d4ebb3..597c5f10aec 100644
--- a/sci-libs/proj/Manifest
+++ b/sci-libs/proj/Manifest
@@ -1,5 +1,3 @@
-DIST proj-7.0.1.tar.gz 5312488 BLAKE2B 421a3b5324ab7c952a8b45036e6db2c8cfc1fd2db3d050d2e644cb1c1c78fe669a20c6d8428debf75233a975a989e3ad2ce6a83cd944825641ffd3107cc44a02 SHA512 034d1b916980c80fe9f8e67d2897814e611920af3e852f152fcd9e3fc4ec8cbc39bbd8f8296949a3c3f5e6708bb9d84e61c4cba9c01476a3888448135e97dc33
-DIST proj-7.1.1.tar.gz 5509592 BLAKE2B f745df3ef276b8a3213aff5ed92890f9c8f4b82a61a1e55fd013925befb018f01d7e60264dc996ea5aa9630b3ee3c149a7f37ca87d89c9df2f29367d4b26b19b SHA512 9f092318835006ffe864bb54ac456054196d30ff367546b41f1e49a5f1cc99a4b0b19e3d09c0ce7a336d1562df5784805560e7f725380411b1013a6baf90cf56
 DIST proj-7.2.1.tar.gz 5714666 BLAKE2B 9379ef758b1221b9487f162a27e7afa737e668ad7a13fc7adbd8e1e2c1c4699263d5d3105d03781b423f284205de3c79fc68850b9fba6aa05f1dc553b77b0842 SHA512 59b9b31b0183e620a2f4a25a08620c170773fe4f99e8eca59e9ed6815f43bb379ea21ef71e8f759dbd747855b982657d7503bac3acc542218e0d862105f25324
 DIST proj-datumgrid-1.8.tar.gz 6604329 BLAKE2B 78df259a811a79457d011b4f675f1a72b6613928bb0083d01bfe65bb4c333628725b300efdb7cf10ebc6f26ff03733886c20f25c7aef80875e81e59bda9fd7d3 SHA512 23153f5b57d210e37cd6e9e0fced23bdabb1c67476e9fb50eb83a68ae066a5c3675822472f5d558d10ddf36ac1d73d538b75304d112a1bfcd8d0bbd26c6481a5
 DIST proj-datumgrid-europe-1.6.tar.gz 189057258 BLAKE2B 66daf2341b05d8d5f929f6d67e1913656c2380a3663b4359cb97576ff5954dbea5890862869bb1077f6cde760dada4d9f13201c5b2c29ef3458a8b43089e459c SHA512 463d2575d5ce6f5984e69897c34ef80ec31a77f5ba00a07a5f55e97c3033dbae40b7d17891e5495bc47e6faf917968b1cdb7b3be9b2a4838e3b093b74753c2a8

diff --git a/sci-libs/proj/proj-7.0.1.ebuild b/sci-libs/proj/proj-7.0.1.ebuild
deleted file mode 100644
index e7f70f68ee1..00000000000
--- a/sci-libs/proj/proj-7.0.1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DATUMGRID="${PN}-datumgrid-1.8.tar.gz"
-EUROPE_DATUMGRID="${PN}-datumgrid-europe-1.6.tar.gz"
-
-DESCRIPTION="PROJ coordinate transformation software"
-HOMEPAGE="https://proj4.org/"
-SRC_URI="
-	https://download.osgeo.org/proj/${P}.tar.gz
-	https://download.osgeo.org/proj/${DATUMGRID}
-	europe? ( https://download.osgeo.org/proj/${EUROPE_DATUMGRID} )
-"
-
-LICENSE="MIT"
-SLOT="0/19"
-KEYWORDS="amd64 ~arm arm64 ~ia64 ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="curl europe static-libs test +tiff"
-REQUIRED_USE="test? ( !europe )"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-db/sqlite:3
-	curl? ( net-misc/curl )
-	tiff? ( media-libs/tiff )
-"
-DEPEND="${RDEPEND}"
-
-src_unpack() {
-	unpack ${P}.tar.gz
-	cd "${S}"/data || die
-	mv README README.DATA || die
-	unpack ${DATUMGRID}
-	use europe && unpack ${EUROPE_DATUMGRID}
-}
-
-src_configure() {
-	econf \
-		$(use_with curl) \
-		$(use_enable static-libs static) \
-		$(use_enable tiff)
-}
-
-src_install() {
-	default
-	cd data || die
-	dodoc README.{DATA,DATUMGRID}
-	use europe && dodoc README.EUROPE
-	find "${D}" -name '*.la' -type f -delete || die
-}

diff --git a/sci-libs/proj/proj-7.1.1.ebuild b/sci-libs/proj/proj-7.1.1.ebuild
deleted file mode 100644
index 7709f61d762..00000000000
--- a/sci-libs/proj/proj-7.1.1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DATUMGRID="${PN}-datumgrid-1.8.tar.gz"
-EUROPE_DATUMGRID="${PN}-datumgrid-europe-1.6.tar.gz"
-
-DESCRIPTION="PROJ coordinate transformation software"
-HOMEPAGE="https://proj4.org/"
-SRC_URI="
-	https://download.osgeo.org/proj/${P}.tar.gz
-	https://download.osgeo.org/proj/${DATUMGRID}
-	europe? ( https://download.osgeo.org/proj/${EUROPE_DATUMGRID} )
-"
-
-LICENSE="MIT"
-SLOT="0/19"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="curl europe static-libs test +tiff"
-REQUIRED_USE="test? ( !europe )"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-db/sqlite:3
-	curl? ( net-misc/curl )
-	tiff? ( media-libs/tiff )
-"
-DEPEND="${RDEPEND}"
-
-src_unpack() {
-	unpack ${P}.tar.gz
-	cd "${S}"/data || die
-	mv README README.DATA || die
-	unpack ${DATUMGRID}
-	use europe && unpack ${EUROPE_DATUMGRID}
-}
-
-src_configure() {
-	econf \
-		$(use_with curl) \
-		$(use_enable static-libs static) \
-		$(use_enable tiff)
-}
-
-src_install() {
-	default
-	cd data || die
-	dodoc README.{DATA,DATUMGRID}
-	use europe && dodoc README.EUROPE
-	find "${D}" -name '*.la' -type f -delete || die
-}


             reply	other threads:[~2021-02-18 18:57 UTC|newest]

Thread overview: 103+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-18 18:57 David Seifert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-09-04  7:55 [gentoo-commits] repo/gentoo:master commit in: sci-libs/proj/ 罗百科
2023-06-17 17:07 Andreas Sturmlechner
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-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=1613674585.64bc798517604a967479a39034c5d916f8a34071.soap@gentoo \
    --to=soap@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