Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/yubico-piv-tool/
Date: Sun, 06 Sep 2020 20:27:31
Message-Id: 1599424036.d790b279143cdc1e60dfada747de6f8d9c70fdf4.marecki@gentoo
1 commit: d790b279143cdc1e60dfada747de6f8d9c70fdf4
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 6 20:26:10 2020 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 6 20:27:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d790b279
7
8 sys-auth/yubico-piv-tool: remove old
9
10 Bug: https://bugs.gentoo.org/732000
11 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
12
13 sys-auth/yubico-piv-tool/Manifest | 1 -
14 .../yubico-piv-tool/yubico-piv-tool-1.6.2.ebuild | 49 ----------------------
15 2 files changed, 50 deletions(-)
16
17 diff --git a/sys-auth/yubico-piv-tool/Manifest b/sys-auth/yubico-piv-tool/Manifest
18 index ab6a0967e1c..5f22756f38b 100644
19 --- a/sys-auth/yubico-piv-tool/Manifest
20 +++ b/sys-auth/yubico-piv-tool/Manifest
21 @@ -1,2 +1 @@
22 -DIST yubico-piv-tool-1.6.2.tar.gz 182957 BLAKE2B 0ca9bdcda68f7ee100078604854caccc5141ab01e40f894ae36c3175afa3989c1d0074ef0994e1e369d67499a9778e22f0c5a3cf930d1ba162b0ee0ddbc05f91 SHA512 fc72b9d381f10b63c8958b6c90c1ee97e3ef6b5fb283a9513e6f2ace972710c2872903f38350d9e4a3576b16cb0890b067dd55f5c125f443d353df3f628a9f96
23 DIST yubico-piv-tool-2.1.1.tar.gz 1302573 BLAKE2B da4419b7074930f7d264f21a12973511d350e687d0487b93d25a528f4a79d5df44dbbdde34ef7cd0d14507ba1a00f776fcd7eaf503f2253d8ee8da3e9a68010f SHA512 14d880088f7624f600c6badb6504c4c71ef29ff82e9c29bd837013e62273c6b198ca581705cc7fb9f3c0c13334767ea7b340fb033ce99fb60fb0478281affc9f
24
25 diff --git a/sys-auth/yubico-piv-tool/yubico-piv-tool-1.6.2.ebuild b/sys-auth/yubico-piv-tool/yubico-piv-tool-1.6.2.ebuild
26 deleted file mode 100644
27 index 64ebd5a99bb..00000000000
28 --- a/sys-auth/yubico-piv-tool/yubico-piv-tool-1.6.2.ebuild
29 +++ /dev/null
30 @@ -1,49 +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="Command line tool for the YubiKey PIV application"
39 -SRC_URI="https://github.com/Yubico/yubico-piv-tool/archive/yubico-piv-tool-${PV}.tar.gz"
40 -HOMEPAGE="https://developers.yubico.com/yubico-piv-tool/ https://github.com/Yubico/yubico-piv-tool"
41 -
42 -LICENSE="BSD-2"
43 -SLOT="0/1"
44 -KEYWORDS="~amd64"
45 -IUSE="test"
46 -RESTRICT="!test? ( test )"
47 -
48 -RDEPEND="
49 - dev-libs/openssl:0=[-bindist]
50 - sys-apps/pcsc-lite
51 -"
52 -DEPEND="${RDEPEND}
53 - dev-util/gengetopt
54 - sys-apps/help2man
55 - virtual/pkgconfig
56 - test? ( dev-libs/check )
57 -"
58 -
59 -S=${WORKDIR}/${PN}-${P}
60 -
61 -src_prepare() {
62 - default
63 -
64 - if ! use test; then
65 - sed -i -e "/PKG_CHECK_MODULES(\[CHECK/d" configure.ac || die
66 - sed -i -e "s/@CHECK_CFLAGS@//" -e "s/@CHECK_LIBS@//" */*/Makefile.am || die
67 - fi
68 -
69 - eautoreconf
70 -}
71 -
72 -src_configure() {
73 - econf --disable-static
74 -}
75 -
76 -src_install() {
77 - default
78 - rm "${D}"/usr/$(get_libdir)/*.la || die
79 -}