Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/asdf/
Date: Fri, 04 Mar 2022 23:58:59
Message-Id: 1646438300.b5384918921b98ee61557894a24d895af6acb57a.sam@gentoo
1 commit: b5384918921b98ee61557894a24d895af6acb57a
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 4 04:03:54 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 4 23:58:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5384918
7
8 dev-lisp/asdf: drop 3.1.5, 3.3.1, 3.3.2, 3.3.2-r1
9
10 Closes: https://bugs.gentoo.org/828735
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-lisp/asdf/Manifest | 3 ---
14 dev-lisp/asdf/asdf-3.1.5.ebuild | 46 ---------------------------------
15 dev-lisp/asdf/asdf-3.3.1.ebuild | 50 ------------------------------------
16 dev-lisp/asdf/asdf-3.3.2-r1.ebuild | 52 --------------------------------------
17 dev-lisp/asdf/asdf-3.3.2.ebuild | 50 ------------------------------------
18 5 files changed, 201 deletions(-)
19
20 diff --git a/dev-lisp/asdf/Manifest b/dev-lisp/asdf/Manifest
21 index 4104c6372e46..730b60d701ee 100644
22 --- a/dev-lisp/asdf/Manifest
23 +++ b/dev-lisp/asdf/Manifest
24 @@ -1,4 +1 @@
25 -DIST asdf-3.1.5.tar.gz 400359 BLAKE2B 586a66799a37259694baa673f2849e183fac5fedfe5ff5c92529d47fc0954d40b48bbc095db926b9ea2214b551729c269d0925e4396a52310b72fd5f21842f49 SHA512 937d45eabea0853cd1b2e78e84cf33e7b55065857ffcf49fd87ccd60e21ae09c6dc7ab3649d48b37aeb1beaeeaf6c816e5ce035f0283707105296fb976044516
26 -DIST asdf-3.3.1.tar.gz 479255 BLAKE2B 5161b79741a52721eaa4da80a61bbe51e924967ecb744a087fdcbd99407abcc42faf39eafe6d30af7dd8af751a80caaf23e93ce42aa5f584123a1e8b528cc613 SHA512 bf5efec4518eb5312ce743c0fbe60c587bebfe26c36c833c163d67bf8631e18eeb293f2185e547f6be10da061a17f024d9f4a3a0808727d7b9b3a7d7a0faf133
27 -DIST asdf-3.3.2.tar.gz 482616 BLAKE2B 860728720ccb02debee6a826d8b27bfd8f5fea3daa529ecfc8d2f5564c77340a38582ccbccf4f311c644bdeccd7348004690929185aa70c3dc0f6b4124616df8 SHA512 f8e065383d6e82754c87d309a8b500ad213e09d1375792fd475eb169d9f880d97b26072e608046d61c83512645781cded09dcff22052e214e8e3639f2a978c74
28 DIST asdf-3.3.5.tar.gz 520233 BLAKE2B 59697b9c6a691c43efe47c0e6d9fed5b8a0f2f2432f10cb58a643857bc3d332b730b180d5d13e87656b9106eab7787359ecd3b854447f5d9c8a871b3a1510448 SHA512 27221bbf798c94e427b8e2c0e8ecb5384102dd5f8f5d2cc18c2e3d44e0aa2f3b79538e0f2cb589442eb493abe00c8a63a04f6c1558979b78cd00165c6b33103b
29
30 diff --git a/dev-lisp/asdf/asdf-3.1.5.ebuild b/dev-lisp/asdf/asdf-3.1.5.ebuild
31 deleted file mode 100644
32 index 7f74dd6f516c..000000000000
33 --- a/dev-lisp/asdf/asdf-3.1.5.ebuild
34 +++ /dev/null
35 @@ -1,46 +0,0 @@
36 -# Copyright 1999-2022 Gentoo Authors
37 -# Distributed under the terms of the GNU General Public License v2
38 -
39 -EAPI=5
40 -
41 -inherit prefix
42 -
43 -DESCRIPTION="ASDF is Another System Definition Facility for Common Lisp"
44 -HOMEPAGE="http://common-lisp.net/project/asdf/"
45 -SRC_URI="http://common-lisp.net/project/${PN}/archives/${P}.tar.gz"
46 -
47 -LICENSE="MIT"
48 -SLOT="0/${PVR}"
49 -KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
50 -IUSE="doc"
51 -
52 -DEPEND="!dev-lisp/cl-${PN}
53 - !<dev-lisp/asdf-2.33-r3
54 - doc? ( virtual/texi2dvi )"
55 -RDEPEND=""
56 -PDEPEND="~dev-lisp/uiop-${PV}"
57 -
58 -#S="${WORKDIR}"
59 -
60 -src_compile() {
61 - make
62 - use doc && make doc
63 -}
64 -
65 -src_install() {
66 - insinto /usr/share/common-lisp/source/${PN}
67 - doins -r build version.lisp-expr
68 - dodoc README.md TODO
69 -
70 - if use doc; then
71 - docinto html
72 - dodoc doc/*.{html,css,ico,png} doc/index.html
73 - docompress -x /usr/share/doc/${PF}/html
74 - fi
75 -
76 - insinto /etc/common-lisp
77 - cd "${T}"
78 - cp "${FILESDIR}"/gentoo-init.lisp "${FILESDIR}"/source-registry.conf .
79 - eprefixify gentoo-init.lisp source-registry.conf
80 - doins gentoo-init.lisp source-registry.conf
81 -}
82
83 diff --git a/dev-lisp/asdf/asdf-3.3.1.ebuild b/dev-lisp/asdf/asdf-3.3.1.ebuild
84 deleted file mode 100644
85 index 94d6a7b9a0d3..000000000000
86 --- a/dev-lisp/asdf/asdf-3.3.1.ebuild
87 +++ /dev/null
88 @@ -1,50 +0,0 @@
89 -# Copyright 1999-2021 Gentoo Authors
90 -# Distributed under the terms of the GNU General Public License v2
91 -
92 -EAPI=6
93 -
94 -inherit prefix common-lisp-3
95 -
96 -DESCRIPTION="ASDF is Another System Definition Facility for Common Lisp"
97 -HOMEPAGE="http://common-lisp.net/project/asdf/"
98 -SRC_URI="http://common-lisp.net/project/${PN}/archives/${P}.tar.gz"
99 -
100 -LICENSE="MIT"
101 -SLOT="0/${PVR}"
102 -KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
103 -IUSE="doc"
104 -
105 -DEPEND="!dev-lisp/cl-${PN}
106 - !<dev-lisp/asdf-2.33-r3
107 - doc? ( virtual/texi2dvi )"
108 -PDEPEND="virtual/commonlisp
109 - ~dev-lisp/uiop-${PV}"
110 -
111 -install_docs() {
112 - (cd doc ; dodoc *.{html,css,ico,png} "${PN}.pdf" ; dodoc -r asdf )
113 - if has_version ">=dev-lisp/sbcl-1.4.0" ; then
114 - (cd doc ; doinfo "${PN}.info" )
115 - fi
116 -}
117 -
118 -src_compile() {
119 - emake
120 - use doc && emake -C doc
121 -}
122 -
123 -src_test() {
124 - common-lisp-export-impl-args "$(common-lisp-find-lisp-impl)"
125 - test/run-tests.sh ${CL_BINARY}
126 -}
127 -
128 -src_install() {
129 - insinto "${CLSOURCEROOT}/${PN}"
130 - doins -r build version.lisp-expr
131 - dodoc README.md TODO
132 - use doc && install_docs
133 - insinto /etc/common-lisp
134 - cd "${T}" || die
135 - cp "${FILESDIR}/gentoo-init.lisp" "${FILESDIR}/source-registry.conf" . || die
136 - eprefixify gentoo-init.lisp source-registry.conf
137 - doins gentoo-init.lisp source-registry.conf
138 -}
139
140 diff --git a/dev-lisp/asdf/asdf-3.3.2-r1.ebuild b/dev-lisp/asdf/asdf-3.3.2-r1.ebuild
141 deleted file mode 100644
142 index cdc7b5348e9f..000000000000
143 --- a/dev-lisp/asdf/asdf-3.3.2-r1.ebuild
144 +++ /dev/null
145 @@ -1,52 +0,0 @@
146 -# Copyright 1999-2021 Gentoo Authors
147 -# Distributed under the terms of the GNU General Public License v2
148 -
149 -EAPI=6
150 -
151 -inherit prefix common-lisp-3
152 -
153 -DESCRIPTION="ASDF is Another System Definition Facility for Common Lisp"
154 -HOMEPAGE="http://common-lisp.net/project/asdf/"
155 -SRC_URI="http://common-lisp.net/project/${PN}/archives/${P}.tar.gz"
156 -
157 -LICENSE="MIT"
158 -SLOT="0/${PVR}"
159 -KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
160 -IUSE="doc test"
161 -RESTRICT="!test? ( test )"
162 -
163 -DEPEND="!dev-lisp/cl-${PN}
164 - !<dev-lisp/asdf-2.33-r3
165 - doc? ( virtual/texi2dvi )
166 - test? ( virtual/commonlisp )"
167 -PDEPEND="virtual/commonlisp
168 - ~dev-lisp/uiop-${PV}"
169 -
170 -install_docs() {
171 - (cd doc ; dodoc *.{html,css,ico,png} "${PN}.pdf" ; dodoc -r asdf )
172 - if has_version ">=dev-lisp/sbcl-1.4.0" ; then
173 - (cd doc ; doinfo "${PN}.info" )
174 - fi
175 -}
176 -
177 -src_compile() {
178 - emake
179 - use doc && emake -C doc
180 -}
181 -
182 -src_test() {
183 - common-lisp-export-impl-args "$(common-lisp-find-lisp-impl)"
184 - test/run-tests.sh ${CL_BINARY}
185 -}
186 -
187 -src_install() {
188 - insinto "${CLSOURCEROOT}/${PN}"
189 - doins -r build version.lisp-expr
190 - dodoc README.md TODO
191 - use doc && install_docs
192 - insinto /etc/common-lisp
193 - cd "${T}" || die
194 - cp "${FILESDIR}/gentoo-init.lisp" "${FILESDIR}/source-registry.conf" . || die
195 - eprefixify gentoo-init.lisp source-registry.conf
196 - doins gentoo-init.lisp source-registry.conf
197 -}
198
199 diff --git a/dev-lisp/asdf/asdf-3.3.2.ebuild b/dev-lisp/asdf/asdf-3.3.2.ebuild
200 deleted file mode 100644
201 index a71c652de589..000000000000
202 --- a/dev-lisp/asdf/asdf-3.3.2.ebuild
203 +++ /dev/null
204 @@ -1,50 +0,0 @@
205 -# Copyright 1999-2021 Gentoo Authors
206 -# Distributed under the terms of the GNU General Public License v2
207 -
208 -EAPI=6
209 -
210 -inherit prefix common-lisp-3
211 -
212 -DESCRIPTION="ASDF is Another System Definition Facility for Common Lisp"
213 -HOMEPAGE="http://common-lisp.net/project/asdf/"
214 -SRC_URI="http://common-lisp.net/project/${PN}/archives/${P}.tar.gz"
215 -
216 -LICENSE="MIT"
217 -SLOT="0/${PVR}"
218 -KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
219 -IUSE="doc"
220 -
221 -DEPEND="!dev-lisp/cl-${PN}
222 - !<dev-lisp/asdf-2.33-r3
223 - doc? ( virtual/texi2dvi )"
224 -PDEPEND="virtual/commonlisp
225 - ~dev-lisp/uiop-${PV}"
226 -
227 -install_docs() {
228 - (cd doc ; dodoc *.{html,css,ico,png} "${PN}.pdf" ; dodoc -r asdf )
229 - if has_version ">=dev-lisp/sbcl-1.4.0" ; then
230 - (cd doc ; doinfo "${PN}.info" )
231 - fi
232 -}
233 -
234 -src_compile() {
235 - emake
236 - use doc && emake -C doc
237 -}
238 -
239 -src_test() {
240 - common-lisp-export-impl-args "$(common-lisp-find-lisp-impl)"
241 - test/run-tests.sh ${CL_BINARY}
242 -}
243 -
244 -src_install() {
245 - insinto "${CLSOURCEROOT}/${PN}"
246 - doins -r build version.lisp-expr
247 - dodoc README.md TODO
248 - use doc && install_docs
249 - insinto /etc/common-lisp
250 - cd "${T}" || die
251 - cp "${FILESDIR}/gentoo-init.lisp" "${FILESDIR}/source-registry.conf" . || die
252 - eprefixify gentoo-init.lisp source-registry.conf
253 - doins gentoo-init.lisp source-registry.conf
254 -}