Compare commits
No commits in common. "c8" and "c8s" have entirely different histories.
6
.gitignore
vendored
6
.gitignore
vendored
@ -1 +1,5 @@
|
|||||||
SOURCES/libopenraw-0.1.2.tar.bz2
|
libopenraw-0.0.8.tar.gz
|
||||||
|
/libopenraw-0.0.9.tar.bz2
|
||||||
|
/libopenraw-0.1.0.tar.bz2
|
||||||
|
/libopenraw-0.1.1.tar.bz2
|
||||||
|
/libopenraw-0.1.2.tar.bz2
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
3a1a2759dcfb8a443ab4e583aa1b597ea8bf7a65 SOURCES/libopenraw-0.1.2.tar.bz2
|
|
||||||
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-8
|
||||||
|
decision_context: osci_compose_gate
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
||||||
@ -1,7 +1,7 @@
|
|||||||
Summary: Decode camera RAW files
|
Summary: Decode camera RAW files
|
||||||
Name: libopenraw
|
Name: libopenraw
|
||||||
Version: 0.1.2
|
Version: 0.1.2
|
||||||
Release: 4%{?dist}
|
Release: 5%{?dist}
|
||||||
License: LGPLv3+
|
License: LGPLv3+
|
||||||
URL: http://libopenraw.freedesktop.org/wiki
|
URL: http://libopenraw.freedesktop.org/wiki
|
||||||
Source0: http://libopenraw.freedesktop.org/download/%{name}-%{version}.tar.bz2
|
Source0: http://libopenraw.freedesktop.org/download/%{name}-%{version}.tar.bz2
|
||||||
@ -57,19 +57,25 @@ digital cameras, in GTK+ applications.
|
|||||||
%prep
|
%prep
|
||||||
%autosetup
|
%autosetup
|
||||||
|
|
||||||
|
# We don't want to install pixbuf loaders outside the prefix
|
||||||
|
%define loadersdir $( \
|
||||||
|
pkg-config --variable=gdk_pixbuf_moduledir gdk-pixbuf-2.0 | \
|
||||||
|
sed 's,/usr/%{_lib},%{_libdir},' \
|
||||||
|
)
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-static --enable-gnome --disable-silent-rules
|
%configure --disable-static --enable-gnome --disable-silent-rules
|
||||||
|
|
||||||
# Omit unused direct shared library dependencies.
|
# Omit unused direct shared library dependencies.
|
||||||
sed --in-place --expression 's! -shared ! -Wl,--as-needed\0!g' libtool
|
sed --in-place --expression 's! -shared ! -Wl,--as-needed\0!g' libtool
|
||||||
|
|
||||||
%{make_build}
|
%{make_build} GDK_PIXBUF_DIR=%loadersdir
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make check
|
make check
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%make_install GDK_PIXBUF_DIR=%loadersdir
|
||||||
find $RPM_BUILD_ROOT -type f -name "*.la" -delete
|
find $RPM_BUILD_ROOT -type f -name "*.la" -delete
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
@ -111,6 +117,10 @@ find $RPM_BUILD_ROOT -type f -name "*.la" -delete
|
|||||||
%{_libdir}/gdk-pixbuf-2.0/*/loaders/*.so
|
%{_libdir}/gdk-pixbuf-2.0/*/loaders/*.so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Dec 15 2020 Wim Taymans <wtaymans@redhat.com> - 0.1.2-5
|
||||||
|
- Don't install gdk-pixbuf loaders out of prefix
|
||||||
|
- Resolves: rhbz#1907511
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.2-4
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.2-4
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
Loading…
Reference in New Issue
Block a user