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 68E15158096 for ; Thu, 1 Sep 2022 23:22:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E0B9E09D5; Thu, 1 Sep 2022 23:22:50 +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 47F74E09D5 for ; Thu, 1 Sep 2022 23:22:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 49A0034117C for ; Thu, 1 Sep 2022 23:22:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A06F85AF for ; Thu, 1 Sep 2022 23:22:47 +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: <1662074318.f030de85fe196993b8c0a24cc437e6c57a153d04.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/ykpers/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/ykpers/ykpers-1.20.0.ebuild X-VCS-Directories: sys-auth/ykpers/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: f030de85fe196993b8c0a24cc437e6c57a153d04 X-VCS-Branch: master Date: Thu, 1 Sep 2022 23:22:47 +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: 5a24f7d5-6fd1-4691-977d-abd73a8a4b4e X-Archives-Hash: 74fe978f8f94ecc0f0a59e464413e085 commit: f030de85fe196993b8c0a24cc437e6c57a153d04 Author: Marek Szuba gentoo org> AuthorDate: Thu Sep 1 23:18:38 2022 +0000 Commit: Marek Szuba gentoo org> CommitDate: Thu Sep 1 23:18:38 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f030de85 sys-auth/ykpers: drop 1.20.0 Signed-off-by: Marek Szuba gentoo.org> sys-auth/ykpers/ykpers-1.20.0.ebuild | 54 ------------------------------------ 1 file changed, 54 deletions(-) diff --git a/sys-auth/ykpers/ykpers-1.20.0.ebuild b/sys-auth/ykpers/ykpers-1.20.0.ebuild deleted file mode 100644 index a77b20b63462..000000000000 --- a/sys-auth/ykpers/ykpers-1.20.0.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools udev - -DESCRIPTION="Library and tool for personalization of Yubico's YubiKey" -SRC_URI="https://github.com/Yubico/yubikey-personalization/archive/v${PV}.tar.gz -> ${P}.tar.gz" -HOMEPAGE="https://github.com/Yubico/yubikey-personalization" - -KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86" -SLOT="0" -LICENSE="BSD-2" -IUSE="static-libs" - -DEPEND=" - dev-libs/json-c:= - >=sys-auth/libyubikey-1.6 - virtual/libusb:1" -BDEPEND=" - app-text/asciidoc - virtual/pkgconfig" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/yubikey-personalization-${PV}" -PATCHES=( - "${FILESDIR}"/${PN}-1.20.0-fix-gcc10-fno-common.patch - "${FILESDIR}"/${PN}-1.20.0-json-boolean.patch -) - -DOCS=( doc/. AUTHORS NEWS README ) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - local myeconfargs=( - --libdir=/usr/$(get_libdir) - --localstatedir=/var - $(use_enable static-libs static) - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - - udev_dorules 69-yubikey.rules - - find "${D}" -name '*.la' -delete || die -}