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 02E4B158086 for ; Fri, 19 Nov 2021 21:58:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 152F52BC001; Fri, 19 Nov 2021 21:58:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 341FF2BC001 for ; Fri, 19 Nov 2021 21:58:45 +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 CB2523430C7 for ; Fri, 19 Nov 2021 21:58:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F9CF1BD for ; Fri, 19 Nov 2021 21:58:42 +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: <1637358997.6c89ecdb7191bc7d19a805aa28f4315f8ad88242.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild X-VCS-Directories: app-crypt/libu2f-server/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 6c89ecdb7191bc7d19a805aa28f4315f8ad88242 X-VCS-Branch: master Date: Fri, 19 Nov 2021 21:58:42 +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: 5b53f60d-167a-4527-a8e8-553ea728af84 X-Archives-Hash: a7fec7ae3a6ae708bc8139be1daf9334 commit: 6c89ecdb7191bc7d19a805aa28f4315f8ad88242 Author: Marek Szuba gentoo org> AuthorDate: Fri Nov 19 21:56:37 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Fri Nov 19 21:56:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c89ecdb app-crypt/libu2f-server: drop 1.1.0 Signed-off-by: Marek Szuba gentoo.org> app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild | 52 ---------------------- 1 file changed, 52 deletions(-) diff --git a/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild b/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild deleted file mode 100644 index b90c56b31204..000000000000 --- a/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools multilib-minimal - -DESCRIPTION="Yubico Universal 2nd Factor (U2F) server C Library" -HOMEPAGE="https://developers.yubico.com/libu2f-server/" -SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz" - -LICENSE="BSD-2" -SLOT="0/0.1" -KEYWORDS="amd64 x86" -IUSE="static-libs test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/openssl:0=[${MULTILIB_USEDEP}] - dev-libs/hidapi[${MULTILIB_USEDEP}] - dev-libs/json-c:=[${MULTILIB_USEDEP}] -" -DEPEND="${RDEPEND} - virtual/pkgconfig - test? ( dev-libs/check[${MULTILIB_USEDEP}] ) -" - -PATCHES=( - "${FILESDIR}/${PN}-1.1.0-disable-help2man-gengetopt-checks.patch" - "${FILESDIR}/${PN}-1.1.0-jsonc014.patch" -) - -src_prepare() { - default - eautoreconf - touch man/u2f-server.1 || die # do not rebuild the man page -} - -multilib_src_configure() { - myeconfargs=( - --disable-h2a # tarball already contains the manpage - $(use_enable static-libs static) - $(use_enable test tests) - ) - - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" -} - -multilib_src_install_all() { - default - find "${D}" -name '*.la' -delete || die -}