Gentoo Archives: gentoo-commits

From: Richard Farina <zerochaos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/yubico-piv-tool/
Date: Tue, 02 Oct 2018 19:20:02
Message-Id: 1538507986.3c85d38dda508f21a6158b60129f064c6c950a95.zerochaos@gentoo
1 commit: 3c85d38dda508f21a6158b60129f064c6c950a95
2 Author: Zero_Chaos <zerochaos <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 2 18:34:37 2018 +0000
4 Commit: Richard Farina <zerochaos <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 2 19:19:46 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c85d38d
7
8 sys-auth/yubico-piv-tool: bump
9
10 Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
11 Package-Manager: Portage-2.3.50, Repoman-2.3.11
12
13 sys-auth/yubico-piv-tool/Manifest | 1 +
14 .../yubico-piv-tool/yubico-piv-tool-1.6.2.ebuild | 48 ++++++++++++++++++++++
15 2 files changed, 49 insertions(+)
16
17 diff --git a/sys-auth/yubico-piv-tool/Manifest b/sys-auth/yubico-piv-tool/Manifest
18 index f56afecfd6f..54e39443516 100644
19 --- a/sys-auth/yubico-piv-tool/Manifest
20 +++ b/sys-auth/yubico-piv-tool/Manifest
21 @@ -1,2 +1,3 @@
22 DIST yubico-piv-tool-1.4.4.tar.gz 109397 BLAKE2B ed1299508cd5f90c662a184527ae696e7cd463b0e8d327413c8acff47d41de7393570798b9582e845262afb1780e0c759246980051a62335d7033de913147bb9 SHA512 3edc341fdbeeacfbf541adc37d0bd2b1df9777ca04e13bc1825e99a151008213b816ff811e83e623f52eb1400a8146c36a5a874fc5e26a89c9398e79a0e234e1
23 DIST yubico-piv-tool-1.5.0.tar.gz 179092 BLAKE2B d15eed89699989ff545f18cf54fd42349fc81862e7bb3e182fad59d0604cc9729dedcc4aaa40d3f28c1d40b78ddbb5ed073c107cb233d0fa66a17a2ef1e29d68 SHA512 10d7f7a2f163e5f61d6f7463f2124d06213506bff39f3fe0c5b361f90f8bc372de97ab1fa8d6bfcb77659f086d71f8ff536a064ee8f300a620b929ee76e8f8b9
24 +DIST yubico-piv-tool-1.6.2.tar.gz 182957 BLAKE2B 0ca9bdcda68f7ee100078604854caccc5141ab01e40f894ae36c3175afa3989c1d0074ef0994e1e369d67499a9778e22f0c5a3cf930d1ba162b0ee0ddbc05f91 SHA512 fc72b9d381f10b63c8958b6c90c1ee97e3ef6b5fb283a9513e6f2ace972710c2872903f38350d9e4a3576b16cb0890b067dd55f5c125f443d353df3f628a9f96
25
26 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
27 new file mode 100644
28 index 00000000000..5bbb1bafd01
29 --- /dev/null
30 +++ b/sys-auth/yubico-piv-tool/yubico-piv-tool-1.6.2.ebuild
31 @@ -0,0 +1,48 @@
32 +# Copyright 1999-2018 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +inherit autotools
38 +
39 +DESCRIPTION="Command line tool for the YubiKey PIV application"
40 +SRC_URI="https://github.com/Yubico/yubico-piv-tool/archive/yubico-piv-tool-${PV}.tar.gz"
41 +HOMEPAGE="https://developers.yubico.com/yubico-piv-tool/ https://github.com/Yubico/yubico-piv-tool"
42 +
43 +LICENSE="BSD-2"
44 +SLOT="0/1"
45 +KEYWORDS="~amd64"
46 +IUSE="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 +}