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/gnuastro/
Date: Mon, 29 Aug 2022 18:40:00
Message-Id: 1661798350.f077d8b5ed4d49aa559ab695729ff0291afd834c.asturm@gentoo
1 commit: f077d8b5ed4d49aa559ab695729ff0291afd834c
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 28 22:28:35 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=f077d8b5
7
8 sci-astronomy/gnuastro: drop 0.3, EAPI-6--
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 sci-astronomy/gnuastro/Manifest | 1 -
13 sci-astronomy/gnuastro/gnuastro-0.3.ebuild | 52 ------------------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/sci-astronomy/gnuastro/Manifest b/sci-astronomy/gnuastro/Manifest
17 index bcdb52172119..77e427454a58 100644
18 --- a/sci-astronomy/gnuastro/Manifest
19 +++ b/sci-astronomy/gnuastro/Manifest
20 @@ -1,2 +1 @@
21 DIST gnuastro-0.16.tar.gz 6089988 BLAKE2B be85152e6638a3462cf00555748a6be8d8c9d30b7c43332f1a16140bd22af2d7e948e1e089045b51b22db1541645dc82668cf2cb8c73abf3b07418343f1c02d9 SHA512 8848528b1a117aaebed854db2e8e4586d3b3f860f25f07a1362b7cd1ffd4f0f7ef214fc0b91b3bfc4aaf1ba9c8bbeaf9dec82979665db1c6fe3703f39354a867
22 -DIST gnuastro-0.3.tar.gz 4525361 BLAKE2B 432078bf330fc8e6886246e4aec767c86b9c19c0c438a3c37b1912e3433e82c68db1090351b0e2e8e4fbb8a7906aa3ac031db8abd5e8c15380e1e8c349b9ebe5 SHA512 08556fd0de196c331cfd68e4b385fbef5c130fa9c914889367f4e3637b8dc6270a2424ef92c6641ec803c355d0577cebf3ace5ad76a7024f0414bb516338beac
23
24 diff --git a/sci-astronomy/gnuastro/gnuastro-0.3.ebuild b/sci-astronomy/gnuastro/gnuastro-0.3.ebuild
25 deleted file mode 100644
26 index fe896068c87c..000000000000
27 --- a/sci-astronomy/gnuastro/gnuastro-0.3.ebuild
28 +++ /dev/null
29 @@ -1,52 +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 -inherit autotools
36 -
37 -DESCRIPTION="GNU Astronomy Utilities"
38 -HOMEPAGE="https://www.gnu.org/software/gnuastro"
39 -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="GPL-3"
42 -SLOT="0/1"
43 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
44 -
45 -IUSE="static-libs threads"
46 -
47 -# jpeg, pdf, and libgit2 are forced deps
48 -# because they are automagically detected.
49 -
50 -RDEPEND="
51 - app-text/ghostscript-gpl
52 - dev-libs/libgit2:=
53 - sci-astronomy/wcslib:0=
54 - sci-libs/cfitsio:0=
55 - sci-libs/gsl:0=
56 - virtual/jpeg:0=
57 -"
58 -DEPEND="${RDEPEND}"
59 -
60 -src_prepare() {
61 - default
62 - sed -i -e 's/-O3//' configure.ac || die
63 - eautoreconf
64 -}
65 -
66 -src_configure() {
67 - local myeconfargs=(
68 - --enable-bin-op-alltypes
69 - $(use_enable static-libs static)
70 - $(use_enable threads)
71 - )
72 - econf ${myeconfargs[@]}
73 -}
74 -
75 -src_install() {
76 - default
77 -
78 - if ! use static-libs; then
79 - find "${ED}" -name '*.la' -delete || die
80 - fi
81 -}