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-libs/libnova/
Date: Wed, 12 Feb 2020 15:27:04
Message-Id: 1581521151.ce7ee526adbe74cac8f11f7538ef5d6fdb6f084d.asturm@gentoo
1 commit: ce7ee526adbe74cac8f11f7538ef5d6fdb6f084d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 12 15:25:26 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 12 15:25:51 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce7ee526
7
8 sci-libs/libnova: Drop 0.15.0
9
10 Package-Manager: Portage-2.3.88, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 sci-libs/libnova/Manifest | 1 -
14 sci-libs/libnova/libnova-0.15.0.ebuild | 50 ----------------------------------
15 2 files changed, 51 deletions(-)
16
17 diff --git a/sci-libs/libnova/Manifest b/sci-libs/libnova/Manifest
18 index 344cba8f312..23aa8e94f86 100644
19 --- a/sci-libs/libnova/Manifest
20 +++ b/sci-libs/libnova/Manifest
21 @@ -1,2 +1 @@
22 -DIST libnova-0.15.0.tar.gz 1533794 BLAKE2B e87ffd3b8a895ca7ac9913ad3aacff526718442546df5687f2156718f721665ffff27e69af4bcb65bac5df1fda89fc6fc8fe9876a4b74392986771cf157dc48c SHA512 77ab0ccbfe462c03a21e88656cb4d6389994ea1da0ee8da997f19a83d24ad8fd9e505e70e1580b75332e826e5b7859b5f2af4417f65eb811440493ba586f2574
23 DIST libnova-0.16.0.tar.xz 909212 BLAKE2B ae7efef8295dafd3715c37506d7403fc38a951c9a7c43e41e3c6ca3c922243a396052bbb71f07901bbd3aae2b2bee183efbd9e3e9c50dce72379f6ced80d5701 SHA512 f1c33421b7f09097223afe1bd5c31fa9a4591e4c965ba8a5ae1f164367717aa03986970ffe9c01e400b27aea43843fbb67cfbfe6ef44ec2c519f524aab9ea86f
24
25 diff --git a/sci-libs/libnova/libnova-0.15.0.ebuild b/sci-libs/libnova/libnova-0.15.0.ebuild
26 deleted file mode 100644
27 index a0f7d8f6be4..00000000000
28 --- a/sci-libs/libnova/libnova-0.15.0.ebuild
29 +++ /dev/null
30 @@ -1,50 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit autotools
37 -
38 -DESCRIPTION="Celestial Mechanics and Astronomical Calculation Library"
39 -HOMEPAGE="http://libnova.sourceforge.net/"
40 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="LGPL-2"
43 -SLOT="0"
44 -KEYWORDS="amd64 hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
45 -IUSE="doc examples static-libs"
46 -
47 -DEPEND="doc? ( app-doc/doxygen )"
48 -RDEPEND=""
49 -
50 -src_prepare() {
51 - default
52 - sed -i -e '/CFLAGS=-Wall/d' configure.in || die
53 - mv configure.{in,ac} || die
54 - eautoreconf
55 -}
56 -
57 -src_configure() {
58 - econf $(use_enable static-libs static)
59 -}
60 -
61 -src_compile() {
62 - default
63 - use doc && emake -C doc doc
64 -}
65 -
66 -src_install() {
67 - use doc && HTML_DOCS=( doc/html/. )
68 - default
69 -
70 - if use examples; then
71 - emake clean
72 - rm examples/Makefile* || die
73 - dodoc -r examples
74 - docompress -x /usr/share/doc/${PF}/examples
75 - fi
76 -
77 - if ! use static-libs; then
78 - find "${D}" -name '*.la' -delete || die
79 - fi
80 -}