Compare commits

..

No commits in common. "042481519a560256d68d184cf9e4236f84a13cc0" and "7d75aa3912731b9986c8e645037ee2fc28e48281" have entirely different histories.

6 changed files with 11 additions and 41 deletions

2
.gitignore vendored
View File

@ -15,5 +15,3 @@ libfprint-0.3.0.tar.bz2
/libfprint-v1.90.5.tar.gz
/libfprint-v1.90.6.tar.gz
/libfprint-v1.90.7.tar.gz
/libfprint-v1.94.0.tar.gz
/libfprint-v1.94.5.tar.gz

View File

@ -1 +0,0 @@
1d5afbd6fe0f9b1115a12daeb15965b2b9af52c1 libfprint-v1.94.5.tar.gz

View File

@ -1,6 +1,6 @@
--- !Policy
product_versions:
- rhel-9
decision_context: osci_compose_gate
- fedora-*
decision_context: bodhi_update_push_testing
rules:
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
- !PassingTestCaseRule {test_case_name: dist.depcheck}

View File

@ -1,7 +1,7 @@
Name: libfprint
Version: 1.94.5
Release: 1%{?dist}
Version: 1.90.7
Release: 2%{?dist}
Summary: Toolkit for fingerprint scanner
License: LGPLv2+
@ -19,7 +19,6 @@ BuildRequires: pkgconfig(gusb) >= 0.3.0
BuildRequires: pkgconfig(nss)
BuildRequires: pkgconfig(pixman-1)
BuildRequires: gtk-doc
BuildRequires: libgudev-devel
# For the udev.pc to install the rules
BuildRequires: systemd
BuildRequires: gobject-introspection-devel
@ -44,7 +43,7 @@ developing applications that use %{name}.
%build
# Include the virtual image driver for integration tests
%meson -Dgtk-examples=false -Ddrivers=all -Dudev_hwdb=disabled
%meson -Dx11-examples=false -Ddrivers=all
%meson_build
%install
@ -53,14 +52,14 @@ developing applications that use %{name}.
%ldconfig_scriptlets
%check
%meson_test -t 4
%meson_test
%files
%license COPYING
%doc NEWS THANKS AUTHORS README.md
%doc NEWS TODO THANKS AUTHORS README
%{_libdir}/*.so.*
%{_libdir}/girepository-1.0/*.typelib
%{_udevrulesdir}/70-libfprint-2.rules
%{_udevrulesdir}/60-libfprint-2-autosuspend.rules
%files devel
%doc HACKING.md
@ -71,29 +70,6 @@ developing applications that use %{name}.
%{_datadir}/gtk-doc/html/libfprint-2/
%changelog
* Mon Dec 19 2022 Bastien Nocera <bnocera@redhat.com> - 1.94.5-1
- Update to 1.94.5
Resolves: rhbz#2148088
* Wed Aug 25 2021 Benjamin Berg <bberg@redhat.com> - 1.94.0-3
- Rebuilt with gating test fix for skipped tests
Related: #1981216
* Wed Aug 25 2021 Benjamin Berg <bberg@redhat.com> - 1.94.0-2
- Rebuilt for gating
Related: #1981216
* Mon Aug 23 2021 Benjamin Berg <bberg@redhat.com> - 1.94.0-1
- Update to 1.94.0
Resolves: #1981216
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.90.7-4
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Related: rhbz#1991688
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.90.7-3
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.90.7-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild

View File

@ -1 +1 @@
SHA512 (libfprint-v1.94.5.tar.gz) = 033b7239acebfcccbb9f275cbbca52d68bf4a3a62f4c39a6323c943924532f73233fa3bf2e9517f6f4de04f513ba30776fcd3a98ebb8467fd2826e72a3ae3529
SHA512 (libfprint-v1.90.7.tar.gz) = 07803315c89000db4caae5ae64e19042d83638a866fb3d8bcc5e1efcc44424d321974021a9a43db362baa85f0c52fd40dc97ec186eee0954671ddb04f5dfaf2d

View File

@ -31,10 +31,7 @@ for test in ${TESTS[@]}; do
RES=$?
echo "$test finished with return code $RES"
echo ""
# Ignore skipped tests
if [ $RES -ne 0 -a $RES -ne 77 ]; then
RESULT=1
fi
((RESULT += $RES))
done
exit $RESULT