summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGöktürk Yüksek <gokturk@gentoo.org>2019-06-05 15:22:12 -0400
committerGöktürk Yüksek <gokturk@gentoo.org>2019-06-05 15:22:44 -0400
commitf8136943e6e72946c4d3884bea9d0ab5b4a9aef1 (patch)
treec6cdf5ee5a918b531d94f7b1f2eee651284e960c /app-crypt
parentmedia-libs/vigra: Drop 1.11.1-r1 (diff)
downloadgentoo-f8136943e6e72946c4d3884bea9d0ab5b4a9aef1.tar.gz
gentoo-f8136943e6e72946c4d3884bea9d0ab5b4a9aef1.tar.bz2
gentoo-f8136943e6e72946c4d3884bea9d0ab5b4a9aef1.zip
app-crypt/libu2f-server: remove old and now buggy 1.0.1
Bug: https://bugs.gentoo.org/641792 Bug: https://github.com/Yubico/pam-u2f/issues/93 Package-Manager: Portage-2.3.67, Repoman-2.3.12 Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org>
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/libu2f-server/Manifest1
-rw-r--r--app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild51
2 files changed, 0 insertions, 52 deletions
diff --git a/app-crypt/libu2f-server/Manifest b/app-crypt/libu2f-server/Manifest
index 0c6a1457ec05..c01b35d16130 100644
--- a/app-crypt/libu2f-server/Manifest
+++ b/app-crypt/libu2f-server/Manifest
@@ -1,2 +1 @@
-DIST libu2f-server-1.0.1.tar.xz 268648 BLAKE2B 9c6c2e5bafb2a95fcc5c2773de49b4db197ee6283e90cf0e4e62ff3982bdde8a51635cd9771e4dd35d27c71634367197d3b01b9c26d8a3847fccf1daf676f04b SHA512 51020722f49f787c793808b667e91923bde46e9137bfe5065106f83bcdb678e8d11cca12cb605d9622cafc15a9794c9080cf08e2a704293a791ab6f27ac47f47
DIST libu2f-server-1.1.0.tar.xz 269128 BLAKE2B 084b177a878e8216f2ee5af9eeee11e691edcd12b7ed1b1c57f74bcc45f0418a0d44a9e72423c41b4104aa9f69807a0289172d08d21d168c6be5b36ee8c70bc3 SHA512 ebdb7c8c20727f37f4e31d8f16df7966603374f78478ada723a7b9bec1b0b0622caf6d12a65067ac8651f6088aaad61b2ad6ed51b9d6ef0dc45f031c974d8ff9
diff --git a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
deleted file mode 100644
index 823be1308e3d..000000000000
--- a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils multilib-minimal
-
-DESCRIPTION="Yubico Universal 2nd Factor (U2F) server C Library"
-HOMEPAGE="https://developers.yubico.com/libu2f-server/"
-SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="libressl static-libs test"
-
-RDEPEND="
- !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
- libressl? ( dev-libs/libressl:=[${MULTILIB_USEDEP}] )
- dev-libs/hidapi[${MULTILIB_USEDEP}]
- dev-libs/json-c:=[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- test? ( dev-libs/check[${MULTILIB_USEDEP}] )
-"
-
-PATCHES=(
- "${FILESDIR}/${P}-tests-fix.patch"
-)
-
-src_prepare() {
- default
- eautoreconf
- touch man/u2f-server.1 || die # do not rebuild the man page
-}
-
-multilib_src_configure() {
- myeconfargs=(
- --disable-h2a # tarball already contains the manpage
- $(use_enable static-libs static)
- $(use_enable test tests)
- )
-
- ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
-}
-
-multilib_src_install_all() {
- default
- prune_libtool_files
-}