From ef3f6c0807610f0bc235ef4576c92d96684ebedb Mon Sep 17 00:00:00 2001 From: nim Date: Sun, 5 Feb 2006 18:29:00 +0000 Subject: [PATCH 01/74] Setup of module perl-Font-TTF --- .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..1cf7f3c --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Makefile for source rpm: perl-Font-TTF +# $Id$ +NAME := perl-Font-TTF +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 $$/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 94f94308dd55c59baa21161f0d7048df589ef03c Mon Sep 17 00:00:00 2001 From: nim Date: Sun, 5 Feb 2006 18:30:09 +0000 Subject: [PATCH 02/74] auto-import perl-Font-TTF-0.37-3.fc5 on branch devel from perl-Font-TTF-0.37-3.fc5.src.rpm initial import --- .cvsignore | 1 + perl-Font-TTF.spec | 76 ++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 78 insertions(+) create mode 100644 perl-Font-TTF.spec diff --git a/.cvsignore b/.cvsignore index e69de29..e03c3ac 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +Font-TTF-0.37.tar.gz diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec new file mode 100644 index 0000000..ca19f3a --- /dev/null +++ b/perl-Font-TTF.spec @@ -0,0 +1,76 @@ +%define cpanname Font-TTF + +Name: perl-%{cpanname} +Version: 0.37 +Release: 3%{?dist} +Summary: Perl library for modifying TTF font files + +Group: Development/Libraries +License: Artistic +URL: http://search.cpan.org/dist/%{cpanname}/ +Source0: http://search.cpan.org/CPAN/authors/id/M/MH/MHOSKEN/%{cpanname}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildArch: noarch + +# The current FE perl template proposes this BuildRequires +# The current FE packaging guidelines say it's forbidden +# Commenting out while a consensus is reached +#BuildRequires: perl +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) + +%description +Perl module for TrueType font hacking. Supports reading, processing and writing +of the following tables: GDEF, GPOS, GSUB, LTSH, OS/2, PCLT, bsln, cmap, cvt, +fdsc, feat, fpgm, glyf, hdmx, head, hhea, hmtx, kern, loca, maxp, mort, name, +post, prep, prop, vhea, vmtx and the reading and writing of all other table +types. + +In short, you can do almost anything with a standard TrueType font with this +module. + + +%prep +%setup -q -n %{cpanname}-%{version} + + +%build +%{__perl} Makefile.PL INSTALLDIRS="vendor" +make %{?_smp_mflags} + + +%install +rm -rf %{buildroot} +make pure_install PERL_INSTALL_ROOT=%{buildroot} +find %{buildroot} -type f -name .packlist -exec rm -f {} ';' +find %{buildroot} -type d -depth -exec rmdir {} 2>/dev/null ';' +chmod -R u+w %{buildroot}/* + + +%clean +rm -rf %{buildroot} + + +%files +%defattr(-,root,root,-) +%doc README.TXT +%dir %{perl_vendorlib}/Font +%{perl_vendorlib}/Font/TTF +%{perl_vendorlib}/ttfmod.pl +%{_mandir}/man3/*.3* + +# We really don't want to use this perl package in a Win32 env +# or poke in the windows registry to resolve fonts +# (upstream makefile needs to get smarter) +%exclude %{perl_vendorlib}/Font/TTF/Win32.pm + + +%changelog +* Sun Feb 5 2006 Nicolas Mailhot - 0.37-3 +- spec cleanups #2 + +* Sun Feb 5 2006 Nicolas Mailhot - 0.37-2 +- spec cleanups + +* Sat Feb 4 2006 Nicolas Mailhot - 0.37-1 +- Initial release diff --git a/sources b/sources index e69de29..61de63a 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +707231254b45c52889bf47396d77e666 Font-TTF-0.37.tar.gz From 3a6ebec62401d53cd5411bc56ec1127f4ce45fc3 Mon Sep 17 00:00:00 2001 From: nim Date: Mon, 13 Feb 2006 21:45:49 +0000 Subject: [PATCH 03/74] auto-import perl-Font-TTF-0.37-4.fc5 on branch devel from perl-Font-TTF-0.37-4.fc5.src.rpm rebuilt for new gcc4.1 snapshot and glibc changes --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index ca19f3a..6b8268b 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -2,7 +2,7 @@ Name: perl-%{cpanname} Version: 0.37 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf %{buildroot} %changelog +* Mon Feb 13 2006 Nicolas Mailhot - 0.37-4 +- rebuilt for new gcc4.1 snapshot and glibc changes + * Sun Feb 5 2006 Nicolas Mailhot - 0.37-3 - spec cleanups #2 From 968c4b9d77a1f8b848f60dcd23145da504c77e4c Mon Sep 17 00:00:00 2001 From: nim Date: Sat, 18 Feb 2006 19:47:10 +0000 Subject: [PATCH 04/74] auto-import perl-Font-TTF-0.38.1-1.fc5 on branch devel from perl-Font-TTF-0.38.1-1.fc5.src.rpm 0.38.1 --- .cvsignore | 2 +- perl-Font-TTF.spec | 10 +++++++--- sources | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.cvsignore b/.cvsignore index e03c3ac..de059d6 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -Font-TTF-0.37.tar.gz +Font-TTF-0.38.1.tar.gz diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 6b8268b..3dc97ad 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,8 +1,8 @@ %define cpanname Font-TTF Name: perl-%{cpanname} -Version: 0.37 -Release: 4%{?dist} +Version: 0.38.1 +Release: 1%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -31,7 +31,7 @@ module. %prep -%setup -q -n %{cpanname}-%{version} +%setup -q -n %{cpanname}-0.38 %build @@ -66,6 +66,10 @@ rm -rf %{buildroot} %changelog +* Sat Feb 18 2006 Nicolas Mailhot - 0.38.1-1 +- new version with COPYING file as requested from upstream + many thanks to Martin Hosken for quick action! + * Mon Feb 13 2006 Nicolas Mailhot - 0.37-4 - rebuilt for new gcc4.1 snapshot and glibc changes diff --git a/sources b/sources index 61de63a..3b7d9e6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -707231254b45c52889bf47396d77e666 Font-TTF-0.37.tar.gz +45644142c73958569a3c2bcb929d8fb1 Font-TTF-0.38.1.tar.gz From adfa48d524b6b845c29e49158665f15545ac2003 Mon Sep 17 00:00:00 2001 From: nim Date: Mon, 31 Jul 2006 08:35:01 +0000 Subject: [PATCH 05/74] auto-import perl-Font-TTF-0.40.0-1.fc6 on branch devel from perl-Font-TTF-0.40.0-1.fc6.src.rpm 0.40.0 --- .cvsignore | 2 +- perl-Font-TTF.spec | 35 +++++++++++++++++++++++++---------- sources | 2 +- 3 files changed, 27 insertions(+), 12 deletions(-) diff --git a/.cvsignore b/.cvsignore index de059d6..a29f79f 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -Font-TTF-0.38.1.tar.gz +Font-TTF-0.40.tar.gz diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 3dc97ad..ebc33f7 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,14 +1,15 @@ %define cpanname Font-TTF +%define cpanver 0.40 Name: perl-%{cpanname} -Version: 0.38.1 +Version: 0.40.0 Release: 1%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic URL: http://search.cpan.org/dist/%{cpanname}/ -Source0: http://search.cpan.org/CPAN/authors/id/M/MH/MHOSKEN/%{cpanname}-%{version}.tar.gz +Source0: http://cpan.org/authors/id/M/MH/MHOSKEN/%{cpanname}-%{cpanver}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -31,7 +32,7 @@ module. %prep -%setup -q -n %{cpanname}-0.38 +%setup -q -n %{cpanname}-%{cpanver} %build @@ -53,10 +54,16 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc README.TXT +%doc README.TXT COPYING lib/Font/TTF/Changes %dir %{perl_vendorlib}/Font -%{perl_vendorlib}/Font/TTF +%dir %{perl_vendorlib}/Font/TTF + %{perl_vendorlib}/ttfmod.pl +%{perl_vendorlib}/Font/TTF.pm +%{perl_vendorlib}/Font/TTF/* + +%exclude %{perl_vendorlib}/Font/TTF/Changes + %{_mandir}/man3/*.3* # We really don't want to use this perl package in a Win32 env @@ -66,18 +73,26 @@ rm -rf %{buildroot} %changelog -* Sat Feb 18 2006 Nicolas Mailhot - 0.38.1-1 +* Mon Jul 31 2006 Nicolas Mailhot +- 0.40.0 + +* Sat Feb 18 2006 Nicolas Mailhot +- 0.38.1-1 - new version with COPYING file as requested from upstream many thanks to Martin Hosken for quick action! -* Mon Feb 13 2006 Nicolas Mailhot - 0.37-4 +* Mon Feb 13 2006 Nicolas Mailhot +- 0.37-4 - rebuilt for new gcc4.1 snapshot and glibc changes -* Sun Feb 5 2006 Nicolas Mailhot - 0.37-3 +* Sun Feb 5 2006 Nicolas Mailhot +- 0.37-3 - spec cleanups #2 -* Sun Feb 5 2006 Nicolas Mailhot - 0.37-2 +* Sun Feb 5 2006 Nicolas Mailhot +- 0.37-2 - spec cleanups -* Sat Feb 4 2006 Nicolas Mailhot - 0.37-1 +* Sat Feb 4 2006 Nicolas Mailhot +- 0.37-1 - Initial release diff --git a/sources b/sources index 3b7d9e6..3b7eaa8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -45644142c73958569a3c2bcb929d8fb1 Font-TTF-0.38.1.tar.gz +874f54894bf83a339dd3259b71cc4352 Font-TTF-0.40.tar.gz From b30946c5e5f385172bcb6b018d8ee27c3ad75652 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sun, 27 Aug 2006 20:49:56 +0000 Subject: [PATCH 06/74] http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild --- needs.rebuild | 1 + 1 file changed, 1 insertion(+) create mode 100644 needs.rebuild diff --git a/needs.rebuild b/needs.rebuild new file mode 100644 index 0000000..815fd29 --- /dev/null +++ b/needs.rebuild @@ -0,0 +1 @@ +http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild From ef9f91f08f80f95c66d80717774d7e9aedbd5636 Mon Sep 17 00:00:00 2001 From: nim Date: Sat, 2 Sep 2006 15:15:17 +0000 Subject: [PATCH 07/74] auto-import perl-Font-TTF-0.40.0-2.fc6 on branch devel from perl-Font-TTF-0.40.0-2.fc6.src.rpm FE6 rebuild --- needs.rebuild | 1 - perl-Font-TTF.spec | 8 ++++++-- 2 files changed, 6 insertions(+), 3 deletions(-) delete mode 100644 needs.rebuild diff --git a/needs.rebuild b/needs.rebuild deleted file mode 100644 index 815fd29..0000000 --- a/needs.rebuild +++ /dev/null @@ -1 +0,0 @@ -http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index ebc33f7..40fb190 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -3,7 +3,7 @@ Name: perl-%{cpanname} Version: 0.40.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -73,8 +73,12 @@ rm -rf %{buildroot} %changelog +* Sat Sep 02 2006 Nicolas Mailhot +- 0.40.0-2 +- FE6 Rebuild + * Mon Jul 31 2006 Nicolas Mailhot -- 0.40.0 +- 0.40.0-1 * Sat Feb 18 2006 Nicolas Mailhot - 0.38.1-1 From f48b98a9235e090be6a8434e0e09bb848a3d383c Mon Sep 17 00:00:00 2001 From: nim Date: Tue, 20 Mar 2007 21:33:37 +0000 Subject: [PATCH 08/74] auto-import perl-Font-TTF-0.40.0-3.fc7 on branch devel from perl-Font-TTF-0.40.0-3.fc7.src.rpm small spec fixes --- perl-Font-TTF.spec | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 40fb190..8fea365 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -3,7 +3,7 @@ Name: perl-%{cpanname} Version: 0.40.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -13,6 +13,7 @@ Source0: http://cpan.org/authors/id/M/MH/MHOSKEN/%{cpanname}-%{cpanver}.t BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch +BuildRequires: perl-devel, dos2unix # The current FE perl template proposes this BuildRequires # The current FE packaging guidelines say it's forbidden @@ -33,7 +34,7 @@ module. %prep %setup -q -n %{cpanname}-%{cpanver} - +dos2unix README.TXT COPYING lib/Font/TTF/Changes %build %{__perl} Makefile.PL INSTALLDIRS="vendor" @@ -53,7 +54,7 @@ rm -rf %{buildroot} %files -%defattr(-,root,root,-) +%defattr(0644,root,root,0755) %doc README.TXT COPYING lib/Font/TTF/Changes %dir %{perl_vendorlib}/Font %dir %{perl_vendorlib}/Font/TTF @@ -73,6 +74,10 @@ rm -rf %{buildroot} %changelog +* Tue Mar 20 2007 Nicolas Mailhot +- 0.40.0-3 +- small packaging fixes + * Sat Sep 02 2006 Nicolas Mailhot - 0.40.0-2 - FE6 Rebuild From 21c04c4dc1ce5df59a2af0c08543c874f933ef76 Mon Sep 17 00:00:00 2001 From: nim Date: Fri, 18 May 2007 18:00:29 +0000 Subject: [PATCH 09/74] 0.41 --- .cvsignore | 2 +- perl-Font-TTF.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.cvsignore b/.cvsignore index a29f79f..b3cfbf8 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -Font-TTF-0.40.tar.gz +Font-TTF-0.41.tar.gz diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 8fea365..227064e 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,9 +1,9 @@ %define cpanname Font-TTF -%define cpanver 0.40 +%define cpanver %{version} Name: perl-%{cpanname} -Version: 0.40.0 -Release: 3%{?dist} +Version: 0.41 +Release: 1%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Fri May 18 2007 Nicolas Mailhot +- 0.41-1 + * Tue Mar 20 2007 Nicolas Mailhot - 0.40.0-3 - small packaging fixes diff --git a/sources b/sources index 3b7eaa8..3fd1af5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -874f54894bf83a339dd3259b71cc4352 Font-TTF-0.40.tar.gz +3a93a6322d4901594e9cffcc3412d329 Font-TTF-0.41.tar.gz From ffa8eaea42e60ff1aae1b509df20839b4c17148c Mon Sep 17 00:00:00 2001 From: nim Date: Fri, 8 Feb 2008 22:02:50 +0000 Subject: [PATCH 10/74] 0.43 --- .cvsignore | 2 +- perl-Font-TTF.spec | 7 ++++++- sources | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.cvsignore b/.cvsignore index b3cfbf8..75c834e 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -Font-TTF-0.41.tar.gz +Font-TTF-0.43.tar.gz diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 227064e..0cd970f 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -2,7 +2,7 @@ %define cpanver %{version} Name: perl-%{cpanname} -Version: 0.41 +Version: 0.43 Release: 1%{?dist} Summary: Perl library for modifying TTF font files @@ -74,6 +74,11 @@ rm -rf %{buildroot} %changelog +* Fri Feb 08 2008 Nicolas Mailhot +- 0.43-1 +⚖ License fix + + * Fri May 18 2007 Nicolas Mailhot - 0.41-1 diff --git a/sources b/sources index 3fd1af5..a56fa0e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3a93a6322d4901594e9cffcc3412d329 Font-TTF-0.41.tar.gz +3a92d8019722c227a521fe121027a3ef Font-TTF-0.43.tar.gz From 3283ae5ab2ca3339cdbda47cdbe1b3269e624f25 Mon Sep 17 00:00:00 2001 From: nim Date: Sat, 9 Feb 2008 09:19:22 +0000 Subject: [PATCH 11/74] 0.43 --- perl-Font-TTF.spec | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 0cd970f..48e4e94 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -3,10 +3,12 @@ Name: perl-%{cpanname} Version: 0.43 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries +# Relicensing needs to be negociated with upstream whenever it gets around +# releasing a new version License: Artistic URL: http://search.cpan.org/dist/%{cpanname}/ Source0: http://cpan.org/authors/id/M/MH/MHOSKEN/%{cpanname}-%{cpanver}.tar.gz @@ -74,10 +76,8 @@ rm -rf %{buildroot} %changelog -* Fri Feb 08 2008 Nicolas Mailhot -- 0.43-1 -⚖ License fix - +* Sat Feb 09 2008 Nicolas Mailhot +- 0.43-2 * Fri May 18 2007 Nicolas Mailhot - 0.41-1 From f8183d3b492e7a7b210d46617bb79a7e49e3f38c Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Fri, 7 Mar 2008 02:01:27 +0000 Subject: [PATCH 12/74] new perl --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 48e4e94..0dd3946 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -3,7 +3,7 @@ Name: perl-%{cpanname} Version: 0.43 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Thu Mar 06 2008 Tom "spot" Callaway - 0.43-3 +Rebuild for new perl + * Sat Feb 09 2008 Nicolas Mailhot - 0.43-2 From 35aca8c31d9164c8ff047566bbc1ae6aa92ac601 Mon Sep 17 00:00:00 2001 From: nim Date: Fri, 11 Jul 2008 21:25:52 +0000 Subject: [PATCH 13/74] =?UTF-8?q?=E2=8C=96=20Fedora=2010=20alpha=20general?= =?UTF-8?q?=20package=20cleanup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cvsignore | 2 +- import.log | 1 + perl-Font-TTF.spec | 72 +++++++++++++++++++++++++++------------------- sources | 2 +- 4 files changed, 45 insertions(+), 32 deletions(-) create mode 100644 import.log diff --git a/.cvsignore b/.cvsignore index 75c834e..47f25ad 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -Font-TTF-0.43.tar.gz +Font-TTF-0.45.tar.gz diff --git a/import.log b/import.log new file mode 100644 index 0000000..d2102dd --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +perl-Font-TTF-0_45-1_fc10:HEAD:perl-Font-TTF-0.45-1.fc10.src.rpm:1215811435 diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 0dd3946..9ac942d 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,27 +1,24 @@ %define cpanname Font-TTF -%define cpanver %{version} - -Name: perl-%{cpanname} -Version: 0.43 -Release: 3%{?dist} -Summary: Perl library for modifying TTF font files - -Group: Development/Libraries -# Relicensing needs to be negociated with upstream whenever it gets around -# releasing a new version -License: Artistic -URL: http://search.cpan.org/dist/%{cpanname}/ -Source0: http://cpan.org/authors/id/M/MH/MHOSKEN/%{cpanname}-%{cpanver}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -BuildArch: noarch -BuildRequires: perl-devel, dos2unix - -# The current FE perl template proposes this BuildRequires -# The current FE packaging guidelines say it's forbidden -# Commenting out while a consensus is reached -#BuildRequires: perl -Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) + +Name: perl-%{cpanname} +Version: 0.45 +Release: 1%{?dist} +Summary: Perl library for modifying TTF font files + +Group: Development/Libraries +# Will probalby die soonish because of the following +License: Artistic +URL: http://search.cpan.org/dist/%{cpanname}/ +Source0: http://cpan.org/authors/id/M/MH/MHOSKEN/%{cpanname}-%{version}.tar.gz +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) + +BuildArch: noarch +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: dos2unix +# Check requirements +BuildRequires: perl(Test::Simple) + +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Perl module for TrueType font hacking. Supports reading, processing and writing @@ -35,29 +32,38 @@ module. %prep -%setup -q -n %{cpanname}-%{cpanver} +%setup -q -n %{cpanname}-%{version} dos2unix README.TXT COPYING lib/Font/TTF/Changes + %build -%{__perl} Makefile.PL INSTALLDIRS="vendor" +%{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install -rm -rf %{buildroot} +rm -fr %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} + find %{buildroot} -type f -name .packlist -exec rm -f {} ';' -find %{buildroot} -type d -depth -exec rmdir {} 2>/dev/null ';' -chmod -R u+w %{buildroot}/* +find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';' +find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';' + +chmod -R u+rwX,g+rX %{buildroot}/* + + +%check +make test %clean -rm -rf %{buildroot} +rm -fr %{buildroot} %files %defattr(0644,root,root,0755) %doc README.TXT COPYING lib/Font/TTF/Changes + %dir %{perl_vendorlib}/Font %dir %{perl_vendorlib}/Font/TTF @@ -76,7 +82,13 @@ rm -rf %{buildroot} %changelog -* Thu Mar 06 2008 Tom "spot" Callaway - 0.43-3 +* Fri Jul 11 2008 +- 0.45-1 +⌖ Fedora 10 alpha general package cleanup +⚖ Upstream needs to relicense fast to avoid culling + +* Thu Mar 06 2008 Tom "spot" Callaway +- 0.43-3 Rebuild for new perl * Sat Feb 09 2008 Nicolas Mailhot diff --git a/sources b/sources index a56fa0e..3acb10e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3a92d8019722c227a521fe121027a3ef Font-TTF-0.43.tar.gz +5cf3baa8e227c43184767240f1d57ba1 Font-TTF-0.45.tar.gz From 2ef4436d7f9d61c268f758de89a4fbb7d4347115 Mon Sep 17 00:00:00 2001 From: nim Date: Thu, 4 Sep 2008 17:16:25 +0000 Subject: [PATCH 14/74] relicense --- import.log | 1 + perl-Font-TTF-COPYING.Fedora | 195 +++++++++++++++++++++++++++++++++++ perl-Font-TTF.spec | 13 ++- 3 files changed, 205 insertions(+), 4 deletions(-) create mode 100644 perl-Font-TTF-COPYING.Fedora diff --git a/import.log b/import.log index d2102dd..b317aaa 100644 --- a/import.log +++ b/import.log @@ -1 +1,2 @@ perl-Font-TTF-0_45-1_fc10:HEAD:perl-Font-TTF-0.45-1.fc10.src.rpm:1215811435 +perl-Font-TTF-0_45-2_fc10:HEAD:perl-Font-TTF-0.45-2.fc10.src.rpm:1220548574 diff --git a/perl-Font-TTF-COPYING.Fedora b/perl-Font-TTF-COPYING.Fedora new file mode 100644 index 0000000..7f430b0 --- /dev/null +++ b/perl-Font-TTF-COPYING.Fedora @@ -0,0 +1,195 @@ +Date: Thu, 4 Sep 2008 09:01:32 +0700 +From: Martin Hosken +To: "Tom \"spot\" Callaway" +Cc: nicolas.spalinger@sil.org, Nicolas Mailhot +Subject: Re: License of perl-Font-TTF +Message-ID: <20080904090132.6248a852@sil-mh4> +In-Reply-To: <1220470951.3764.63.camel@localhost.localdomain> + +Dear Tom, + +> The best case scenario is a new release of Font::TTF that is under a +> Free license (we suggest the same license as perl (GPL+ or Artistic) or +> Artistic 2.0). However, given the time constraints, we would also be +> able to use written (email is fine) permission from the copyright holder +> for Fedora to distribute Font::TTF under a Free license. + +I'm sorry to be seeming to drag my heels on this, but I don't really want to +produce another release just to change the license, at this time. So: + +I hereby declare that Fedora may distribute the Font::TTF and +Font::TTF::Scripts modules under the Artistic 2.0 license. + +I have changed the COPYING file in both projects and the next version will +appear with it. If you still really need me to do another release (sigh) then +please get back to me. + +Thank you for your patience. + +Yours, +Martin Hosken + +–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– + +Artistic License 2.0 + +Copyright (c) 2000-2006, The Perl Foundation. + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. +Preamble + +This license establishes the terms under which a given free software Package +may be copied, modified, distributed, and/or redistributed. The intent is that +the Copyright Holder maintains some artistic control over the development of +that Package while still keeping the Package available as open source and free +software. + +You are always permitted to make arrangements wholly outside of this license +directly with the Copyright Holder of a given Package. If the terms of this +license do not permit the full use that you propose to make of the Package, you +should contact the Copyright Holder and seek a different licensing arrangement. +Definitions + +"Copyright Holder" means the individual(s) or organization(s) named in the +copyright notice for the entire Package. + +"Contributor" means any party that has contributed code or other material to +the Package, in accordance with the Copyright Holder's procedures. + +"You" and "your" means any person who would like to copy, distribute, or modify +the Package. + +"Package" means the collection of files distributed by the Copyright Holder, +and derivatives of that collection and/or of those files. A given Package may +consist of either the Standard Version, or a Modified Version. + +"Distribute" means providing a copy of the Package or making it accessible to +anyone else, or in the case of a company or organization, to others outside of +your company or organization. + +"Distributor Fee" means any fee that you charge for Distributing this Package +or providing support for this Package to another party. It does not mean +licensing fees. + +"Standard Version" refers to the Package if it has not been modified, or has +been modified only in ways explicitly requested by the Copyright Holder. + +"Modified Version" means the Package, if it has been changed, and such changes +were not explicitly requested by the Copyright Holder. + +"Original License" means this Artistic License as Distributed with the Standard +Version of the Package, in its current version or as it may be modified by The +Perl Foundation in the future. + +"Source" form means the source code, documentation source, and configuration +files for the Package. + +"Compiled" form means the compiled bytecode, object code, binary, or any other +form resulting from mechanical transformation or translation of the Source form. +Permission for Use and Modification Without Distribution + +(1) You are permitted to use the Standard Version and create and use Modified +Versions for any purpose without restriction, provided that you do not +Distribute the Modified Version. +Permissions for Redistribution of the Standard Version + +(2) You may Distribute verbatim copies of the Source form of the Standard +Version of this Package in any medium without restriction, either gratis or for +a Distributor Fee, provided that you duplicate all of the original copyright +notices and associated disclaimers. At your discretion, such verbatim copies +may or may not include a Compiled form of the Package. + +(3) You may apply any bug fixes, portability changes, and other modifications +made available from the Copyright Holder. The resulting Package will still be +considered the Standard Version, and as such will be subject to the Original +License. +Distribution of Modified Versions of the Package as Source + +(4) You may Distribute your Modified Version as Source (either gratis or for a +Distributor Fee, and with or without a Compiled form of the Modified Version) +provided that you clearly document how it differs from the Standard Version, +including, but not limited to, documenting any non-standard features, +executables, or modules, and provided that you do at least ONE of the following: + +(a) make the Modified Version available to the Copyright Holder of the Standard +Version, under the Original License, so that the Copyright Holder may include +your modifications in the Standard Version. +(b) ensure that installation of your Modified Version does not prevent the user +installing or running the Standard Version. In addition, the Modified Version +must bear a name that is different from the name of the Standard Version. +(c) allow anyone who receives a copy of the Modified Version to make the Source +form of the Modified Version available to others under +(i) the Original License or +(ii) a license that permits the licensee to freely copy, modify and +redistribute the Modified Version using the same licensing terms that apply to +the copy that the licensee received, and requires that the Source form of the +Modified Version, and of any works derived from it, be made freely available in +that license fees are prohibited but Distributor Fees are allowed. +Distribution of Compiled Forms of the Standard Version or Modified Versions +without the Source + +(5) You may Distribute Compiled forms of the Standard Version without the +Source, provided that you include complete instructions on how to get the +Source of the Standard Version. Such instructions must be valid at the time of +your distribution. If these instructions, at any time while you are carrying +out such distribution, become invalid, you must provide new instructions on +demand or cease further distribution. If you provide valid instructions or +cease distribution within thirty days after you become aware that the +instructions are invalid, then you do not forfeit any of your rights under this +license. + +(6) You may Distribute a Modified Version in Compiled form without the Source, +provided that you comply with Section 4 with respect to the Source of the +Modified Version. +Aggregating or Linking the Package + +(7) You may aggregate the Package (either the Standard Version or Modified +Version) with other packages and Distribute the resulting aggregation provided +that you do not charge a licensing fee for the Package. Distributor Fees are +permitted, and licensing fees for other components in the aggregation are +permitted. The terms of this license apply to the use and Distribution of the +Standard or Modified Versions as included in the aggregation. + +(8) You are permitted to link Modified and Standard Versions with other works, +to embed the Package in a larger work of your own, or to build stand-alone +binary or bytecode versions of applications that include the Package, and +Distribute the result without restriction, provided the result does not expose +a direct interface to the Package. +Items That are Not Considered Part of a Modified Version + +(9) Works (including, but not limited to, modules and scripts) that merely +extend or make use of the Package, do not, by themselves, cause the Package to +be a Modified Version. In addition, such works are not considered parts of the +Package itself, and are not subject to the terms of this license. +General Provisions + +(10) Any use, modification, and distribution of the Standard or Modified +Versions is governed by this Artistic License. By using, modifying or +distributing the Package, you accept this license. Do not use, modify, or +distribute the Package, if you do not accept this license. + +(11) If your Modified Version has been derived from a Modified Version made by +someone other than you, you are nevertheless required to ensure that your +Modified Version complies with the requirements of this license. + +(12) This license does not grant you the right to use any trademark, service +mark, tradename, or logo of the Copyright Holder. + +(13) This license includes the non-exclusive, worldwide, free-of-charge patent +license to make, have made, use, offer to sell, sell, import and otherwise +transfer the Package with respect to any patent claims licensable by the +Copyright Holder that are necessarily infringed by the Package. If you +institute patent litigation (including a cross-claim or counterclaim) against +any party alleging that the Package constitutes direct or contributory patent +infringement, then this Artistic License to you shall terminate on the date +that such litigation is filed. + +(14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER +AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE +IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR +NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. +UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY +OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 9ac942d..22608f6 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -2,14 +2,14 @@ Name: perl-%{cpanname} Version: 0.45 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries -# Will probalby die soonish because of the following -License: Artistic +License: Artistic 2.0 URL: http://search.cpan.org/dist/%{cpanname}/ Source0: http://cpan.org/authors/id/M/MH/MHOSKEN/%{cpanname}-%{version}.tar.gz +Source1: %{name}-COPYING.Fedora BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch @@ -34,6 +34,7 @@ module. %prep %setup -q -n %{cpanname}-%{version} dos2unix README.TXT COPYING lib/Font/TTF/Changes +install -m 0644 -p %{SOURCE1} COPYING.Fedora %build @@ -62,7 +63,7 @@ rm -fr %{buildroot} %files %defattr(0644,root,root,0755) -%doc README.TXT COPYING lib/Font/TTF/Changes +%doc README.TXT COPYING COPYING.Fedora lib/Font/TTF/Changes %dir %{perl_vendorlib}/Font %dir %{perl_vendorlib}/Font/TTF @@ -82,6 +83,10 @@ rm -fr %{buildroot} %changelog +* Thu Sep 4 2008 +- 0.45-2 +⚖ ⇒ Artistic 2.0 + * Fri Jul 11 2008 - 0.45-1 ⌖ Fedora 10 alpha general package cleanup From 51ec8dcde6dbe7fa08e9f50449e06e00cd304a3d Mon Sep 17 00:00:00 2001 From: nim Date: Tue, 17 Feb 2009 19:09:24 +0000 Subject: [PATCH 15/74] switch to global --- perl-Font-TTF.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 22608f6..978ced2 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,4 +1,4 @@ -%define cpanname Font-TTF +%global cpanname Font-TTF Name: perl-%{cpanname} Version: 0.45 From a339545307e27cc5447c8842e10d48f6f971094f Mon Sep 17 00:00:00 2001 From: nim Date: Mon, 23 Feb 2009 08:58:36 +0000 Subject: [PATCH 16/74] F11 mass rebuild --- import.log | 1 + perl-Font-TTF.spec | 10 +++++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/import.log b/import.log index b317aaa..a868c58 100644 --- a/import.log +++ b/import.log @@ -1,2 +1,3 @@ perl-Font-TTF-0_45-1_fc10:HEAD:perl-Font-TTF-0.45-1.fc10.src.rpm:1215811435 perl-Font-TTF-0_45-2_fc10:HEAD:perl-Font-TTF-0.45-2.fc10.src.rpm:1220548574 +perl-Font-TTF-0_45-3_fc11:HEAD:perl-Font-TTF-0.45-3.fc11.src.rpm:1235379493 diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 978ced2..d7af202 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -2,7 +2,7 @@ Name: perl-%{cpanname} Version: 0.45 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -83,11 +83,15 @@ rm -fr %{buildroot} %changelog -* Thu Sep 4 2008 +* Mon Feb 23 2009 Nicolas Mailhot +- 0.45-3 +— global-ization + +* Thu Sep 4 2008 Nicolas Mailhot - 0.45-2 ⚖ ⇒ Artistic 2.0 -* Fri Jul 11 2008 +* Fri Jul 11 2008 Nicolas Mailhot - 0.45-1 ⌖ Fedora 10 alpha general package cleanup ⚖ Upstream needs to relicense fast to avoid culling From 1e9426857842abe69d8af9aabfc8d22f454adebd Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Thu, 26 Feb 2009 16:39:52 +0000 Subject: [PATCH 17/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index d7af202..9924b94 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -2,7 +2,7 @@ Name: perl-%{cpanname} Version: 0.45 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -83,6 +83,9 @@ rm -fr %{buildroot} %changelog +* Thu Feb 26 2009 Fedora Release Engineering - 0.45-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Mon Feb 23 2009 Nicolas Mailhot - 0.45-3 — global-ization From e707c20dc7b37590699df3c3df063af8d0303efb Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Sun, 26 Jul 2009 06:07:56 +0000 Subject: [PATCH 18/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 9924b94..1098819 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -2,7 +2,7 @@ Name: perl-%{cpanname} Version: 0.45 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -83,6 +83,9 @@ rm -fr %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.45-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.45-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From 651f1e810b712398a97afe4ca031d678425350ed Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 23:30:51 +0000 Subject: [PATCH 19/74] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1cf7f3c..d286ec5 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: perl-Font-TTF -# $Id$ +# $Id: Makefile,v 1.1 2006/02/05 18:29:00 nim Exp $ NAME := perl-Font-TTF 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 $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +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)) From 5293287fa4a1eb4b6b9bbdd813533c3039fa9df7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Kasal?= Date: Sun, 6 Dec 2009 23:53:05 +0000 Subject: [PATCH 20/74] - rebuild against perl 5.10.1 --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 1098819..3407fdc 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -2,7 +2,7 @@ Name: perl-%{cpanname} Version: 0.45 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -83,6 +83,9 @@ rm -fr %{buildroot} %changelog +* Fri Dec 4 2009 Stepan Kasal - 0.45-6 +- rebuild against perl 5.10.1 + * Sat Jul 25 2009 Fedora Release Engineering - 0.45-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From ef6fd1021fbceaa6a69d4173dd8846873731b42a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Sat, 1 May 2010 06:28:03 +0000 Subject: [PATCH 21/74] - Mass rebuild with perl-5.12.0 --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 3407fdc..277958e 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -2,7 +2,7 @@ Name: perl-%{cpanname} Version: 0.45 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -83,6 +83,9 @@ rm -fr %{buildroot} %changelog +* Sat May 01 2010 Marcela Maslanova - 0.45-7 +- Mass rebuild with perl-5.12.0 + * Fri Dec 4 2009 Stepan Kasal - 0.45-6 - rebuild against perl 5.10.1 From 1147746645e2576d1d8bb2574a45d352344efa40 Mon Sep 17 00:00:00 2001 From: nim Date: Sun, 13 Jun 2010 14:14:28 +0000 Subject: [PATCH 22/74] Remove BuildRoot specification, it's been ignored since rpm 4.6.0 --- perl-Font-TTF.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 277958e..fe7036a 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -10,7 +10,7 @@ License: Artistic 2.0 URL: http://search.cpan.org/dist/%{cpanname}/ Source0: http://cpan.org/authors/id/M/MH/MHOSKEN/%{cpanname}-%{version}.tar.gz Source1: %{name}-COPYING.Fedora -BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) + BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) From 87656ec0800dbb3d101e2ce460eeb0e21d12ce89 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 06:43:58 +0000 Subject: [PATCH 23/74] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 3 --- 3 files changed, 24 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 d286ec5..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: perl-Font-TTF -# $Id: Makefile,v 1.1 2006/02/05 18:29:00 nim Exp $ -NAME := perl-Font-TTF -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 a868c58..0000000 --- a/import.log +++ /dev/null @@ -1,3 +0,0 @@ -perl-Font-TTF-0_45-1_fc10:HEAD:perl-Font-TTF-0.45-1.fc10.src.rpm:1215811435 -perl-Font-TTF-0_45-2_fc10:HEAD:perl-Font-TTF-0.45-2.fc10.src.rpm:1220548574 -perl-Font-TTF-0_45-3_fc11:HEAD:perl-Font-TTF-0.45-3.fc11.src.rpm:1235379493 From 8bdf172bcf48584008163300fabe9112d931b0fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Thu, 16 Dec 2010 20:52:07 +0100 Subject: [PATCH 24/74] - 661697 rebuild for fixing problems with vendorach/lib --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index fe7036a..319f503 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -2,7 +2,7 @@ Name: perl-%{cpanname} Version: 0.45 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -83,6 +83,9 @@ rm -fr %{buildroot} %changelog +* Thu Dec 16 2010 Marcela Maslanova - 0.45-8 +- 661697 rebuild for fixing problems with vendorach/lib + * Sat May 01 2010 Marcela Maslanova - 0.45-7 - Mass rebuild with perl-5.12.0 From 97b5daf8860a4c9119cab618609954602df52a6f Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 8 Feb 2011 16:42:29 -0600 Subject: [PATCH 25/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 319f503..82fef9c 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -2,7 +2,7 @@ Name: perl-%{cpanname} Version: 0.45 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -83,6 +83,9 @@ rm -fr %{buildroot} %changelog +* Tue Feb 08 2011 Fedora Release Engineering - 0.45-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Thu Dec 16 2010 Marcela Maslanova - 0.45-8 - 661697 rebuild for fixing problems with vendorach/lib From cb8a826c75ac6a670376f7f59d81d212e2a85eef Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Wed, 9 Mar 2011 11:35:38 +0530 Subject: [PATCH 26/74] new upstream release 0.48 --- .gitignore | 1 + perl-Font-TTF.spec | 22 +++++++++------------- sources | 2 +- 3 files changed, 11 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index 47f25ad..5e49148 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ Font-TTF-0.45.tar.gz +/Font-TTF-0.48.tar.gz diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 82fef9c..164f3c8 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,16 +1,14 @@ %global cpanname Font-TTF Name: perl-%{cpanname} -Version: 0.45 -Release: 9%{?dist} +Version: 0.48 +Release: 1%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 URL: http://search.cpan.org/dist/%{cpanname}/ Source0: http://cpan.org/authors/id/M/MH/MHOSKEN/%{cpanname}-%{version}.tar.gz -Source1: %{name}-COPYING.Fedora - BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) @@ -20,6 +18,8 @@ BuildRequires: perl(Test::Simple) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +%{?perl_default_filter} + %description Perl module for TrueType font hacking. Supports reading, processing and writing of the following tables: GDEF, GPOS, GSUB, LTSH, OS/2, PCLT, bsln, cmap, cvt, @@ -34,7 +34,6 @@ module. %prep %setup -q -n %{cpanname}-%{version} dos2unix README.TXT COPYING lib/Font/TTF/Changes -install -m 0644 -p %{SOURCE1} COPYING.Fedora %build @@ -43,27 +42,21 @@ make %{?_smp_mflags} %install -rm -fr %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';' find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';' -chmod -R u+rwX,g+rX %{buildroot}/* - +%{_fixperms} $RPM_BUILD_ROOT/* %check make test -%clean -rm -fr %{buildroot} - - %files %defattr(0644,root,root,0755) -%doc README.TXT COPYING COPYING.Fedora lib/Font/TTF/Changes +%doc README.TXT COPYING lib/Font/TTF/Changes %dir %{perl_vendorlib}/Font %dir %{perl_vendorlib}/Font/TTF @@ -83,6 +76,9 @@ rm -fr %{buildroot} %changelog +* Wed Mar 09 2011 Parag Nemade - 0.48-1 +- new upstream release 0.48 + * Tue Feb 08 2011 Fedora Release Engineering - 0.45-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild diff --git a/sources b/sources index 3acb10e..3ba4c32 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -5cf3baa8e227c43184767240f1d57ba1 Font-TTF-0.45.tar.gz +56d614d04e985558d1518b8f4b29254e Font-TTF-0.48.tar.gz From 7216270589005adc470075edafdfb1d0c0befa97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Fri, 17 Jun 2011 22:18:12 +0200 Subject: [PATCH 27/74] Perl mass rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 164f3c8..36cacac 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -2,7 +2,7 @@ Name: perl-%{cpanname} Version: 0.48 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -76,6 +76,9 @@ make test %changelog +* Fri Jun 17 2011 Marcela Mašláňová - 0.48-2 +- Perl mass rebuild + * Wed Mar 09 2011 Parag Nemade - 0.48-1 - new upstream release 0.48 From 763a9a72403bc2c46682f63636aedc58c1593d11 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 13 Jan 2012 07:51:16 -0600 Subject: [PATCH 28/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 36cacac..c355ca7 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -2,7 +2,7 @@ Name: perl-%{cpanname} Version: 0.48 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -76,6 +76,9 @@ make test %changelog +* Fri Jan 13 2012 Fedora Release Engineering - 0.48-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Fri Jun 17 2011 Marcela Mašláňová - 0.48-2 - Perl mass rebuild From 5ebddf0e12a8409eab9f062d7745bd7b1c226092 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 11 Jun 2012 17:41:42 +0200 Subject: [PATCH 29/74] Perl 5.16 rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index c355ca7..1e28678 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -2,7 +2,7 @@ Name: perl-%{cpanname} Version: 0.48 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -76,6 +76,9 @@ make test %changelog +* Mon Jun 11 2012 Petr Pisar - 0.48-4 +- Perl 5.16 rebuild + * Fri Jan 13 2012 Fedora Release Engineering - 0.48-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 9c140b8e2e4d890cd211122ec8c8d68c8a0cfb94 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 20 Jul 2012 10:25:05 -0500 Subject: [PATCH 30/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 1e28678..018986d 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -2,7 +2,7 @@ Name: perl-%{cpanname} Version: 0.48 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -76,6 +76,9 @@ make test %changelog +* Fri Jul 20 2012 Fedora Release Engineering - 0.48-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Mon Jun 11 2012 Petr Pisar - 0.48-4 - Perl 5.16 rebuild From 76e56900de54906d3babb8be366be30b33885edf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Wed, 29 Aug 2012 11:52:49 +0200 Subject: [PATCH 31/74] 1.00 bump --- .gitignore | 1 + perl-Font-TTF.spec | 60 ++++++++++++++++++---------------------------- sources | 2 +- 3 files changed, 25 insertions(+), 38 deletions(-) diff --git a/.gitignore b/.gitignore index 5e49148..1e5c1cf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ Font-TTF-0.45.tar.gz /Font-TTF-0.48.tar.gz +/Font-TTF-1.00.tar.gz diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 018986d..117f7ce 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,24 +1,20 @@ -%global cpanname Font-TTF - -Name: perl-%{cpanname} -Version: 0.48 -Release: 5%{?dist} -Summary: Perl library for modifying TTF font files - -Group: Development/Libraries -License: Artistic 2.0 -URL: http://search.cpan.org/dist/%{cpanname}/ -Source0: http://cpan.org/authors/id/M/MH/MHOSKEN/%{cpanname}-%{version}.tar.gz - +Name: perl-Font-TTF +Version: 1.00 +Release: 1%{?dist} +Summary: Perl library for modifying TTF font files +Group: Development/Libraries +License: Artistic 2.0 +URL: http://search.cpan.org/dist/Font-TTF/ +Source0: http://cpan.org/authors/id/M/MH/MHOSKEN/Font-TTF-%{version}.tar.gz BuildArch: noarch +BuildRequires: perl(Compress::Zlib) +BuildRequires: perl(Data::Dumper) BuildRequires: perl(ExtUtils::MakeMaker) -BuildRequires: dos2unix -# Check requirements +BuildRequires: perl(File::Spec) +BuildRequires: perl(IO::File) +BuildRequires: perl(IO::String) BuildRequires: perl(Test::Simple) - -Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) - -%{?perl_default_filter} +Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %description Perl module for TrueType font hacking. Supports reading, processing and writing @@ -30,52 +26,42 @@ types. In short, you can do almost anything with a standard TrueType font with this module. - %prep -%setup -q -n %{cpanname}-%{version} -dos2unix README.TXT COPYING lib/Font/TTF/Changes - +%setup -q -n Font-TTF-%{version} +#dos2unix README.TXT COPYING lib/Font/TTF/Changes %build -%{__perl} Makefile.PL INSTALLDIRS=vendor +perl Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} - %install make pure_install PERL_INSTALL_ROOT=%{buildroot} - find %{buildroot} -type f -name .packlist -exec rm -f {} ';' find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';' find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';' - -%{_fixperms} $RPM_BUILD_ROOT/* +%{_fixperms} %{buildroot}/* %check make test - %files -%defattr(0644,root,root,0755) -%doc README.TXT COPYING lib/Font/TTF/Changes - +%doc README.TXT LICENSE CONTRIBUTORS Changes TODO %dir %{perl_vendorlib}/Font %dir %{perl_vendorlib}/Font/TTF - %{perl_vendorlib}/ttfmod.pl %{perl_vendorlib}/Font/TTF.pm %{perl_vendorlib}/Font/TTF/* - -%exclude %{perl_vendorlib}/Font/TTF/Changes - %{_mandir}/man3/*.3* - # We really don't want to use this perl package in a Win32 env # or poke in the windows registry to resolve fonts # (upstream makefile needs to get smarter) %exclude %{perl_vendorlib}/Font/TTF/Win32.pm - %changelog +* Wed Aug 29 2012 Petr Šabata - 1.00-1 +- 1.00 bump +- Modernize the spec file + * Fri Jul 20 2012 Fedora Release Engineering - 0.48-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild diff --git a/sources b/sources index 3ba4c32..c7efad6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -56d614d04e985558d1518b8f4b29254e Font-TTF-0.48.tar.gz +c12a7b6ee866ffedc44d7d18d41eff82 Font-TTF-1.00.tar.gz From 004b59898294174038515fa4b25d16e37de9beac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Thu, 30 Aug 2012 10:56:14 +0200 Subject: [PATCH 32/74] 1.01 bump --- .gitignore | 1 + perl-Font-TTF.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1e5c1cf..b24e4b3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ Font-TTF-0.45.tar.gz /Font-TTF-0.48.tar.gz /Font-TTF-1.00.tar.gz +/Font-TTF-1.01.tar.gz diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 117f7ce..9a73df4 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,5 +1,5 @@ Name: perl-Font-TTF -Version: 1.00 +Version: 1.01 Release: 1%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -58,6 +58,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Thu Aug 30 2012 Petr Šabata - 1.01-1 +- 1.01 bump (Makefile/META changes only) + * Wed Aug 29 2012 Petr Šabata - 1.00-1 - 1.00 bump - Modernize the spec file diff --git a/sources b/sources index c7efad6..90e0d25 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c12a7b6ee866ffedc44d7d18d41eff82 Font-TTF-1.00.tar.gz +accbf2661145e633bc3dd163106d1123 Font-TTF-1.01.tar.gz From b16585ce334c2d2d78703d69f2eca25d2bb62707 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Fri, 31 Aug 2012 11:59:50 +0200 Subject: [PATCH 33/74] 1.02 bump --- .gitignore | 1 + perl-Font-TTF.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b24e4b3..516f88c 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ Font-TTF-0.45.tar.gz /Font-TTF-0.48.tar.gz /Font-TTF-1.00.tar.gz /Font-TTF-1.01.tar.gz +/Font-TTF-1.02.tar.gz diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 9a73df4..95690c3 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,5 +1,5 @@ Name: perl-Font-TTF -Version: 1.01 +Version: 1.02 Release: 1%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -58,6 +58,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Fri Aug 31 2012 Petr Šabata - 1.02-1 +- 1.02 bump (a lettercase fix) + * Thu Aug 30 2012 Petr Šabata - 1.01-1 - 1.01 bump (Makefile/META changes only) diff --git a/sources b/sources index 90e0d25..f58c01f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -accbf2661145e633bc3dd163106d1123 Font-TTF-1.01.tar.gz +d04e1f65a7edbedd9d150d9cd33c6ffe Font-TTF-1.02.tar.gz From 6f8c3a3cd2b1bffe0ad9453c207bc53ca5cb8516 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Tue, 6 Nov 2012 15:14:54 +0100 Subject: [PATCH 34/74] Add missing dependencies --- perl-Font-TTF.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 95690c3..8966c72 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.02 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -9,11 +9,13 @@ Source0: http://cpan.org/authors/id/M/MH/MHOSKEN/Font-TTF-%{version}.tar.g BuildArch: noarch BuildRequires: perl(Compress::Zlib) BuildRequires: perl(Data::Dumper) +BuildRequires: perl(Exporter) BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(File::Spec) BuildRequires: perl(IO::File) BuildRequires: perl(IO::String) BuildRequires: perl(Test::Simple) +BuildRequires: perl(XML::Parser::Expat) Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %description @@ -58,6 +60,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Tue Nov 06 2012 Petr Šabata - 1.02-2 +- Add missing dependencies + * Fri Aug 31 2012 Petr Šabata - 1.02-1 - 1.02 bump (a lettercase fix) From e2b7fed5cf65541277d7cc7f3d02713816909241 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 06:28:08 -0600 Subject: [PATCH 35/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 8966c72..fda803a 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.02 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -60,6 +60,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 1.02-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Tue Nov 06 2012 Petr Šabata - 1.02-2 - Add missing dependencies From b2f6380b1a685774424319a412382b78013b1e63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Wed, 24 Jul 2013 11:48:46 +0200 Subject: [PATCH 36/74] Perl 5.18 rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index fda803a..1c9da90 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.02 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -60,6 +60,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Wed Jul 24 2013 Petr Pisar - 1.02-4 +- Perl 5.18 rebuild + * Thu Feb 14 2013 Fedora Release Engineering - 1.02-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 82cc14214e23f91e40fddc56c6ec55b8db6d4a02 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 3 Aug 2013 16:05:46 -0500 Subject: [PATCH 37/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 1c9da90..bbbd5fc 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.02 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -60,6 +60,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 1.02-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Wed Jul 24 2013 Petr Pisar - 1.02-4 - Perl 5.18 rebuild From 4efddf58f5641f3bf777fffc8602a0ce2195e2d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Tue, 21 Jan 2014 18:25:07 +0100 Subject: [PATCH 38/74] 1.04 bump --- .gitignore | 1 + perl-Font-TTF.spec | 22 +++++++++++++--------- sources | 2 +- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 516f88c..de55795 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ Font-TTF-0.45.tar.gz /Font-TTF-1.00.tar.gz /Font-TTF-1.01.tar.gz /Font-TTF-1.02.tar.gz +/Font-TTF-1.04.tar.gz diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index bbbd5fc..4bff756 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,22 +1,25 @@ Name: perl-Font-TTF -Version: 1.02 -Release: 5%{?dist} +Version: 1.04 +Release: 1%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 URL: http://search.cpan.org/dist/Font-TTF/ Source0: http://cpan.org/authors/id/M/MH/MHOSKEN/Font-TTF-%{version}.tar.gz BuildArch: noarch +BuildRequires: perl BuildRequires: perl(Compress::Zlib) -BuildRequires: perl(Data::Dumper) BuildRequires: perl(Exporter) BuildRequires: perl(ExtUtils::MakeMaker) -BuildRequires: perl(File::Spec) +BuildRequires: perl(File::Compare) +BuildRequires: perl(Getopt::Std) BuildRequires: perl(IO::File) BuildRequires: perl(IO::String) +BuildRequires: perl(strict) +BuildRequires: perl(Symbol) BuildRequires: perl(Test::Simple) -BuildRequires: perl(XML::Parser::Expat) -Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) +BuildRequires: perl(vars) +Requires: perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo $version)) %description Perl module for TrueType font hacking. Supports reading, processing and writing @@ -30,17 +33,15 @@ module. %prep %setup -q -n Font-TTF-%{version} -#dos2unix README.TXT COPYING lib/Font/TTF/Changes %build perl Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install -make pure_install PERL_INSTALL_ROOT=%{buildroot} +make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';' -find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';' %{_fixperms} %{buildroot}/* %check @@ -60,6 +61,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Tue Jan 21 2014 Petr Šabata - 1.04-1 +- 1.04 bump + * Sat Aug 03 2013 Fedora Release Engineering - 1.02-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild diff --git a/sources b/sources index f58c01f..0b15284 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d04e1f65a7edbedd9d150d9cd33c6ffe Font-TTF-1.02.tar.gz +ae3349a2259429c9327e183d8564d34a Font-TTF-1.04.tar.gz From 91d0b567a8081286c66c65d2afcd5b650dadd85b Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 6 Jun 2014 23:31:49 -0500 Subject: [PATCH 39/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 4bff756..8f72d0a 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.04 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -61,6 +61,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 1.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Tue Jan 21 2014 Petr Šabata - 1.04-1 - 1.04 bump From d7ec3e134ed7e82c21f68f82c51aca1a29f30173 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Wed, 27 Aug 2014 18:19:09 +0200 Subject: [PATCH 40/74] Perl 5.20 rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 8f72d0a..57aea82 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.04 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -61,6 +61,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Wed Aug 27 2014 Jitka Plesnikova - 1.04-3 +- Perl 5.20 rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 1.04-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 34b66bf4cf796b9a2e7771d1dad61f020df901d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Mon, 2 Feb 2015 15:24:55 +0100 Subject: [PATCH 41/74] 1.05 enhancement and bugfix bump --- .gitignore | 1 + perl-Font-TTF.spec | 33 +++++++++++++++++++++++---------- sources | 2 +- 3 files changed, 25 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index de55795..4ea60f7 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ Font-TTF-0.45.tar.gz /Font-TTF-1.01.tar.gz /Font-TTF-1.02.tar.gz /Font-TTF-1.04.tar.gz +/Font-TTF-1.05.tar.gz diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 57aea82..1901c4d 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,23 +1,33 @@ Name: perl-Font-TTF -Version: 1.04 -Release: 3%{?dist} +Version: 1.05 +Release: 1%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 URL: http://search.cpan.org/dist/Font-TTF/ Source0: http://cpan.org/authors/id/M/MH/MHOSKEN/Font-TTF-%{version}.tar.gz BuildArch: noarch +# Build BuildRequires: perl +BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76 +BuildRequires: perl(Getopt::Std) +BuildRequires: perl(strict) +# Runtime +BuildRequires: perl(bytes) BuildRequires: perl(Compress::Zlib) +BuildRequires: perl(Data::Dumper) BuildRequires: perl(Exporter) -BuildRequires: perl(ExtUtils::MakeMaker) -BuildRequires: perl(File::Compare) -BuildRequires: perl(Getopt::Std) +BuildRequires: perl(File::Spec) BuildRequires: perl(IO::File) BuildRequires: perl(IO::String) -BuildRequires: perl(strict) BuildRequires: perl(Symbol) +BuildRequires: perl(utf8) +BuildRequires: perl(vars) +# Unused BuildRequires: perl(XML::Parser::Expat) +# Tests only +BuildRequires: perl(File::Compare) BuildRequires: perl(Test::Simple) + BuildRequires: perl(vars) Requires: perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo $version)) @@ -35,20 +45,20 @@ module. %setup -q -n Font-TTF-%{version} %build -perl Makefile.PL INSTALLDIRS=vendor +perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} -find %{buildroot} -type f -name .packlist -exec rm -f {} ';' -find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';' +find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} + %{_fixperms} %{buildroot}/* %check make test %files -%doc README.TXT LICENSE CONTRIBUTORS Changes TODO +%license LICENSE +%doc README.TXT CONTRIBUTORS Changes TODO %dir %{perl_vendorlib}/Font %dir %{perl_vendorlib}/Font/TTF %{perl_vendorlib}/ttfmod.pl @@ -61,6 +71,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Mon Feb 02 2015 Petr Šabata - 1.05-1 +- 1.05 enhancement and bugfix bump + * Wed Aug 27 2014 Jitka Plesnikova - 1.04-3 - Perl 5.20 rebuild diff --git a/sources b/sources index 0b15284..f4a2201 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ae3349a2259429c9327e183d8564d34a Font-TTF-1.04.tar.gz +a9d0acf4cb9ebaee875d71732b83dfe5 Font-TTF-1.05.tar.gz From c9188d529e0e4e51ac128c4a05c2ccc2ec2f483d Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Thu, 4 Jun 2015 10:00:13 +0200 Subject: [PATCH 42/74] Perl 5.22 rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 1901c4d..f6b50e6 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.05 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -71,6 +71,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Thu Jun 04 2015 Jitka Plesnikova - 1.05-2 +- Perl 5.22 rebuild + * Mon Feb 02 2015 Petr Šabata - 1.05-1 - 1.05 enhancement and bugfix bump From 0e23061ce091339db03c9d700180d25c585fab6f Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 18 Jun 2015 03:16:34 +0000 Subject: [PATCH 43/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index f6b50e6..5b41e69 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.05 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -71,6 +71,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Thu Jun 18 2015 Fedora Release Engineering - 1.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Thu Jun 04 2015 Jitka Plesnikova - 1.05-2 - Perl 5.22 rebuild From 387696c488c6b6f1f3b2e685c08c020d3bdfa4e9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 4 Feb 2016 13:44:58 +0000 Subject: [PATCH 44/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 5b41e69..af2e122 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -71,6 +71,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 1.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Thu Jun 18 2015 Fedora Release Engineering - 1.05-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 720865837e2f8315d2db442f20d05cba32b9b933 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Sun, 15 May 2016 10:45:44 +0200 Subject: [PATCH 45/74] Perl 5.24 rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index af2e122..8d49a5d 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.05 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -71,6 +71,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Sun May 15 2016 Jitka Plesnikova - 1.05-5 +- Perl 5.24 rebuild + * Thu Feb 04 2016 Fedora Release Engineering - 1.05-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From c35c8d37da5381a160c509718a6e1fc0759246e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Fri, 24 Jun 2016 10:31:52 +0200 Subject: [PATCH 46/74] Mandatory Perl build-requires added --- perl-Font-TTF.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 8d49a5d..d3ff35e 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -9,6 +9,7 @@ Source0: http://cpan.org/authors/id/M/MH/MHOSKEN/Font-TTF-%{version}.tar.g BuildArch: noarch # Build BuildRequires: perl +BuildRequires: perl-generators BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76 BuildRequires: perl(Getopt::Std) BuildRequires: perl(strict) From 4c88e9128385b5a7dbb8cc42bc16ed60e91d1fbc Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Mon, 29 Aug 2016 13:50:34 +0200 Subject: [PATCH 47/74] 1.06 bump --- .gitignore | 1 + perl-Font-TTF.spec | 14 ++++++++++---- sources | 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 4ea60f7..5a489cb 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ Font-TTF-0.45.tar.gz /Font-TTF-1.02.tar.gz /Font-TTF-1.04.tar.gz /Font-TTF-1.05.tar.gz +/Font-TTF-1.06.tar.gz diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index d3ff35e..6db8f04 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,13 +1,15 @@ Name: perl-Font-TTF -Version: 1.05 -Release: 5%{?dist} +Version: 1.06 +Release: 1%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 URL: http://search.cpan.org/dist/Font-TTF/ -Source0: http://cpan.org/authors/id/M/MH/MHOSKEN/Font-TTF-%{version}.tar.gz +Source0: http://cpan.org/authors/id/B/BH/BHALLISSY/Font-TTF-%{version}.tar.gz BuildArch: noarch # Build +BuildRequires: findutils +BuildRequires: make BuildRequires: perl BuildRequires: perl-generators BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76 @@ -27,6 +29,7 @@ BuildRequires: perl(vars) # Unused BuildRequires: perl(XML::Parser::Expat) # Tests only BuildRequires: perl(File::Compare) +BuildRequires: perl(Test::More) BuildRequires: perl(Test::Simple) BuildRequires: perl(vars) @@ -51,7 +54,7 @@ make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} -find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} + +find %{buildroot} -type f -name '*.bs' -a -size 0 -delete %{_fixperms} %{buildroot}/* %check @@ -72,6 +75,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Mon Aug 29 2016 Jitka Plesnikova - 1.06-1 +- 1.06 bump + * Sun May 15 2016 Jitka Plesnikova - 1.05-5 - Perl 5.24 rebuild diff --git a/sources b/sources index f4a2201..033ba8c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a9d0acf4cb9ebaee875d71732b83dfe5 Font-TTF-1.05.tar.gz +241b59310ad4450e6e050d5e790f1b21 Font-TTF-1.06.tar.gz From bcc05162948f01b9fa08b68bb3b37b42b0978462 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 03:10:45 +0000 Subject: [PATCH 48/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 6db8f04..37f2f3d 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -75,6 +75,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 1.06-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Mon Aug 29 2016 Jitka Plesnikova - 1.06-1 - 1.06 bump From 0a827c398e61446cebbd3489aa56051fee0ccbdf Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Sun, 4 Jun 2017 19:15:26 +0200 Subject: [PATCH 49/74] Perl 5.26 rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 37f2f3d..94463be 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -75,6 +75,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Sun Jun 04 2017 Jitka Plesnikova - 1.06-3 +- Perl 5.26 rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 1.06-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 58c2b00c2f40eea84ac67f6c45f65bcee109fcc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Wed, 12 Jul 2017 15:12:00 +0200 Subject: [PATCH 50/74] perl dependency renamed to perl-interpreter --- perl-Font-TTF.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 94463be..18bb93b 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -10,7 +10,7 @@ BuildArch: noarch # Build BuildRequires: findutils BuildRequires: make -BuildRequires: perl +BuildRequires: perl-interpreter BuildRequires: perl-generators BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76 BuildRequires: perl(Getopt::Std) From fe396411451806c6f3e518ee39eac5a82a36abcb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 04:02:12 +0000 Subject: [PATCH 51/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 18bb93b..65920f3 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -75,6 +75,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 1.06-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sun Jun 04 2017 Jitka Plesnikova - 1.06-3 - Perl 5.26 rebuild From d0fa9f4593251ec9f009db282f597b7fc6baf84c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 8 Feb 2018 21:21:04 +0000 Subject: [PATCH 52/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 65920f3..2d5ca29 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -75,6 +75,9 @@ make test %exclude %{perl_vendorlib}/Font/TTF/Win32.pm %changelog +* Thu Feb 08 2018 Fedora Release Engineering - 1.06-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 1.06-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 1dd119fb5c00d4d31f6a1bdcf84636f89a924f6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Wed, 2 May 2018 14:36:35 +0200 Subject: [PATCH 53/74] Move Font::TTF::XMLparse into perl-Font-TTF-XMLparse subpackage Font::TTF::XMLparse in perl-Font-TTF creates a build cycle through perl-XML-Parse and perl-PDF-API2. --- perl-Font-TTF.spec | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 2d5ca29..6521bf2 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -45,6 +45,21 @@ types. In short, you can do almost anything with a standard TrueType font with this module. +%package XMLparse +Summary: XML Font parser +Requires: perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo $version)) +Conflicts: perl-Font-TTF < 1.06-6 + +%description XMLparse +This Perl module contains the support routines for parsing XML and generating +the TrueType font structures as a result. + +The module has been separated from the rest of the perl-Font-TTF package in +order to reduce the dependency that this would bring, of the whole package on +XML::Parser. This way, people without the XML::Parser can still use the rest +of the package. + + %prep %setup -q -n Font-TTF-%{version} @@ -68,13 +83,27 @@ make test %{perl_vendorlib}/ttfmod.pl %{perl_vendorlib}/Font/TTF.pm %{perl_vendorlib}/Font/TTF/* +%exclude %{perl_vendorlib}/Font/TTF/XMLparse.pm %{_mandir}/man3/*.3* +%exclude %{_mandir}/man3/Font::TTF::XMLparse.3pm.* # We really don't want to use this perl package in a Win32 env # or poke in the windows registry to resolve fonts # (upstream makefile needs to get smarter) %exclude %{perl_vendorlib}/Font/TTF/Win32.pm +%files XMLparse +%license LICENSE +%doc CONTRIBUTORS Changes +%dir %{perl_vendorlib}/Font +%dir %{perl_vendorlib}/Font/TTF +%{perl_vendorlib}/Font/TTF/XMLparse.pm +%{_mandir}/man3/Font::TTF::XMLparse.3pm.* + + %changelog +* Wed May 02 2018 Petr Pisar - 1.06-6 +- Move Font::TTF::XMLparse into perl-Font-TTF-XMLparse subpackage + * Thu Feb 08 2018 Fedora Release Engineering - 1.06-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From e2dd2a957f9783b76501c449846e815e2948ef04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Wed, 2 May 2018 14:44:23 +0200 Subject: [PATCH 54/74] Modernize spec file And remove stray Font::TTF::Win32 manual. --- perl-Font-TTF.spec | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 6521bf2..45d168a 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -8,10 +8,9 @@ URL: http://search.cpan.org/dist/Font-TTF/ Source0: http://cpan.org/authors/id/B/BH/BHALLISSY/Font-TTF-%{version}.tar.gz BuildArch: noarch # Build -BuildRequires: findutils BuildRequires: make -BuildRequires: perl-interpreter BuildRequires: perl-generators +BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76 BuildRequires: perl(Getopt::Std) BuildRequires: perl(strict) @@ -26,13 +25,11 @@ BuildRequires: perl(IO::String) BuildRequires: perl(Symbol) BuildRequires: perl(utf8) BuildRequires: perl(vars) -# Unused BuildRequires: perl(XML::Parser::Expat) +# XML::Parser::Expat not used at tests # Tests only BuildRequires: perl(File::Compare) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Simple) - -BuildRequires: perl(vars) Requires: perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo $version)) %description @@ -69,7 +66,6 @@ make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} -find %{buildroot} -type f -name '*.bs' -a -size 0 -delete %{_fixperms} %{buildroot}/* %check @@ -90,6 +86,7 @@ make test # or poke in the windows registry to resolve fonts # (upstream makefile needs to get smarter) %exclude %{perl_vendorlib}/Font/TTF/Win32.pm +%exclude %{_mandir}/man3/Font::TTF::Win32.3pm.* %files XMLparse %license LICENSE From ad7ce23a8458e0918b31ce02b6301de5b8d8a67c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 4 Jun 2018 14:22:21 +0200 Subject: [PATCH 55/74] cpan.org addresses moved to MetaCPAN --- perl-Font-TTF.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 45d168a..8d4e54e 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -4,7 +4,7 @@ Release: 6%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 -URL: http://search.cpan.org/dist/Font-TTF/ +URL: https://metacpan.org/release/Font-TTF Source0: http://cpan.org/authors/id/B/BH/BHALLISSY/Font-TTF-%{version}.tar.gz BuildArch: noarch # Build From 0bfdabf3a5acea07cc1797898656cd0b1c71ec71 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Thu, 28 Jun 2018 05:47:33 +0200 Subject: [PATCH 56/74] Perl 5.28 rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 8d4e54e..218a0c1 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -98,6 +98,9 @@ make test %changelog +* Thu Jun 28 2018 Jitka Plesnikova - 1.06-7 +- Perl 5.28 rebuild + * Wed May 02 2018 Petr Pisar - 1.06-6 - Move Font::TTF::XMLparse into perl-Font-TTF-XMLparse subpackage From 69258d4e3d05acede3f8f24b61e5bc474378f9c2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 17:29:54 +0000 Subject: [PATCH 57/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 218a0c1..a237e9b 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries License: Artistic 2.0 @@ -98,6 +98,9 @@ make test %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 1.06-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Thu Jun 28 2018 Jitka Plesnikova - 1.06-7 - Perl 5.28 rebuild From d5964b3cea59ebe958aa8a62a617bb56f3a6f87f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Tue, 17 Jul 2018 12:26:18 +0200 Subject: [PATCH 58/74] Annotate the license --- perl-Font-TTF.spec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index a237e9b..72e4eeb 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -3,6 +3,9 @@ Version: 1.06 Release: 8%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries +# other files: Artistic 2.0 +## not in binary packages +# t/testfont.*: OFL License: Artistic 2.0 URL: https://metacpan.org/release/Font-TTF Source0: http://cpan.org/authors/id/B/BH/BHALLISSY/Font-TTF-%{version}.tar.gz From e130ff9692ecddfce8483c9347bcf5e00fc1f713 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Tue, 17 Jul 2018 12:27:28 +0200 Subject: [PATCH 59/74] Remove obsolete license grant Contemporary Font-TTF (1.06) is already licensed under the terms of Artistic 2.0. --- perl-Font-TTF-COPYING.Fedora | 195 ----------------------------------- 1 file changed, 195 deletions(-) delete mode 100644 perl-Font-TTF-COPYING.Fedora diff --git a/perl-Font-TTF-COPYING.Fedora b/perl-Font-TTF-COPYING.Fedora deleted file mode 100644 index 7f430b0..0000000 --- a/perl-Font-TTF-COPYING.Fedora +++ /dev/null @@ -1,195 +0,0 @@ -Date: Thu, 4 Sep 2008 09:01:32 +0700 -From: Martin Hosken -To: "Tom \"spot\" Callaway" -Cc: nicolas.spalinger@sil.org, Nicolas Mailhot -Subject: Re: License of perl-Font-TTF -Message-ID: <20080904090132.6248a852@sil-mh4> -In-Reply-To: <1220470951.3764.63.camel@localhost.localdomain> - -Dear Tom, - -> The best case scenario is a new release of Font::TTF that is under a -> Free license (we suggest the same license as perl (GPL+ or Artistic) or -> Artistic 2.0). However, given the time constraints, we would also be -> able to use written (email is fine) permission from the copyright holder -> for Fedora to distribute Font::TTF under a Free license. - -I'm sorry to be seeming to drag my heels on this, but I don't really want to -produce another release just to change the license, at this time. So: - -I hereby declare that Fedora may distribute the Font::TTF and -Font::TTF::Scripts modules under the Artistic 2.0 license. - -I have changed the COPYING file in both projects and the next version will -appear with it. If you still really need me to do another release (sigh) then -please get back to me. - -Thank you for your patience. - -Yours, -Martin Hosken - -–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– - -Artistic License 2.0 - -Copyright (c) 2000-2006, The Perl Foundation. - -Everyone is permitted to copy and distribute verbatim copies of this license -document, but changing it is not allowed. -Preamble - -This license establishes the terms under which a given free software Package -may be copied, modified, distributed, and/or redistributed. The intent is that -the Copyright Holder maintains some artistic control over the development of -that Package while still keeping the Package available as open source and free -software. - -You are always permitted to make arrangements wholly outside of this license -directly with the Copyright Holder of a given Package. If the terms of this -license do not permit the full use that you propose to make of the Package, you -should contact the Copyright Holder and seek a different licensing arrangement. -Definitions - -"Copyright Holder" means the individual(s) or organization(s) named in the -copyright notice for the entire Package. - -"Contributor" means any party that has contributed code or other material to -the Package, in accordance with the Copyright Holder's procedures. - -"You" and "your" means any person who would like to copy, distribute, or modify -the Package. - -"Package" means the collection of files distributed by the Copyright Holder, -and derivatives of that collection and/or of those files. A given Package may -consist of either the Standard Version, or a Modified Version. - -"Distribute" means providing a copy of the Package or making it accessible to -anyone else, or in the case of a company or organization, to others outside of -your company or organization. - -"Distributor Fee" means any fee that you charge for Distributing this Package -or providing support for this Package to another party. It does not mean -licensing fees. - -"Standard Version" refers to the Package if it has not been modified, or has -been modified only in ways explicitly requested by the Copyright Holder. - -"Modified Version" means the Package, if it has been changed, and such changes -were not explicitly requested by the Copyright Holder. - -"Original License" means this Artistic License as Distributed with the Standard -Version of the Package, in its current version or as it may be modified by The -Perl Foundation in the future. - -"Source" form means the source code, documentation source, and configuration -files for the Package. - -"Compiled" form means the compiled bytecode, object code, binary, or any other -form resulting from mechanical transformation or translation of the Source form. -Permission for Use and Modification Without Distribution - -(1) You are permitted to use the Standard Version and create and use Modified -Versions for any purpose without restriction, provided that you do not -Distribute the Modified Version. -Permissions for Redistribution of the Standard Version - -(2) You may Distribute verbatim copies of the Source form of the Standard -Version of this Package in any medium without restriction, either gratis or for -a Distributor Fee, provided that you duplicate all of the original copyright -notices and associated disclaimers. At your discretion, such verbatim copies -may or may not include a Compiled form of the Package. - -(3) You may apply any bug fixes, portability changes, and other modifications -made available from the Copyright Holder. The resulting Package will still be -considered the Standard Version, and as such will be subject to the Original -License. -Distribution of Modified Versions of the Package as Source - -(4) You may Distribute your Modified Version as Source (either gratis or for a -Distributor Fee, and with or without a Compiled form of the Modified Version) -provided that you clearly document how it differs from the Standard Version, -including, but not limited to, documenting any non-standard features, -executables, or modules, and provided that you do at least ONE of the following: - -(a) make the Modified Version available to the Copyright Holder of the Standard -Version, under the Original License, so that the Copyright Holder may include -your modifications in the Standard Version. -(b) ensure that installation of your Modified Version does not prevent the user -installing or running the Standard Version. In addition, the Modified Version -must bear a name that is different from the name of the Standard Version. -(c) allow anyone who receives a copy of the Modified Version to make the Source -form of the Modified Version available to others under -(i) the Original License or -(ii) a license that permits the licensee to freely copy, modify and -redistribute the Modified Version using the same licensing terms that apply to -the copy that the licensee received, and requires that the Source form of the -Modified Version, and of any works derived from it, be made freely available in -that license fees are prohibited but Distributor Fees are allowed. -Distribution of Compiled Forms of the Standard Version or Modified Versions -without the Source - -(5) You may Distribute Compiled forms of the Standard Version without the -Source, provided that you include complete instructions on how to get the -Source of the Standard Version. Such instructions must be valid at the time of -your distribution. If these instructions, at any time while you are carrying -out such distribution, become invalid, you must provide new instructions on -demand or cease further distribution. If you provide valid instructions or -cease distribution within thirty days after you become aware that the -instructions are invalid, then you do not forfeit any of your rights under this -license. - -(6) You may Distribute a Modified Version in Compiled form without the Source, -provided that you comply with Section 4 with respect to the Source of the -Modified Version. -Aggregating or Linking the Package - -(7) You may aggregate the Package (either the Standard Version or Modified -Version) with other packages and Distribute the resulting aggregation provided -that you do not charge a licensing fee for the Package. Distributor Fees are -permitted, and licensing fees for other components in the aggregation are -permitted. The terms of this license apply to the use and Distribution of the -Standard or Modified Versions as included in the aggregation. - -(8) You are permitted to link Modified and Standard Versions with other works, -to embed the Package in a larger work of your own, or to build stand-alone -binary or bytecode versions of applications that include the Package, and -Distribute the result without restriction, provided the result does not expose -a direct interface to the Package. -Items That are Not Considered Part of a Modified Version - -(9) Works (including, but not limited to, modules and scripts) that merely -extend or make use of the Package, do not, by themselves, cause the Package to -be a Modified Version. In addition, such works are not considered parts of the -Package itself, and are not subject to the terms of this license. -General Provisions - -(10) Any use, modification, and distribution of the Standard or Modified -Versions is governed by this Artistic License. By using, modifying or -distributing the Package, you accept this license. Do not use, modify, or -distribute the Package, if you do not accept this license. - -(11) If your Modified Version has been derived from a Modified Version made by -someone other than you, you are nevertheless required to ensure that your -Modified Version complies with the requirements of this license. - -(12) This license does not grant you the right to use any trademark, service -mark, tradename, or logo of the Copyright Holder. - -(13) This license includes the non-exclusive, worldwide, free-of-charge patent -license to make, have made, use, offer to sell, sell, import and otherwise -transfer the Package with respect to any patent claims licensable by the -Copyright Holder that are necessarily infringed by the Package. If you -institute patent litigation (including a cross-claim or counterclaim) against -any party alleging that the Package constitutes direct or contributory patent -infringement, then this Artistic License to you shall terminate on the date -that such litigation is filed. - -(14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER -AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE -IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR -NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. -UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY -OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. From df9803e900b0971790567a898006bf9661d04fcc Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:04 +0100 Subject: [PATCH 60/74] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- perl-Font-TTF.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 72e4eeb..7dc82f3 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -2,7 +2,6 @@ Name: perl-Font-TTF Version: 1.06 Release: 8%{?dist} Summary: Perl library for modifying TTF font files -Group: Development/Libraries # other files: Artistic 2.0 ## not in binary packages # t/testfont.*: OFL From c1722b969f32521d796806cc64be1219c7f0c930 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 20:51:16 +0000 Subject: [PATCH 61/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 7dc82f3..a1f01b3 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Perl library for modifying TTF font files # other files: Artistic 2.0 ## not in binary packages @@ -100,6 +100,9 @@ make test %changelog +* Fri Feb 01 2019 Fedora Release Engineering - 1.06-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Fri Jul 13 2018 Fedora Release Engineering - 1.06-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From b147b925f4893d48a929cbd96e4e23f588bc65ca Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Fri, 31 May 2019 06:50:19 +0200 Subject: [PATCH 62/74] Perl 5.30 rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index a1f01b3..312af46 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Perl library for modifying TTF font files # other files: Artistic 2.0 ## not in binary packages @@ -100,6 +100,9 @@ make test %changelog +* Fri May 31 2019 Jitka Plesnikova - 1.06-10 +- Perl 5.30 rebuild + * Fri Feb 01 2019 Fedora Release Engineering - 1.06-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 8a4bcb53c6140df3f008527889b4395d0dfd2197 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 03:09:01 +0000 Subject: [PATCH 63/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 312af46..66b52bd 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Perl library for modifying TTF font files # other files: Artistic 2.0 ## not in binary packages @@ -100,6 +100,9 @@ make test %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 1.06-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Fri May 31 2019 Jitka Plesnikova - 1.06-10 - Perl 5.30 rebuild From 88a4cb16b02e131da05ba811b8947d6f42500b0c Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Wed, 15 Jan 2020 16:31:02 -0600 Subject: [PATCH 64/74] "Adding package.cfg file" --- package.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 package.cfg diff --git a/package.cfg b/package.cfg new file mode 100644 index 0000000..66ea79d --- /dev/null +++ b/package.cfg @@ -0,0 +1,2 @@ +[koji] +targets = epel8 epel8-playground \ No newline at end of file From 28b5dd16a98b98dab5632fec66046b2fd95afe49 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 30 Jan 2020 00:26:05 +0000 Subject: [PATCH 65/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 66b52bd..fa9b8e5 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Perl library for modifying TTF font files # other files: Artistic 2.0 ## not in binary packages @@ -100,6 +100,9 @@ make test %changelog +* Thu Jan 30 2020 Fedora Release Engineering - 1.06-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Fri Jul 26 2019 Fedora Release Engineering - 1.06-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 3df8332f177aed8e83f98424e8d066ba1020315c Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Tue, 23 Jun 2020 12:14:24 +0200 Subject: [PATCH 66/74] Perl 5.32 rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index fa9b8e5..8634b11 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Perl library for modifying TTF font files # other files: Artistic 2.0 ## not in binary packages @@ -100,6 +100,9 @@ make test %changelog +* Tue Jun 23 2020 Jitka Plesnikova - 1.06-13 +- Perl 5.32 rebuild + * Thu Jan 30 2020 Fedora Release Engineering - 1.06-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 90ae88a2d8a87a7d13fa4cf29b43fb67063d7919 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 15:48:19 +0000 Subject: [PATCH 67/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 8634b11..2a37c16 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Perl library for modifying TTF font files # other files: Artistic 2.0 ## not in binary packages @@ -100,6 +100,9 @@ make test %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 1.06-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue Jun 23 2020 Jitka Plesnikova - 1.06-13 - Perl 5.32 rebuild From 2feb6d276c25038bcf521894103f3b87e0c49a2f Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Thu, 24 Sep 2020 18:24:52 +0000 Subject: [PATCH 68/74] remove package.cfg per new epel-playground policy --- package.cfg | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 package.cfg diff --git a/package.cfg b/package.cfg deleted file mode 100644 index 66ea79d..0000000 --- a/package.cfg +++ /dev/null @@ -1,2 +0,0 @@ -[koji] -targets = epel8 epel8-playground \ No newline at end of file From 2e09360c7f90fb5c843fe8300b96312811ae7e29 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 01:30:44 +0000 Subject: [PATCH 69/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 2a37c16..82fee7a 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Perl library for modifying TTF font files # other files: Artistic 2.0 ## not in binary packages @@ -100,6 +100,9 @@ make test %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 1.06-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Jul 28 2020 Fedora Release Engineering - 1.06-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From e5a199578118ab603316ba30b782e29a89c81061 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Fri, 21 May 2021 22:42:02 +0200 Subject: [PATCH 70/74] Perl 5.34 rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 82fee7a..a809fcb 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Perl library for modifying TTF font files # other files: Artistic 2.0 ## not in binary packages @@ -100,6 +100,9 @@ make test %changelog +* Fri May 21 2021 Jitka Plesnikova - 1.06-16 +- Perl 5.34 rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 1.06-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 187f846d961c97e7965bdc739b5f2de01ab23bcc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 20:30:24 +0000 Subject: [PATCH 71/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index a809fcb..2dbed9e 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Perl library for modifying TTF font files # other files: Artistic 2.0 ## not in binary packages @@ -100,6 +100,9 @@ make test %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 1.06-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Fri May 21 2021 Jitka Plesnikova - 1.06-16 - Perl 5.34 rebuild From 83df0e7074eae2cb91b111ffcd8ac5675937d270 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jan 2022 01:51:00 +0000 Subject: [PATCH 72/74] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index 2dbed9e..e5ec11d 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Perl library for modifying TTF font files # other files: Artistic 2.0 ## not in binary packages @@ -100,6 +100,9 @@ make test %changelog +* Fri Jan 21 2022 Fedora Release Engineering - 1.06-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Jul 22 2021 Fedora Release Engineering - 1.06-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 880f60d81840f2bca0c548224d5cd97fa086dac8 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Mon, 30 May 2022 19:43:46 +0200 Subject: [PATCH 73/74] Perl 5.36 rebuild --- perl-Font-TTF.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec index e5ec11d..72a88d4 100644 --- a/perl-Font-TTF.spec +++ b/perl-Font-TTF.spec @@ -1,6 +1,6 @@ Name: perl-Font-TTF Version: 1.06 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Perl library for modifying TTF font files # other files: Artistic 2.0 ## not in binary packages @@ -100,6 +100,9 @@ make test %changelog +* Mon May 30 2022 Jitka Plesnikova - 1.06-19 +- Perl 5.36 rebuild + * Fri Jan 21 2022 Fedora Release Engineering - 1.06-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From ae6787e26f7592e09ade390ba25088e191aa97b0 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 23:40:10 +0300 Subject: [PATCH 74/74] 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 033ba8c..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -241b59310ad4450e6e050d5e790f1b21 Font-TTF-1.06.tar.gz