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: Thu, 22 Jul 2021 08:29:38
Message-Id: 1626942460.addcb8022911256d99b047135284022ad21fd500.cybertailor@gentoo
1 commit: addcb8022911256d99b047135284022ad21fd500
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Thu Jul 22 08:14:20 2021 +0000
4 Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
5 CommitDate: Thu Jul 22 08:27:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=addcb802
7
8 dev-libs/boinc-zip: revbump (new eclass)
9
10 Closes: https://bugs.gentoo.org/802897
11 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
12
13 dev-libs/boinc-zip/boinc-zip-7.18-r1.ebuild | 29 +++++++++++++++++++++++++++++
14 1 file changed, 29 insertions(+)
15
16 diff --git a/dev-libs/boinc-zip/boinc-zip-7.18-r1.ebuild b/dev-libs/boinc-zip/boinc-zip-7.18-r1.ebuild
17 new file mode 100644
18 index 000000000..032e64438
19 --- /dev/null
20 +++ b/dev-libs/boinc-zip/boinc-zip-7.18-r1.ebuild
21 @@ -0,0 +1,29 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=8
26 +
27 +BOINC_SUBMODULE="zip"
28 +inherit boinc
29 +
30 +DESCRIPTION="Wrapper for the zip/unzip functions to expose to BOINC clients"
31 +HOMEPAGE="https://boinc.berkeley.edu/trac/wiki/FileCompression"
32 +
33 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
34 +LICENSE="Info-ZIP LGPL-3+"
35 +SLOT="0"
36 +
37 +# broken beyond repair
38 +RESTRICT="test"
39 +
40 +boinc_require_source ${PV}.0
41 +boinc_enable_autotools
42 +
43 +src_compile() {
44 + emake lib${PN//-/_}.la
45 +}
46 +
47 +src_install() {
48 + emake install-{libLTLIBRARIES,pkgincludeHEADERS} DESTDIR="${D}"
49 + find "${ED}" -name '*.la' -delete || die
50 +}