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-astronomy/pal/
Date: Mon, 29 Aug 2022 18:39:59
Message-Id: 1661798350.e4c24a8f11c2b5071eafc0615b484c7310d40791.asturm@gentoo
1 commit: e4c24a8f11c2b5071eafc0615b484c7310d40791
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 28 22:29:04 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 29 18:39:10 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4c24a8f
7
8 sci-astronomy/pal: drop 0.9.7, EAPI-6--
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 sci-astronomy/pal/Manifest | 1 -
13 sci-astronomy/pal/pal-0.9.7.ebuild | 34 ----------------------------------
14 2 files changed, 35 deletions(-)
15
16 diff --git a/sci-astronomy/pal/Manifest b/sci-astronomy/pal/Manifest
17 index c64760cd991c..ffe142aee0a2 100644
18 --- a/sci-astronomy/pal/Manifest
19 +++ b/sci-astronomy/pal/Manifest
20 @@ -1,2 +1 @@
21 -DIST pal-0.9.7.tar.gz 1220443 BLAKE2B 99ffccf0eff340f21ea99bfa219d651d0773957152bdc840b2cc7596f14c0389846128947fb63607856e76ba6a98bd113fd04eddf819f71eaa5f16b957ebc78c SHA512 d3f13e7ff321500acc71198240392fe9a3304c4142cf5b1f1c3950ddb1351dddac8565ef27b1c724d608cc1053d15647c777c4d0dc466a99a1b08b64e62ec37b
22 DIST pal-0.9.8.tar.gz 1267834 BLAKE2B 0f1735b564881785ddcfab5c73480905b47c7e7a1d2b9183069f5a620584cf552df9ecccac111b33f46d59a696a40762a0c95698a153a293636071a219ca39fb SHA512 659ca2f97ac58558a638b400f83773af39002785ae3734a195ff8bfbc968af76a6c2ec5ab2dfcb7b81908391c55f31c7d4a4172705bd5fab306ef2233587e2d3
23
24 diff --git a/sci-astronomy/pal/pal-0.9.7.ebuild b/sci-astronomy/pal/pal-0.9.7.ebuild
25 deleted file mode 100644
26 index 3ab899f976be..000000000000
27 --- a/sci-astronomy/pal/pal-0.9.7.ebuild
28 +++ /dev/null
29 @@ -1,34 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -DESCRIPTION="Positional Astronomy Library"
36 -HOMEPAGE="https://github.com/Starlink/pal"
37 -SRC_URI="https://github.com/Starlink/${PN}/releases/download/v${PV}/${P}.tar.gz"
38 -
39 -LICENSE="GPL-2"
40 -SLOT="0"
41 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
42 -IUSE="doc static-libs"
43 -RDEPEND="sci-astronomy/erfa:="
44 -DEPEND="${RDEPEND}"
45 -
46 -src_configure() {
47 - econf --without-starlink \
48 - --without-stardocs \
49 - --with-erfa \
50 - $(use_enable static-libs static)
51 -}
52 -
53 -src_install() {
54 - default
55 -
56 - # remove cruft from non-fhs compliant
57 - rm -r "${ED}"usr/share/pal || die
58 - rm -r "${ED}"usr/{docs,manifests,news} || die
59 -
60 - if ! use static-libs; then
61 - find "${ED}" -name '*.la' -delete || die
62 - fi
63 -}