commit dc810b09c7eababa5ba2e134720860547613603f Author: Sergey Cherevko Date: Mon Jul 10 15:41:41 2023 +0300 Initial commit for compat-podofo096 diff --git a/.compat-podofo096.metadata b/.compat-podofo096.metadata new file mode 100644 index 0000000..53be0ec --- /dev/null +++ b/.compat-podofo096.metadata @@ -0,0 +1 @@ +6d1626af8f969a462211c3c2c573966372f0a7c8 SOURCES/podofo-0.9.6.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0cd8bc5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/podofo-0.9.6.tar.gz diff --git a/SPECS/compat-podofo096.spec b/SPECS/compat-podofo096.spec new file mode 100644 index 0000000..3369de1 --- /dev/null +++ b/SPECS/compat-podofo096.spec @@ -0,0 +1,247 @@ +%define major 0.9 +%global mver %major.6 +Name: compat-podofo096 +Version: %major.6 +Release: 1%{?dist}.inferit + +Summary: Tools and libraries to work with the PDF file format + +# The library is licensed under the LGPL. +# The tests and tools which are included in PoDoFo are licensed under the GPL. +# See the files COPYING and COPYING.LIB for details, see COPYING.exception. +License: GPLv2+ and LGPLv2+ with exceptions +URL: http://podofo.sourceforge.net +Source0: http://downloads.sourceforge.net/podofo/podofo-%{version}.tar.gz + +BuildRequires: gcc-c++ +BuildRequires: cmake +BuildRequires: fontconfig-devel +BuildRequires: freetype-devel +BuildRequires: libjpeg-devel +BuildRequires: libtiff-devel +BuildRequires: libpng-devel +BuildRequires: openssl-devel +BuildRequires: zlib-devel +Requires: lib%name = %version + +%description +PoDoFo is a library to work with the PDF file format. The name comes from +the first letter of PDF (Portable Document Format). A few tools to work +with PDF files are already included in the PoDoFo package. + +The PoDoFo library is a free, portable C++ library which includes classes +to parse PDF files and modify their contents into memory. The changes can be +written back to disk easily. The parser can also be used to extract +information from a PDF file (for example the parser could be used in a PDF +viewer). Besides parsing PoDoFo includes also very simple classes to create +your own PDF files. All classes are documented so it is easy to start writing +your own application using PoDoFo. + +%package libs +Summary: Runtime library for %{name} +License: LGPLv2+ + +%description libs +Runtime library for %{name}. + + +%package devel +Summary: Development files for %{name} library +License: LGPLv2+ +Requires: %{name}-libs%{?_isa} = %{version}-%{release} +Requires: openssl-devel%{?_isa} + +%description devel +Development files and documentation for the %{name} library. + +%prep +%setup -q -n podofo-%{version} +sed -i "s/\.1/0\.9\.6\.1/g" man/CMakeLists.txt +find man/ -type f -name "*.1" | while read file +do + mv $file ${file%.*}%{mver}".1" +done +# fix broken copying rule +mkdir test/TokenizerTest/objects + +%build +# Natve build +%cmake \ +%if 0%{?__isa_bits} == 64 +-DWANT_LIB64=1 \ +%endif +-DPODOFO_BUILD_SHARED=1 +%cmake_build + +%install +%cmake_install +mv %{buildroot}/%{_bindir}/podofobox{,%{mver}} +mv %{buildroot}/%{_bindir}/podofocolor{,%{mver}} +mv %{buildroot}/%{_bindir}/podofocountpages{,%{mver}} +mv %{buildroot}/%{_bindir}/podofocrop{,%{mver}} +mv %{buildroot}/%{_bindir}/podofoencrypt{,%{mver}} +mv %{buildroot}/%{_bindir}/podofogc{,%{mver}} +mv %{buildroot}/%{_bindir}/podofoimg2pdf{,%{mver}} +mv %{buildroot}/%{_bindir}/podofoimgextract{,%{mver}} +mv %{buildroot}/%{_bindir}/podofoimpose{,%{mver}} +mv %{buildroot}/%{_bindir}/podofoincrementalupdates{,%{mver}} +mv %{buildroot}/%{_bindir}/podofomerge{,%{mver}} +mv %{buildroot}/%{_bindir}/podofopages{,%{mver}} +mv %{buildroot}/%{_bindir}/podofopdfinfo{,%{mver}} +mv %{buildroot}/%{_bindir}/podofosign{,%{mver}} +mv %{buildroot}/%{_bindir}/podofotxt2pdf{,%{mver}} +mv %{buildroot}/%{_bindir}/podofotxtextract{,%{mver}} +mv %{buildroot}/%{_bindir}/podofouncompress{,%{mver}} +mv %{buildroot}/%{_bindir}/podofoxmp{,%{mver}} + +sed -i "s|podofo-0|podofo|g" %{buildroot}/%{_libdir}/pkgconfig/libpodofo-0.pc +sed -i "s|^Version:.*|Version: %{mver}|g" %{buildroot}/%{_libdir}/pkgconfig/libpodofo-0.pc + + +%files +%license COPYING +%{_bindir}/podofo* +%{_mandir}/man1/podofo*.1* + +%files libs +%doc AUTHORS ChangeLog FAQ.html README.html TODO +%license COPYING.LIB COPYING.exception +%{_libdir}/*.so.0.9.6 + +%files devel +%{_includedir}/podofo +%{_libdir}/*.so +%{_libdir}/pkgconfig/libpodofo*.pc + +%changelog +* Mon Jul 10 2023 Sergey Cherevko - 0.9.6-1.inferit +- MSVSphere 9 build + +* Wed Jul 11 2018 Sandro Mani - 0.9.6-1 +- Update to 0.9.6 +- Fixes: CVE-2018-5309, CVE-2018-8001 + +* Fri Jun 15 2018 Sandro Mani - 0.9.5-9 +- Backport security fixes (taken from debian package): + CVE-2017-7380, CVE-2017-7381, CVE-2017-7382, CVE-2017-7383, CVE-2017-5852, + CVE-2017-5853, CVE-2017-6844, CVE-2017-5854, CVE-2017-5855, CVE-2017-5886, + CVE-2018-8000, CVE-2017-6840, CVE-2017-6842, CVE-2017-6843, CVE-2017-6845, + CVE-2017-6847, CVE-2017-6848, CVE-2017-7378, CVE-2017-7379, CVE-2017-7994, + CVE-2017-8054, CVE-2017-8378, CVE-2017-8787, CVE-2018-5295, CVE-2018-5308 + +* Wed May 16 2018 Kevin Fenzi - 0.9.5-8 +- Rebuild for new libidn + +* Fri Feb 09 2018 Fedora Release Engineering - 0.9.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Aug 03 2017 Fedora Release Engineering - 0.9.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 0.9.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon May 15 2017 Fedora Release Engineering - 0.9.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild + +* Fri Feb 10 2017 Sandro Mani - 0.9.5-3 +- Drop -std=c++98 from CXXFLAGS + +* Fri Feb 03 2017 Sandro Mani - 0.9.5-2 +- Add Requires: openssl-devel to -devel + +* Thu Feb 02 2017 Sandro Mani - 0.9.5-1 +- Update to 0.9.5 + +* Fri Sep 23 2016 Sandro Mani - 0.9.4-1 +- Update to 0.9.4 + +* Thu Feb 04 2016 Fedora Release Engineering - 0.9.1-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Thu Jun 18 2015 Fedora Release Engineering - 0.9.1-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sun Aug 17 2014 Fedora Release Engineering - 0.9.1-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Fri Jun 20 2014 Yaakov Selkowitz - 0.9.1-15 +- Fix FTBFS on aarch64 (#1111745) + +* Tue Jun 10 2014 Dan Horák - 0.9.1-14 +- fix FTBFS (#1106651) +- spec cleanup + +* Sat Jun 07 2014 Fedora Release Engineering - 0.9.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Tue Aug 20 2013 Dan Horák - 0.9.1-12 +- fix build with Lua 5.2 (#992811) + +* Sun Aug 04 2013 Fedora Release Engineering - 0.9.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Thu Feb 14 2013 Fedora Release Engineering - 0.9.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Mon Jan 21 2013 Adam Tkac - 0.9.1-9 +- rebuild due to "jpeg8-ABI" feature drop + +* Fri Dec 21 2012 Adam Tkac - 0.9.1-8 +- rebuild against new libjpeg + +* Sat Jul 21 2012 Fedora Release Engineering - 0.9.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Jul 03 2012 Dan Horák - 0.9.1-6 +- disable timestamps in docs (#565683) + +* Tue Feb 28 2012 Fedora Release Engineering - 0.9.1-5 +- Rebuilt for c++ ABI breakage + +* Mon Jan 16 2012 Dan Horák - 0.9.1-4 +- build fix for unistd.h + +* Sat Jan 14 2012 Fedora Release Engineering - 0.9.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Dec 06 2011 Adam Jackson - 0.9.1-2 +- Rebuild for new libpng + +* Thu Apr 28 2011 Dan Horák 0.9.1-1 +- updated to 0.9.1 + +* Thu Apr 14 2011 Dan Horák 0.9.0-1 +- updated to 0.9.0 + +* Wed Feb 09 2011 Fedora Release Engineering - 0.8.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Tue Nov 2 2010 Dan Horák 0.8.4-1 +- updated to 0.8.4 + +* Fri Oct 22 2010 Dan Horák 0.8.3-1 +- updated to 0.8.3 + +* Tue Jun 8 2010 Dan Horák 0.8.1-2 +- fix building tests + +* Mon Jun 7 2010 Dan Horák 0.8.1-1 +- updated to 0.8.1 + +* Thu Apr 29 2010 Dan Horák 0.8.0-1 +- updated to 0.8.0 + +* Tue Feb 16 2010 Dan Horák 0.7.0-4 +- set timestamp on generated docs (#565683) + +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Apr 30 2009 Dan Horák 0.7.0-2 +- remove BR: openssl-devel, it could be required in the future (but then + an exception clause will be added to the licenses) +- add missing doc files + +* Sun Mar 29 2009 Dan Horák 0.7.0-1 +- initial Fedora package