Blame SPECS/perl-MIME-Types.spec

Packit 4f35fc
# No Mojolicious prior to Fedora 14
Packit 4f35fc
# Mojolicious in Fedora 14 is too old
Packit 4f35fc
# No Mojolicious in EPEL
Packit 4f35fc
%if 0%{?fedora} > 14
Packit 4f35fc
%global have_mojo 1
Packit 4f35fc
%else
Packit 4f35fc
%global have_mojo 0
Packit 4f35fc
%endif
Packit 4f35fc
Packit 4f35fc
# Run extra test
Packit 4f35fc
%if 0%{?rhel}
Packit 4f35fc
%bcond_with perl_MIME_Types_enables_extra_test
Packit 4f35fc
%else
Packit 4f35fc
%bcond_without perl_MIME_Types_enables_extra_test
Packit 4f35fc
%endif
Packit 4f35fc
Packit 4f35fc
Name:           perl-MIME-Types
Packit 4f35fc
Version:        2.17
Packit 4f35fc
Release:        3%{?dist}
Packit 4f35fc
Summary:        MIME types module for Perl
Packit 4f35fc
License:        GPL+ or Artistic
Packit 4f35fc
URL:            https://metacpan.org/release/MIME-Types
Packit 4f35fc
Source0:        https://cpan.metacpan.org/authors/id/M/MA/MARKOV/MIME-Types-%{version}.tar.gz
Packit 4f35fc
BuildArch:      noarch
Packit 4f35fc
# Module Build
Packit 4f35fc
BuildRequires:  coreutils
Packit 4f35fc
BuildRequires:  findutils
Packit 4f35fc
BuildRequires:  make
Packit 4f35fc
BuildRequires:  perl-generators
Packit 4f35fc
BuildRequires:  perl-interpreter
Packit 4f35fc
BuildRequires:  perl(ExtUtils::MakeMaker)
Packit 4f35fc
# Module Runtime
Packit 4f35fc
BuildRequires:  perl(base)
Packit 4f35fc
BuildRequires:  perl(Carp)
Packit 4f35fc
BuildRequires:  perl(Exporter)
Packit 4f35fc
BuildRequires:  perl(File::Basename)
Packit 4f35fc
BuildRequires:  perl(File::Spec)
Packit 4f35fc
BuildRequires:  perl(List::Util)
Packit 4f35fc
%if %{have_mojo}
Packit 4f35fc
BuildRequires:  perl(Mojo::Base)
Packit 4f35fc
%endif
Packit 4f35fc
BuildRequires:  perl(overload)
Packit 4f35fc
BuildRequires:  perl(strict)
Packit 4f35fc
BuildRequires:  perl(vars)
Packit 4f35fc
# Test Suite
Packit 4f35fc
BuildRequires:  perl(lib)
Packit 4f35fc
BuildRequires:  perl(Test::More)
Packit 4f35fc
BuildRequires:  perl(warnings)
Packit 4f35fc
%if %{with perl_MIME_Types_enables_extra_test}
Packit 4f35fc
# Extra Tests
Packit 4f35fc
BuildRequires:  perl(Test::MinimumVersion)
Packit 4f35fc
BuildRequires:  perl(Test::Pod) >= 1.00
Packit 4f35fc
%endif
Packit 4f35fc
# Runtime
Packit 4f35fc
Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
Packit 4f35fc
Packit 4f35fc
%description
Packit 4f35fc
MIME types are used in many applications, for instance as part of e-mail
Packit 4f35fc
and HTTP traffic, to indicate the type of content that is transmitted.
Packit 4f35fc
Packit 4f35fc
Sometimes detailed knowledge about a mime-type is need; however, this
Packit 4f35fc
module only knows about the file-name extensions that relate to some
Packit 4f35fc
file-type.  It can also be used to produce the right format: types that
Packit 4f35fc
are not registered at IANA need to use 'x-' prefixes.
Packit 4f35fc
Packit 4f35fc
%if %{have_mojo}
Packit 4f35fc
%package -n perl-MojoX-MIME-Types
Packit 4f35fc
Packit 4f35fc
Summary:        MIME Types for Mojolicious
Packit 4f35fc
Requires:       perl-MIME-Types = %{version}-%{release}
Packit 4f35fc
Packit 4f35fc
%description -n perl-MojoX-MIME-Types
Packit 4f35fc
This module is a drop-in replacement for Mojolicious::Types, but with a more
Packit 4f35fc
correct handling plus a complete list of types... a huge list of types.
Packit 4f35fc
Packit 4f35fc
Some methods ignore information they receive: those parameters are accepted
Packit 4f35fc
for compatibility with the Mojolicious::Types interface, but should not
Packit 4f35fc
contain useful information.
Packit 4f35fc
Packit 4f35fc
%endif
Packit 4f35fc
Packit 4f35fc
%prep
Packit 4f35fc
%setup -q -n MIME-Types-%{version}
Packit 4f35fc
Packit 4f35fc
%build
Packit 4f35fc
perl Makefile.PL INSTALLDIRS=vendor
Packit 4f35fc
make %{?_smp_mflags}
Packit 4f35fc
Packit 4f35fc
%install
Packit 4f35fc
make pure_install DESTDIR=%{buildroot}
Packit 4f35fc
find %{buildroot} -type f -name .packlist -delete
Packit 4f35fc
%{_fixperms} -c %{buildroot}
Packit 4f35fc
Packit 4f35fc
%check
Packit 4f35fc
make test
Packit 4f35fc
%if %{with perl_MIME_Types_enables_extra_test}
Packit 4f35fc
make test TEST_FILES="xt/*.t"
Packit 4f35fc
%endif
Packit 4f35fc
Packit 4f35fc
%files
Packit 4f35fc
%doc ChangeLog README README.md
Packit 4f35fc
%{perl_vendorlib}/MIME/
Packit 4f35fc
%{_mandir}/man3/MIME::Type.3*
Packit 4f35fc
%{_mandir}/man3/MIME::Types.3*
Packit 4f35fc
Packit 4f35fc
%if %{have_mojo}
Packit 4f35fc
%files -n perl-MojoX-MIME-Types
Packit 4f35fc
%{perl_vendorlib}/MojoX/
Packit 4f35fc
%{_mandir}/man3/MojoX::MIME::Types.3*
Packit 4f35fc
%else
Packit 4f35fc
%exclude %{perl_vendorlib}/MojoX/
Packit 4f35fc
%exclude %{_mandir}/man3/MojoX::MIME::Types.3*
Packit 4f35fc
%endif
Packit 4f35fc
Packit 4f35fc
%changelog
Packit 4f35fc
* Fri Jun 29 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.17-3
Packit 4f35fc
- Perl 5.28 rebuild
Packit 4f35fc
Packit 4f35fc
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.17-2
Packit 4f35fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
Packit 4f35fc
Packit 4f35fc
* Sat Jan 27 2018 Paul Howarth <paul@city-fan.org> - 2.17-1
Packit 4f35fc
- Update to 2.17
Packit 4f35fc
  - When picking a preferred type for an extension, prefer the type with the
Packit 4f35fc
    same minor-name
Packit 4f35fc
  - Remove IANA obsoleted types
Packit 4f35fc
Packit 4f35fc
* Tue Jan 23 2018 Paul Howarth <paul@city-fan.org> - 2.16-1
Packit 4f35fc
- Update to 2.16
Packit 4f35fc
  - Collecting of IANA info had stalled: logic rewritten
Packit 4f35fc
  - Moved to git and GitHub
Packit 4f35fc
  - Move scripts and source files into MANIFEST.extra
Packit 4f35fc
  - Update types and extensions
Packit 4f35fc
Packit 4f35fc
* Fri Nov 10 2017 Paul Howarth <paul@city-fan.org> - 2.14-1
Packit 4f35fc
- Update to 2.14
Packit 4f35fc
  - MojoX should not die on missing types (CPAN RT#123298)
Packit 4f35fc
- Drop EL-5 support
Packit 4f35fc
  - Drop BuildRoot: and Group: tags
Packit 4f35fc
  - Drop explicit buildroot cleaning in %%install section
Packit 4f35fc
  - Drop explicit %%clean section
Packit 4f35fc
Packit 4f35fc
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.13-5
Packit 4f35fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
Packit 4f35fc
Packit 4f35fc
* Tue Jun 06 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.13-4
Packit 4f35fc
- Perl 5.26 rebuild
Packit 4f35fc
Packit 4f35fc
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.13-3
Packit 4f35fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
Packit 4f35fc
Packit 4f35fc
* Mon May 16 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.13-2
Packit 4f35fc
- Perl 5.24 rebuild
Packit 4f35fc
Packit 4f35fc
* Tue Mar  8 2016 Paul Howarth <paul@city-fan.org> - 2.13-1
Packit 4f35fc
- Update to 2.13
Packit 4f35fc
  - Not all information was extracted from the Apache tables
Packit 4f35fc
- Simplify find command using -delete
Packit 4f35fc
Packit 4f35fc
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-2
Packit 4f35fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
Packit 4f35fc
Packit 4f35fc
* Wed Nov 11 2015 Paul Howarth <paul@city-fan.org> - 2.12-1
Packit 4f35fc
- Update to 2.12
Packit 4f35fc
  - Downgrade prereq perl to 5.6
Packit 4f35fc
  - Update IANA
Packit 4f35fc
Packit 4f35fc
* Fri Jun 26 2015 Paul Howarth <paul@city-fan.org> - 2.11-1
Packit 4f35fc
- Update to 2.11
Packit 4f35fc
  - Accept field 'q' weights
Packit 4f35fc
  - Introduce PERL_MIME_TYPE_DB (CPAN RT#104945)
Packit 4f35fc
  - Strict Perl 5.8 (CPAN RT#105267)
Packit 4f35fc
- Classify buildreqs by usage
Packit 4f35fc
Packit 4f35fc
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.09-3
Packit 4f35fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
Packit 4f35fc
Packit 4f35fc
* Fri Jun 05 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.09-2
Packit 4f35fc
- Perl 5.22 rebuild
Packit 4f35fc
Packit 4f35fc
* Mon Sep 15 2014 Paul Howarth <paul@city-fan.org> - 2.09-1
Packit 4f35fc
- Update to 2.09
Packit 4f35fc
  - Rename ::Type::isAscii() into ::Type::isText()
Packit 4f35fc
  - Add source table broofa (CPAN RT#98308)
Packit 4f35fc
  - Add source table freedesktop (CPAN RT#98309)
Packit 4f35fc
  - Update IANA types
Packit 4f35fc
  - Fix scan of freedesktop definitions (CPAN RT#98385)
Packit 4f35fc
  - MIME::Type::equals() did cmp not eq
Packit 4f35fc
  - New httpAccept() wth tests in t/21accept.t
Packit 4f35fc
  - New httpAcceptBest() and httpAcceptSelect() with tests in t/22accbest.t
Packit 4f35fc
  - Add MojoX::MIME::Types with tests in t/40mojo.t
Packit 4f35fc
  - Now depends on List::Util
Packit 4f35fc
  - Documentation fixes
Packit 4f35fc
- Sub-package MojoX::MIME::Types to avoid pulling in Mojolicious as a
Packit 4f35fc
  dependency for users of MIME::Types
Packit 4f35fc
Packit 4f35fc
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.04-3
Packit 4f35fc
- Perl 5.20 rebuild
Packit 4f35fc
Packit 4f35fc
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.04-2
Packit 4f35fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
Packit 4f35fc
Packit 4f35fc
* Thu Sep 12 2013 Paul Howarth <paul@city-fan.org> - 2.04-1
Packit 4f35fc
- Update to 2.04:
Packit 4f35fc
  - Fix one more localize $_ in ::Types::_read_db() (CPAN RT#87856)
Packit 4f35fc
Packit 4f35fc
* Wed Sep  4 2013 Paul Howarth <paul@city-fan.org> - 2.03-1
Packit 4f35fc
- Update to 2.03:
Packit 4f35fc
  - Fix typo in docs (CPAN RT#88394)
Packit 4f35fc
  - Require perl 5.8.8, for <:encoding
Packit 4f35fc
  - Updated IANA
Packit 4f35fc
  - A bit more DESCRIPTION
Packit 4f35fc
- Update %%description
Packit 4f35fc
Packit 4f35fc
* Sun Aug 18 2013 Paul Howarth <paul@city-fan.org> - 2.02-1
Packit 4f35fc
- Update to 2.02:
Packit 4f35fc
  - Localize DB and $_ in ::Types::_read_db() (CPAN RT#87856)
Packit 4f35fc
Packit 4f35fc
* Sun Aug  4 2013 Paul Howarth <paul@city-fan.org> - 2.01-1
Packit 4f35fc
- Update to 2.01:
Packit 4f35fc
  - Add dummy ::Types::create_type_index() because
Packit 4f35fc
    Catalyst-Plugin-Static-Simple calls it :(
Packit 4f35fc
Packit 4f35fc
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.00-2
Packit 4f35fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
Packit 4f35fc
Packit 4f35fc
* Fri Aug  2 2013 Paul Howarth <paul@city-fan.org> - 2.00-1
Packit 4f35fc
- Update to 2.00:
Packit 4f35fc
  - The mime information is now collected from various sources, amongst them
Packit 4f35fc
    IANA; hence, some types may use different x-'s
Packit 4f35fc
  - A separate table is built for the extension-to-type mapping
Packit 4f35fc
  - Number of types up from 995 to 2096
Packit 4f35fc
  - Number of extensions up from 734 to 1425
Packit 4f35fc
  - The memory footprint and start-up speed should have improved considerably
Packit 4f35fc
  - Added bin/collect_types
Packit 4f35fc
  - Fixed some typos (CPAN RT#86847)
Packit 4f35fc
  - Added ::Type::isVendor(), ::isExperimental(), ::isPersonal (CPAN RT#87062)
Packit 4f35fc
  - Added ::Types::listTypes()
Packit 4f35fc
  - Cleaned-up Exporter syntax of (very) old interface
Packit 4f35fc
- BR: perl(base), perl(File::Basename) and perl(File::Spec)
Packit 4f35fc
- Drop no-longer-needed UTF8 patch
Packit 4f35fc
Packit 4f35fc
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 1.38-3
Packit 4f35fc
- Perl 5.18 rebuild
Packit 4f35fc
Packit 4f35fc
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.38-2
Packit 4f35fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
Packit 4f35fc
Packit 4f35fc
* Fri Jan 11 2013 Paul Howarth <paul@city-fan.org> - 1.38-1
Packit 4f35fc
- Update to 1.38:
Packit 4f35fc
  - Add application/vnd.ms-excel.template.macroEnabled.12 and five related
Packit 4f35fc
    from http://filext.com/faq/office_mime_types.php (CPAN RT#82616)
Packit 4f35fc
Packit 4f35fc
* Fri Dec 21 2012 Paul Howarth <paul@city-fan.org> - 1.37-1
Packit 4f35fc
- Update to 1.37:
Packit 4f35fc
  - Remove text/x-perl, where we also have an application/x-perl
Packit 4f35fc
    (CPAN RT#82100)
Packit 4f35fc
Packit 4f35fc
* Wed Nov 21 2012 Petr Šabata <contyk@redhat.com> - 1.36-2
Packit 4f35fc
- Buildrequire perl(lib)
Packit 4f35fc
Packit 4f35fc
* Thu Nov  1 2012 Paul Howarth <paul@city-fan.org> - 1.36-1
Packit 4f35fc
- Update to 1.36:
Packit 4f35fc
  - xlsx and friends had encoding 'binary' (since version 1.30), but should
Packit 4f35fc
    have been 'base64' (CPAN RT#80529)
Packit 4f35fc
Packit 4f35fc
* Tue Jul 24 2012 Paul Howarth <paul@city-fan.org> - 1.35-1
Packit 4f35fc
- Update to 1.35:
Packit 4f35fc
  - Explain how to use MIME::Types in mod_perl; when you do not read the
Packit 4f35fc
    documentation about mod_perl/fork it will work as always, but
Packit 4f35fc
    inefficiently
Packit 4f35fc
  - subType() did not handle subType's with '+' in them
Packit 4f35fc
  - Added video/webm and audio/webm, although not (yet) IANA registered
Packit 4f35fc
- BR: perl(Carp) and perl(Exporter)
Packit 4f35fc
- BR: at least version 1.00 of  perl(Test::Pod)
Packit 4f35fc
- Use a patch rather than scripted iconv to fix character encooding
Packit 4f35fc
- Don't need to remove empty directories from the buildroot
Packit 4f35fc
- Drop %%defattr, redundant since rpm 4.4
Packit 4f35fc
- Use %%{_fixperms} macro rather than our own chmod incantation
Packit 4f35fc
- Use DESTDIR rather than PERL_INSTALL_ROOT
Packit 4f35fc
- Don't use macros for commands
Packit 4f35fc
- Make %%files list more explicit
Packit 4f35fc
Packit 4f35fc
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.31-5
Packit 4f35fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
Packit 4f35fc
Packit 4f35fc
* Mon Jun 11 2012 Petr Pisar <ppisar@redhat.com> - 1.31-4
Packit 4f35fc
- Perl 5.16 rebuild
Packit 4f35fc
Packit 4f35fc
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.31-3
Packit 4f35fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
Packit 4f35fc
Packit 4f35fc
* Sun Jun 19 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.31-2
Packit 4f35fc
- Perl mass rebuild
Packit 4f35fc
Packit 4f35fc
* Tue Mar 15 2011 Paul Howarth <paul@city-fan.org> - 1.31-1
Packit 4f35fc
- Update to 1.31:
Packit 4f35fc
  - Added zillions of new types from debian's /etc/mime.types
Packit 4f35fc
  - Changed table format, hopefully to speed-up load times per type, slightly
Packit 4f35fc
    compensating for the increased list
Packit 4f35fc
  - Fix typo (CPAN RT#55655)
Packit 4f35fc
  - xlsx must be encoded binary
Packit 4f35fc
  - Added f4v, f4p, f4a, f4b extensions for mpeg4 (CPAN RT#55168)
Packit 4f35fc
  - Moved POD test to xt directory, reducing the number of dependencies
Packit 4f35fc
Packit 4f35fc
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.28-5
Packit 4f35fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
Packit 4f35fc
Packit 4f35fc
* Mon Dec 20 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.28-4
Packit 4f35fc
- Rebuild to fix problems with vendorarch/lib (#661697)
Packit 4f35fc
Packit 4f35fc
* Mon May 03 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.28-3
Packit 4f35fc
- Mass rebuild with perl-5.12.0
Packit 4f35fc
Packit 4f35fc
* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 1.28-2
Packit 4f35fc
- rebuild against perl 5.10.1
Packit 4f35fc
Packit 4f35fc
* Wed Oct  7 2009 Stepan Kasal <skasal@redhat.com> - 1.28-1
Packit 4f35fc
- new upstream version
Packit 4f35fc
Packit 4f35fc
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.27-2
Packit 4f35fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
Packit 4f35fc
Packit 4f35fc
* Fri Mar 13 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 1.27-1
Packit 4f35fc
- update to 1.27
Packit 4f35fc
Packit 4f35fc
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.24-2
Packit 4f35fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
Packit 4f35fc
Packit 4f35fc
* Thu Nov 20 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.24-1
Packit 4f35fc
- update to 1.24
Packit 4f35fc
Packit 4f35fc
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.23-3
Packit 4f35fc
- Rebuild for perl 5.10 (again)
Packit 4f35fc
Packit 4f35fc
* Sun Jan 20 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.23-2
Packit 4f35fc
- rebuild for new perl
Packit 4f35fc
Packit 4f35fc
* Wed Dec 19 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.23-1
Packit 4f35fc
- bump to 1.23
Packit 4f35fc
Packit 4f35fc
* Sun Aug 26 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.20-2
Packit 4f35fc
- license tag fix
Packit 4f35fc
Packit 4f35fc
* Wed Jun 13 2007 Ville Skyttä <ville.skytta at iki.fi> - 1.20-1
Packit 4f35fc
- 1.20.
Packit 4f35fc
- Convert docs to UTF-8.
Packit 4f35fc
Packit 4f35fc
* Tue Apr 17 2007 Ville Skyttä <ville.skytta at iki.fi> - 1.19-2
Packit 4f35fc
- BuildRequire perl(Test::More).
Packit 4f35fc
Packit 4f35fc
* Mon Mar 26 2007 Ville Skyttä <ville.skytta at iki.fi> - 1.19-1
Packit 4f35fc
- 1.19.
Packit 4f35fc
- BuildRequire perl(ExtUtils::MakeMaker).
Packit 4f35fc
Packit 4f35fc
* Wed Nov 22 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.18-1
Packit 4f35fc
- 1.18.
Packit 4f35fc
Packit 4f35fc
* Fri Sep 15 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.17-2
Packit 4f35fc
- Rebuild.
Packit 4f35fc
Packit 4f35fc
* Tue Aug 15 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.17-1
Packit 4f35fc
- 1.17.
Packit 4f35fc
Packit 4f35fc
* Sun Oct  2 2005 Ville Skyttä <ville.skytta at iki.fi> - 1.16-1
Packit 4f35fc
- 1.16.
Packit 4f35fc
Packit 4f35fc
* Fri Apr  1 2005 Ville Skyttä <ville.skytta at iki.fi> - 1.15-2
Packit 4f35fc
- 1.15.
Packit 4f35fc
Packit 4f35fc
* Tue May 25 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.13-0.fdr.3
Packit 4f35fc
- Require perl(:MODULE_COMPAT_*) (bug 1649).
Packit 4f35fc
Packit 4f35fc
* Mon May 17 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.13-0.fdr.2
Packit 4f35fc
- Sync with IANA 20040517.
Packit 4f35fc
- Require perl >= 1:5.6.1 for vendor install dir support.
Packit 4f35fc
- Use pure_install to avoid perllocal.pod workarounds.
Packit 4f35fc
Packit 4f35fc
* Sat Apr 24 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.13-0.fdr.1
Packit 4f35fc
- Update to 1.13 + IANA 20040424.
Packit 4f35fc
Packit 4f35fc
* Sun Feb  1 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.12-0.fdr.2
Packit 4f35fc
- Reduce directory ownership bloat.
Packit 4f35fc
Packit 4f35fc
* Wed Jan 21 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.12-0.fdr.1
Packit 4f35fc
- Update to 1.12.
Packit 4f35fc
Packit 4f35fc
* Wed Jan 14 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.11-0.fdr.1
Packit 4f35fc
- Update to 1.11.
Packit 4f35fc
Packit 4f35fc
* Wed Dec 31 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.10-0.fdr.2
Packit 4f35fc
- BuildRequires perl(Test::More).
Packit 4f35fc
Packit 4f35fc
* Fri Dec 19 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.10-0.fdr.1
Packit 4f35fc
- Update to 1.10.
Packit 4f35fc
Packit 4f35fc
* Thu Nov  6 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.09-0.fdr.1
Packit 4f35fc
- Update to 1.09.
Packit 4f35fc
Packit 4f35fc
* Tue Nov  4 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.08-0.fdr.1
Packit 4f35fc
- Update to 1.08.
Packit 4f35fc
Packit 4f35fc
* Sat Oct 11 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.07-0.fdr.2
Packit 4f35fc
- Install into vendor dirs.
Packit 4f35fc
- Don't use fedora-rpm-helper.
Packit 4f35fc
- Specfile cleanup.
Packit 4f35fc
Packit 4f35fc
* Wed Jul 30 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.07-0.fdr.1
Packit 4f35fc
- Update to 1.07.
Packit 4f35fc
- Use fedora-rpm-helper.
Packit 4f35fc
Packit 4f35fc
* Tue Jun 24 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.06-0.fdr.1
Packit 4f35fc
- First build.