From e0bbc59a570b11119321bc80f9cdf77ede3b3ed3 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sun, 31 Jan 2010 18:26:23 +0000 Subject: [PATCH 01/36] Setup of module libtiger --- .cvsignore | 0 Makefile | 21 +++++++++++++++++++++ sources | 0 3 files changed, 21 insertions(+) create mode 100644 .cvsignore create mode 100644 Makefile create mode 100644 sources diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..e69de29 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..af84446 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Makefile for source rpm: libtiger +# $Id$ +NAME := libtiger +SPECFILE = $(firstword $(wildcard *.spec)) + +define find-makefile-common +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +endef + +MAKEFILE_COMMON := $(shell $(find-makefile-common)) + +ifeq ($(MAKEFILE_COMMON),) +# attept a checkout +define checkout-makefile-common +test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 +endef + +MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) +endif + +include $(MAKEFILE_COMMON) diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From ac405f2a23348970d31c5403241e2bc754104679 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Fri, 5 Feb 2010 17:07:13 +0000 Subject: [PATCH 02/36] Initial import in devel --- .cvsignore | 1 + import.log | 1 + libtiger.spec | 103 ++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 106 insertions(+) create mode 100644 import.log create mode 100644 libtiger.spec diff --git a/.cvsignore b/.cvsignore index e69de29..2ad464d 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +libtiger-0.3.3.tar.gz diff --git a/import.log b/import.log new file mode 100644 index 0000000..a6213c0 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +libtiger-0_3_3-2_fc11:HEAD:libtiger-0.3.3-2.fc11.src.rpm:1265389602 diff --git a/libtiger.spec b/libtiger.spec new file mode 100644 index 0000000..f321df9 --- /dev/null +++ b/libtiger.spec @@ -0,0 +1,103 @@ +Name: libtiger +Version: 0.3.3 +Release: 2%{?dist} +Summary: Rendering library for Kate streams using Pango and Cairo + +Group: System Environment/Libraries +License: LGPLv2+ +URL: http://libtiger.googlecode.com +Source0: http://libtiger.googlecode.com/files/libtiger-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: libkate-devel >= 0.2.7 +BuildRequires: pango-devel +BuildRequires: valgrind +BuildRequires: doxygen + + +%description +Libtiger is a rendering library for Kate streams using Pango and Cairo. +More information about Kate streams may be found at +http://wiki.xiph.org/index.php/OggKate + + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: pango-devel +Requires: libkate-devel >= 0.2.7 + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + +%package doc +Summary: Documentation for %{name} +Group: Documentation +BuildArch: noarch + +%description doc +The %{name}-doc package contains Documentation for %{name}. + + + +%prep +%setup -q + + +%build +%configure --disable-static +make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT __doc +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' + +# Fix timestramps change +touch -r include/tiger/tiger.h.in $RPM_BUILD_ROOT%{_includedir}/tiger/tiger.h + +# Move docdir +mv $RPM_BUILD_ROOT%{_docdir}/%{name} __doc + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + + +%files +%defattr(-,root,root,-) +%doc AUTHORS COPYING ChangeLog README +%{_libdir}/*.so.* + +%files devel +%defattr(-,root,root,-) +%{_includedir}/tiger/ +%{_libdir}/*.so +%{_libdir}/pkgconfig/tiger.pc + +%files doc +%defattr(-,root,root,-) +%doc examples __doc/* + + +%changelog +* Tue Jan 26 2010 Nicolas Chauvet - 0.3.3-2 +- Split doc subpackage + +* Thu Jul 2 2009 Nicolas Chauvet - 0.3.3-1 +- Update to 0.3.3 + +* Fri Nov 28 2008 kwizart < kwizart at gmail.com > - 0.3.2-1 +- Update to 0.3.2 + +* Thu Sep 4 2008 kwizart < kwizart at gmail.com > - 0.1.1-1 +- Initial spec file + diff --git a/sources b/sources index e69de29..53c8a42 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +e7b6b9a317b4762792b08fdff78b8c45 libtiger-0.3.3.tar.gz From 5ce46ed70817f734ba299ea770d05e50737bb757 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Fri, 5 Feb 2010 17:09:34 +0000 Subject: [PATCH 03/36] Update --- libtiger.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libtiger.spec b/libtiger.spec index f321df9..bd439e2 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -85,10 +85,13 @@ rm -rf $RPM_BUILD_ROOT %files doc %defattr(-,root,root,-) -%doc examples __doc/* +%doc examples __doc/html %changelog +* Fri Feb 5 2010 Nicolas Chauvet - 0.3.3-3 +- Only pick __doc/html in the doc subpackage. + * Tue Jan 26 2010 Nicolas Chauvet - 0.3.3-2 - Split doc subpackage From f4dcb04b53110f1e7f583d9b5473d93d4c50758b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 21:45:25 +0000 Subject: [PATCH 04/36] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index af84446..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libtiger -# $Id$ -NAME := libtiger -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/import.log b/import.log deleted file mode 100644 index a6213c0..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -libtiger-0_3_3-2_fc11:HEAD:libtiger-0.3.3-2.fc11.src.rpm:1265389602 From 552a1a981261383f17e8e6e668700ad39b0c94e7 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 8 Feb 2011 06:04:27 -0600 Subject: [PATCH 05/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index bd439e2..396ba32 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Feb 08 2011 Fedora Release Engineering - 0.3.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Fri Feb 5 2010 Nicolas Chauvet - 0.3.3-3 - Only pick __doc/html in the doc subpackage. From 8978eceea33643019725ab49246920f5263f7ea7 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Sun, 27 Mar 2011 00:10:06 +0100 Subject: [PATCH 06/36] Update to 0.3.4 --- .gitignore | 1 + libtiger.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2ad464d..e39e56a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ libtiger-0.3.3.tar.gz +/libtiger-0.3.4.tar.gz diff --git a/libtiger.spec b/libtiger.spec index 396ba32..1a40405 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger -Version: 0.3.3 -Release: 4%{?dist} +Version: 0.3.4 +Release: 1%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Mar 27 2011 Nicolas Chauvet - 0.3.4-1 +- Update to 0.3.4 + * Tue Feb 08 2011 Fedora Release Engineering - 0.3.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild diff --git a/sources b/sources index 53c8a42..865435d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -e7b6b9a317b4762792b08fdff78b8c45 libtiger-0.3.3.tar.gz +dc1dbeb658c95485ba10b9b2897b4ae2 libtiger-0.3.4.tar.gz From 51acfb6d9fd91bacfbcd8b9dea74c5fd4979b4bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Fri, 1 Apr 2011 09:09:01 +0200 Subject: [PATCH 07/36] valgrind exists only on selected architectures --- libtiger.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index 1a40405..4d9fbb2 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -11,7 +11,9 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libkate-devel >= 0.2.7 BuildRequires: pango-devel +%ifarch %{ix86} x86_64 ppc ppc64 s390x BuildRequires: valgrind +%endif BuildRequires: doxygen @@ -89,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Apr 1 2011 Dan Horák - 0.3.4-2 +- valgrind exists only on selected architectures + * Sun Mar 27 2011 Nicolas Chauvet - 0.3.4-1 - Update to 0.3.4 From ba03ac177049c662917da37e56eebd79753e28f1 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 13 Jan 2012 02:32:06 -0600 Subject: [PATCH 08/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index 4d9fbb2..a39e6dc 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jan 13 2012 Fedora Release Engineering - 0.3.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Fri Apr 1 2011 Dan Horák - 0.3.4-2 - valgrind exists only on selected architectures From 734d5f54601d5d74f53d41a33f5e25ea461e8aac Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 19 Jul 2012 16:23:09 -0500 Subject: [PATCH 09/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index a39e6dc..931217f 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 19 2012 Fedora Release Engineering - 0.3.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Fri Jan 13 2012 Fedora Release Engineering - 0.3.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 5f2192fc90ef239e6d3d01bc0a7794ad636e2a97 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 13 Feb 2013 23:21:05 -0600 Subject: [PATCH 10/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index 931217f..9cc0ed2 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 0.3.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Thu Jul 19 2012 Fedora Release Engineering - 0.3.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From a64340222fe105fcc5688e87a463f500f88e9748 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 3 Aug 2013 02:12:59 -0500 Subject: [PATCH 11/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index 9cc0ed2..360a497 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 0.3.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Thu Feb 14 2013 Fedora Release Engineering - 0.3.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 72f85584c459118bd61fe6d4ab1b9217a6288869 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Mon, 12 Aug 2013 13:34:36 +0200 Subject: [PATCH 12/36] Update valgrind arches --- libtiger.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libtiger.spec b/libtiger.spec index 360a497..c7fde2a 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -11,7 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libkate-devel >= 0.2.7 BuildRequires: pango-devel -%ifarch %{ix86} x86_64 ppc ppc64 s390x +%ifarch %{ix86} x86_64 ppc ppc64 s390x %{arm} BuildRequires: valgrind %endif BuildRequires: doxygen @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Aug 12 2013 Nicolas Chauvet - 0.3.4-7 +- Set the current valgrind arches + * Sat Aug 03 2013 Fedora Release Engineering - 0.3.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 467a78e3d78dc51b9baa66d232a8592c5ffb2057 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 00:41:29 -0500 Subject: [PATCH 13/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index c7fde2a..c88cc48 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 0.3.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Mon Aug 12 2013 Nicolas Chauvet - 0.3.4-7 - Set the current valgrind arches From 3b920620867923abe694b46a4a5ebab1a79b4bdb Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sun, 17 Aug 2014 06:19:33 +0000 Subject: [PATCH 14/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index c88cc48..54be63e 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Aug 17 2014 Fedora Release Engineering - 0.3.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 0.3.4-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From bc610f8bd2d820abae1baa5b7e7bfe83f23bf90c Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 17:25:56 +0000 Subject: [PATCH 15/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index 54be63e..f2021e9 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jun 17 2015 Fedora Release Engineering - 0.3.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sun Aug 17 2014 Fedora Release Engineering - 0.3.4-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From c2b68fa7e17230d3a86fdc2050d48ac61b217df4 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 4 Feb 2016 04:01:28 +0000 Subject: [PATCH 16/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index f2021e9..13e6379 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 0.3.4-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Wed Jun 17 2015 Fedora Release Engineering - 0.3.4-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 90560f0aacd23b0c75811ef084f2cc58af70e9e5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 19:34:03 +0000 Subject: [PATCH 17/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index 13e6379..8315287 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 0.3.4-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Thu Feb 04 2016 Fedora Release Engineering - 0.3.4-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 57903a37d83a0a84267869aff70484a0d4270e9e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 19:50:42 +0000 Subject: [PATCH 18/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index 8315287..3ef4567 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 0.3.4-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Feb 10 2017 Fedora Release Engineering - 0.3.4-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 08044235a8640e241d35ef9345b3969dd51e0cc1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 02:23:21 +0000 Subject: [PATCH 19/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index 3ef4567..06aab16 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 0.3.4-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 0.3.4-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 42dffcb3dbe5f2373dd75779f62aba4485531dab Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 23:30:36 +0000 Subject: [PATCH 20/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index 06aab16..ef73b02 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 0.3.4-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 0.3.4-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 40d7185db38191748627941863fa6e5d2c93e20a Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 13 Feb 2018 23:44:06 +0100 Subject: [PATCH 21/36] Remove BuildRoot definition None of currently supported distributions need that. It was needed last for EL5 which is EOL now Signed-off-by: Igor Gnatenko --- libtiger.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index ef73b02..6779558 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -7,7 +7,6 @@ Group: System Environment/Libraries License: LGPLv2+ URL: http://libtiger.googlecode.com Source0: http://libtiger.googlecode.com/files/libtiger-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libkate-devel >= 0.2.7 BuildRequires: pango-devel From 34bc2b08b497be54cc905c91985c8d49ae862ab5 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 08:16:57 +0100 Subject: [PATCH 22/36] Remove %clean section None of currently supported distributions need that. Last one was EL5 which is EOL for a while. Signed-off-by: Igor Gnatenko --- libtiger.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/libtiger.spec b/libtiger.spec index 6779558..e64a883 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -64,9 +64,6 @@ touch -r include/tiger/tiger.h.in $RPM_BUILD_ROOT%{_includedir}/tiger/tiger.h # Move docdir mv $RPM_BUILD_ROOT%{_docdir}/%{name} __doc -%clean -rm -rf $RPM_BUILD_ROOT - %post -p /sbin/ldconfig From f03979633a71544eef03751d0971ad70c2668aff Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 9 Jul 2018 19:06:48 +0200 Subject: [PATCH 23/36] add BuildRequires: gcc Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- libtiger.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/libtiger.spec b/libtiger.spec index e64a883..87e1c04 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -8,6 +8,7 @@ License: LGPLv2+ URL: http://libtiger.googlecode.com Source0: http://libtiger.googlecode.com/files/libtiger-%{version}.tar.gz +BuildRequires: gcc BuildRequires: libkate-devel >= 0.2.7 BuildRequires: pango-devel %ifarch %{ix86} x86_64 ppc ppc64 s390x %{arm} From a095ab769e8513cf8bcde7ef7ac3d691725e931b Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 01:47:53 -0500 Subject: [PATCH 24/36] Remove needless use of %defattr --- libtiger.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/libtiger.spec b/libtiger.spec index 87e1c04..438afcc 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -72,18 +72,15 @@ mv $RPM_BUILD_ROOT%{_docdir}/%{name} __doc %files -%defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog README %{_libdir}/*.so.* %files devel -%defattr(-,root,root,-) %{_includedir}/tiger/ %{_libdir}/*.so %{_libdir}/pkgconfig/tiger.pc %files doc -%defattr(-,root,root,-) %doc examples __doc/html From 11986992a4c25f3ac8f80358e53f7f0f899a86a1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 08:55:50 +0000 Subject: [PATCH 25/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index 438afcc..2e46076 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo Group: System Environment/Libraries @@ -85,6 +85,9 @@ mv $RPM_BUILD_ROOT%{_docdir}/%{name} __doc %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 0.3.4-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Feb 07 2018 Fedora Release Engineering - 0.3.4-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From f6ae48fcc96da0c1b9e0702affebadb035054564 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 22 Jan 2019 18:40:11 +0100 Subject: [PATCH 26/36] Remove obsolete ldconfig scriptlets References: https://fedoraproject.org/wiki/Changes/RemoveObsoleteScriptlets Signed-off-by: Igor Gnatenko --- libtiger.spec | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libtiger.spec b/libtiger.spec index 2e46076..ef1cb18 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -66,9 +66,7 @@ touch -r include/tiger/tiger.h.in $RPM_BUILD_ROOT%{_includedir}/tiger/tiger.h mv $RPM_BUILD_ROOT%{_docdir}/%{name} __doc -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig +%ldconfig_scriptlets %files From 1c2465c2b23013687962bce19bdbab4e7330bf81 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:17:52 +0100 Subject: [PATCH 27/36] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- libtiger.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/libtiger.spec b/libtiger.spec index ef1cb18..ef9dc35 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -3,7 +3,6 @@ Version: 0.3.4 Release: 16%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo -Group: System Environment/Libraries License: LGPLv2+ URL: http://libtiger.googlecode.com Source0: http://libtiger.googlecode.com/files/libtiger-%{version}.tar.gz @@ -25,7 +24,6 @@ http://wiki.xiph.org/index.php/OggKate %package devel Summary: Development files for %{name} -Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pango-devel Requires: libkate-devel >= 0.2.7 @@ -37,7 +35,6 @@ developing applications that use %{name}. %package doc Summary: Documentation for %{name} -Group: Documentation BuildArch: noarch %description doc From 18806aab69d50caaa45602190fd0a0455f7bb365 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 08:22:21 +0000 Subject: [PATCH 28/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index ef9dc35..6320d9e 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo License: LGPLv2+ @@ -80,6 +80,9 @@ mv $RPM_BUILD_ROOT%{_docdir}/%{name} __doc %changelog +* Fri Feb 01 2019 Fedora Release Engineering - 0.3.4-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Fri Jul 13 2018 Fedora Release Engineering - 0.3.4-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 10c79eb18e2f40777c44e070d1b3bd90df8a41f3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 14:32:33 +0000 Subject: [PATCH 29/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index 6320d9e..5485c1f 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo License: LGPLv2+ @@ -80,6 +80,9 @@ mv $RPM_BUILD_ROOT%{_docdir}/%{name} __doc %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 0.3.4-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Fri Feb 01 2019 Fedora Release Engineering - 0.3.4-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 2b1243ad34cb4e9d0ad87b4c7a14ec592a60e581 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jan 2020 10:33:36 +0000 Subject: [PATCH 30/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index 5485c1f..37502cc 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo License: LGPLv2+ @@ -80,6 +80,9 @@ mv $RPM_BUILD_ROOT%{_docdir}/%{name} __doc %changelog +* Wed Jan 29 2020 Fedora Release Engineering - 0.3.4-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Jul 25 2019 Fedora Release Engineering - 0.3.4-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 299e860925090070bcb7d37b307adc771aedacd0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 05:44:05 +0000 Subject: [PATCH 31/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index 37502cc..53e8b28 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo License: LGPLv2+ @@ -80,6 +80,9 @@ mv $RPM_BUILD_ROOT%{_docdir}/%{name} __doc %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 0.3.4-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Jan 29 2020 Fedora Release Engineering - 0.3.4-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 7ebc14207c7242242c2e768ad7f2b79645c91947 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Wed, 6 Jan 2021 02:30:50 +0000 Subject: [PATCH 32/36] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- libtiger.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/libtiger.spec b/libtiger.spec index 53e8b28..1aabdcf 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -7,6 +7,7 @@ License: LGPLv2+ URL: http://libtiger.googlecode.com Source0: http://libtiger.googlecode.com/files/libtiger-%{version}.tar.gz +BuildRequires: make BuildRequires: gcc BuildRequires: libkate-devel >= 0.2.7 BuildRequires: pango-devel From 5dd9c35a532f160075c2a9b95e3b1769e67ee5df Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 18:09:13 +0000 Subject: [PATCH 33/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index 1aabdcf..210cce7 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 20%{?dist} +Release: 21%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo License: LGPLv2+ @@ -81,6 +81,9 @@ mv $RPM_BUILD_ROOT%{_docdir}/%{name} __doc %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 0.3.4-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Jul 28 2020 Fedora Release Engineering - 0.3.4-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From aa256596b7ae225b4ca50b5cf2b6e466c017c20c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 12:32:22 +0000 Subject: [PATCH 34/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index 210cce7..186bd84 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 21%{?dist} +Release: 22%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo License: LGPLv2+ @@ -81,6 +81,9 @@ mv $RPM_BUILD_ROOT%{_docdir}/%{name} __doc %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 0.3.4-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 0.3.4-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From ca2fca826cff23f3c66b88563554f5e84a6d6c45 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 17:24:32 +0000 Subject: [PATCH 35/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libtiger.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libtiger.spec b/libtiger.spec index 186bd84..f300300 100644 --- a/libtiger.spec +++ b/libtiger.spec @@ -1,6 +1,6 @@ Name: libtiger Version: 0.3.4 -Release: 22%{?dist} +Release: 23%{?dist} Summary: Rendering library for Kate streams using Pango and Cairo License: LGPLv2+ @@ -81,6 +81,9 @@ mv $RPM_BUILD_ROOT%{_docdir}/%{name} __doc %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.3.4-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Jul 22 2021 Fedora Release Engineering - 0.3.4-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 34e23ad5437ded9f5570e63b36e51dd02a335bbc Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 23:17:13 +0300 Subject: [PATCH 36/36] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index 865435d..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -dc1dbeb658c95485ba10b9b2897b4ae2 libtiger-0.3.4.tar.gz