Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/ufconfig/
Date: Sat, 12 Oct 2019 07:01:54
Message-Id: 1570863675.c2ef08a05fc10bc07673a38ea9db4e94449441df.mgorny@gentoo
1 commit: c2ef08a05fc10bc07673a38ea9db4e94449441df
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 12 07:01:15 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 12 07:01:15 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2ef08a0
7
8 sci-libs/ufconfig: Drop old (EAPI 0)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sci-libs/ufconfig/Manifest | 3 ---
13 sci-libs/ufconfig/ufconfig-3.5.0.ebuild | 43 ---------------------------------
14 sci-libs/ufconfig/ufconfig-3.6.1.ebuild | 40 ------------------------------
15 sci-libs/ufconfig/ufconfig-3.7.0.ebuild | 43 ---------------------------------
16 4 files changed, 129 deletions(-)
17
18 diff --git a/sci-libs/ufconfig/Manifest b/sci-libs/ufconfig/Manifest
19 index 6a6709e8b6f..6a421b189c1 100644
20 --- a/sci-libs/ufconfig/Manifest
21 +++ b/sci-libs/ufconfig/Manifest
22 @@ -1,4 +1 @@
23 -DIST UFconfig-3.5.0.tar.gz 8001 BLAKE2B 39b7c5076f746e872d1bd1427d8601a30359aa21e1d3b90933a5d2ceee7afb27d757a928613ff09a1534afcb160b67a82a2dc567ff8a08dba8efd78a184e9a3f SHA512 d9edd64d6f7c0a48c149990f55f7d0684459205b2a5a029f50412310db580d28f6336164c96784be5bd7441e175c33f6689a752b50d6af5c168d44b7b51f6d37
24 -DIST UFconfig-3.6.1.tar.gz 8163 BLAKE2B fa22b18b99fa76b0e17e521adb79c3a5d8ebbcdc15418a68365c1f9bcb0fed77aec8a0fd6313614ed83bdf3dd5019fe42ca249917b63a60dda98526772ae855d SHA512 b4b4af9f460f8aea4de7dcd1dcc1ee1aea319bd05de1781ffc2217d0ed1264a6cebcc4139b62fbcc2a6b1f614ff89eb6f277176a59a17b237729ec9822a93920
25 -DIST UFconfig-3.7.0.tar.gz 8557 BLAKE2B 0ae5b942d1c7f89d6e7df37aacf008a4d8307a5e4fcbce08dffce8968d50b039d68cfbc21412a0957dfe6eba67fa411b48c0e24c1d8775c8c2ddd892054997a6 SHA512 f5aa3723484e05a889434e12fc85521d378430b18d707d7d8807c755ea7046aa28854f8bcb459a42e8764a82f07597b73183a9c7ef070a4b376e76b475cb8d24
26 DIST UFconfig-3.7.1.tar.gz 8523 BLAKE2B fee3520b4c1305c4684ef4d0fd6cbcc27cd6db957b838642241f75cd6de4468fb5dd61282a0c1484318e56c5b06b8354a78eed2e6df6a5d21e4250883ad1c42a SHA512 a9d562205b6d047d8064d6f61e4f9fdb782774637f0522abef6031e8633c7372db108c69b48098e8b41ffdf786ce7bda0d8df9a3dee634dfb11b5e6073996a22
27
28 diff --git a/sci-libs/ufconfig/ufconfig-3.5.0.ebuild b/sci-libs/ufconfig/ufconfig-3.5.0.ebuild
29 deleted file mode 100644
30 index b78aeb3a559..00000000000
31 --- a/sci-libs/ufconfig/ufconfig-3.5.0.ebuild
32 +++ /dev/null
33 @@ -1,43 +0,0 @@
34 -# Copyright 1999-2018 Gentoo Foundation
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=0
38 -
39 -inherit multilib toolchain-funcs
40 -
41 -MY_PN=UFconfig
42 -DESCRIPTION="Common configuration scripts for the SuiteSparse libraries"
43 -HOMEPAGE="http://www.cise.ufl.edu/research/sparse/UFconfig"
44 -SRC_URI="http://www.cise.ufl.edu/research/sparse/${MY_PN}/${MY_PN}-${PV}.tar.gz"
45 -
46 -LICENSE="LGPL-2.1"
47 -SLOT="0"
48 -KEYWORDS="~alpha amd64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-macos"
49 -IUSE="static-libs"
50 -DEPEND=""
51 -
52 -S="${WORKDIR}/${MY_PN}"
53 -
54 -src_compile() {
55 - echo "$(tc-getCC) ${CFLAGS} -fPIC -c UFconfig.c -o UFconfig.lo"
56 - $(tc-getCC) ${CFLAGS} -fPIC -c UFconfig.c -o UFconfig.lo || die
57 - echo "$(tc-getCC) ${LDFLAGS} -shared -Wl,-soname,libufconfig.so.${PV} -o libufconfig.so.${PV} UFconfig.lo"
58 - $(tc-getCC) ${LDFLAGS} -shared -Wl,-soname,libufconfig.so.${PV} -o libufconfig.so.${PV} UFconfig.lo || die
59 - if use static-libs; then
60 - echo "$(tc-getCC) ${CFLAGS} -c UFconfig.c -o UFconfig.o"
61 - $(tc-getCC) ${CFLAGS} -c UFconfig.c -o UFconfig.o || die
62 - echo "$(tc-getAR) libufconfig.a UFconfig.o"
63 - $(tc-getAR) cr libufconfig.a UFconfig.o
64 - fi
65 -}
66 -
67 -src_install() {
68 - dolib.so libufconfig.so.${PV} || die
69 - dosym libufconfig.so.${PV} /usr/$(get_libdir)/libufconfig.so
70 - if use static-libs; then
71 - dolib.a libufconfig.a || die
72 - fi
73 - insinto /usr/include
74 - doins UFconfig.h || die
75 - dodoc README.txt || die
76 -}
77
78 diff --git a/sci-libs/ufconfig/ufconfig-3.6.1.ebuild b/sci-libs/ufconfig/ufconfig-3.6.1.ebuild
79 deleted file mode 100644
80 index 0d9d8fc8287..00000000000
81 --- a/sci-libs/ufconfig/ufconfig-3.6.1.ebuild
82 +++ /dev/null
83 @@ -1,40 +0,0 @@
84 -# Copyright 1999-2012 Gentoo Foundation
85 -# Distributed under the terms of the GNU General Public License v2
86 -
87 -EAPI=4
88 -inherit multilib toolchain-funcs
89 -
90 -MY_PN=UFconfig
91 -DESCRIPTION="Common configuration scripts for the SuiteSparse libraries"
92 -HOMEPAGE="http://www.cise.ufl.edu/research/sparse/UFconfig"
93 -SRC_URI="http://www.cise.ufl.edu/research/sparse/${MY_PN}/${MY_PN}-${PV}.tar.gz"
94 -
95 -LICENSE="LGPL-2.1"
96 -SLOT="0"
97 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
98 -IUSE="static-libs"
99 -DEPEND=""
100 -
101 -S="${WORKDIR}/${MY_PN}"
102 -
103 -src_compile() {
104 - echo "$(tc-getCC) ${CFLAGS} -fPIC -c UFconfig.c -o UFconfig.lo"
105 - $(tc-getCC) ${CFLAGS} -fPIC -c UFconfig.c -o UFconfig.lo || die
106 - echo "$(tc-getCC) ${LDFLAGS} -shared -Wl,-soname,libufconfig.so.${PV} -o libufconfig.so.${PV} UFconfig.lo"
107 - $(tc-getCC) ${LDFLAGS} -shared -Wl,-soname,libufconfig.so.${PV} -o libufconfig.so.${PV} UFconfig.lo || die
108 - if use static-libs; then
109 - echo "$(tc-getCC) ${CFLAGS} -c UFconfig.c -o UFconfig.o"
110 - $(tc-getCC) ${CFLAGS} -c UFconfig.c -o UFconfig.o || die
111 - echo "$(tc-getAR) libufconfig.a UFconfig.o"
112 - $(tc-getAR) cr libufconfig.a UFconfig.o
113 - fi
114 -}
115 -
116 -src_install() {
117 - dolib.so libufconfig.so.${PV}
118 - dosym libufconfig.so.${PV} /usr/$(get_libdir)/libufconfig.so
119 - use static-libs && dolib.a libufconfig.a
120 - insinto /usr/include
121 - doins UFconfig.h
122 - dodoc README.txt
123 -}
124
125 diff --git a/sci-libs/ufconfig/ufconfig-3.7.0.ebuild b/sci-libs/ufconfig/ufconfig-3.7.0.ebuild
126 deleted file mode 100644
127 index 4fe59aac395..00000000000
128 --- a/sci-libs/ufconfig/ufconfig-3.7.0.ebuild
129 +++ /dev/null
130 @@ -1,43 +0,0 @@
131 -# Copyright 1999-2012 Gentoo Foundation
132 -# Distributed under the terms of the GNU General Public License v2
133 -
134 -EAPI=4
135 -inherit multilib toolchain-funcs
136 -
137 -MY_PN=UFconfig
138 -DESCRIPTION="Common configuration scripts for the SuiteSparse libraries"
139 -HOMEPAGE="http://www.cise.ufl.edu/research/sparse/UFconfig"
140 -SRC_URI="http://www.cise.ufl.edu/research/sparse/${MY_PN}/${MY_PN}-${PV}.tar.gz"
141 -
142 -LICENSE="LGPL-2.1"
143 -SLOT="0"
144 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
145 -IUSE="static-libs"
146 -DEPEND=""
147 -
148 -S="${WORKDIR}/${MY_PN}"
149 -
150 -src_compile() {
151 - echo "$(tc-getCC) ${CFLAGS} -fPIC -c UFconfig.c -o UFconfig.lo"
152 - $(tc-getCC) ${CFLAGS} -fPIC -c UFconfig.c -o UFconfig.lo || die
153 - local sharedlink="-shared -Wl,-soname,libufconfig$(get_libname ${PV})"
154 - [[ ${CHOST} == *-darwin* ]] && \
155 - sharedlink="-dynamiclib -install_name ${EPREFIX}/usr/$(get_libdir)/libufconfig$(get_libname ${PV})"
156 - echo "$(tc-getCC) ${LDFLAGS} ${sharedlink} -o libufconfig$(get_libname ${PV}) UFconfig.lo"
157 - $(tc-getCC) ${LDFLAGS} ${sharedlink} -o libufconfig$(get_libname ${PV}) UFconfig.lo || die
158 - if use static-libs; then
159 - echo "$(tc-getCC) ${CFLAGS} -c UFconfig.c -o UFconfig.o"
160 - $(tc-getCC) ${CFLAGS} -c UFconfig.c -o UFconfig.o || die
161 - echo "$(tc-getAR) libufconfig.a UFconfig.o"
162 - $(tc-getAR) cr libufconfig.a UFconfig.o
163 - fi
164 -}
165 -
166 -src_install() {
167 - dolib.so libufconfig$(get_libname ${PV})
168 - dosym libufconfig$(get_libname ${PV}) /usr/$(get_libdir)/libufconfig$(get_libname)
169 - use static-libs && dolib.a libufconfig.a
170 - insinto /usr/include
171 - doins UFconfig.h
172 - dodoc README.txt
173 -}