Gentoo Archives: gentoo-commits

From: Anna Vyalkova <cyber+gentoo@×××××.in>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/boinc-zip/
Date: Mon, 30 May 2022 17:47:36
Message-Id: 1653932818.8dbcb6ce05f6e35cd55f61a57cd8e45f545dfe49.cybertailor@gentoo
1 commit: 8dbcb6ce05f6e35cd55f61a57cd8e45f545dfe49
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Mon May 30 16:56:08 2022 +0000
4 Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
5 CommitDate: Mon May 30 17:46:58 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8dbcb6ce
7
8 dev-libs/boinc-zip: drop 7.18
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 dev-libs/boinc-zip/boinc-zip-7.18.ebuild | 36 --------------------------------
13 1 file changed, 36 deletions(-)
14
15 diff --git a/dev-libs/boinc-zip/boinc-zip-7.18.ebuild b/dev-libs/boinc-zip/boinc-zip-7.18.ebuild
16 deleted file mode 100644
17 index e800b45e2..000000000
18 --- a/dev-libs/boinc-zip/boinc-zip-7.18.ebuild
19 +++ /dev/null
20 @@ -1,36 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -inherit autotools
27 -
28 -MY_PN=${PN%%-*}
29 -MY_PV="${PV}.0"
30 -DESCRIPTION="Wrapper for the zip/unzip functions to expose to BOINC clients"
31 -HOMEPAGE="https://boinc.berkeley.edu/trac/wiki/FileCompression"
32 -
33 -SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/client_release/${PV}/${MY_PV}.tar.gz -> ${MY_PN}-${MY_PV}.tar.gz"
34 -KEYWORDS="~amd64 ~arm64 ~x86"
35 -S="${WORKDIR}/${MY_PN}-client_release-${PV}-${MY_PV}"
36 -
37 -LICENSE="Info-ZIP LGPL-3+"
38 -SLOT="0"
39 -
40 -src_prepare() {
41 - default
42 - eautoreconf
43 -}
44 -
45 -src_configure() {
46 - econf --enable-pkg-devel
47 -}
48 -
49 -src_compile() {
50 - emake -C zip lib${PN//-/_}.la
51 -}
52 -
53 -src_install() {
54 - emake -C zip install-{libLTLIBRARIES,pkgincludeHEADERS} DESTDIR="${D}"
55 - find "${ED}" -name '*.la' -delete || die
56 -}