Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libnitrokey/
Date: Sun, 30 Jun 2019 20:57:39
Message-Id: 1561928230.4b116f407e82b9081464eefb9566d5c3fd2cd988.soap@gentoo
1 commit: 4b116f407e82b9081464eefb9566d5c3fd2cd988
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 30 20:57:10 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 30 20:57:10 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b116f40
7
8 app-crypt/libnitrokey: Version bump to 3.5
9
10 Bug: https://bugs.gentoo.org/686460
11 Package-Manager: Portage-2.3.67, Repoman-2.3.16
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 app-crypt/libnitrokey/Manifest | 1 +
15 app-crypt/libnitrokey/libnitrokey-3.5.ebuild | 47 ++++++++++++++++++++++++++++
16 2 files changed, 48 insertions(+)
17
18 diff --git a/app-crypt/libnitrokey/Manifest b/app-crypt/libnitrokey/Manifest
19 index 6579ce86131..800ed44bbad 100644
20 --- a/app-crypt/libnitrokey/Manifest
21 +++ b/app-crypt/libnitrokey/Manifest
22 @@ -1 +1,2 @@
23 DIST libnitrokey-3.3.tar.gz 76581 BLAKE2B 1a662fb94184355dc5cae2f8e3109fc82a96aed06c726e04c4fcfef3aef0423150ac1f4647e4bf3585de7805e70cd67534d72f1255c9f80b57afa2aec36fc9d3 SHA512 fe3b6c7bdeb78f736fe7aa7475880a293c516119ac049ff47ddbaba626f2d70addee4d0cd3a38ea706b94717f51c4fb56f687d5a9bb9f10895836c5adc98b11b
24 +DIST libnitrokey-3.5.tar.gz 94356 BLAKE2B 9e53213f309e903d26e0e8e01ab213d6bc42c5b8d720e4b19f27adb607f20ad0c6e1707bf7b55c525efbd6a4fbf7b9c87983decf6b05dab7d03701ae0ea8277f SHA512 d2a95071e92d839c8cde4ac1435158bb469c25662f2988a4e824dbc0dfe83af841e6d04589293deddd77746dbec17b30c50fab69af58cc727ed5e0f2dbd0b5e7
25
26 diff --git a/app-crypt/libnitrokey/libnitrokey-3.5.ebuild b/app-crypt/libnitrokey/libnitrokey-3.5.ebuild
27 new file mode 100644
28 index 00000000000..d3474ddf0dc
29 --- /dev/null
30 +++ b/app-crypt/libnitrokey/libnitrokey-3.5.ebuild
31 @@ -0,0 +1,47 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit cmake-utils udev
38 +
39 +DESCRIPTION="Support library for the Nitrokey"
40 +HOMEPAGE="https://github.com/Nitrokey/libnitrokey"
41 +
42 +if [[ ${PV} == *9999 ]]; then
43 + inherit git-r3
44 + EGIT_REPO_URI="https://github.com/Nitrokey/libnitrokey.git"
45 +
46 + # Disable pulling in bundled dependencies
47 + EGIT_SUBMODULES=()
48 +else
49 + SRC_URI="https://github.com/Nitrokey/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
50 + KEYWORDS="~amd64"
51 +fi
52 +
53 +LICENSE="GPL-3"
54 +SLOT="0"
55 +IUSE="test"
56 +RESTRICT="!test? ( test )"
57 +
58 +RDEPEND="
59 + dev-libs/hidapi:=
60 + virtual/udev"
61 +DEPEND="
62 + ${RDEPEND}
63 + test? ( >=dev-cpp/catch-2.5.0:0 )"
64 +BDEPEND="virtual/pkgconfig"
65 +
66 +src_configure() {
67 + local mycmakeargs=(
68 + -DCMAKE_INSTALL_UDEVRULESDIR="$(get_udevdir)"/rules.d
69 +
70 + # actual hardware tests
71 + # 1. require a connected Nitrokey
72 + # 2. may kill data on your Nitrokey
73 + # hence the main testsuite is disabled
74 + -DCOMPILE_TESTS=OFF
75 + -DCOMPILE_OFFLINE_TESTS=$(usex test)
76 + )
77 + cmake-utils_src_configure
78 +}