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-libs/d0_blind_id/
Date: Sat, 27 Feb 2021 20:16:54
Message-Id: 1614457007.fa1e5731b395c6c0cd2fac425328a20f35469309.sam@gentoo
1 commit: fa1e5731b395c6c0cd2fac425328a20f35469309
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 27 20:16:41 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 20:16:47 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa1e5731
7
8 dev-libs/d0_blind_id: cleanup old
9
10 Bug: https://bugs.gentoo.org/773184
11 Package-Manager: Portage-3.0.15, Repoman-3.0.2
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 dev-libs/d0_blind_id/Manifest | 1 -
15 dev-libs/d0_blind_id/d0_blind_id-0.5.ebuild | 39 -----------------------------
16 2 files changed, 40 deletions(-)
17
18 diff --git a/dev-libs/d0_blind_id/Manifest b/dev-libs/d0_blind_id/Manifest
19 index 6a9e06b78e0..503768c68de 100644
20 --- a/dev-libs/d0_blind_id/Manifest
21 +++ b/dev-libs/d0_blind_id/Manifest
22 @@ -1,2 +1 @@
23 -DIST d0_blind_id-0.5.tar.gz 344460 BLAKE2B 9b77061e35b37bcdc009ea82989b0fe18ca6ddaebfcf7c3a4bd35523ae683fc0f05c3886f1c7904afbb5120a013dab2bbb1031c3c5dba9c435258e0b7fe960e9 SHA512 0a7735269a41108f191c4143b52eff2179889d94239be5be0c2406c6ed789b68e2d545250f9964e97f8c86a0653296bacdbe9b8d9db89a79ca6922d7c1a90162
24 DIST d0_blind_id-1.0.tar.gz 49110 BLAKE2B 1977bb9c71d6655e8a84aab9daf5aee470ac3f3e140e7beff3555a41a81baebab5e4e5019b0550594b8c6e8b936706bb9790e5e3171c1348abf3212349d07109 SHA512 dbee0bec44a008a6843ec367211e4cdfa25f6c4577b48d942d19301d5ff885d4fde8d40ea304a114d349d8e90283a50854afb2fb322bf19640842ded025849f2
25
26 diff --git a/dev-libs/d0_blind_id/d0_blind_id-0.5.ebuild b/dev-libs/d0_blind_id/d0_blind_id-0.5.ebuild
27 deleted file mode 100644
28 index f262dc8d640..00000000000
29 --- a/dev-libs/d0_blind_id/d0_blind_id-0.5.ebuild
30 +++ /dev/null
31 @@ -1,39 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -AUTOTOOLS_AUTORECONF=1
37 -inherit autotools-utils
38 -
39 -DESCRIPTION="Blind-ID library for user identification using RSA blind signatures"
40 -HOMEPAGE="http://git.xonotic.org/?p=xonotic/d0_blind_id.git;a=summary"
41 -SRC_URI="https://github.com/downloads/divVerent/d0_blind_id/${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE="static-libs"
47 -
48 -RDEPEND="dev-libs/gmp:0"
49 -DEPEND="${RDEPEND}
50 - virtual/pkgconfig"
51 -
52 -DOCS=( d0_blind_id.txt )
53 -
54 -src_prepare() {
55 - # fix out-of-source build
56 - sed -i \
57 - -e 's, d0_rijndael.c, "$srcdir/d0_rijndael.c",' \
58 - configure.ac || die
59 -
60 - autotools-utils_src_prepare
61 -}
62 -
63 -src_configure() {
64 - local myeconfargs=(
65 - --enable-rijndael
66 - --without-openssl
67 - --without-tommath
68 - )
69 - autotools-utils_src_configure
70 -}