28b7a3
Name:           perl-HTML-Parser
28b7a3
Summary:        Perl module for parsing HTML
28b7a3
Version:        3.76
28b7a3
Release:        3%{?dist}
28b7a3
License:        GPL+ or Artistic
28b7a3
Source0:        https://cpan.metacpan.org/authors/id/O/OA/OALDERS/HTML-Parser-%{version}.tar.gz
28b7a3
URL:            https://metacpan.org/release/HTML-Parser
28b7a3
BuildRequires:  coreutils
28b7a3
BuildRequires:  findutils
28b7a3
BuildRequires:  gcc
28b7a3
BuildRequires:  glibc-common
28b7a3
BuildRequires:  make
28b7a3
BuildRequires:  perl-devel
28b7a3
BuildRequires:  perl-generators
28b7a3
BuildRequires:  perl-interpreter
28b7a3
BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.76
28b7a3
BuildRequires:  perl(strict)
28b7a3
BuildRequires:  perl(warnings)
28b7a3
# Run-time
28b7a3
BuildRequires:  perl(Carp)
28b7a3
BuildRequires:  perl(Exporter)
28b7a3
BuildRequires:  perl(HTML::Tagset) >= 3
28b7a3
BuildRequires:  perl(HTTP::Headers)
28b7a3
BuildRequires:  perl(IO::File)
28b7a3
BuildRequires:  perl(URI)
28b7a3
BuildRequires:  perl(XSLoader)
28b7a3
# Tests
28b7a3
BuildRequires:  perl(Config)
28b7a3
BuildRequires:  perl(File::Spec)
28b7a3
BuildRequires:  perl(FileHandle)
28b7a3
BuildRequires:  perl(SelectSaver)
28b7a3
BuildRequires:  perl(Test)
28b7a3
BuildRequires:  perl(Test::More)
28b7a3
BuildRequires:  perl(threads)
28b7a3
Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
28b7a3
Requires:       perl(HTML::Tagset) >= 3
28b7a3
Requires:       perl(HTTP::Headers)
28b7a3
Requires:       perl(IO::File)
28b7a3
Requires:       perl(URI)
28b7a3
28b7a3
%{?perl_default_filter}
28b7a3
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}perl\\(HTML::Tagset\\)$
28b7a3
28b7a3
%description
28b7a3
The HTML-Parser module for perl to parse and extract information from
28b7a3
HTML documents, including the HTML::Entities, HTML::HeadParser,
28b7a3
HTML::LinkExtor, HTML::PullParser, and HTML::TokeParser modules.
28b7a3
28b7a3
%package tests
28b7a3
Summary:        Tests for %{name}
28b7a3
Requires:       %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
28b7a3
Requires:       perl-Test-Harness
28b7a3
28b7a3
%description tests
28b7a3
Tests from %{name}. Execute them
28b7a3
with "%{_libexecdir}/%{name}/test".
28b7a3
28b7a3
%prep
28b7a3
%setup -q -n HTML-Parser-%{version}
28b7a3
chmod -c a-x eg/*
28b7a3
28b7a3
# Help file to recognise the Perl scripts and normalize shebangs
28b7a3
for F in t/*.t; do
28b7a3
    if head -1 "$F" | grep -q -e '^#!.*perl\b' ; then
28b7a3
        perl -MConfig -pi -e 's|^#!.*perl\b|$Config{startperl}|' "$F"
28b7a3
    else
28b7a3
        perl -i -MConfig -ple 'print $Config{startperl} if $. == 1' "$F"
28b7a3
    fi
28b7a3
    chmod +x "$F"
28b7a3
done
28b7a3
28b7a3
%build
28b7a3
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}" NO_PACKLIST=1 NO_PERLLOCAL=1
28b7a3
%{make_build}
28b7a3
28b7a3
%install
28b7a3
%{make_install}
28b7a3
file=%{buildroot}%{_mandir}/man3/HTML::Entities.3pm
28b7a3
iconv -f iso-8859-1 -t utf-8 <"$file" > "${file}_" && \
28b7a3
    touch -r ${file} ${file}_ && \
28b7a3
    mv -f "${file}_" "$file"
28b7a3
find %{buildroot} -type f -name '*.bs' -empty -delete
28b7a3
28b7a3
# Install tests
28b7a3
mkdir -p %{buildroot}/%{_libexecdir}/%{name}
28b7a3
cp -a t %{buildroot}/%{_libexecdir}/%{name}
28b7a3
cat > %{buildroot}/%{_libexecdir}/%{name}/test << 'EOF'
28b7a3
#!/bin/bash
28b7a3
set -e
28b7a3
# Some tests write into temporary files/directories. The easiest solution
28b7a3
# is to copy the tests into a writable directory and execute them from there.
28b7a3
DIR=$(mktemp -d)
28b7a3
pushd "$DIR"
28b7a3
cp -a %{_libexecdir}/%{name}/* ./
28b7a3
prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
28b7a3
popd
28b7a3
rm -rf "$DIR"
28b7a3
EOF
28b7a3
chmod +x %{buildroot}/%{_libexecdir}/%{name}/test
28b7a3
28b7a3
%{_fixperms} %{buildroot}/*
28b7a3
28b7a3
%check
28b7a3
export HARNESS_OPTIONS=j$(perl -e 'if ($ARGV[0] =~ /.*-j([0-9][0-9]*).*/) {print $1} else {print 1}' -- '%{?_smp_mflags}')
28b7a3
make test
28b7a3
28b7a3
%files
28b7a3
%license LICENSE
28b7a3
%doc Changes README TODO eg/
28b7a3
%{perl_vendorarch}/HTML/
28b7a3
%{perl_vendorarch}/auto/HTML/
28b7a3
%{_mandir}/man3/*.3pm*
28b7a3
28b7a3
%files tests
28b7a3
%{_libexecdir}/%{name}
28b7a3
28b7a3
%changelog
28b7a3
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 3.76-3
28b7a3
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
28b7a3
  Related: rhbz#1991688
28b7a3
28b7a3
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 3.76-2
28b7a3
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
28b7a3
28b7a3
* Fri Mar 05 2021 Jitka Plesnikova <jplesnik@redhat.com> - 3.76-1
28b7a3
- 3.76 bump
28b7a3
- Package tests
28b7a3
28b7a3
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.75-3
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
28b7a3
28b7a3
* Thu Sep 10 2020 Petr Pisar <ppisar@redhat.com> - 3.75-2
28b7a3
- Always build-require HTTP::Headers
28b7a3
28b7a3
* Mon Aug 31 2020 Jitka Plesnikova <jplesnik@redhat.com> - 3.75-1
28b7a3
- 3.75 bump
28b7a3
28b7a3
* Wed Aug 26 2020 Jitka Plesnikova <jplesnik@redhat.com> - 3.73-1
28b7a3
- 3.73 bump
28b7a3
28b7a3
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.72-24
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
28b7a3
28b7a3
* Fri Jun 26 2020 Jitka Plesnikova <jplesnik@redhat.com> - 3.72-23
28b7a3
- Perl 5.32 re-rebuild of bootstrapped packages
28b7a3
28b7a3
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 3.72-22
28b7a3
- Perl 5.32 rebuild
28b7a3
28b7a3
* Tue Feb 04 2020 Tom Stellard <tstellar@redhat.com> - 3.72-21
28b7a3
- Spec file cleanups: Use make_build and make_install macros
28b7a3
- https://docs.fedoraproject.org/en-US/packaging-guidelines/#_parallel_make
28b7a3
- https://fedoraproject.org/wiki/Perl/Tips#ExtUtils::MakeMake
28b7a3
28b7a3
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.72-20
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
28b7a3
28b7a3
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.72-19
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
28b7a3
28b7a3
* Sun Jun 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 3.72-18
28b7a3
- Perl 5.30 re-rebuild of bootstrapped packages
28b7a3
28b7a3
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 3.72-17
28b7a3
- Perl 5.30 rebuild
28b7a3
28b7a3
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.72-16
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
28b7a3
28b7a3
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.72-15
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
28b7a3
28b7a3
* Mon Jul 09 2018 Petr Pisar <ppisar@redhat.com> - 3.72-14
28b7a3
- Remove tests subpackage
28b7a3
28b7a3
* Sat Jun 30 2018 Jitka Plesnikova <jplesnik@redhat.com> - 3.72-13
28b7a3
- Perl 5.28 re-rebuild of bootstrapped packages
28b7a3
28b7a3
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 3.72-12
28b7a3
- Perl 5.28 rebuild
28b7a3
28b7a3
* Mon Feb 19 2018 Jitka Plesnikova <jplesnik@redhat.com> - 3.72-11
28b7a3
- Add build-require gcc
28b7a3
28b7a3
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.72-10
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
28b7a3
28b7a3
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.72-9
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
28b7a3
28b7a3
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.72-8
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
28b7a3
28b7a3
* Wed Jun 07 2017 Jitka Plesnikova <jplesnik@redhat.com> - 3.72-7
28b7a3
- Perl 5.26 re-rebuild of bootstrapped packages
28b7a3
28b7a3
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 3.72-6
28b7a3
- Perl 5.26 rebuild
28b7a3
28b7a3
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.72-5
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
28b7a3
28b7a3
* Wed May 18 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.72-4
28b7a3
- Perl 5.24 re-rebuild of bootstrapped packages
28b7a3
28b7a3
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.72-3
28b7a3
- Perl 5.24 rebuild
28b7a3
28b7a3
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.72-2
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
28b7a3
28b7a3
* Wed Jan 20 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.72-1
28b7a3
- 3.72 bump
28b7a3
28b7a3
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.71-11
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
28b7a3
28b7a3
* Wed Jun 10 2015 Jitka Plesnikova <jplesnik@redhat.com> - 3.71-10
28b7a3
- Perl 5.22 re-rebuild of bootstrapped packages
28b7a3
28b7a3
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 3.71-9
28b7a3
- Perl 5.22 rebuild
28b7a3
28b7a3
* Sun Sep 07 2014 Jitka Plesnikova <jplesnik@redhat.com> - 3.71-8
28b7a3
- Perl 5.20 re-rebuild of bootstrapped packages
28b7a3
28b7a3
* Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 3.71-7
28b7a3
- Perl 5.20 rebuild
28b7a3
28b7a3
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.71-6
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
28b7a3
28b7a3
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.71-5
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
28b7a3
28b7a3
* Wed Aug 14 2013 Jitka Plesnikova <jplesnik@redhat.com> - 3.71-4
28b7a3
- Perl 5.18 re-rebuild of bootstrapped packages
28b7a3
28b7a3
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.71-3
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
28b7a3
28b7a3
* Thu Aug 01 2013 Petr Šabata <contyk@redhat.com> - 3.71-2
28b7a3
- Fix the dependency list
28b7a3
- Fix bogus dates in the changelog
28b7a3
28b7a3
* Sun Jul 21 2013 Petr Pisar <ppisar@redhat.com> - 3.71-2
28b7a3
- Perl 5.18 rebuild
28b7a3
28b7a3
* Mon May 13 2013 Jitka Plesnikova <jplesnik@redhat.com> - 3.71-1
28b7a3
- 3.71 bump
28b7a3
28b7a3
* Tue Apr 02 2013 Jitka Plesnikova <jplesnik@redhat.com> - 3.70-1
28b7a3
- 3.70 bump
28b7a3
28b7a3
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.69-10
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
28b7a3
28b7a3
* Fri Nov 23 2012 Petr Šabata <contyk@redhat.com> - 3.69-9
28b7a3
- Fix the dep list
28b7a3
- Modernize the spec a bit
28b7a3
28b7a3
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.69-8
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
28b7a3
28b7a3
* Tue Jul 10 2012 Petr Pisar <ppisar@redhat.com> - 3.69-7
28b7a3
- Perl 5.16 re-rebuild of bootstrapped packages
28b7a3
28b7a3
* Tue Jun 12 2012 Petr Pisar <ppisar@redhat.com> - 3.69-6
28b7a3
- Perl 5.16 rebuild
28b7a3
28b7a3
* Mon Apr 16 2012 Petr Pisar <ppisar@redhat.com> - 3.69-5
28b7a3
- Exclude HTTP::Headers build-dependency at Perl bootstrap (bug #810223)
28b7a3
28b7a3
* Mon Apr 16 2012 Petr Pisar <ppisar@redhat.com> - 3.69-4
28b7a3
- Revert "Exclude HTTP::Headers dependency at Perl bootstrap"
28b7a3
28b7a3
* Wed Jan 18 2012 Petr Pisar <ppisar@redhat.com> - 3.69-3
28b7a3
- Exclude HTTP::Headers dependency at Perl bootstrap
28b7a3
28b7a3
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.69-2
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
28b7a3
28b7a3
* Mon Oct 17 2011 Petr Sabata <contyk@redhat.com> - 3.69-1
28b7a3
- 3.69 bump
28b7a3
- Drop Buildroot and defattr, cleanup
28b7a3
28b7a3
* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 3.68-4
28b7a3
- Perl mass rebuild
28b7a3
28b7a3
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.68-3
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
28b7a3
28b7a3
* Fri Dec 17 2010 Marcela Maslanova <mmaslano@redhat.com> - 3.68-2
28b7a3
- 661697 rebuild for fixing problems with vendorach/lib
28b7a3
28b7a3
* Tue Sep 07 2010 Petr Sabata <psabata@redhat.com> - 3.68-1
28b7a3
- Update to the latest upstream release, v3.68
28b7a3
28b7a3
* Wed Sep 01 2010 Petr Sabata <psabata@redhat.com> - 3.67-1
28b7a3
- Update to the latest upstream release, v3.67
28b7a3
28b7a3
* Mon Jul 12 2010 Marcela Mašláňová <mmaslano@redhat.com> 3.66-1
28b7a3
- update
28b7a3
28b7a3
* Fri Jul 09 2010 Marcela Mašláňová <mmaslano@redhat.com> 3.65-1
28b7a3
- and re-add real-name macro back, maintainertool can't handle it
28b7a3
28b7a3
- update by Fedora::App::MaintainerTools 0.006
28b7a3
- updating to latest GA CPAN version (3.65)
28b7a3
- added a new br on perl(ExtUtils::MakeMaker) (version 0)
28b7a3
- altered br on perl(HTML::Tagset) (3.03, => 3)
28b7a3
- added a new br on perl(Test::More) (version 0)
28b7a3
- added a new br on perl(XSLoader) (version 0)
28b7a3
- altered req on perl(HTML::Tagset) (3.03 => 3)
28b7a3
- added a new req on perl(XSLoader) (version 0)
28b7a3
28b7a3
* Sun May 02 2010 Marcela Maslanova <mmaslano@redhat.com> - 3.64-3
28b7a3
- Mass rebuild with perl-5.12.0
28b7a3
28b7a3
* Fri Dec  4 2009 Stepan Kasal <skasal@redhat.com> - 3.64-2
28b7a3
- rebuild against perl 5.10.1
28b7a3
28b7a3
* Mon Nov  2 2009 Stepan Kasal <skasal@redhat.com> - 3.64-1
28b7a3
- new upstream version
28b7a3
28b7a3
* Fri Oct 23 2009 Warren Togami <wtogami@redhat.com> - 3.63-2
28b7a3
- 3.63 CVE-2009-3627
28b7a3
28b7a3
* Thu Sep 17 2009 Warren Togami <wtogami@redhat.com> - 3.62-1
28b7a3
- 3.62
28b7a3
28b7a3
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.60-2
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
28b7a3
28b7a3
* Mon Jun 08 2009 Chris Weyl <cweyl@alumni.drew.edu> - 3.60-1
28b7a3
- update to latest for mojomojo
28b7a3
- filter bad provides (Parser.so)
28b7a3
28b7a3
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.59-2
28b7a3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
28b7a3
28b7a3
* Tue Dec 16 2008 Marcela Mašláňová <mmaslano@redhat.com> - 3.59-1
28b7a3
- update to the latest version for Padre editor
28b7a3
28b7a3
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 3.56-5
28b7a3
- Rebuild for perl 5.10 (again)
28b7a3
28b7a3
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 3.56-4
28b7a3
- Autorebuild for GCC 4.3
28b7a3
28b7a3
* Sun Jan 20 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 3.56-3
28b7a3
- rebuild for new perl
28b7a3
28b7a3
* Wed Aug 29 2007 Robin Norwood <rnorwood@redhat.com> - 3.56-2
28b7a3
- Fix license tag
28b7a3
- update BuildRequires
28b7a3
28b7a3
* Sat Feb  3 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 3.56-1
28b7a3
- Update to 3.56.
28b7a3
- Brought specfile closer to the Fedora's Perl template.
28b7a3
- Converted specfile to UTF-8 (changelog entries).
28b7a3
- Added examples and doc files.
28b7a3
28b7a3
* Mon Jul 17 2006 Jason Vas Dias <jvdias@redhat.com> - 3.55-1.fc6
28b7a3
- Upgrade to 3.55
28b7a3
28b7a3
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.54-1.fc6.1
28b7a3
- rebuild
28b7a3
28b7a3
* Mon Jun 05 2006 Jason Vas Dias <jvdias@redhat.com> - 3.54-1
28b7a3
- upgrade to 3.54
28b7a3
28b7a3
* Wed Mar 22 2006 Jason Vas Dias <jvdias@redhat.com> - 3.51-1
28b7a3
- upgrade to 3.51
28b7a3
28b7a3
* Mon Feb 20 2006 Jason Vas Dias <jvdias@redhat.com> - 3.50-1
28b7a3
- upgrade to 3.50
28b7a3
28b7a3
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 3.48-1.1.2
28b7a3
- bump again for double-long bug on ppc(64)
28b7a3
28b7a3
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 3.48-1.1.1
28b7a3
- rebuilt for new gcc4.1 snapshot and glibc changes
28b7a3
28b7a3
* Fri Feb 03 2006 Jason Vas Dias <jvdias@redhat.com> - 3.48-1
28b7a3
- rebuild for new perl-5.8.8
28b7a3
28b7a3
* Mon Dec 19 2005 Jason Vas Dias<jvdias@redhat.com> - 3.48-1
28b7a3
- upgrade to 3.48
28b7a3
28b7a3
* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com>
28b7a3
- rebuilt for new gcc
28b7a3
28b7a3
* Sun Nov 06 2005 Florian La Roche <laroche@redhat.com>
28b7a3
- 3.46
28b7a3
28b7a3
* Fri Apr  1 2005 Michael Schwendt <mschwendt@users.sf.net> - 3.45-1
28b7a3
- Update to 3.45 plus heavy spec cleanup.
28b7a3
28b7a3
* Wed Mar 30 2005 Warren Togami <wtogami@redhat.com>
28b7a3
- remove brp-compress
28b7a3
28b7a3
* Thu Nov 25 2004 Miloslav Trmac <mitr@redhat.com> - 3.35-7
28b7a3
- Convert man page to UTF-8
28b7a3
28b7a3
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
28b7a3
- rebuilt
28b7a3
28b7a3
* Wed Mar 17 2004 Chip Turner <cturner@redhat.com> 3.35-2
28b7a3
- rebuild for fc1 update
28b7a3
28b7a3
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
28b7a3
- rebuilt
28b7a3
28b7a3
* Fri Feb 13 2004 Chip Turner <cturner@redhat.com> 3.35-1
28b7a3
- update to 3.35
28b7a3
28b7a3
* Thu Jun 05 2003 Elliot Lee <sopwith@redhat.com>
28b7a3
- rebuilt
28b7a3
28b7a3
* Tue Aug  6 2002 Chip Turner <cturner@redhat.com>
28b7a3
- automated release bump and build
28b7a3
28b7a3
* Tue Jun  4 2002 Chip Turner <cturner@redhat.com>
28b7a3
- properly claim directories owned by package so they are removed when package is removed
28b7a3
28b7a3
* Mon Jun  3 2002 Chip Turner <cturner@redhat.com>
28b7a3
- fix for Makefile.PL sometimes prompting for input
28b7a3
28b7a3
* Wed Mar 27 2002 Chip Turner <cturner@redhat.com>
28b7a3
- update to 3.26, move to vendor_perl
28b7a3
28b7a3
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
28b7a3
- automated rebuild
28b7a3
28b7a3
* Thu Jul 19 2001 Crutcher Dunnavant <crutcher@redhat.com> 3.25-2
28b7a3
- imported from mandrake. tweaked man path.
28b7a3
28b7a3
* Tue Jul 03 2001 François Pons <fpons@mandrakesoft.com> 3.25-1mdk
28b7a3
- 3.25.
28b7a3
28b7a3
* Wed Jun 20 2001 Christian Belisle <cbelisle@mandrakesoft.com> 3.18-3mdk
28b7a3
- Fixed distribution tag.
28b7a3
- Updated Requires.
28b7a3
- Added an option to %%makeinstall.
28b7a3
28b7a3
* Sun Jun 17 2001 Geoffrey Lee <snailtalk@mandrakesoft.com> 3.18-2mdk
28b7a3
- Rebuild against the latest perl.
28b7a3
28b7a3
* Tue Feb 27 2001 François Pons <fpons@mandrakesoft.com> 3.18-1mdk
28b7a3
- 3.18.
28b7a3
28b7a3
* Tue Jan 30 2001 François Pons <fpons@mandrakesoft.com> 3.15-1mdk
28b7a3
- 3.15.
28b7a3
28b7a3
* Tue Dec 05 2000 François Pons <fpons@mandrakesoft.com> 3.14-1mdk
28b7a3
- 3.14.
28b7a3
28b7a3
* Thu Oct 12 2000 François Pons <fpons@mandrakesoft.com> 3.13-1mdk
28b7a3
- 3.13.
28b7a3
28b7a3
* Tue Aug 29 2000 François Pons <fpons@mandrakesoft.com> 3.11-1mdk
28b7a3
- 3.11.
28b7a3
28b7a3
* Thu Aug 03 2000 François Pons <fpons@mandrakesoft.com> 3.10-2mdk
28b7a3
- macroszifications.
28b7a3
- add doc.
28b7a3
28b7a3
* Tue Jul 18 2000 François Pons <fpons@mandrakesoft.com> 3.10-1mdk
28b7a3
- removed perllocal.pod from files.
28b7a3
- 3.10.
28b7a3
28b7a3
* Tue Jun 27 2000 Jean-Michel Dault <jmdault@mandrakesoft.com> 3.08-1mdk
28b7a3
- update to 3.08
28b7a3
28b7a3
* Wed May 17 2000 David BAUDENS <baudens@mandrakesoft.com> 3.05-4mdk
28b7a3
- Fix build for i486
28b7a3
- Use %%{_tmppath} for BuildRoot
28b7a3
28b7a3
* Fri Mar 31 2000 Pixel <pixel@mandrakesoft.com> 3.05-3mdk
28b7a3
- rebuild, new group, cleanup
28b7a3
28b7a3
* Tue Feb 29 2000 Jean-Michel Dault <jmdault@netrevolution.com> 3.0.5-1mdk
28b7a3
- upgrade to 3.05
28b7a3
28b7a3
* Mon Jan  3 2000 Jean-Michel Dault <jmdault@netrevolution.com>
28b7a3
- final cleanup for Mandrake 7
28b7a3
28b7a3
* Thu Dec 30 1999 Jean-Michel Dault <jmdault@netrevolution.com>
28b7a3
-updated to 3.02
28b7a3
28b7a3
* Sun Aug 29 1999 Jean-Michel Dault <jmdault@netrevolution.com>
28b7a3
- bzip2'd sources
28b7a3
- updated to 2.23
28b7a3
28b7a3
* Tue May 11 1999 root <root@alien.devel.redhat.com>
28b7a3
- Spec file was autogenerated.