Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libsc/
Date: Thu, 23 Apr 2020 21:41:11
Message-Id: 1587678038.8da3c91732fa5253b21ed24771cff7341b345f03.tamiko@gentoo
1 commit: 8da3c91732fa5253b21ed24771cff7341b345f03
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 23 21:40:14 2020 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 23 21:40:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8da3c917
7
8 sci-libs/libsc: drop old
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>
12
13 sci-libs/libsc/Manifest | 2 --
14 sci-libs/libsc/libsc-1.0-r1.ebuild | 71 ------------------------------------
15 sci-libs/libsc/libsc-1.1-r1.ebuild | 73 --------------------------------------
16 3 files changed, 146 deletions(-)
17
18 diff --git a/sci-libs/libsc/Manifest b/sci-libs/libsc/Manifest
19 index e05dc541788..b334e463e47 100644
20 --- a/sci-libs/libsc/Manifest
21 +++ b/sci-libs/libsc/Manifest
22 @@ -1,4 +1,2 @@
23 -DIST libsc-1.0.tar.gz 257930 BLAKE2B b67ee98d8a31dcd09af70783a253b7289657c51e345c59b6551ab8be3a2067ce20d75c3f6323f4113501d57baf31d95c5a40b025c77f37a693616ae2bb118266 SHA512 bf5af600e9cbd4038b1bd40c88776b21be5d474e34f9aacf287b890d262a22dc50ca27982c2eb9adba9735c8d9bb1fc31de2a27b24cdab534e3b2f610d76db7d
24 -DIST libsc-1.1.tar.gz 263643 BLAKE2B 827c0e01154983dd309301c6ecfa380d3489b5b764f131c2df2554b002a6c726a44272963cef4b4a853af5fb4c9ba98c77b01e107fc555432317662d985de2a9 SHA512 a3d8bea406a1987e68e88dd587aebe28c796f2a5bddfc381b34b5eb1448e0ac23889cc6f97fc1e4010289f83996180db42cbb001d0518360349b993dd37d4579
25 DIST libsc-2.0.tar.gz 296392 BLAKE2B b5e1ca5cf6802ed38c32db5e7a77aec2fc636d88f2562314088dc16d13a0dccd24706276b05f8ddd70bc3769270a378c0089873fb2a21ebc93d6ca2622d7a58e SHA512 e4cfe42a1c1fe17412e1ffb6ebebe1f760861a7fb707a6f8fd01cdebda96b166ee05e7ff034f3b9e30de5e9baa82c9a2cebe93d40772dbd206603321de40559c
26 DIST libsc-2.2.tar.gz 311542 BLAKE2B 0879be69208f0964d73cc297a64b158ad88344e876a90dd4bd39c80fc0cf8237f4551cb684dee36e08068fa04644b887ec56230335a9984363055c1248aa6185 SHA512 97953794fdeb985bedb1dc9378f10ed4824446c63762d7813aced3309c2d6b27368c91fecb22587dccdf8b3b42aaaba9e782b739086cf542570360795897ac14
27
28 diff --git a/sci-libs/libsc/libsc-1.0-r1.ebuild b/sci-libs/libsc/libsc-1.0-r1.ebuild
29 deleted file mode 100644
30 index 6b3cdada535..00000000000
31 --- a/sci-libs/libsc/libsc-1.0-r1.ebuild
32 +++ /dev/null
33 @@ -1,71 +0,0 @@
34 -# Copyright 1999-2020 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=6
38 -
39 -inherit autotools eutils toolchain-funcs
40 -
41 -DESCRIPTION="Support for parallel scientific applications"
42 -HOMEPAGE="http://www.p4est.org/"
43 -SRC_URI="https://github.com/cburstedde/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="LGPL-2.1+"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
48 -IUSE="debug examples mpi romio static-libs"
49 -
50 -REQUIRED_USE="romio? ( mpi )"
51 -
52 -RDEPEND="
53 - dev-lang/lua:*
54 - sys-apps/util-linux
55 - virtual/blas
56 - virtual/lapack
57 - mpi? ( virtual/mpi[romio?] )"
58 -
59 -DEPEND="
60 - ${RDEPEND}
61 - virtual/pkgconfig"
62 -
63 -DOCS=( AUTHORS NEWS README )
64 -
65 -src_prepare() {
66 - default
67 -
68 - # Inject a version number into the build system
69 - echo "${PV}" > ${S}/.tarball-version
70 - eautoreconf
71 -}
72 -
73 -src_configure() {
74 - local myeconfargs=(
75 - $(use_enable debug)
76 - $(use_enable mpi)
77 - $(use_enable romio mpiio)
78 - $(use_enable static-libs static)
79 - --with-blas="$($(tc-getPKG_CONFIG) --libs blas)"
80 - --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)"
81 - )
82 - econf "${myeconfargs[@]}"
83 -}
84 -
85 -src_install() {
86 - default
87 -
88 - if use examples; then
89 - docinto examples
90 - dodoc -r example/*
91 - docompress -x /usr/share/doc/${PF}/examples
92 - else
93 - # Remove compiled example binaries in case of -examples:
94 - rm -r "${ED}"/usr/bin || die "rm failed"
95 - fi
96 -
97 - # Remove ac files, bug #619806
98 - rm -r "${ED}"/usr/share/aclocal || die "rm failed"
99 -
100 - # Fix wrong installation paths:
101 - dodir /usr/share/libsc
102 - mv "${ED}"/etc/* "${ED}"/usr/share/libsc || die "mv failed"
103 - rmdir "${ED}"/etc/ || die "rmdir failed"
104 -}
105
106 diff --git a/sci-libs/libsc/libsc-1.1-r1.ebuild b/sci-libs/libsc/libsc-1.1-r1.ebuild
107 deleted file mode 100644
108 index 970f493e0dd..00000000000
109 --- a/sci-libs/libsc/libsc-1.1-r1.ebuild
110 +++ /dev/null
111 @@ -1,73 +0,0 @@
112 -# Copyright 1999-2020 Gentoo Authors
113 -# Distributed under the terms of the GNU General Public License v2
114 -
115 -EAPI=6
116 -
117 -inherit autotools eutils toolchain-funcs
118 -
119 -DESCRIPTION="Support for parallel scientific applications"
120 -HOMEPAGE="http://www.p4est.org/"
121 -SRC_URI="https://github.com/cburstedde/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
122 -
123 -LICENSE="LGPL-2.1+"
124 -SLOT="0"
125 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
126 -IUSE="debug examples mpi romio static-libs"
127 -
128 -REQUIRED_USE="romio? ( mpi )"
129 -
130 -RDEPEND="
131 - dev-lang/lua:*
132 - sys-apps/util-linux
133 - virtual/blas
134 - virtual/lapack
135 - mpi? ( virtual/mpi[romio?] )"
136 -
137 -DEPEND="
138 - ${RDEPEND}
139 - virtual/pkgconfig"
140 -
141 -DOCS=( AUTHORS NEWS README )
142 -
143 -AUTOTOOLS_AUTORECONF=true
144 -
145 -src_prepare() {
146 - default
147 -
148 - # Inject a version number into the build system
149 - echo "${PV}" > ${S}/.tarball-version
150 - eautoreconf
151 -}
152 -
153 -src_configure() {
154 - local myeconfargs=(
155 - $(use_enable debug)
156 - $(use_enable mpi)
157 - $(use_enable romio mpiio)
158 - $(use_enable static-libs static)
159 - --with-blas="$($(tc-getPKG_CONFIG) --libs blas)"
160 - --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)"
161 - )
162 - econf "${myeconfargs[@]}"
163 -}
164 -
165 -src_install() {
166 - default
167 -
168 - if use examples; then
169 - docinto examples
170 - dodoc -r example/*
171 - docompress -x /usr/share/doc/${PF}/examples
172 - else
173 - # Remove compiled example binaries in case of -examples:
174 - rm -r "${ED}"/usr/bin || die "rm failed"
175 - fi
176 -
177 - # Remove ac files, bug #619806
178 - rm -r "${ED}"/usr/share/aclocal || die "rm failed"
179 -
180 - # Fix wrong installation paths:
181 - dodir /usr/share/libsc
182 - mv "${ED}"/etc/* "${ED}"/usr/share/libsc || die "mv failed"
183 - rmdir "${ED}"/etc/ || die "rmdir failed"
184 -}