Bernard Johnson 48e134a
Name:           perl-PDF-API2
e148f12
Version:        2.047
bc2bdb5
Release:        1%{?dist}
Bernard Johnson 48e134a
Summary:        Perl module for creation and modification of PDF files
3a7bb94
# lib/PDF/API2.pm:  LGPL-2.1-or-later
3a7bb94
# lib/PDF/API2/Resource/XObject/Image/PNM.pm: GPL-1.0-or-later OR Artistic-1.0-Perl
3a7bb94
#                                             (taken from Image::PBMLib)
3a7bb94
# lib/PDF/API2/Basic/PDF/Null.pm:   Artistic-1.0-Perl OR MIT (MIT grant in
8eba7a0
#                                   COPYING-PDF_API2_Basic_PDF-Martin_Hosken)
3a7bb94
# lib/PDF/API2/Matrix.pm:   GPL-1.0-or-later OR Artistic-1.0-Perl
3a7bb94
# LICENSE:          LGPL-2.1 text
3a7bb94
# README:           LGPL-2.1-or-later
3a7bb94
License:        LGPL-2.1-or-later AND (GPL-1.0-or-later OR Artistic-1.0-Perl) AND (MIT OR Artistic-1.0-Perl)
b3f4882
URL:            https://metacpan.org/release/PDF-API2
b3f4882
Source0:        https://cpan.metacpan.org/authors/id/S/SS/SSIMMS/PDF-API2-%{version}.tar.gz 
8eba7a0
# MIT license grant from Marin Hosken, CPAN RT#133691
8eba7a0
Source1:        COPYING-PDF_API2_Basic_PDF-Martin_Hosken
Bernard Johnson f06ca7f
Patch1:         font-location.patch
05a1a50
# Fix inserting LZW-compressed 8-bit TIFF images, bug #1378895, CPAN RT#118047
05a1a50
Patch2:         PDF-API2-2.033-Use-libtiff-to-decode-image-data-in-TIFF-fixing-RT-1.patch
Bernard Johnson 48e134a
Bernard Johnson 48e134a
BuildArch:      noarch
0b0b18d
BuildRequires:  coreutils
68165e8
BuildRequires:  glibc-common
0b0b18d
BuildRequires:  make
4715b33
BuildRequires:  perl-interpreter
aad8850
BuildRequires:  perl-generators
23d910e
BuildRequires:  perl(Config)
30e67b3
BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.76
f7c300f
BuildRequires:  perl(strict)
f7c300f
BuildRequires:  perl(warnings)
f7c300f
# Run-time:
f7c300f
BuildRequires:  perl(base)
f7c300f
BuildRequires:  perl(Carp)
f7c300f
BuildRequires:  perl(Compress::Zlib) >= 1.0
f7c300f
BuildRequires:  perl(constant)
f7c300f
BuildRequires:  perl(Encode)
bda1784
BuildRequires:  perl(English)
f7c300f
BuildRequires:  perl(Exporter)
f7c300f
BuildRequires:  perl(File::Basename)
a75d11e
BuildRequires:  perl(File::Temp)
f7c300f
BuildRequires:  perl(FileHandle)
f7c300f
BuildRequires:  perl(Font::TTF::Font)
05a1a50
BuildRequires:  perl(Graphics::TIFF)
f7c300f
BuildRequires:  perl(IO::File)
f7c300f
BuildRequires:  perl(List::Util)
f7c300f
BuildRequires:  perl(Math::Trig)
f7c300f
BuildRequires:  perl(POSIX)
0b0b18d
BuildRequires:  perl(Scalar::Util)
85e25f6
# Storable is required by Unicode::UCD
85e25f6
BuildRequires:  perl(Storable)
f7c300f
BuildRequires:  perl(Unicode::UCD)
f7c300f
BuildRequires:  perl(vars)
f7c300f
# Tests:
05a1a50
# ImageMagick for convert tool
05a1a50
BuildRequires:  ImageMagick
05a1a50
# libtiff-tools for tiffcp tool
05a1a50
BuildRequires:  libtiff-tools
f7c300f
BuildRequires:  perl(File::Find)
8adb26d
BuildRequires:  perl(GD)
0c28b41
BuildRequires:  perl(Test::Exception)
a75d11e
BuildRequires:  perl(Test::Memory::Cycle)
f7c300f
BuildRequires:  perl(Test::More)
f7c300f
Requires:       dejavu-sans-fonts
f7c300f
Requires:       dejavu-sans-mono-fonts
f7c300f
Requires:       dejavu-serif-fonts
f7c300f
Requires:       perl(Compress::Zlib) >= 1.0
85e25f6
Requires:       perl(Storable)
f7c300f
f7c300f
# Filter under-specified dependencies
f7c300f
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Compress::Zlib\\)$
Bernard Johnson 48e134a
Bernard Johnson 48e134a
%description
Bernard Johnson ab06687
A Perl Module Chain to facilitate the Creation and Modification of High-Quality
Bernard Johnson 48e134a
"Portable Document Format (aka. PDF)" Files.
Bernard Johnson 48e134a
d05a655
%package tests
d05a655
Summary:        Tests for %{name}
d05a655
Requires:       %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
d05a655
Requires:       perl-Test-Harness
d05a655
# ImageMagick for convert tool
d05a655
Requires:       ImageMagick
d05a655
# libtiff-tools for tiffcp tool
d05a655
Requires:       libtiff-tools
d05a655
d05a655
%description tests
d05a655
Tests from %{name}. Execute them
d05a655
with "%{_libexecdir}/%{name}/test".
d05a655
Bernard Johnson 48e134a
%prep
8e8dc88
%autosetup -p1 -n PDF-API2-%{version}
8eba7a0
install -m 0644 %{SOURCE1} ./
Bernard Johnson 48e134a
Bernard Johnson 48e134a
# fix interpreter in example files
Bernard Johnson 48e134a
for file in contrib/pdf-{de,}optimize.pl; do
23d910e
    perl -MConfig -pi -e 's|^#!.*perl\b|$Config{startperl}|' "$file"
Bernard Johnson 48e134a
done
Bernard Johnson 48e134a
0ca04ed
# make mode on included contrib 0644 to keep from triggering
Bernard Johnson 48e134a
# rpmlint warning and additional auto-requires
0ca04ed
chmod a-x contrib/*
Bernard Johnson 48e134a
Bernard Johnson ab06687
# recode Changes as UTF-8
Bernard Johnson ab06687
iconv -f iso-8859-1 -t utf-8 < Changes > Changes.utf8
Bernard Johnson ab06687
mv -f Changes.utf8 Changes
Bernard Johnson 48e134a
d05a655
# Help file to recognise the Perl scripts and normalize shebangs
d05a655
for F in t/*.t; do
23d910e
    perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!.*perl\b}{$Config{startperl}}' "$F"
d05a655
    chmod +x "$F"
d05a655
done
d05a655
Bernard Johnson 48e134a
%build
01b3ef4
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
01b3ef4
%{make_build}
Bernard Johnson 48e134a
Bernard Johnson 48e134a
%install
01b3ef4
%{make_install}
d05a655
d05a655
# Install tests
d05a655
mkdir -p %{buildroot}%{_libexecdir}/%{name}
d05a655
cp -a t %{buildroot}%{_libexecdir}/%{name}
23d910e
rm -f %{buildroot}%{_libexecdir}/%{name}/t/author-critic.t
23d910e
rm -f %{buildroot}%{_libexecdir}/%{name}/t/author-pod-syntax.t
d05a655
perl -i -pe 's{\^\blib\b}{^%{perl_vendorlib}}' %{buildroot}/%{_libexecdir}/%{name}/t/00-all-usable.t
d05a655
perl -i -pe 's{\blib\b}{%{perl_vendorlib}/PDF}' %{buildroot}/%{_libexecdir}/%{name}/t/00-all-usable.t
d05a655
cat > %{buildroot}%{_libexecdir}/%{name}/test << 'EOF'
d05a655
#!/bin/bash
d05a655
set -e
d05a655
# Some tests write into temporary files/directories. The easiest solution
d05a655
# is to copy the tests into a writable directory and execute them from there.
d05a655
DIR=$(mktemp -d)
d05a655
pushd "$DIR"
d05a655
cp -a %{_libexecdir}/%{name}/* ./
d05a655
prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
d05a655
popd
d05a655
rm -rf "$DIR"
d05a655
EOF
d05a655
chmod +x %{buildroot}%{_libexecdir}/%{name}/test
d05a655
5976b91
%{_fixperms} %{buildroot}/*
Bernard Johnson 48e134a
Bernard Johnson 48e134a
# we will not include the dejavu fonts in this package, we'll just require the
Bernard Johnson 48e134a
# deja-vu font packages and change the search location (patch0)
5976b91
rm -rf %{buildroot}/%{perl_vendorlib}/PDF/API2/fonts
Bernard Johnson 48e134a
Bernard Johnson 48e134a
Bernard Johnson 48e134a
%check
d05a655
export HARNESS_OPTIONS=j$(perl -e 'if ($ARGV[0] =~ /.*-j([0-9][0-9]*).*/) {print $1} else {print 1}' -- '%{?_smp_mflags}')
Bernard Johnson 48e134a
make test
Bernard Johnson 48e134a
Bernard Johnson 48e134a
%files
8eba7a0
%license LICENSE COPYING-PDF_API2_Basic_PDF-Martin_Hosken
0b0b18d
%doc Changes PATENTS README
0ca04ed
%doc contrib
e9b1bb1
%{perl_vendorlib}/PDF/
Bernard Johnson ab06687
%{_datadir}/man/man3/*
Bernard Johnson 48e134a
# files that are not relevent to this OS
Bernard Johnson 48e134a
%exclude %{perl_vendorlib}/PDF/API2/Win32.pm
Bernard Johnson 48e134a
d05a655
%files tests
d05a655
%{_libexecdir}/%{name}
Bernard Johnson 48e134a
Bernard Johnson 48e134a
%changelog
e148f12
* Mon May 20 2024 Jitka Plesnikova <jplesnik@redhat.com> - 2.047-1
e148f12
- 2.047 bump (rhbz#2281424)
e148f12
bc2bdb5
* Wed May 15 2024 Jitka Plesnikova <jplesnik@redhat.com> - 2.046-1
bc2bdb5
- 2.046 bump (rhbz#2280650)
bc2bdb5
535d5b4
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.045-3
535d5b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
535d5b4
9bb3bc5
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.045-2
9bb3bc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
9bb3bc5
8e8dc88
* Tue Sep 26 2023 Jitka Plesnikova <jplesnik@redhat.com> - 2.045-1
8e8dc88
- 2.045 bump (rhbz#2240644)
8e8dc88
b3162e8
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.044-3
b3162e8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
b3162e8
f9407c4
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.044-2
f9407c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
f9407c4
3a7bb94
* Mon Nov 21 2022 Jitka Plesnikova <jplesnik@redhat.com> - 2.044-1
3a7bb94
- 2.044 bump
3a7bb94
d4c0179
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.043-4
d4c0179
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
d4c0179
def5e3d
* Wed Jun 01 2022 Jitka Plesnikova <jplesnik@redhat.com> - 2.043-3
def5e3d
- Perl 5.36 rebuild
def5e3d
f267e2b
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.043-2
f267e2b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
f267e2b
550d808
* Thu Dec 09 2021 Jitka Plesnikova <jplesnik@redhat.com> - 2.043-1
550d808
- 2.043 bump
550d808
bda1784
* Fri Sep 17 2021 Jitka Plesnikova <jplesnik@redhat.com> - 2.042-1
bda1784
- 2.042 bump
bda1784
29c15d1
* Mon Aug 02 2021 Jitka Plesnikova <jplesnik@redhat.com> - 2.041-1
29c15d1
- 2.041 bump
29c15d1
88c4536
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.040-3
88c4536
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
88c4536
d08f5eb
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 2.040-2
d08f5eb
- Perl 5.34 rebuild
d08f5eb
23d910e
* Wed Apr 14 2021 Jitka Plesnikova <jplesnik@redhat.com> - 2.040-1
23d910e
- 2.040 bump
23d910e
4935305
* Fri Mar 05 2021 Jitka Plesnikova <jplesnik@redhat.com> - 2.039-1
4935305
- 2.039 bump
d05a655
- Package tests
4935305
8eba7a0
* Fri Feb 05 2021 Petr Pisar <ppisar@redhat.com> - 2.038-3
8eba7a0
- Correct a license to "LGPLv2+ and (GPL+ or Artistic) and (MIT or Artistic)"
8eba7a0
6465a15
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.038-2
6465a15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
6465a15
28fd0fe
* Tue Sep 01 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.038-1
28fd0fe
- 2.038 bump
28fd0fe
3ffd383
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.037-3
3ffd383
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
3ffd383
0f36ca6
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.037-2
0f36ca6
- Perl 5.32 rebuild
0f36ca6
01b3ef4
* Thu Feb 06 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.037-1
01b3ef4
- 2.037 bump
01b3ef4
0605aa0
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.036-2
0605aa0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
0605aa0
7516d38
* Wed Sep 18 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.036-1
7516d38
- 2.036 bump
7516d38
5752ed7
* Mon Aug 12 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.035-1
5752ed7
- 2.035 bump
5752ed7
8b585c7
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.034-2
8b585c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
8b585c7
30e67b3
* Mon Jul 01 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.034-1
30e67b3
- 2.034 bump
30e67b3
adf9220
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.033-8
adf9220
- Perl 5.30 rebuild
adf9220
7c541b7
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.033-7
7c541b7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
7c541b7
0cf5b26
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.033-6
0cf5b26
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
0cf5b26
7d78693
* Fri Jun 29 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.033-5
7d78693
- Perl 5.28 rebuild
7d78693
ce8d00d
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.033-4
ce8d00d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
ce8d00d
05a1a50
* Fri Jul 28 2017 Petr Pisar <ppisar@redhat.com> - 2.033-3
05a1a50
- Fix inserting LZW-compressed 8-bit TIFF images (bug #1378895)
05a1a50
029871c
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.033-2
029871c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
029871c
0c28b41
* Fri Jul 07 2017 Petr Pisar <ppisar@redhat.com> - 2.033-1
0c28b41
- 0.33 bump
0c28b41
a75d11e
* Mon Jul 03 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.032-1
a75d11e
- 2.032 bump
a75d11e
645b3d2
* Mon Jun 05 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.031-3
645b3d2
- Perl 5.26 rebuild
645b3d2
2c4048d
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.031-2
2c4048d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2c4048d
ab8b419
* Mon Jan 30 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.031-1
ab8b419
- 2.031 bump
ab8b419
9d63c24
* Mon Oct 17 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.030-1
9d63c24
- 2.030 bump
9d63c24
8adb26d
* Mon Oct 10 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.029-1
8adb26d
- 2.029 bump
8adb26d
68165e8
* Wed Jun 29 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.028-1
68165e8
- 2.028 bump
68165e8
9244aa2
* Mon May 16 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.027-2
9244aa2
- Perl 5.24 rebuild
9244aa2
0ca04ed
* Thu Mar 31 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.027-1
0ca04ed
- 2.027 bump
0ca04ed
4947d74
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.025-2
4947d74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
4947d74
1468bc0
* Mon Nov 09 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.025-1
1468bc0
- 2.025 bump
1468bc0
85e25f6
* Tue Aug 11 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.023-2
85e25f6
- Add require perl(Storable)
85e25f6
0b0b18d
* Mon Jun 22 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.023-1
0b0b18d
- 2.023 bump
0b0b18d
dd6e168
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.021-5
dd6e168
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
dd6e168
66a8ffb
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.021-4
66a8ffb
- Perl 5.22 rebuild
66a8ffb
51da9c8
* Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.021-3
51da9c8
- Perl 5.20 rebuild
51da9c8
590155c
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.021-2
590155c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
590155c
Bernard Johnson a0055c0
* Tue Mar 11 2014 Bernard Johnson <bjohnson@symetrix.com> - 2.021-1
Bernard Johnson a0055c0
- v 2.021 (bz #902236)
Bernard Johnson a0055c0
2003fb1
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.020-2
2003fb1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2003fb1
f7c300f
* Thu Jul 25 2013 Petr Pisar <ppisar@redhat.com> - 2.020-1
f7c300f
- 2.020 bump
f7c300f
92889dc
* Wed Jul 24 2013 Petr Pisar <ppisar@redhat.com> - 2.019-6
92889dc
- Perl 5.18 rebuild
92889dc
ecba69c
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.019-5
ecba69c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
ecba69c
13fa7be
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.019-4
13fa7be
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
13fa7be
fa2be1b
* Fri Jun 15 2012 Petr Pisar <ppisar@redhat.com> - 2.019-3
fa2be1b
- Perl 5.16 rebuild
fa2be1b
d3f1681
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.019-2
d3f1681
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
d3f1681
b37efb3
* Sun Oct  2 2011 Tom Callaway <spot@fedoraproject.org> - 2.019-1
b37efb3
- update to 2.019
b37efb3
Petr Sabata 7457250
* Wed Jul 20 2011 Petr Sabata <contyk@redhat.com> - 2.016-3
Petr Sabata 7457250
- Perl mass rebuild
Petr Sabata 7457250
600eec0
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.016-2
600eec0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
600eec0
Bernard Johnson ab06687
* Sun Jan 30 2011 Bernard Johnson <bjohnson@symetrix.com> - 2.016-1
Bernard Johnson ab06687
- v 2.016 (bz #672666)
Bernard Johnson ab06687
- rebased font location patch
Bernard Johnson ab06687
6d5638f
* Tue Dec 21 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.73-5
6d5638f
- 661697 rebuild for fixing problems with vendorach/lib
6d5638f
299a916
* Tue May 04 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.73-4
299a916
- Mass rebuild with perl-5.12.0
299a916
37fa164
* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.73-3
37fa164
- rebuild against perl 5.10.1
37fa164
2aa91ca
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.73-2
2aa91ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2aa91ca
Bernard Johnson 6b7c093
* Fri Jun 05 2009 Bernard Johnson <bjohnson@symetrix.com> - 0.73-1
Bernard Johnson 6b7c093
- v 0.73-1
Bernard Johnson 6b7c093
e9b1bb1
* Wed Feb 25 2009 Paul Howarth <paul@city-fan.org> - 0.72.003-2
e9b1bb1
- fix dejavu-* dependencies again
e9b1bb1
- recode TODO as UTF-8
e9b1bb1
- simplify perl requires filter
e9b1bb1
Bernard Johnson 7d8c588
* Mon Dec 01 2008 Bernard Johnson <bjohnson@symetrix.com> - 0.72.003-1
Bernard Johnson 7d8c588
- v 0.72.003
Bernard Johnson 7d8c588
Bernard Johnson dbc908b
* Sat Nov 29 2008 Bernard Johnson <bjohnson@symetrix.com> - 0.72-2
Bernard Johnson dbc908b
- [Bug 473556] Fix dejavu-* dependencies
Bernard Johnson dbc908b
Bernard Johnson 39f82f2
* Wed Nov 12 2008 Bernard Johnson <bjohnson@symetrix.com> - 0.72-1
Bernard Johnson 39f82f2
- v 0.72
Bernard Johnson 39f82f2
Bernard Johnson 02dbe18
* Sun Oct 19 2008 Bernard Johnson <bjohnson@symetrix.com> - 0.71.001-2
Bernard Johnson 02dbe18
- bump for cvs tag
Bernard Johnson 02dbe18
Bernard Johnson 65f1f62
* Sun Oct 19 2008 Bernard Johnson <bjohnson@symetrix.com> - 0.71.001-1
Bernard Johnson 65f1f62
- v 0.71.001
Bernard Johnson 65f1f62
Bernard Johnson f06ca7f
* Tue Sep 30 2008 Bernard Johnson <bjohnson@symetrix.com> - 0.69-6
Bernard Johnson f06ca7f
- fix patch fuzz
Bernard Johnson f06ca7f
- change patch numbering
Bernard Johnson f06ca7f
Bernard Johnson 0f00dd4
* Thu May 22 2008 Bernard Johnson <bjohnson@symetrix.com> - 0.69-5
Bernard Johnson 0f00dd4
- bump rel for new sources in F-7
Bernard Johnson 0f00dd4
Bernard Johnson d8c87de
* Thu May 22 2008 Bernard Johnson <bjohnson@symetrix.com> - 0.69-4
Bernard Johnson d8c87de
- fix dejavu font path (bz #447505)
Bernard Johnson d8c87de
0dac13a
* Thu Mar 06 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.69-3
0dac13a
Rebuild for new perl
0dac13a
Bernard Johnson c101b86
* Mon Jan 21 2008 Bernard Johnson <bjohnson@symetrix.com> - 0.69-2
Bernard Johnson c101b86
- patch .orig files packaged (bz #427762)
Bernard Johnson c101b86
Bernard Johnson 775767f
* Fri Jan 18 2008 Bernard Johnson <bjohnson@symetrix.com> - 0.69-1
Bernard Johnson b72e346
- 0.69
Bernard Johnson b72e346
Bernard Johnson b38225e
* Mon Nov 12 2007 Bernard Johnson <bjohnson@symetrix.com> - 0.66-1
Bernard Johnson b38225e
- 0.66
Bernard Johnson b38225e
Bernard Johnson 94d4417
* Sun Oct 28 2007 Bernard Johnson <bjohnson@symetrix.com> - 0.65-1
Bernard Johnson 94d4417
- 0.65
Bernard Johnson 94d4417
Bernard Johnson 74e187c
* Sun Aug 19 2007 Bernard Johnson <bjohnson@symetrix.com> - 0.62-2
Bernard Johnson 74e187c
- update license tag to LGPLv2+
Bernard Johnson 74e187c
- remove CHANGELOG references
Bernard Johnson 74e187c
Bernard Johnson 2866160
* Sun Aug 19 2007 Bernard Johnson <bjohnson@symetrix.com> - 0.62-1
Bernard Johnson 2866160
- 0.62
Bernard Johnson 2866160
Bernard Johnson 102000b
* Thu May 03 2007 Bernard Johnson <bjohnson@symetrix.com> - 0.60-3
Bernard Johnson 102000b
- update MANIFEST to remove 027_winfont that gets removed
Bernard Johnson 102000b
- add missing BR perl(Test::More) and perl(XML::Parser::Expat)
Bernard Johnson 102000b
Bernard Johnson 48e134a
* Sun Apr 29 2007 Bernard Johnson <bjohnson@symetrix.com> - 0.60-2
Bernard Johnson 48e134a
- remove fonts and depend on dejavu-fonts and dejavu-fonts-experimental
Bernard Johnson 48e134a
- change font search path
Bernard Johnson 48e134a
- remove font docs
Bernard Johnson 48e134a
Bernard Johnson 48e134a
* Sat Apr 28 2007 Bernard Johnson <bjohnson@symetrix.com> - 0.60-1
Bernard Johnson 48e134a
- v 0.60
Bernard Johnson 48e134a
- deliberately remove 027_winfont example as it wants Win32.pm
Bernard Johnson 48e134a
- BR on perl(Ext::MakeMaker) rather than perl
Bernard Johnson 48e134a
Bernard Johnson 48e134a
* Fri Apr 06 2007 Bernard Johnson <bjohnson@symetrix.com> - 0.59.002-2
Bernard Johnson 48e134a
- moving resource to docs was a mistake, fix it
Bernard Johnson 48e134a
Bernard Johnson 48e134a
* Thu Apr 05 2007 Bernard Johnson <bjohnson@symetrix.com> - 0.59.002-1
Bernard Johnson 48e134a
- initial release