From 40f28d40181f839c36225ae2f848869f5c71b00e Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Oct 20 2019 13:47:52 +0000 Subject: import babl-0.1.10-10.el7 --- diff --git a/.babl.metadata b/.babl.metadata new file mode 100644 index 0000000..af9b60a --- /dev/null +++ b/.babl.metadata @@ -0,0 +1 @@ +ee60089e8e9d9390e730d3ae5e41074549928b7a SOURCES/babl-0.1.10.tar.bz2 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c4e828e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/babl-0.1.10.tar.bz2 diff --git a/SOURCES/babl-0.1.10-memory.patch b/SOURCES/babl-0.1.10-memory.patch new file mode 100644 index 0000000..7e9435f --- /dev/null +++ b/SOURCES/babl-0.1.10-memory.patch @@ -0,0 +1,25 @@ +diff -urNp old/babl/babl-memory.c new/babl/babl-memory.c +--- old/babl/babl-memory.c 2017-10-06 09:07:51.085178917 +0200 ++++ new/babl/babl-memory.c 2017-10-06 09:14:08.186524320 +0200 +@@ -84,14 +84,19 @@ functions_sanity (void) + if (first_malloc_used != malloc_f || + first_free_used != free_f) + { ++ static int displayed = 0; ++ + if (first_malloc_used == NULL) + { + first_malloc_used = malloc_f; + first_free_used = free_f; + } +- else ++ else if (!displayed) + { +- babl_fatal ("babl memory function(s) attempted switched on the fly"); ++ fprintf (stderr, "HMM....\nSomething strange is happening,\n%s function pointer changing between invocations in babl.\n", ++ first_malloc_used == malloc_f ? "free" : ++ (first_free_used == free_f ? "malloc" : "malloc and free")); ++ displayed = 1; + } + } + } diff --git a/SPECS/babl.spec b/SPECS/babl.spec new file mode 100644 index 0000000..9d89e0b --- /dev/null +++ b/SPECS/babl.spec @@ -0,0 +1,240 @@ +# skip tests known to be problematic in a specific version +%global skip_checks_version 0.1.10 +# concurrency-stress-test: https://bugzilla.gnome.org/show_bug.cgi?id=673419 +%global skip_checks concurrency-stress-test + +Summary: A dynamic, any to any, pixel format conversion library +Name: babl +Version: 0.1.10 +Release: 10%{?dist} + +# Compute some version related macros +# Ugly hack, you need to get your quoting backslashes/percent signs straight +%global major %(ver=%version; echo ${ver%%%%.*}) +%global minor %(ver=%version; ver=${ver#%major.}; echo ${ver%%%%.*}) +%global micro %(ver=%version; ver=${ver#%major.%minor.}; echo ${ver%%%%.*}) +%global apiver %major.%minor + +# The gggl codes contained in this package are under the GPL, with exceptions allowing their use under libraries covered under the LGPL +License: LGPLv3+ and GPLv3+ +Group: System Environment/Libraries +URL: http://www.gegl.org/babl/ +Source0: ftp://ftp.gimp.org/pub/babl/%{apiver}/%{name}-%{version}.tar.bz2 +Patch1: babl-0.1.10-memory.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: librsvg2 + +%global develdocdir %{_docdir}/%{name}-devel-%{version}/html + +%description +Babl is a dynamic, any to any, pixel format conversion library. It +provides conversions between the myriad of buffer types images can be +stored in. Babl doesn't only help with existing pixel formats, but also +facilitates creation of new and uncommon ones. + +%package devel +Summary: Headers for developing programs that will use %{name} +Group: Development/Libraries +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: pkgconfig +# Split off devel docs from 0.1.2-2 on +Obsoletes: %{name}-devel < 0.1.2-2%{?dist} +Conflicts: %{name}-devel < 0.1.2-2%{?dist} + +%description devel +This package contains the libraries and header files needed for +developing with %{name}. + +%package devel-docs +Summary: Documentation for developing programs that will use %{name} +Group: Documentation +BuildArch: noarch +Requires: %{name}-devel = %{version}-%{release} +# Split off devel docs from 0.1.2-2 on +Obsoletes: %{name}-devel < 0.1.2-2%{?dist} +Conflicts: %{name}-devel < 0.1.2-2%{?dist} + +%description devel-docs +This package contains documentation needed for developing with %{name}. + +%prep +%setup -q +%patch1 -p1 -b .memory + +%build +# use PIC/PIE because babl is likely to deal with data coming from untrusted +# sources +CFLAGS="-fPIC %optflags -fno-strict-aliasing" +LDFLAGS="-pie" +%configure --disable-static + +make V=1 %{?_smp_mflags} + +%install +rm -rf %{buildroot} +make DESTDIR=%{buildroot} install INSTALL='install -p' + +mkdir -p "%{buildroot}/%{develdocdir}" +cp -pr docs/graphics docs/*.html docs/babl.css "%{buildroot}/%{develdocdir}" +rm -rf "%{buildroot}/%{develdocdir}"/graphics/Makefile* + +find %{buildroot} -type f -name "*.la" -exec rm -f {} ';' + +%check +# skip tests known to be problematic in a specific version +%if "%version" == "%skip_checks_version" +pushd tests +for problematic in %skip_checks; do + rm -f "$problematic" + cat << EOF > "$problematic" +#!/bin/sh +echo Skipping test "$problematic" +EOF + chmod +x "$problematic" +done +popd +%endif +make check + +%clean +rm -rf %{buildroot} + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%defattr(-, root, root, -) +%doc AUTHORS ChangeLog COPYING README NEWS +%{_libdir}/*.so.* +%{_libdir}/babl-%{apiver}/ + +%files devel +%defattr(-, root, root, -) +%{_includedir}/babl-%{apiver}/ +%{_libdir}/*.so +%{_libdir}/pkgconfig/%{name}.pc + +%files devel-docs +%defattr(-, root, root, -) +%doc %{develdocdir} + +%changelog +* Fri Oct 06 2017 Josef Ridky - 0.1.10-10 +- Resolves: #1399878 - fix recursive loop + +* Fri Jan 24 2014 Daniel Mach - 0.1.10-9 +- Mass rebuild 2014-01-24 + +* Fri Dec 27 2013 Daniel Mach - 0.1.10-8 +- Mass rebuild 2013-12-27 + +* Tue Jul 30 2013 Nils Philippsen - 0.1.10-7 +- don't require w3m for building + +* Wed Feb 13 2013 Fedora Release Engineering - 0.1.10-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sat Oct 20 2012 Nils Philippsen - 0.1.10-5 +- report problematic checks being skipped + +* Wed Jul 18 2012 Fedora Release Engineering - 0.1.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Apr 03 2012 Nils Philippsen - 0.1.10-3 +- prevent problematic check from being rebuilt + +* Tue Apr 03 2012 Nils Philippsen - 0.1.10-2 +- fix typo which caused problematic check not to be skipped + +* Tue Apr 03 2012 Nils Philippsen - 0.1.10-1 +- version 0.1.10 +- skip check known to be problematic: concurrency-stress-test + +* Tue Jan 10 2012 Nils Philippsen - 0.1.6-2 +- rebuild for gcc 4.7 + +* Tue Dec 13 2011 Nils Philippsen - 0.1.6-1 +- version 0.1.6 + +* Tue Feb 22 2011 Nils Philippsen - 0.1.4-1 +- version 0.1.4 +- correct source URL + +* Mon Feb 07 2011 Fedora Release Engineering - 0.1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Jun 23 2010 Nils Philippsen - 0.1.2-4 +- use PIC/PIE because babl is likely to deal with data coming from untrusted + sources + +* Wed Jun 23 2010 Nils Philippsen - 0.1.2-3 +- build with -fno-strict-aliasing + +* Mon Jun 14 2010 Nils Philippsen - 0.1.2-2 +- split off devel-docs subpackage to make package multi-lib compliant (#477807) +- let devel package require correct arch of base package + +* Thu Jan 21 2010 Deji Akingunola - 0.1.2-1 +- Update to 0.1.2 + +* Fri Dec 18 2009 Deji Akingunola - 0.1.0-5 +- Remove the *.la files + +* Thu Aug 13 2009 Nils Philippsen +- explain patch status + +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Jul 06 2009 Nils Philippsen - 0.1.0-3 +- revert using "--disable-gtk-doc" as this doesn't work with babl (#477807) + +* Thu Jul 02 2009 Nils Philippsen +- use "--disable-gtk-doc" to avoid rebuilding documentation (#477807) +- fix source URL + +* Thu Jun 25 2009 Nils Philippsen - 0.1.0-2 +- fix timestamps of built documentation for multilib (#477807) + +* Fri May 22 2009 Deji Akingunola - 0.1.0-1 +- Update to latest release (0.1.0) + +* Mon Feb 23 2009 Fedora Release Engineering - 0.0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Sep 2 2008 Michael Schwendt - 0.0.22-2 +- Include /usr/include/babl-0.0 directory + +* Thu Jul 10 2008 Deji Akingunola - 0.0.22-1 +- Update to latest release + +* Thu Feb 28 2008 Deji Akingunola - 0.0.20-1 +- New release + +* Thu Jan 17 2008 Deji Akingunola - 0.0.18-2 +- Apply patch to fix extensions loading on 64bit systems + +* Thu Jan 10 2008 Deji Akingunola - 0.0.18-1 +- Update to 0.0.18 + +* Mon Nov 26 2007 Deji Akingunola - 0.0.16-1 +- Update to 0.0.16 release +- License change from GPLv2+ to GPLv3+ + +* Mon Oct 22 2007 Deji Akingunola - 0.0.15-0.5.20071011svn +- Update the License field + +* Fri Oct 12 2007 Deji Akingunola - 0.0.15-0.4.20071011svn +- Package the extension libraries in the main package +- Run 'make check' + +* Fri Oct 12 2007 Deji Akingunola - 0.0.15-0.3.20071011svn +- Ensure timestamps are kept during install + +* Fri Oct 12 2007 Deji Akingunola - 0.0.15-0.2.20071011svn +- Remove the use of inexistent source url (Package reviews) +- Package the html docs + +* Thu Oct 11 2007 Deji Akingunola - 0.0.15-0.1.20071011svn +- Initial packaging for Fedora