Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libb2/
Date: Sun, 12 Jan 2020 14:34:29
Message-Id: 1578839660.a5043e2e30cf003728bdb2d04b97ee6aad0f7fd9.grobian@gentoo
1 commit: a5043e2e30cf003728bdb2d04b97ee6aad0f7fd9
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 12 14:34:09 2020 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 12 14:34:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5043e2e
7
8 app-crypt/libb2-0.98: drop old
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.16
11 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
12
13 app-crypt/libb2/Manifest | 1 -
14 app-crypt/libb2/libb2-0.98.ebuild | 44 ---------------------------------------
15 2 files changed, 45 deletions(-)
16
17 diff --git a/app-crypt/libb2/Manifest b/app-crypt/libb2/Manifest
18 index 6d30097c471..bb6333e12e9 100644
19 --- a/app-crypt/libb2/Manifest
20 +++ b/app-crypt/libb2/Manifest
21 @@ -1,2 +1 @@
22 DIST libb2-0.98.1.tar.gz 280826 BLAKE2B aa8c3dee3032f457410479be12d00c79a6ca6a7c0376a5c70265d30ff25b50663171f7096141834d4faa4dd5027f38b23b774e59be63475a3ecba855337fb1aa SHA512 a666fdbd1efa9cfff3028e953c62f21ba092c6733ccd12d4d04f1f836fc9747fc90053bc9166510d251d332b91e133853d2cc9b61c279517bd65b05e8483250b
23 -DIST libb2-0.98.tar.gz 275076 BLAKE2B 7c0aa473a58a5ceb6e913487cc6f0078e6cab661bd26cb1f5611473b430213521a23adbde227da6d7561b4d581369e268308ae6b2a10da5399c0d2d6ab288b26 SHA512 be400d16ab00b3006ec7412dcbf580427600f4997cee19c0448d849ff8bbbb58bbb7be3d49e4052cb1b6791b6bed9c9cc48b51da3ec77b2fdf3d197ccf0c8073
24
25 diff --git a/app-crypt/libb2/libb2-0.98.ebuild b/app-crypt/libb2/libb2-0.98.ebuild
26 deleted file mode 100644
27 index 64ec18c1de9..00000000000
28 --- a/app-crypt/libb2/libb2-0.98.ebuild
29 +++ /dev/null
30 @@ -1,44 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit autotools
37 -
38 -DESCRIPTION="C library providing BLAKE2b, BLAKE2s, BLAKE2bp, BLAKE2sp"
39 -HOMEPAGE="https://github.com/BLAKE2/libb2"
40 -GITHASH="0d7015f6a640a63bc6c68562328e112445ea9d5c"
41 -SRC_URI="https://github.com/BLAKE2/libb2/archive/${GITHASH}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="CC0-1.0"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~ppc64 ~x64-macos ~sparc-solaris ~x64-solaris"
46 -IUSE="static native-cflags"
47 -
48 -DEPEND=""
49 -RDEPEND="${DEPEND}"
50 -
51 -S=${WORKDIR}/${PN}-${GITHASH}
52 -
53 -src_prepare() {
54 - default
55 - # fix bashism
56 - sed -i -e 's/ == / = /' configure.ac || die
57 - eautoreconf # upstream doesn't make releases
58 -}
59 -
60 -src_configure() {
61 - econf \
62 - $(use_enable static) \
63 - $(use_enable native-cflags native)
64 -}
65 -
66 -src_compile() {
67 - # respect our CFLAGS when native-cflags is not in effect
68 - emake $(use native-cflags && echo no)CFLAGS="${CFLAGS}"
69 -}
70 -
71 -src_install() {
72 - default
73 - use static || find "${ED}" -name '*.la' -type f -delete || die
74 -}