Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/libfprint/
Date: Wed, 20 Oct 2021 03:26:26
Message-Id: 1634700368.1055403d40c3c7c5ae7c13cb9623a2fe34c388f1.sam@gentoo
1 commit: 1055403d40c3c7c5ae7c13cb9623a2fe34c388f1
2 Author: Marco Scardovi <marco <AT> scardovi <DOT> com>
3 AuthorDate: Mon Jul 5 20:07:53 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 20 03:26:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1055403d
7
8 sys-auth/libfprint: drop older version
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Marco Scardovi <marco <AT> scardovi.com>
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 sys-auth/libfprint/Manifest | 1 -
15 sys-auth/libfprint/libfprint-1.90.6.ebuild | 47 ------------------------------
16 2 files changed, 48 deletions(-)
17
18 diff --git a/sys-auth/libfprint/Manifest b/sys-auth/libfprint/Manifest
19 index 3c6eee7e080..cd36771ff26 100644
20 --- a/sys-auth/libfprint/Manifest
21 +++ b/sys-auth/libfprint/Manifest
22 @@ -1,4 +1,3 @@
23 DIST libfprint-1.0.tar.gz 475347 BLAKE2B cb560898cec11861c4529c0c37c328f74eaf271c1932ca5126b7bd6c82fafee24aff393c0fe223fef018a34a409647065d5f98a999c00f0e7a879e33bdfcd3cb SHA512 2d7f569368035cce0a579ef3412a1961c28aab254ae6174ce9ad11ce97b3dce824d0c6123adac12718cb074439e4d5b93bf978e5341824f179231d1faa219a26
24 -DIST libfprint-1.90.6.tar.gz 6375191 BLAKE2B 0e6300da25eb910dc50c3752731f877ad26093bd901a8de222ec21965596fe88e643b0923edc4e100d96e3910595bb00c3935ef8b19840ac5c4ff1d9405f2d09 SHA512 91ce2bbc5bed17d8a343fa78cede3d0f14a83706a9c950334db98933ceea5c11c3af81f9692108bf49b3a31f91a4be34812f27a7703f164ebffdbc29eb73fac8
25 DIST libfprint-1.90.7.tar.gz 6375722 BLAKE2B d0cb085c3846e870ff31dc346b8e138ab994f03e428aa1887066e56243d10179f3674538841edc75e02c8b58fc9a2ea1e97999fa919bad033aa52c88742948fd SHA512 2781ebb337cbd37affe203a7d054651abc7de4f2f450cddfb78a29e4f93e6a698dd950cc9be7112f43c5a892309e75b11e46cdcb60359859aae3811468adc8af
26 DIST libfprint-1.92.0.tar.gz 8434928 BLAKE2B eba5d103a7ffc1d297bc276baac1f55dcc308bc18a4507fa53552044eb1a57bdb04cab0d81ee1b4022b5407f3cea06f72a686eac1b1cc5b178258b33e81b9216 SHA512 5f802aa65525bbe1c057053f9752052fe8f4e614ec22d373339cba42396a4e7ffe9cbdf7a7b732729e9aac7a4cde42fb5156949e83c574a30c0ad7b23ae4bc38
27
28 diff --git a/sys-auth/libfprint/libfprint-1.90.6.ebuild b/sys-auth/libfprint/libfprint-1.90.6.ebuild
29 deleted file mode 100644
30 index 2b84a6e8081..00000000000
31 --- a/sys-auth/libfprint/libfprint-1.90.6.ebuild
32 +++ /dev/null
33 @@ -1,47 +0,0 @@
34 -# Copyright 1999-2021 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -
39 -inherit meson udev
40 -
41 -DESCRIPTION="library to add support for consumer fingerprint readers"
42 -HOMEPAGE="https://cgit.freedesktop.org/libfprint/libfprint/ https://github.com/freedesktop/libfprint https://gitlab.freedesktop.org/libfprint/libfprint"
43 -SRC_URI="https://gitlab.freedesktop.org/libfprint/libfprint/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="LGPL-2.1"
46 -SLOT="2"
47 -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ppc64 ~sparc x86"
48 -IUSE="examples +introspection"
49 -
50 -RDEPEND="dev-libs/glib:2
51 - >=dev-libs/libgusb-0.3.1
52 - dev-libs/nss
53 - virtual/libusb:1=
54 - x11-libs/gtk+:3
55 - x11-libs/pixman
56 - x11-libs/libX11
57 - x11-libs/libXv
58 - !>=${CATEGORY}/${PN}-1.90:0"
59 -
60 -DEPEND="${RDEPEND}"
61 -
62 -BDEPEND="virtual/pkgconfig
63 - introspection? ( dev-libs/gobject-introspection )"
64 -
65 -PATCHES=( ${FILESDIR}/${PN}-0.8.2-fix-implicit-declaration.patch )
66 -
67 -S="${WORKDIR}/${PN}-v${PV}"
68 -
69 -src_configure() {
70 - local emesonargs=(
71 - -Ddoc=false
72 - $(meson_use examples gtk-examples)
73 - $(meson_use introspection)
74 - -Ddrivers=all
75 - -Dudev_rules=true
76 - -Dudev_rules_dir=$(get_udevdir)/rules.d
77 - --libdir=/usr/$(get_libdir)
78 - )
79 - meson_src_configure
80 -}