Compare commits
No commits in common. "c8" and "c9s" have entirely different histories.
17
.gitignore
vendored
17
.gitignore
vendored
@ -1 +1,16 @@
|
||||
SOURCES/leptonica-1.76.0.tar.gz
|
||||
/leptonica-1.69.tar.gz
|
||||
/leptonica-1.71.tar.gz
|
||||
/leptonica-1.72.tar.gz
|
||||
/leptonica-1.73.tar.gz
|
||||
/leptonica-1.74.0.tar.gz
|
||||
/leptonica-1.74.1.tar.gz
|
||||
/leptonica-1.74.2.tar.gz
|
||||
/leptonica-1.74.3.tar.gz
|
||||
/leptonica-1.74.4.tar.gz
|
||||
/leptonica-1.75.2.tar.gz
|
||||
/leptonica-1.75.3.tar.gz
|
||||
/leptonica-1.76.0.tar.gz
|
||||
/leptonica-1.77.0.tar.gz
|
||||
/leptonica-1.78.0.tar.gz
|
||||
/leptonica-1.79.0.tar.gz
|
||||
/leptonica-1.80.0.tar.gz
|
||||
|
@ -1 +0,0 @@
|
||||
0e7bcacee4191077ebecd220ed12e88f0f26828d SOURCES/leptonica-1.76.0.tar.gz
|
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-9
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
@ -1,9 +1,15 @@
|
||||
%if 0%{?rhel} >= 9
|
||||
%bcond_with gnuplot
|
||||
%else
|
||||
%bcond_without gnuplot
|
||||
%endif
|
||||
|
||||
Name: leptonica
|
||||
Version: 1.76.0
|
||||
Release: 2%{?dist}
|
||||
Version: 1.80.0
|
||||
Release: 4%{?dist}.1
|
||||
Summary: C library for efficient image processing and image analysis operations
|
||||
|
||||
License: BSD and Leptonica
|
||||
License: Leptonica
|
||||
URL: https://github.com/danbloomberg/leptonica
|
||||
Source0: https://github.com/DanBloomberg/leptonica/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
|
||||
@ -18,8 +24,11 @@ BuildRequires: libtiff-devel
|
||||
BuildRequires: libwebp-devel
|
||||
BuildRequires: zlib-devel
|
||||
|
||||
# Needed for baseline_reg test
|
||||
# Needed for several tests
|
||||
%if %{with gnuplot}
|
||||
BuildRequires: gnuplot
|
||||
%endif
|
||||
BuildRequires: make
|
||||
|
||||
|
||||
%description
|
||||
@ -49,6 +58,7 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
The %{name}-devel package contains header files for
|
||||
developing applications that use %{name}.
|
||||
|
||||
|
||||
%package tools
|
||||
Summary: Leptonica utility tools
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
@ -77,10 +87,6 @@ install -Dpm 0644 lept.pc %{buildroot}/%{_libdir}/pkgconfig
|
||||
make check VERBOSE=1
|
||||
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
|
||||
%files
|
||||
%license leptonica-license.txt
|
||||
%doc README.html version-notes.html
|
||||
@ -89,16 +95,55 @@ make check VERBOSE=1
|
||||
%files devel
|
||||
%{_includedir}/%{name}
|
||||
%{_libdir}/liblept.so
|
||||
%{_libdir}/libleptonica.so
|
||||
%{_libdir}/pkgconfig/lept.pc
|
||||
%{_libdir}/cmake/LeptonicaConfig-version.cmake
|
||||
%{_libdir}/cmake/LeptonicaConfig.cmake
|
||||
|
||||
%files tools
|
||||
%{_bindir}/*
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Aug 09 2018 Jiri Kucera <jkucera@redhat.com> - 1.76.0-2
|
||||
- Added BSD license
|
||||
Resolves: #1614262
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.80.0-4.1
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.80.0-3.1
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Tue Feb 9 2021 Pavel Cahyna <pcahyna@redhat.com> - 1.80.0-2.el9.1
|
||||
- Make gnuplot build dependency optional, used only by tests
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.80.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Thu Jul 30 2020 Sandro Mani <manisandro@gmail.com> - 1.80.0-1
|
||||
- Update to 1.80.0
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.79.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.79.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Jan 03 2020 Sandro Mani <manisandro@gmail.com> - 1.79.0-1
|
||||
- Update to 1.79.0
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.78.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Wed Mar 27 2019 Sandro Mani <manisandro@gmail.com> - 1.78.0-1
|
||||
- Update to 1.78.0
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.77.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Wed Dec 19 2018 Sandro Mani <manisandro@gmail.com> - 1.77.0-1
|
||||
- Update to 1.77.0
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.76.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu May 03 2018 Sandro Mani <manisandro@gmail.com> - 1.76.0-1
|
||||
- Update to 1.76.0
|
Loading…
Reference in New Issue
Block a user