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