diff options
author | Ronny (tastytea) Gutbrod <gentoo@tastytea.de> | 2022-04-27 13:52:50 +0200 |
---|---|---|
committer | Ronny (tastytea) Gutbrod <gentoo@tastytea.de> | 2022-04-27 13:55:00 +0200 |
commit | c364b06b07410eddab28f72a278d7e3d0466186f (patch) | |
tree | 30af5f41edef4e6f9ce28dd5f120e1b2becbfe71 /sys-libs | |
parent | dev-ml/sexp_pretty: treeclean (diff) | |
download | guru-c364b06b07410eddab28f72a278d7e3d0466186f.tar.gz guru-c364b06b07410eddab28f72a278d7e3d0466186f.tar.bz2 guru-c364b06b07410eddab28f72a278d7e3d0466186f.zip |
sys-libs/solo-udev-rules: add 4.1.5
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo@tastytea.de>
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/solo-udev-rules/Manifest | 1 | ||||
-rw-r--r-- | sys-libs/solo-udev-rules/solo-udev-rules-4.1.5.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/sys-libs/solo-udev-rules/Manifest b/sys-libs/solo-udev-rules/Manifest index a457fb35e..3a416fd12 100644 --- a/sys-libs/solo-udev-rules/Manifest +++ b/sys-libs/solo-udev-rules/Manifest @@ -1 +1,2 @@ DIST solo-4.0.0.tar.gz 1173865 BLAKE2B 1a2d62daf46d3a4a90a65d5034912b048c63a8f6fd3f4dde76fcb3c283d679bc96a7d3cf92945f6c6817f7e505cb540c4264f83ea7db872aa1b3daad864275ac SHA512 210ef65f0b667f0a0c6c096f5f1346574ba70e6f8476e8657ac4c862cbd75de66b644aba884dc37773ecbda4ecd0e495dbbdef3febfbc0e43a265435cfc0ea3f +DIST solo1-4.1.5.tar.gz 1179783 BLAKE2B 9a76bc48b1f404dbd5d919ca8794ab20e7e8474bfe77430e7c60008306c51213535814fd873d04fd4182e704566d0bb545ab354fdf35e2236cffad13727468d7 SHA512 3e6196e37d4e9ab90dda59f2cc323ac47d0bad4e281f1de013449365ba7d8687daf96187b41ec01acc9843b69b5108e0192caa9846e75ede73fffeac36b308e3 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 new file mode 100644 index 000000000..90115f194 --- /dev/null +++ b/sys-libs/solo-udev-rules/solo-udev-rules-4.1.5.ebuild @@ -0,0 +1,41 @@ +# Copyright 2020, 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit udev + +MY_P="solo1-${PV}" +DESCRIPTION="udev rules for the Solo FIDO2 & U2F USB+NFC security key" +HOMEPAGE=" + https://solokeys.com/ + https://github.com/solokeys/solo1 +" +SRC_URI="https://github.com/solokeys/solo1/archive/${PV}.tar.gz -> ${MY_P}.tar.gz" + +LICENSE="|| ( Apache-2.0 MIT )" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="virtual/udev" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${MY_P}" + +src_compile() { + # Omitting src_compile() would invoke make, leaving it empty is not allowed. + : +} + +src_install() { + udev_dorules udev/70-solokeys-access.rules +} + +pkg_postinst() { + udev_reload +} + +pkg_postrm() { + udev_reload +} |