Gentoo Archives: gentoo-commits

From: Ronny Gutbrod <gentoo@××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-libs/solo-udev-rules/
Date: Wed, 27 Apr 2022 11:57:45
Message-Id: 1651060500.c364b06b07410eddab28f72a278d7e3d0466186f.tastytea@gentoo
1 commit: c364b06b07410eddab28f72a278d7e3d0466186f
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Wed Apr 27 11:52:50 2022 +0000
4 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
5 CommitDate: Wed Apr 27 11:55:00 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c364b06b
7
8 sys-libs/solo-udev-rules: add 4.1.5
9
10 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
11
12 sys-libs/solo-udev-rules/Manifest | 1 +
13 .../solo-udev-rules/solo-udev-rules-4.1.5.ebuild | 41 ++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/sys-libs/solo-udev-rules/Manifest b/sys-libs/solo-udev-rules/Manifest
17 index a457fb35e..3a416fd12 100644
18 --- a/sys-libs/solo-udev-rules/Manifest
19 +++ b/sys-libs/solo-udev-rules/Manifest
20 @@ -1 +1,2 @@
21 DIST solo-4.0.0.tar.gz 1173865 BLAKE2B 1a2d62daf46d3a4a90a65d5034912b048c63a8f6fd3f4dde76fcb3c283d679bc96a7d3cf92945f6c6817f7e505cb540c4264f83ea7db872aa1b3daad864275ac SHA512 210ef65f0b667f0a0c6c096f5f1346574ba70e6f8476e8657ac4c862cbd75de66b644aba884dc37773ecbda4ecd0e495dbbdef3febfbc0e43a265435cfc0ea3f
22 +DIST solo1-4.1.5.tar.gz 1179783 BLAKE2B 9a76bc48b1f404dbd5d919ca8794ab20e7e8474bfe77430e7c60008306c51213535814fd873d04fd4182e704566d0bb545ab354fdf35e2236cffad13727468d7 SHA512 3e6196e37d4e9ab90dda59f2cc323ac47d0bad4e281f1de013449365ba7d8687daf96187b41ec01acc9843b69b5108e0192caa9846e75ede73fffeac36b308e3
23
24 diff --git a/sys-libs/solo-udev-rules/solo-udev-rules-4.1.5.ebuild b/sys-libs/solo-udev-rules/solo-udev-rules-4.1.5.ebuild
25 new file mode 100644
26 index 000000000..90115f194
27 --- /dev/null
28 +++ b/sys-libs/solo-udev-rules/solo-udev-rules-4.1.5.ebuild
29 @@ -0,0 +1,41 @@
30 +# Copyright 2020, 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit udev
36 +
37 +MY_P="solo1-${PV}"
38 +DESCRIPTION="udev rules for the Solo FIDO2 & U2F USB+NFC security key"
39 +HOMEPAGE="
40 + https://solokeys.com/
41 + https://github.com/solokeys/solo1
42 +"
43 +SRC_URI="https://github.com/solokeys/solo1/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
44 +
45 +LICENSE="|| ( Apache-2.0 MIT )"
46 +SLOT="0"
47 +KEYWORDS="~amd64"
48 +IUSE=""
49 +
50 +RDEPEND="virtual/udev"
51 +DEPEND="${RDEPEND}"
52 +
53 +S="${WORKDIR}/${MY_P}"
54 +
55 +src_compile() {
56 + # Omitting src_compile() would invoke make, leaving it empty is not allowed.
57 + :
58 +}
59 +
60 +src_install() {
61 + udev_dorules udev/70-solokeys-access.rules
62 +}
63 +
64 +pkg_postinst() {
65 + udev_reload
66 +}
67 +
68 +pkg_postrm() {
69 + udev_reload
70 +}