|
|
68374e |
Summary: Command-line tools and library for transforming PDF files
|
|
|
68374e |
Name: qpdf
|
|
|
68374e |
Version: 10.3.1
|
|
|
a1ba61 |
Release: 7%{?dist}
|
|
|
68374e |
# MIT: e.g. libqpdf/sha2.c
|
|
|
68374e |
# upstream uses ASL 2.0 now, but he allowed other to distribute qpdf under
|
|
|
68374e |
# old license (see README)
|
|
|
68374e |
License: (Artistic 2.0 or ASL 2.0) and MIT
|
|
|
68374e |
URL: http://qpdf.sourceforge.net/
|
|
|
68374e |
Source0: http://downloads.sourceforge.net/sourceforge/qpdf/qpdf-%{version}.tar.gz
|
|
|
68374e |
|
|
|
68374e |
Patch0: qpdf-doc.patch
|
|
|
68374e |
# zlib has optimalization for aarch64 now, which gives different output after
|
|
|
68374e |
# compression - patch erases 3 tests with generated object stream which were failing
|
|
|
68374e |
Patch1: qpdf-erase-tests-with-generated-object-stream.patch
|
|
|
68374e |
# make qpdf working under FIPS, downstream patch
|
|
|
68374e |
Patch2: qpdf-relax.patch
|
|
|
68374e |
# 1950033 - Possible changes in zlib output causes FTBFS for qpdf
|
|
|
68374e |
Patch3: qpdf-s390x-disable-streamtest.patch
|
|
|
68374e |
|
|
|
68374e |
# gcc and gcc-c++ are no longer in buildroot by default
|
|
|
68374e |
# gcc is needed for qpdf-ctest.c
|
|
|
68374e |
BuildRequires: gcc
|
|
|
68374e |
# gcc-c++ is need for everything except for qpdf-ctest
|
|
|
68374e |
BuildRequires: gcc-c++
|
|
|
68374e |
# uses make
|
|
|
68374e |
BuildRequires: make
|
|
|
68374e |
|
|
|
68374e |
BuildRequires: zlib-devel
|
|
|
68374e |
BuildRequires: libjpeg-turbo-devel
|
|
|
68374e |
BuildRequires: pcre-devel
|
|
|
68374e |
|
|
|
68374e |
# for gnutls crypto
|
|
|
68374e |
BuildRequires: gnutls-devel
|
|
|
68374e |
|
|
|
68374e |
# for fix-qdf and test suite
|
|
|
68374e |
BuildRequires: perl-generators
|
|
|
68374e |
BuildRequires: perl-interpreter
|
|
|
68374e |
BuildRequires: perl(Carp)
|
|
|
68374e |
BuildRequires: perl(Config)
|
|
|
68374e |
BuildRequires: perl(constant)
|
|
|
68374e |
BuildRequires: perl(Cwd)
|
|
|
68374e |
BuildRequires: perl(Digest::MD5)
|
|
|
68374e |
BuildRequires: perl(Digest::SHA)
|
|
|
68374e |
BuildRequires: perl(File::Basename)
|
|
|
68374e |
BuildRequires: perl(File::Copy)
|
|
|
68374e |
BuildRequires: perl(File::Find)
|
|
|
68374e |
BuildRequires: perl(File::Spec)
|
|
|
68374e |
BuildRequires: perl(FileHandle)
|
|
|
68374e |
BuildRequires: perl(IO::Handle)
|
|
|
68374e |
BuildRequires: perl(IO::Select)
|
|
|
68374e |
BuildRequires: perl(IO::Socket)
|
|
|
68374e |
BuildRequires: perl(POSIX)
|
|
|
68374e |
BuildRequires: perl(strict)
|
|
|
68374e |
# perl(Term::ANSIColor) - not needed for tests
|
|
|
68374e |
# perl(Term::ReadKey) - not needed for tests
|
|
|
68374e |
|
|
|
68374e |
# for autoreconf
|
|
|
68374e |
BuildRequires: autoconf
|
|
|
68374e |
BuildRequires: automake
|
|
|
68374e |
BuildRequires: libtool
|
|
|
68374e |
|
|
|
68374e |
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
68374e |
|
|
|
68374e |
%package libs
|
|
|
68374e |
Summary: QPDF library for transforming PDF files
|
|
|
68374e |
|
|
|
68374e |
%package devel
|
|
|
68374e |
Summary: Development files for QPDF library
|
|
|
68374e |
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
68374e |
|
|
|
68374e |
%package doc
|
|
|
68374e |
Summary: QPDF Manual
|
|
|
68374e |
BuildArch: noarch
|
|
|
68374e |
Requires: %{name}-libs = %{version}-%{release}
|
|
|
68374e |
|
|
|
68374e |
%description
|
|
|
68374e |
QPDF is a command-line program that does structural, content-preserving
|
|
|
68374e |
transformations on PDF files. It could have been called something
|
|
|
68374e |
like pdf-to-pdf. It includes support for merging and splitting PDFs
|
|
|
68374e |
and to manipulate the list of pages in a PDF file. It is not a PDF viewer
|
|
|
68374e |
or a program capable of converting PDF into other formats.
|
|
|
68374e |
|
|
|
68374e |
%description libs
|
|
|
68374e |
QPDF is a C++ library that inspect and manipulate the structure of PDF files.
|
|
|
68374e |
It can encrypt and linearize files, expose the internals of a PDF file,
|
|
|
68374e |
and do many other operations useful to PDF developers.
|
|
|
68374e |
|
|
|
68374e |
%description devel
|
|
|
68374e |
Header files and libraries necessary
|
|
|
68374e |
for developing programs using the QPDF library.
|
|
|
68374e |
|
|
|
68374e |
%description doc
|
|
|
68374e |
QPDF Manual
|
|
|
68374e |
|
|
|
68374e |
%prep
|
|
|
68374e |
%setup -q
|
|
|
68374e |
|
|
|
68374e |
# fix 'complete manual location' note in man pages
|
|
|
68374e |
%patch0 -p1 -b .doc
|
|
|
68374e |
%ifarch aarch64
|
|
|
68374e |
%patch1 -p1 -b .erase-tests-with-generated-object-stream
|
|
|
68374e |
%endif
|
|
|
68374e |
%patch2 -p1 -b .relax
|
|
|
68374e |
%ifarch s390x
|
|
|
68374e |
%patch3 -p1 -b .s390x-disable-streamtest
|
|
|
68374e |
%endif
|
|
|
68374e |
|
|
|
68374e |
%build
|
|
|
68374e |
# work-around check-rpaths errors
|
|
|
68374e |
autoreconf --verbose --force --install
|
|
|
68374e |
# automake files needed to be regenerated in 8.4.0 - check if this can be removed
|
|
|
68374e |
# in the next qpdf release
|
|
|
68374e |
./autogen.sh
|
|
|
68374e |
|
|
|
68374e |
%configure --disable-static \
|
|
|
68374e |
--enable-crypto-gnutls \
|
|
|
68374e |
--disable-implicit-crypto \
|
|
|
68374e |
--enable-show-failed-test-output
|
|
|
68374e |
|
|
|
68374e |
%make_build
|
|
|
68374e |
|
|
|
68374e |
%install
|
|
|
68374e |
%make_install
|
|
|
68374e |
|
|
|
68374e |
rm -f %{buildroot}%{_libdir}/libqpdf.la
|
|
|
68374e |
|
|
|
68374e |
%check
|
|
|
68374e |
make check
|
|
|
68374e |
|
|
|
68374e |
%ldconfig_scriptlets libs
|
|
|
68374e |
|
|
|
68374e |
%files
|
|
|
68374e |
%{_bindir}/fix-qdf
|
|
|
68374e |
%{_bindir}/qpdf
|
|
|
68374e |
%{_bindir}/zlib-flate
|
|
|
68374e |
%{_mandir}/man1/*
|
|
|
68374e |
|
|
|
68374e |
%files libs
|
|
|
68374e |
%doc README.md TODO ChangeLog
|
|
|
68374e |
%license Artistic-2.0
|
|
|
68374e |
%{_libdir}/libqpdf.so.28
|
|
|
68374e |
%{_libdir}/libqpdf.so.28.3.1
|
|
|
68374e |
|
|
|
68374e |
%files devel
|
|
|
68374e |
%doc examples/*.cc examples/*.c
|
|
|
68374e |
%{_includedir}/qpdf/
|
|
|
68374e |
%{_libdir}/libqpdf.so
|
|
|
68374e |
%{_libdir}/pkgconfig/libqpdf.pc
|
|
|
68374e |
|
|
|
68374e |
%files doc
|
|
|
68374e |
%{_pkgdocdir}
|
|
|
68374e |
|
|
|
68374e |
|
|
|
68374e |
%changelog
|
|
|
a1ba61 |
* Wed Jan 04 2023 Zdenek Dohnal <zdohnal@redhat.com> - 10.3.1-7
|
|
|
a1ba61 |
- 2157765 - Ship qpdf-devel in CRB
|
|
|
a1ba61 |
|
|
|
260fb4 |
* Fri Jul 15 2022 Zdenek Dohnal <zdohnal@redhat.com> - 10.3.1-6
|
|
|
05547d |
- 2106940 - FIPS breaks pdftopdf and bannertopdf
|
|
|
05547d |
|
|
|
260fb4 |
* Wed Jun 29 2022 Zdenek Dohnal <zdohnal@redhat.com> - 10.3.1-5
|
|
|
260fb4 |
- 2095993 - Move qpdf to CRB repository
|
|
|
260fb4 |
|
|
|
68374e |
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 10.3.1-4
|
|
|
68374e |
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
68374e |
Related: rhbz#1991688
|
|
|
68374e |
|
|
|
68374e |
* Tue Apr 20 2021 Zdenek Dohnal <zdohnal@redhat.com> - 10.3.1-3
|
|
|
68374e |
- 1950033 - Possible changes in zlib output causes FTBFS for qpdf
|
|
|
68374e |
|
|
|
68374e |
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 10.3.1-2
|
|
|
68374e |
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
68374e |
|
|
|
68374e |
* Fri Mar 12 2021 Zdenek Dohnal <zdohnal@redhat.com> - 10.3.1-1
|
|
|
68374e |
- 1937988 - qpdf-10.3.1 is available
|
|
|
68374e |
|
|
|
68374e |
* Thu Mar 11 2021 Zdenek Dohnal <zdohnal@redhat.com> - 10.3.0-1
|
|
|
68374e |
- 1935799 - qpdf-10.3.0 is available
|
|
|
68374e |
|
|
|
68374e |
* Wed Feb 24 2021 Zdenek Dohnal <zdohnal@redhat.com> - 10.2.0-1
|
|
|
68374e |
- 1932052 - qpdf-10.2.0 is available
|
|
|
68374e |
|
|
|
68374e |
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 10.1.0-2
|
|
|
68374e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
68374e |
|
|
|
68374e |
* Mon Jan 11 2021 Zdenek Dohnal <zdohnal@redhat.com> - 10.1.0-1
|
|
|
68374e |
- 1912951 - qpdf-10.1.0 is available
|
|
|
68374e |
|
|
|
68374e |
* Mon Nov 23 2020 Zdenek Dohnal <zdohnal@redhat.com> - 10.0.4-1
|
|
|
68374e |
- 1900262 - qpdf-10.0.4 is available
|
|
|
68374e |
|
|
|
68374e |
* Thu Nov 05 2020 Zdenek Dohnal <zdohnal@redhat.com> - 10.0.3-2
|
|
|
68374e |
- make is no longer in buildroot by default
|
|
|
68374e |
|
|
|
68374e |
* Mon Nov 02 2020 Zdenek Dohnal <zdohnal@redhat.com> - 10.0.3-1
|
|
|
68374e |
- 10.0.3
|
|
|
68374e |
|
|
|
68374e |
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 10.0.1-2
|
|
|
68374e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
68374e |
|
|
|
68374e |
* Tue Apr 14 2020 Zdenek Dohnal <zdohnal@redhat.com> - 10.0.1-1
|
|
|
68374e |
- 10.0.1
|
|
|
68374e |
|
|
|
68374e |
* Wed Mar 25 2020 Jitka Plesnikova <jplesnik@redhat.com> - 9.1.1-3
|
|
|
68374e |
- Add all perl dependencies for tests
|
|
|
68374e |
|
|
|
68374e |
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 9.1.1-2
|
|
|
68374e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
68374e |
|
|
|
68374e |
* Mon Jan 27 2020 Zdenek Dohnal <zdohnal@redhat.com> - 9.1.1-1
|
|
|
68374e |
- 9.1.1
|
|
|
68374e |
|
|
|
68374e |
* Tue Nov 19 2019 Zdenek Dohnal <zdohnal@redhat.com> - 9.1.0-1
|
|
|
68374e |
- 9.1.0
|
|
|
68374e |
|
|
|
68374e |
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 8.4.2-2
|
|
|
68374e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
68374e |
|
|
|
68374e |
* Fri May 31 2019 Zdenek Dohnal <zdohnal@redhat.com> - 8.4.2-1
|
|
|
68374e |
- 8.4.2
|
|
|
68374e |
|
|
|
68374e |
* Mon Mar 25 2019 Zdenek Dohnal <zdohnal@redhat.com> - 8.4.0-1
|
|
|
68374e |
- 8.4.0
|
|
|
68374e |
|
|
|
68374e |
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 8.3.0-2
|
|
|
68374e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
68374e |
|
|
|
68374e |
* Mon Jan 14 2019 Zdenek Dohnal <zdohnal@redhat.com> - 8.3.0-1
|
|
|
68374e |
- 8.3.0
|
|
|
68374e |
|
|
|
68374e |
* Mon Sep 24 2018 Zdenek Dohnal <zdohnal@redhat.com> - 8.2.1-1
|
|
|
68374e |
- 8.2.1
|
|
|
68374e |
|
|
|
68374e |
* Tue Jul 24 2018 Zdenek Dohnal <zdohnal@redhat.com> - 8.1.0-4
|
|
|
68374e |
- correcting license
|
|
|
68374e |
|
|
|
68374e |
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 8.1.0-3
|
|
|
68374e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
68374e |
|
|
|
68374e |
* Wed Jul 11 2018 Zdenek Dohnal <zdohnal@redhat.com> - 8.1.0-2
|
|
|
68374e |
- ship license in correct tag, mention optional change of license
|
|
|
68374e |
|
|
|
68374e |
* Mon Jun 25 2018 Zdenek Dohnal <zdohnal@redhat.com> - 8.1.0-1
|
|
|
68374e |
- 8.1.0
|
|
|
68374e |
- more tests fail because aarch64 zlib optimization - add patch for it
|
|
|
68374e |
|
|
|
68374e |
* Fri May 25 2018 Zdenek Dohnal <zdohnal@redhat.com> - 8.0.2-3
|
|
|
68374e |
- erase failing tests for aarch64 because of zlib optimization
|
|
|
68374e |
|
|
|
68374e |
* Mon Apr 16 2018 Zdenek Dohnal <zdohnal@redhat.com>
|
|
|
68374e |
- CVE-2018-9918 qpdf: stack exhaustion in QPDFObjectHandle and QPDF_Dictionary classes in libqpdf.a [fedora-all]
|
|
|
68374e |
|
|
|
68374e |
* Wed Mar 07 2018 Zdenek Dohnal <zdohnal@redhat.com> - 8.0.2-1
|
|
|
68374e |
- 8.0.2
|
|
|
68374e |
|
|
|
68374e |
* Mon Mar 05 2018 Zdenek Dohnal <zdohnal@redhat.com> - 8.0.1-1
|
|
|
68374e |
- 8.0.1
|
|
|
68374e |
|
|
|
68374e |
* Tue Feb 27 2018 Rex Dieter <rdieter@fedoraproject.org> - 8.0.0-2
|
|
|
68374e |
- use %%license, %%ldconfig_scriptlets, %%make_build, %%make_install
|
|
|
68374e |
- %%files: track files more closely, libqpdf soname in particular
|
|
|
68374e |
|
|
|
68374e |
* Mon Feb 26 2018 Zdenek Dohnal <zdohnal@redhat.com> - 8.0.0-1
|
|
|
68374e |
- rebase to 8.0.0
|
|
|
68374e |
|
|
|
68374e |
* Mon Feb 19 2018 Zdenek Dohnal <zdohnal@redhat.com> - 7.1.1-4
|
|
|
68374e |
- gcc and gcc-c++ are no longer in buildroot by default
|
|
|
68374e |
|
|
|
68374e |
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 7.1.1-3
|
|
|
68374e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
68374e |
|
|
|
68374e |
* Thu Feb 08 2018 Zdenek Dohnal <zdohnal@redhat.com> - 7.1.1-2
|
|
|
68374e |
- remove old stuff
|
|
|
68374e |
|
|
|
68374e |
* Mon Feb 05 2018 Zdenek Dohnal <zdohnal@redhat.com> - 7.1.1-1
|
|
|
68374e |
- rebase to 7.1.1
|
|
|
68374e |
|
|
|
68374e |
* Tue Sep 19 2017 Zdenek Dohnal <zdohnal@redhat.com> - 7.0.0-1
|
|
|
68374e |
- rebase to 7.0.0
|
|
|
68374e |
|
|
|
68374e |
* Fri Aug 11 2017 Zdenek Dohnal <zdohnal@redhat.com> - 6.0.0-10
|
|
|
68374e |
- adding patches for CVE back (cups-filters needed to rebuild)
|
|
|
68374e |
|
|
|
68374e |
* Mon Aug 07 2017 Zdenek Dohnal <zdohnal@redhat.com> - 6.0.0-9
|
|
|
68374e |
- removing patches for CVEs, because they break other things now
|
|
|
68374e |
|
|
|
68374e |
* Thu Aug 03 2017 Zdenek Dohnal <zdohnal@redhat.com> - 6.0.0-8
|
|
|
68374e |
- 1477213 - Detect recursions loop resolving objects
|
|
|
68374e |
- 1454820 - CVE-2017-9208
|
|
|
68374e |
- 1454820 - CVE-2017-9209
|
|
|
68374e |
- 1454820 - CVE-2017-9210
|
|
|
68374e |
|
|
|
68374e |
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-7
|
|
|
68374e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
68374e |
|
|
|
68374e |
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-6
|
|
|
68374e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
68374e |
|
|
|
68374e |
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0.0-5
|
|
|
68374e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
|
|
|
68374e |
|
|
|
68374e |
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-4
|
|
|
68374e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
68374e |
|
|
|
68374e |
* Wed Aug 03 2016 Jiri Popelka <jpopelka@redhat.com> - 6.0.0-3
|
|
|
68374e |
- %%{_defaultdocdir}/qpdf/ -> %%{_pkgdocdir}
|
|
|
68374e |
|
|
|
68374e |
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-2
|
|
|
68374e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
68374e |
|
|
|
68374e |
* Wed Nov 11 2015 Jiri Popelka <jpopelka@redhat.com> - 6.0.0-1
|
|
|
68374e |
- 6.0.0
|
|
|
68374e |
|
|
|
68374e |
* Mon Nov 09 2015 Jiri Popelka <jpopelka@redhat.com> - 5.2.0-1
|
|
|
68374e |
- 5.2.0
|
|
|
68374e |
|
|
|
68374e |
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.3-2
|
|
|
68374e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
68374e |
|
|
|
68374e |
* Mon May 25 2015 Jiri Popelka <jpopelka@redhat.com> - 5.1.3
|
|
|
68374e |
- New upstream release 5.1.3
|
|
|
68374e |
|
|
|
68374e |
* Tue Apr 14 2015 Jiri Popelka <jpopelka@redhat.com> - 5.1.2-5
|
|
|
68374e |
- rebuilt
|
|
|
68374e |
|
|
|
68374e |
* Mon Feb 16 2015 Jiri Popelka <jpopelka@redhat.com> - 5.1.2-4
|
|
|
68374e |
- rebuilt
|
|
|
68374e |
|
|
|
68374e |
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.2-3
|
|
|
68374e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
68374e |
|
|
|
68374e |
* Fri Aug 15 2014 Jiri Popelka <jpopelka@redhat.com> - 5.1.2-2
|
|
|
68374e |
- Use %%_defaultdocdir instead of %%doc
|
|
|
68374e |
|
|
|
68374e |
* Mon Jun 09 2014 Jiri Popelka <jpopelka@redhat.com> - 5.1.2-1
|
|
|
68374e |
- 5.1.2
|
|
|
68374e |
|
|
|
68374e |
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.1-2
|
|
|
68374e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
68374e |
|
|
|
68374e |
* Wed Jan 15 2014 Jiri Popelka <jpopelka@redhat.com> - 5.1.1-1
|
|
|
68374e |
- 5.1.1
|
|
|
68374e |
|
|
|
68374e |
* Wed Dec 18 2013 Jiri Popelka <jpopelka@redhat.com> - 5.1.0-1
|
|
|
68374e |
- 5.1.0
|
|
|
68374e |
|
|
|
68374e |
* Mon Oct 21 2013 Jiri Popelka <jpopelka@redhat.com> - 5.0.1-1
|
|
|
68374e |
- 5.0.1
|
|
|
68374e |
|
|
|
68374e |
* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 5.0.0-4
|
|
|
68374e |
- Perl 5.18 rebuild
|
|
|
68374e |
|
|
|
68374e |
* Mon Jul 22 2013 Jiri Popelka <jpopelka@redhat.com> - 5.0.0-3
|
|
|
68374e |
- change shebang to absolute path (#987040)
|
|
|
68374e |
|
|
|
68374e |
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 5.0.0-2
|
|
|
68374e |
- Perl 5.18 rebuild
|
|
|
68374e |
|
|
|
68374e |
* Thu Jul 11 2013 Jiri Popelka <jpopelka@redhat.com> - 5.0.0-1
|
|
|
68374e |
- 5.0.0
|
|
|
68374e |
|
|
|
68374e |
* Mon Jul 08 2013 Jiri Popelka <jpopelka@redhat.com> - 4.2.0-1
|
|
|
68374e |
- 4.2.0
|
|
|
68374e |
|
|
|
68374e |
* Thu May 23 2013 Jiri Popelka <jpopelka@redhat.com> - 4.1.0-3
|
|
|
68374e |
- fix 'complete manual location' note in man pages (#966534)
|
|
|
68374e |
|
|
|
68374e |
* Tue May 07 2013 Jiri Popelka <jpopelka@redhat.com> - 4.1.0-2
|
|
|
68374e |
- some source files are under MIT license
|
|
|
68374e |
|
|
|
68374e |
* Mon Apr 15 2013 Jiri Popelka <jpopelka@redhat.com> - 4.1.0-1
|
|
|
68374e |
- 4.1.0
|
|
|
68374e |
|
|
|
68374e |
* Tue Mar 05 2013 Jiri Popelka <jpopelka@redhat.com> - 4.0.1-3
|
|
|
68374e |
- work around gcc 4.8.0 issue on ppc64 (#915321)
|
|
|
68374e |
- properly handle overridden compressed objects
|
|
|
68374e |
|
|
|
68374e |
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.1-2
|
|
|
68374e |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
68374e |
|
|
|
68374e |
* Fri Jan 18 2013 Jiri Popelka <jpopelka@redhat.com> 4.0.1-1
|
|
|
68374e |
- 4.0.1
|
|
|
68374e |
|
|
|
68374e |
* Wed Jan 02 2013 Jiri Popelka <jpopelka@redhat.com> 4.0.0-1
|
|
|
68374e |
- 4.0.0
|
|
|
68374e |
|
|
|
68374e |
* Fri Sep 07 2012 Jiri Popelka <jpopelka@redhat.com> 3.0.2-1
|
|
|
68374e |
- 3.0.2
|
|
|
68374e |
|
|
|
68374e |
* Thu Aug 16 2012 Jiri Popelka <jpopelka@redhat.com> 3.0.1-3
|
|
|
68374e |
- the previously added requirement doesn't need to be arch-specific
|
|
|
68374e |
|
|
|
68374e |
* Thu Aug 16 2012 Jiri Popelka <jpopelka@redhat.com> 3.0.1-2
|
|
|
68374e |
- doc subpackage requires libs subpackage due to license file (#848466)
|
|
|
68374e |
|
|
|
68374e |
* Wed Aug 15 2012 Jiri Popelka <jpopelka@redhat.com> 3.0.1-1
|
|
|
68374e |
- initial spec file
|