From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ED3C8158094 for ; Tue, 16 Aug 2022 22:52:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25040E0993; Tue, 16 Aug 2022 22:52:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0930AE0993 for ; Tue, 16 Aug 2022 22:52:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E1537341366 for ; Tue, 16 Aug 2022 22:52:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 024AD568 for ; Tue, 16 Aug 2022 22:52:44 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1660689746.ee22da29de0b1d58e6d89c9beaa7d45fcea9f85c.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-host/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/libu2f-host/libu2f-host-1.1.10.ebuild X-VCS-Directories: app-crypt/libu2f-host/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: ee22da29de0b1d58e6d89c9beaa7d45fcea9f85c X-VCS-Branch: master Date: Tue, 16 Aug 2022 22:52:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c9b930e6-f542-48f5-8027-0150bcb9e938 X-Archives-Hash: 1eab7234e8aa5df9ae3970f392b416dc commit: ee22da29de0b1d58e6d89c9beaa7d45fcea9f85c Author: Marek Szuba gentoo org> AuthorDate: Tue Aug 16 22:42:26 2022 +0000 Commit: Marek Szuba gentoo org> CommitDate: Tue Aug 16 22:42:26 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee22da29 app-crypt/libu2f-host: drop 1.1.10 Signed-off-by: Marek Szuba gentoo.org> app-crypt/libu2f-host/libu2f-host-1.1.10.ebuild | 48 ------------------------- 1 file changed, 48 deletions(-) diff --git a/app-crypt/libu2f-host/libu2f-host-1.1.10.ebuild b/app-crypt/libu2f-host/libu2f-host-1.1.10.ebuild deleted file mode 100644 index ad06c2b80ef9..000000000000 --- a/app-crypt/libu2f-host/libu2f-host-1.1.10.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit linux-info udev - -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 ~arm64 ~ppc64 x86" -IUSE="systemd" - -DEPEND="dev-libs/hidapi - dev-libs/json-c:=" -# The U2F device node will be owned by group 'plugdev' -# in non-systemd configurations -RDEPEND="${DEPEND} - !systemd? ( acct-group/plugdev ) - systemd? ( sys-apps/systemd[acl] )" -BDEPEND="virtual/pkgconfig" - -CONFIG_CHECK="~HIDRAW" - -PATCHES=( "${FILESDIR}/${P}-json-boolean.patch" ) - -src_configure() { - econf --disable-static -} - -src_install() { - default - if use kernel_linux; then - udev_dorules 70-u2f.rules - fi - - find "${ED}" -name '*.la' -delete || die -} - -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 -}