Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/ykpers/
Date: Mon, 05 Oct 2015 22:58:23
Message-Id: 1444085783.dcc902d2c4e58835e9d8a709575038780de64058.mrueg@gentoo
1 commit: dcc902d2c4e58835e9d8a709575038780de64058
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 5 22:56:23 2015 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 5 22:56:23 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcc902d2
7
8 sys-auth/ykpers: Version bump
9
10 Package-Manager: portage-2.2.22
11
12 sys-auth/ykpers/Manifest | 1 +
13 sys-auth/ykpers/ykpers-1.17.2.ebuild | 31 +++++++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/sys-auth/ykpers/Manifest b/sys-auth/ykpers/Manifest
17 index 0b72836..09ed597 100644
18 --- a/sys-auth/ykpers/Manifest
19 +++ b/sys-auth/ykpers/Manifest
20 @@ -1,2 +1,3 @@
21 DIST ykpers-1.16.2.tar.gz 502198 SHA256 2b2da737d5353ff5c9002cad41c2f5d0af381f55a880ccf920cee8855b8b8120 SHA512 3fa1c18d306c4e5ca3f2b938cf4a1c9d1fbfcbaf9fdc1d5d601fb57ca11cd0caf680b0288bb37f27bb0e377a30bdc860f04d8c62254e9ccb4e78d60b60163799 WHIRLPOOL a2e045560cbeae600fc7c112105f3caa1f5e5cc26ce4ea12448cb451c1e6de3853f553c2a37a8b9138763e58795bf1896c1f3b3f0c4a3ebf8ddf95f758531694
22 DIST ykpers-1.17.1.tar.gz 504827 SHA256 556baec2bbc94bae01293e64dc3873d68f880119ea5c3772737e4f3dc44f69c4 SHA512 9f8cabb1082babc3214dda85300c1b3413d4664b9b5d32b266e3a640e1644ccf1a09964107f14eef831fef413fa65125551c40954a4973997b3e3cadb185bf70 WHIRLPOOL 75d430b41aa6dfca32db854278fa3dabea1a7048738b7274f787b2c2c81cf69e678ac7515cdc59295a764c8bf44773c247f51d4ccbb657c8c035055e51dcf468
23 +DIST ykpers-1.17.2.tar.gz 505396 SHA256 704a12410da22f37d69fd337511e74b61f876f841d52f13e87971c0adb5ddefc SHA512 b2da72c9032639450a91495766a828052d2a48c51ec151eedf61c3276f07feb8a7a5a0faf59179b314814fd6552de5f36e27494419cf7d2803d8471565a85690 WHIRLPOOL 2f0d59bc8487ca7b959502f7465c12a208726ce7356588d1c6378fcde87cc17d7c8a3141be447d3a401f799f51c1282f79b25db66412b2904c5a8c4fd3841c49
24
25 diff --git a/sys-auth/ykpers/ykpers-1.17.2.ebuild b/sys-auth/ykpers/ykpers-1.17.2.ebuild
26 new file mode 100644
27 index 0000000..ef4e2a8
28 --- /dev/null
29 +++ b/sys-auth/ykpers/ykpers-1.17.2.ebuild
30 @@ -0,0 +1,31 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +
37 +inherit autotools-utils udev
38 +
39 +DESCRIPTION="Library and tool for personalization of Yubico's YubiKey"
40 +SRC_URI="http://yubico.github.io/yubikey-personalization/releases/${P}.tar.gz"
41 +HOMEPAGE="https://github.com/Yubico/yubikey-personalization"
42 +
43 +KEYWORDS="~amd64 ~x86"
44 +SLOT="0"
45 +LICENSE="BSD-2"
46 +IUSE="static-libs consolekit"
47 +
48 +RDEPEND="
49 + >=sys-auth/libyubikey-1.6
50 + virtual/libusb:1"
51 +DEPEND="${RDEPEND}
52 + virtual/pkgconfig"
53 +RDEPEND="${RDEPEND}
54 + consolekit? ( sys-auth/consolekit[acl] )"
55 +
56 +src_install() {
57 + DOCS=( doc/. AUTHORS ChangeLog NEWS README )
58 + autotools-utils_src_install
59 +
60 + use consolekit && udev_dorules *.rules
61 +}