Gentoo Archives: gentoo-commits

From: "Göktürk Yüksek" <gokturk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
Date: Wed, 05 Jun 2019 19:23:09
Message-Id: 1559762564.f8136943e6e72946c4d3884bea9d0ab5b4a9aef1.gokturk@gentoo
1 commit: f8136943e6e72946c4d3884bea9d0ab5b4a9aef1
2 Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 5 19:22:12 2019 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 5 19:22:44 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8136943
7
8 app-crypt/libu2f-server: remove old and now buggy 1.0.1
9
10 Bug: https://bugs.gentoo.org/641792
11 Bug: https://github.com/Yubico/pam-u2f/issues/93
12 Package-Manager: Portage-2.3.67, Repoman-2.3.12
13 Signed-off-by: Göktürk Yüksek <gokturk <AT> gentoo.org>
14
15 app-crypt/libu2f-server/Manifest | 1 -
16 app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild | 51 ----------------------
17 2 files changed, 52 deletions(-)
18
19 diff --git a/app-crypt/libu2f-server/Manifest b/app-crypt/libu2f-server/Manifest
20 index 0c6a1457ec0..c01b35d1613 100644
21 --- a/app-crypt/libu2f-server/Manifest
22 +++ b/app-crypt/libu2f-server/Manifest
23 @@ -1,2 +1 @@
24 -DIST libu2f-server-1.0.1.tar.xz 268648 BLAKE2B 9c6c2e5bafb2a95fcc5c2773de49b4db197ee6283e90cf0e4e62ff3982bdde8a51635cd9771e4dd35d27c71634367197d3b01b9c26d8a3847fccf1daf676f04b SHA512 51020722f49f787c793808b667e91923bde46e9137bfe5065106f83bcdb678e8d11cca12cb605d9622cafc15a9794c9080cf08e2a704293a791ab6f27ac47f47
25 DIST libu2f-server-1.1.0.tar.xz 269128 BLAKE2B 084b177a878e8216f2ee5af9eeee11e691edcd12b7ed1b1c57f74bcc45f0418a0d44a9e72423c41b4104aa9f69807a0289172d08d21d168c6be5b36ee8c70bc3 SHA512 ebdb7c8c20727f37f4e31d8f16df7966603374f78478ada723a7b9bec1b0b0622caf6d12a65067ac8651f6088aaad61b2ad6ed51b9d6ef0dc45f031c974d8ff9
26
27 diff --git a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
28 deleted file mode 100644
29 index 823be1308e3..00000000000
30 --- a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
31 +++ /dev/null
32 @@ -1,51 +0,0 @@
33 -# Copyright 1999-2017 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -inherit autotools eutils multilib-minimal
39 -
40 -DESCRIPTION="Yubico Universal 2nd Factor (U2F) server C Library"
41 -HOMEPAGE="https://developers.yubico.com/libu2f-server/"
42 -SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz"
43 -
44 -LICENSE="BSD-2"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~x86"
47 -IUSE="libressl static-libs test"
48 -
49 -RDEPEND="
50 - !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
51 - libressl? ( dev-libs/libressl:=[${MULTILIB_USEDEP}] )
52 - dev-libs/hidapi[${MULTILIB_USEDEP}]
53 - dev-libs/json-c:=[${MULTILIB_USEDEP}]
54 -"
55 -DEPEND="${RDEPEND}
56 - virtual/pkgconfig
57 - test? ( dev-libs/check[${MULTILIB_USEDEP}] )
58 -"
59 -
60 -PATCHES=(
61 - "${FILESDIR}/${P}-tests-fix.patch"
62 -)
63 -
64 -src_prepare() {
65 - default
66 - eautoreconf
67 - touch man/u2f-server.1 || die # do not rebuild the man page
68 -}
69 -
70 -multilib_src_configure() {
71 - myeconfargs=(
72 - --disable-h2a # tarball already contains the manpage
73 - $(use_enable static-libs static)
74 - $(use_enable test tests)
75 - )
76 -
77 - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
78 -}
79 -
80 -multilib_src_install_all() {
81 - default
82 - prune_libtool_files
83 -}