|
|
8c4144 |
%global commit e23c21380f467f1f1c9dc397e0a08405fb4afa7a
|
|
|
8c4144 |
%global shortcommit %%(c=%{commit}; echo ${c:0:7})
|
|
|
8c4144 |
%global date 20211007
|
|
|
8c4144 |
|
|
|
1c9798 |
Summary: Library for easy parsing of XMP metadata
|
|
|
1c9798 |
Name: exempi
|
|
|
8c4144 |
Version: 2.6.0
|
|
|
8c4144 |
Release: 0.2.%{date}git%{shortcommit}%{?dist}
|
|
|
1c9798 |
License: BSD
|
|
|
1c9798 |
URL: http://libopenraw.freedesktop.org/wiki/Exempi
|
|
|
8c4144 |
Source0: https://gitlab.freedesktop.org/libopenraw/%{name}/-/archive/%{commit}/%{name}-%{commit}.tar.bz2
|
|
|
8c4144 |
Patch0: exempi-e23c213-typeinfos.patch
|
|
|
1c9798 |
BuildRequires: gcc-c++
|
|
|
1c9798 |
BuildRequires: boost-devel expat-devel zlib-devel pkgconfig
|
|
|
1c9798 |
# Work around for aarch64 support (https://bugzilla.redhat.com/show_bug.cgi?id=925327)
|
|
|
1c9798 |
BuildRequires: autoconf automake libtool
|
|
|
1c9798 |
BuildRequires: make
|
|
|
1c9798 |
Provides: bundled(md5-polstra)
|
|
|
1c9798 |
|
|
|
1c9798 |
%description
|
|
|
1c9798 |
Exempi provides a library for easy parsing of XMP metadata. It is a port of
|
|
|
1c9798 |
Adobe XMP SDK to work on UNIX and to be build with GNU automake.
|
|
|
1c9798 |
It includes XMPCore and XMPFiles.
|
|
|
1c9798 |
|
|
|
1c9798 |
%package devel
|
|
|
1c9798 |
Summary: Headers for developing programs that will use %{name}
|
|
|
1c9798 |
Requires: %{name} = %{version}-%{release}
|
|
|
1c9798 |
Requires: pkgconfig
|
|
|
1c9798 |
|
|
|
1c9798 |
%description devel
|
|
|
1c9798 |
This package contains the libraries and header files needed for
|
|
|
1c9798 |
developing with exempi.
|
|
|
1c9798 |
|
|
|
1c9798 |
%prep
|
|
|
8c4144 |
%autosetup -p1 -n %{name}-%{commit}
|
|
|
1c9798 |
|
|
|
1c9798 |
%build
|
|
|
1c9798 |
libtoolize -vi
|
|
|
1c9798 |
NOCONFIGURE=1 ./autogen.sh
|
|
|
1c9798 |
# BanEntityUsage needed for #888765
|
|
|
8c4144 |
%configure CPPFLAGS="-I%{_includedir} -fno-strict-aliasing -DBanAllEntityUsage=1"
|
|
|
1c9798 |
|
|
|
1c9798 |
# Disable rpath
|
|
|
1c9798 |
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
|
1c9798 |
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
|
|
1c9798 |
|
|
|
1c9798 |
%make_build
|
|
|
1c9798 |
|
|
|
1c9798 |
%check
|
|
|
8c4144 |
%ifarch s390x
|
|
|
8c4144 |
# testcore test fails on big endian arches since exempi 2.5.2:
|
|
|
8c4144 |
# https://gitlab.freedesktop.org/libopenraw/exempi/-/issues/23
|
|
|
8c4144 |
make check || [ "$(grep '^FAIL:' exempi/test-suite.log)" = "FAIL: tests/testcore" ]
|
|
|
8c4144 |
%else
|
|
|
1c9798 |
make check
|
|
|
8c4144 |
%endif
|
|
|
1c9798 |
|
|
|
1c9798 |
%install
|
|
|
1c9798 |
%make_install
|
|
|
1c9798 |
|
|
|
1c9798 |
rm -rf %{buildroot}%{_libdir}/*.la
|
|
|
1c9798 |
rm -rf %{buildroot}%{_libdir}/*.a
|
|
|
1c9798 |
|
|
|
1c9798 |
%files
|
|
|
1c9798 |
%doc AUTHORS ChangeLog COPYING README
|
|
|
1c9798 |
%{_bindir}/exempi
|
|
|
1c9798 |
%{_libdir}/libexempi.so.8*
|
|
|
1c9798 |
%{_mandir}/man1/exempi.1*
|
|
|
1c9798 |
|
|
|
1c9798 |
%files devel
|
|
|
1c9798 |
%{_includedir}/exempi-2.0/
|
|
|
1c9798 |
%{_libdir}/libexempi.so
|
|
|
1c9798 |
%{_libdir}/pkgconfig/*.pc
|
|
|
1c9798 |
|
|
|
1c9798 |
%changelog
|
|
|
8c4144 |
* Wed Nov 03 2021 Nikola Forró <nforro@redhat.com> - 2.6.0-0.2.20211007gite23c213
|
|
|
8c4144 |
- Add modified upstream test suite as a gating test
|
|
|
8c4144 |
Related #1989405
|
|
|
8c4144 |
|
|
|
8c4144 |
* Wed Oct 20 2021 Nikola Forró <nforro@redhat.com> - 2.6.0-0.1.20211007gite23c213
|
|
|
8c4144 |
- Update to (unreleased) version 2.6.0 to resolve licensing issues
|
|
|
8c4144 |
Resolves #1989405
|
|
|
8c4144 |
|
|
|
1c9798 |
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.5.1-8
|
|
|
1c9798 |
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
1c9798 |
Related: rhbz#1991688
|
|
|
1c9798 |
|
|
|
1c9798 |
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 2.5.1-7
|
|
|
1c9798 |
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
1c9798 |
|
|
|
1c9798 |
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-6
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Tue Jul 28 2020 Jeff Law <law@redhat.com> - 2.5.1-5
|
|
|
1c9798 |
- Force C++14 as this code is not C++17 ready
|
|
|
1c9798 |
|
|
|
1c9798 |
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-4
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Tue Jul 14 2020 Tom Stellard <tstellar@redhat.com> - 2.5.1-3
|
|
|
1c9798 |
- Use make macros
|
|
|
1c9798 |
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
|
|
|
1c9798 |
|
|
|
1c9798 |
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-2
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Fri Aug 30 2019 Nikola Forró <nforro@redhat.com> - 2.5.1-1
|
|
|
1c9798 |
- Update to version 2.5.1
|
|
|
1c9798 |
Resolves #1747391
|
|
|
1c9798 |
|
|
|
1c9798 |
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.5-7
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.5-6
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Tue Oct 9 2018 Owen Taylor <otaylor@redhat.com> - 2.4.5-5
|
|
|
1c9798 |
- Set NOCONFIGURE when running autogen.sh to avoid running configure twice
|
|
|
1c9798 |
|
|
|
1c9798 |
* Wed Sep 26 2018 Nikola Forró <nforro@redhat.com> - 2.4.5-4
|
|
|
1c9798 |
- Fix CVE-2018-12648
|
|
|
1c9798 |
Resolves #1594643
|
|
|
1c9798 |
|
|
|
1c9798 |
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.5-3
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Thu Jun 28 2018 Nikola Forró <nforro@redhat.com> - 2.4.5-2
|
|
|
1c9798 |
- Remove ldconfig from scriptlets
|
|
|
1c9798 |
|
|
|
1c9798 |
* Tue Mar 13 2018 Nikola Forró <nforro@redhat.com> - 2.4.5-1
|
|
|
1c9798 |
- Update to version 2.4.5
|
|
|
1c9798 |
Resolves #1553140
|
|
|
1c9798 |
|
|
|
1c9798 |
* Tue Feb 20 2018 Nikola Forró <nforro@redhat.com> - 2.4.4-2
|
|
|
1c9798 |
- Add missing gcc-c++ build dependency
|
|
|
1c9798 |
|
|
|
1c9798 |
* Tue Feb 06 2018 Nikola Forró <nforro@redhat.com> - 2.4.4-1
|
|
|
1c9798 |
- Update to version 2.4.4
|
|
|
1c9798 |
Resolves #1541818
|
|
|
1c9798 |
|
|
|
1c9798 |
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.2-7
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.2-6
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Mon Jul 03 2017 Jonathan Wakely <jwakely@redhat.com> - 2.4.2-5
|
|
|
1c9798 |
- Rebuilt for Boost 1.64
|
|
|
1c9798 |
|
|
|
1c9798 |
* Thu Jun 1 2017 Owen Taylor <otaylor@redhat.com> - 2.4.2-4
|
|
|
1c9798 |
- Make manpage installation agnostic of compression
|
|
|
1c9798 |
https://fedoraproject.org/wiki/Packaging:Guidelines#Manpages
|
|
|
1c9798 |
|
|
|
1c9798 |
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.2-3
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Mon Feb 06 2017 Kalev Lember <klember@redhat.com> - 2.4.2-2
|
|
|
1c9798 |
- Rebuilt for Boost 1.63
|
|
|
1c9798 |
|
|
|
1c9798 |
* Mon Jan 30 2017 Nikola Forró <nforro@redhat.com> - 2.4.2-1
|
|
|
1c9798 |
- Update to version 2.4.2
|
|
|
1c9798 |
Resolves #1417497
|
|
|
1c9798 |
|
|
|
1c9798 |
* Fri Jan 27 2017 Jonathan Wakely <jwakely@redhat.com> - 2.4.1-3
|
|
|
1c9798 |
- Rebuilt for Boost 1.63
|
|
|
1c9798 |
|
|
|
1c9798 |
* Fri Jan 27 2017 Jonathan Wakely <jwakely@redhat.com> - 2.4.1-2
|
|
|
1c9798 |
- Rebuilt for Boost 1.63
|
|
|
1c9798 |
|
|
|
1c9798 |
* Tue Jan 24 2017 Nikola Forró <nforro@redhat.com> - 2.4.1-1
|
|
|
1c9798 |
- Update to version 2.4.1
|
|
|
1c9798 |
Resolves #1415672
|
|
|
1c9798 |
|
|
|
1c9798 |
* Mon Jan 09 2017 Nikola Forró <nforro@redhat.com> - 2.4.0-1
|
|
|
1c9798 |
- Update to version 2.4.0
|
|
|
1c9798 |
Resolves #1411059
|
|
|
1c9798 |
|
|
|
1c9798 |
* Thu Mar 17 2016 Nikola Forró <nforro@redhat.com> - 2.3.0-1
|
|
|
1c9798 |
- Update to version 2.3.0
|
|
|
1c9798 |
Resolves #1318279
|
|
|
1c9798 |
|
|
|
1c9798 |
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1-15
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Fri Jan 15 2016 Jonathan Wakely <jwakely@redhat.com> - 2.2.1-14
|
|
|
1c9798 |
- Rebuilt for Boost 1.60
|
|
|
1c9798 |
|
|
|
1c9798 |
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 2.2.1-13
|
|
|
1c9798 |
- Rebuilt for Boost 1.59
|
|
|
1c9798 |
|
|
|
1c9798 |
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.1-12
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
|
|
|
1c9798 |
|
|
|
1c9798 |
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 2.2.1-11
|
|
|
1c9798 |
- rebuild for Boost 1.58
|
|
|
1c9798 |
|
|
|
1c9798 |
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.1-10
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 2.2.1-9
|
|
|
1c9798 |
- Rebuilt for GCC 5 C++11 ABI change
|
|
|
1c9798 |
|
|
|
1c9798 |
* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 2.2.1-8
|
|
|
1c9798 |
- Rebuild for boost 1.57.0
|
|
|
1c9798 |
|
|
|
1c9798 |
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.1-7
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.1-6
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Thu May 22 2014 Petr Machata <pmachata@redhat.com> - 2.2.1-5
|
|
|
1c9798 |
- Rebuild for boost 1.55.0
|
|
|
1c9798 |
|
|
|
1c9798 |
* Fri Jan 10 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.2.1-4
|
|
|
1c9798 |
- Run libtoolize before autogen.sh
|
|
|
1c9798 |
- Resolves: rhbz#1051186
|
|
|
1c9798 |
|
|
|
1c9798 |
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.1-3
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 2.2.1-2
|
|
|
1c9798 |
- Rebuild for boost 1.54.0
|
|
|
1c9798 |
|
|
|
1c9798 |
* Mon Jul 22 2013 Deji Akingunola <dakingun@gmail.com> - 2.2.1-1
|
|
|
1c9798 |
- Update to version 2.2.1
|
|
|
1c9798 |
|
|
|
1c9798 |
* Wed Jan 30 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.2.0-6
|
|
|
1c9798 |
- Get rid of unnecessary LDFLAGS definition overwriting RPM flags
|
|
|
1c9798 |
|
|
|
1c9798 |
* Wed Jan 02 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.2.0-5
|
|
|
1c9798 |
- Make sure we respect RPM_OPT_FLAGS and simplify configure (#889554)
|
|
|
1c9798 |
|
|
|
1c9798 |
* Wed Dec 19 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.2.0-4
|
|
|
1c9798 |
- Add BanAllEntityUsage into macro definitions (#888765)
|
|
|
1c9798 |
|
|
|
1c9798 |
* Thu Aug 16 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.2.0-3
|
|
|
1c9798 |
- Add bundled(md5-polstra) provides
|
|
|
1c9798 |
- Update to current guidelines
|
|
|
1c9798 |
|
|
|
1c9798 |
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.0-2
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Wed Feb 22 2012 Deji Akingunola <dakingun@gmail.com> - 2.2.0-1
|
|
|
1c9798 |
- Update to version 2.2.0
|
|
|
1c9798 |
|
|
|
1c9798 |
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-3
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-2
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Mon May 3 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.1.1-1
|
|
|
1c9798 |
- Update to 2.1.1
|
|
|
1c9798 |
- Add testsuite execution
|
|
|
1c9798 |
- Removed build patch for gcc-4.4 (fixed in upstream)
|
|
|
1c9798 |
|
|
|
1c9798 |
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-4
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-3
|
|
|
1c9798 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
1c9798 |
|
|
|
1c9798 |
* Wed Feb 04 2009 Deji Akingunola <dakingun@gmail.com> - 2.1.0-2
|
|
|
1c9798 |
- Add patch to build with gcc-4.4
|
|
|
1c9798 |
|
|
|
1c9798 |
* Tue Jan 06 2009 Deji Akingunola <dakingun@gmail.com> - 2.1.0-1
|
|
|
1c9798 |
- Update to 2.1.0
|
|
|
1c9798 |
|
|
|
1c9798 |
* Sat May 17 2008 Deji Akingunola <dakingun@gmail.com> - 2.0.1-1
|
|
|
1c9798 |
- Update to 2.0.1
|
|
|
1c9798 |
|
|
|
1c9798 |
* Wed Apr 02 2008 Deji Akingunola <dakingun@gmail.com> - 2.0.0-1
|
|
|
1c9798 |
- Update to 2.0.0
|
|
|
1c9798 |
|
|
|
1c9798 |
* Fri Feb 08 2008 Deji Akingunola <dakingun@gmail.com> - 1.99.9-1
|
|
|
1c9798 |
- Update to 1.99.9
|
|
|
1c9798 |
|
|
|
1c9798 |
* Sun Jan 13 2008 Deji Akingunola <dakingun@gmail.com> - 1.99.7-1
|
|
|
1c9798 |
- Update to 1.99.7
|
|
|
1c9798 |
|
|
|
1c9798 |
* Mon Dec 03 2007 Deji Akingunola <dakingun@gmail.com> - 1.99.5-1
|
|
|
1c9798 |
- Update to 1.99.5
|
|
|
1c9798 |
|
|
|
1c9798 |
* Wed Sep 05 2007 Deji Akingunola <dakingun@gmail.com> - 1.99.4-2
|
|
|
1c9798 |
- Rebuild for expat 2.0
|
|
|
1c9798 |
|
|
|
1c9798 |
* Wed Aug 22 2007 Deji Akingunola <dakingun@gmail.com> - 1.99.4-1
|
|
|
1c9798 |
- Update tp 1.99.4
|
|
|
1c9798 |
|
|
|
1c9798 |
* Tue Jul 10 2007 Deji Akingunola <dakingun@gmail.com> - 1.99.3-1
|
|
|
1c9798 |
- Initial packaging for Fedora
|