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/ykpers/
Date: Thu, 01 Sep 2022 23:22:52
Message-Id: 1662074318.f030de85fe196993b8c0a24cc437e6c57a153d04.marecki@gentoo
1 commit: f030de85fe196993b8c0a24cc437e6c57a153d04
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 1 23:18:38 2022 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 1 23:18:38 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f030de85
7
8 sys-auth/ykpers: drop 1.20.0
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 sys-auth/ykpers/ykpers-1.20.0.ebuild | 54 ------------------------------------
13 1 file changed, 54 deletions(-)
14
15 diff --git a/sys-auth/ykpers/ykpers-1.20.0.ebuild b/sys-auth/ykpers/ykpers-1.20.0.ebuild
16 deleted file mode 100644
17 index a77b20b63462..000000000000
18 --- a/sys-auth/ykpers/ykpers-1.20.0.ebuild
19 +++ /dev/null
20 @@ -1,54 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -inherit autotools udev
27 -
28 -DESCRIPTION="Library and tool for personalization of Yubico's YubiKey"
29 -SRC_URI="https://github.com/Yubico/yubikey-personalization/archive/v${PV}.tar.gz -> ${P}.tar.gz"
30 -HOMEPAGE="https://github.com/Yubico/yubikey-personalization"
31 -
32 -KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86"
33 -SLOT="0"
34 -LICENSE="BSD-2"
35 -IUSE="static-libs"
36 -
37 -DEPEND="
38 - dev-libs/json-c:=
39 - >=sys-auth/libyubikey-1.6
40 - virtual/libusb:1"
41 -BDEPEND="
42 - app-text/asciidoc
43 - virtual/pkgconfig"
44 -RDEPEND="${DEPEND}"
45 -
46 -S="${WORKDIR}/yubikey-personalization-${PV}"
47 -PATCHES=(
48 - "${FILESDIR}"/${PN}-1.20.0-fix-gcc10-fno-common.patch
49 - "${FILESDIR}"/${PN}-1.20.0-json-boolean.patch
50 -)
51 -
52 -DOCS=( doc/. AUTHORS NEWS README )
53 -
54 -src_prepare() {
55 - default
56 - eautoreconf
57 -}
58 -
59 -src_configure() {
60 - local myeconfargs=(
61 - --libdir=/usr/$(get_libdir)
62 - --localstatedir=/var
63 - $(use_enable static-libs static)
64 - )
65 - econf "${myeconfargs[@]}"
66 -}
67 -
68 -src_install() {
69 - default
70 -
71 - udev_dorules 69-yubikey.rules
72 -
73 - find "${D}" -name '*.la' -delete || die
74 -}