diff options
author | Göktürk Yüksek <gokturk@gentoo.org> | 2019-06-08 15:08:27 -0400 |
---|---|---|
committer | Göktürk Yüksek <gokturk@gentoo.org> | 2019-06-08 15:08:27 -0400 |
commit | 51323d25822747871328d2d8578f48cdd5dbe8c5 (patch) | |
tree | 2d9dbae154a0fc6397d373a4f701192775350b07 /app-crypt/libu2f-host | |
parent | mail-mta/exim: alpha stable wrt bug #687336 (diff) | |
download | gentoo-51323d25822747871328d2d8578f48cdd5dbe8c5.tar.gz gentoo-51323d25822747871328d2d8578f48cdd5dbe8c5.tar.bz2 gentoo-51323d25822747871328d2d8578f48cdd5dbe8c5.zip |
app-crypt/libu2f-host: remove old vulnerable #678580 #679724
Bug: https://bugs.gentoo.org/678580
Bug: https://bugs.gentoo.org/679724
Package-Manager: Portage-2.3.67, Repoman-2.3.12
Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org>
Diffstat (limited to 'app-crypt/libu2f-host')
-rw-r--r-- | app-crypt/libu2f-host/Manifest | 3 | ||||
-rw-r--r-- | app-crypt/libu2f-host/libu2f-host-1.1.1.ebuild | 63 | ||||
-rw-r--r-- | app-crypt/libu2f-host/libu2f-host-1.1.3.ebuild | 55 | ||||
-rw-r--r-- | app-crypt/libu2f-host/libu2f-host-1.1.6.ebuild | 55 |
4 files changed, 0 insertions, 176 deletions
diff --git a/app-crypt/libu2f-host/Manifest b/app-crypt/libu2f-host/Manifest index f2179ea58d19..0e9687141f80 100644 --- a/app-crypt/libu2f-host/Manifest +++ b/app-crypt/libu2f-host/Manifest @@ -1,4 +1 @@ -DIST libu2f-host-1.1.1.tar.xz 455652 BLAKE2B f5cc4dd7752d66790b4139e5b8e9262f6622b9608bc8b220640db773ce1e794b58eb3fdf855df4e73417aabf5f8e979218dfd1b068111c66c6d830ef4b7ebb97 SHA512 1f6d26d47cabd44391a780f03d88b6ab9ed996bab26e2605f1942bfff2203aa9a8e90fa80c010ccf2e575dbfca3bd03d3322381343cdf6def3829bbe45db8693 DIST libu2f-host-1.1.10.tar.xz 471676 BLAKE2B 5066eaaaeda3b8c015afa8946f0af3b1b90a34488d4c71811c0d8f57a3ed2e4c8cb3d82d2df147dcf13ac3c384522d22f25894ac3a2d994a75b288891a67640a SHA512 91c5bf3994f1d3c9bd144f54b14b0404d839c15bef3c318619decdf1bd37214bcff33927af78a9826ff7d0bc9907c912a0e31104ae68d3a727a8436f2a1dbf7a -DIST libu2f-host-1.1.3.tar.xz 469480 BLAKE2B b2a002fa694972e71aef73191608d079f1c13d98a2f40e06d25a6e50a3175100099adbc5b5067e5f1fe027042f99e198a07282df735ab4ff2eec63a4f5daf59a SHA512 6729dd35beaae1c96283f81794ac6c058ed6446f935a5cee7dc1a3db594201c9f049de6a58ac2e544e1c6ac0c1e9815cce5e2e46a6e45372e419078307a57f55 -DIST libu2f-host-1.1.6.tar.xz 469380 BLAKE2B 7943b6dd61084952edb81ab2c93fd781d832f0ad07dff442c93464ecce57bde8a7b3d4aea5fa6801f39a5cbb272658ba86bf499f485bca35fa5fa314d609ff2f SHA512 499efac0243a7e5fadf6c456cc5530633337c07ab7dda52bd77b541b24ffd0337efe95cce499e73d6c46d312e737c044edcbdb4d41043b1e8721242d6e6ad20a diff --git a/app-crypt/libu2f-host/libu2f-host-1.1.1.ebuild b/app-crypt/libu2f-host/libu2f-host-1.1.1.ebuild deleted file mode 100644 index 6d1773945177..000000000000 --- a/app-crypt/libu2f-host/libu2f-host-1.1.1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit autotools-utils linux-info udev user - -DESCRIPTION="Yubico Universal 2nd Factor (U2F) Host C Library" -HOMEPAGE="https://developers.yubico.com/libu2f-host/" -SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="kernel_linux static-libs systemd" - -RDEPEND=" - dev-libs/hidapi - dev-libs/json-c:=" -DEPEND="${RDEPEND} - virtual/pkgconfig" -RDEPEND="${RDEPEND} - systemd? ( sys-apps/systemd[acl] )" - -CONFIG_CHECK="~HIDRAW" - -pkg_setup() { - # The U2F device node will be owned by group 'plugdev' - # in non-systemd configurations - if ! use systemd; then - enewgroup plugdev - fi -} - -src_prepare() { - autotools-utils_src_prepare - - sed -e 's:TAG+="uaccess":MODE="0664", GROUP="plugdev":g' \ - 70-u2f.rules > 70-u2f-udev.rules || die -} - -src_configure() { - autotools-utils_src_configure -} - -src_install() { - autotools-utils_src_install - - if use kernel_linux; then - if use systemd; then - udev_dorules 70-u2f.rules - else - udev_newrules 70-u2f-udev.rules 70-u2f.rules - fi - fi -} - -pkg_postinst() { - if ! use systemd; then - elog "Users must be a member of the 'plugdev' group" - elog "to be able to access U2F devices" - fi -} diff --git a/app-crypt/libu2f-host/libu2f-host-1.1.3.ebuild b/app-crypt/libu2f-host/libu2f-host-1.1.3.ebuild deleted file mode 100644 index dacb7651b18d..000000000000 --- a/app-crypt/libu2f-host/libu2f-host-1.1.3.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit linux-info udev user - -DESCRIPTION="Yubico Universal 2nd Factor (U2F) Host C Library" -HOMEPAGE="https://developers.yubico.com/libu2f-host/" -SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="kernel_linux static-libs systemd" - -DEPEND="dev-libs/hidapi - dev-libs/json-c:=" -RDEPEND="${DEPEND} - systemd? ( sys-apps/systemd[acl] )" -BDEPEND="virtual/pkgconfig" - -CONFIG_CHECK="~HIDRAW" - -pkg_setup() { - # The U2F device node will be owned by group 'plugdev' - # in non-systemd configurations - if ! use systemd; then - enewgroup plugdev - fi -} - -src_prepare() { - default - sed -e 's:TAG+="uaccess":MODE="0664", GROUP="plugdev":g' \ - 70-u2f.rules > 70-u2f-udev.rules || die -} - -src_install() { - default - if use kernel_linux; then - if use systemd; then - udev_dorules 70-u2f.rules - else - udev_newrules 70-u2f-udev.rules 70-u2f.rules - fi - fi -} - -pkg_postinst() { - if ! use systemd; then - elog "Users must be a member of the 'plugdev' group" - elog "to be able to access U2F devices" - fi -} diff --git a/app-crypt/libu2f-host/libu2f-host-1.1.6.ebuild b/app-crypt/libu2f-host/libu2f-host-1.1.6.ebuild deleted file mode 100644 index edcf94b91186..000000000000 --- a/app-crypt/libu2f-host/libu2f-host-1.1.6.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit linux-info udev user - -DESCRIPTION="Yubico Universal 2nd Factor (U2F) Host C Library" -HOMEPAGE="https://developers.yubico.com/libu2f-host/" -SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="kernel_linux static-libs systemd" - -DEPEND="dev-libs/hidapi - dev-libs/json-c:=" -RDEPEND="${DEPEND} - systemd? ( sys-apps/systemd[acl] )" -BDEPEND="virtual/pkgconfig" - -CONFIG_CHECK="~HIDRAW" - -pkg_setup() { - # The U2F device node will be owned by group 'plugdev' - # in non-systemd configurations - if ! use systemd; then - enewgroup plugdev - fi -} - -src_prepare() { - default - sed -e 's:TAG+="uaccess":MODE="0664", GROUP="plugdev":g' \ - 70-u2f.rules > 70-u2f-udev.rules || die -} - -src_install() { - default - if use kernel_linux; then - if use systemd; then - udev_dorules 70-u2f.rules - else - udev_newrules 70-u2f-udev.rules 70-u2f.rules - fi - fi -} - -pkg_postinst() { - if ! use systemd; then - elog "Users must be a member of the 'plugdev' group" - elog "to be able to access U2F devices" - fi -} |