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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A805113835B for ; Thu, 25 Mar 2021 13:02:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A21C8E0822; Thu, 25 Mar 2021 13:02:15 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8D200E0822 for ; Thu, 25 Mar 2021 13:02:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0ED1F340AC0 for ; Thu, 25 Mar 2021 13:02:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4F7BB5FC for ; Thu, 25 Mar 2021 13:02:12 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1616676986.34c3cfae91633ab819dc4aa4bb079d318e20f460.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/fprintd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/fprintd/fprintd-0.8.1-r2.ebuild X-VCS-Directories: sys-auth/fprintd/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 34c3cfae91633ab819dc4aa4bb079d318e20f460 X-VCS-Branch: master Date: Thu, 25 Mar 2021 13:02:12 +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: 375919c0-6d3d-43e6-844c-bce9281bf074 X-Archives-Hash: 9b295949121ea5c12f1b95a0bdf9e44f commit: 34c3cfae91633ab819dc4aa4bb079d318e20f460 Author: scardracs scardovi com> AuthorDate: Sun Mar 21 13:07:35 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Mar 25 12:56:26 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34c3cfae sys-auth/fprintd: remove oldest version Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Marco Scardovi scardovi.com> Signed-off-by: Joonas Niilola gentoo.org> sys-auth/fprintd/fprintd-0.8.1-r2.ebuild | 67 -------------------------------- 1 file changed, 67 deletions(-) diff --git a/sys-auth/fprintd/fprintd-0.8.1-r2.ebuild b/sys-auth/fprintd/fprintd-0.8.1-r2.ebuild deleted file mode 100644 index 7769c96d310..00000000000 --- a/sys-auth/fprintd/fprintd-0.8.1-r2.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools pam systemd - -DESCRIPTION="D-Bus service to access fingerprint readers" -HOMEPAGE="https://cgit.freedesktop.org/libfprint/fprintd/" -MY_PV="V_$(ver_rs 0- _)" -SRC_URI="https://cgit.freedesktop.org/libfprint/${PN}/snapshot/${MY_PV}.tar.bz2 -> ${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ppc ppc64 sparc x86" -IUSE="doc pam static-libs" - -RDEPEND=" - dev-libs/dbus-glib - dev-libs/glib:2 - sys-auth/libfprint:0 - sys-auth/polkit - pam? ( sys-libs/pam ) -" -DEPEND="${RDEPEND} - dev-util/gtk-doc - dev-util/gtk-doc-am - dev-util/intltool - doc? ( dev-libs/libxml2 dev-libs/libxslt ) -" - -S=${WORKDIR}/${MY_PV} - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - $(use_enable pam) \ - $(use_enable static-libs static) \ - $(use_enable doc gtk-doc-html) \ - --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" -} - -src_install() { - emake DESTDIR="${D}" install \ - pammoddir=$(getpam_mod_dir) - - keepdir /var/lib/fprint - - find "${D}" -name "*.la" -delete || die - - dodoc AUTHORS NEWS README{,.transifex} TODO - newdoc pam/README README.pam_fprintd - if use doc ; then - docinto html - dodoc doc/{fprintd-docs,version}.xml - docinto html/dbus - dodoc doc/dbus/net.reactivated.Fprint.{Device,Manager}.ref.xml - fi -} - -pkg_postinst() { - elog "Please take a look at README.pam_fprintd for integration docs." -}