r20390 - in /branches/upstream/libmime-types-perl/current: ChangeLog META.yml Makefile.PL lib/MIME/Type.pm lib/MIME/Type.pod lib/MIME/Types.pm lib/MIME/Types.pod t/20types.t

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sat May 24 22:35:15 UTC 2008


Author: gregoa
Date: Sat May 24 22:35:15 2008
New Revision: 20390

URL: http://svn.debian.org/wsvn/?sc=1&rev=20390
Log:
[svn-upgrade] Integrating new upstream version, libmime-types-perl (1.24)

Modified:
    branches/upstream/libmime-types-perl/current/ChangeLog
    branches/upstream/libmime-types-perl/current/META.yml
    branches/upstream/libmime-types-perl/current/Makefile.PL
    branches/upstream/libmime-types-perl/current/lib/MIME/Type.pm
    branches/upstream/libmime-types-perl/current/lib/MIME/Type.pod
    branches/upstream/libmime-types-perl/current/lib/MIME/Types.pm
    branches/upstream/libmime-types-perl/current/lib/MIME/Types.pod
    branches/upstream/libmime-types-perl/current/t/20types.t

Modified: branches/upstream/libmime-types-perl/current/ChangeLog
URL: http://svn.debian.org/wsvn/branches/upstream/libmime-types-perl/current/ChangeLog?rev=20390&op=diff
==============================================================================
--- branches/upstream/libmime-types-perl/current/ChangeLog (original)
+++ branches/upstream/libmime-types-perl/current/ChangeLog Sat May 24 22:35:15 2008
@@ -5,6 +5,16 @@
 
 **** Inform Austin Ziegler < mime-types at halostatue.ca> at each release, to
 **** update his Ruby port of the module.
+
+version 1.24: Fri May 23 09:43:28 CEST 2008
+
+	- message/rfc822 relates to .eml [Jonas Liljegren]
+
+	- application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
+	  is an .xlsx [Jonas Liljegren]
+
+	- added zillion of application/vnd.oasis.opendocument.* and
+	  application/vnd.stardevision.* names [Michiel Leenaars]
 
 version 1.23: Mon Dec 17 16:12:52 CET 2007
 

Modified: branches/upstream/libmime-types-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libmime-types-perl/current/META.yml?rev=20390&op=diff
==============================================================================
--- branches/upstream/libmime-types-perl/current/META.yml (original)
+++ branches/upstream/libmime-types-perl/current/META.yml Sat May 24 22:35:15 2008
@@ -1,15 +1,15 @@
 --- #YAML:1.0
 name:                MIME-Types
-version:             1.23
+version:             1.24
 abstract:            Definition of MIME types
 license:             perl
-generated_by:        ExtUtils::MakeMaker version 6.36_01
+author:              
+    - Mark Overmeer
+generated_by:        ExtUtils::MakeMaker version 6.42
 distribution_type:   module
 requires:     
     Test::More:                    0.47
     Test::Pod:                     1
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.2.html
-    version: 1.2
-author:
-    - Mark Overmeer
+    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
+    version: 1.3

Modified: branches/upstream/libmime-types-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libmime-types-perl/current/Makefile.PL?rev=20390&op=diff
==============================================================================
--- branches/upstream/libmime-types-perl/current/Makefile.PL (original)
+++ branches/upstream/libmime-types-perl/current/Makefile.PL Sat May 24 22:35:15 2008
@@ -4,7 +4,7 @@
 
 WriteMakefile
   ( NAME      => 'MIME::Types'
-  , VERSION   => '1.23'
+  , VERSION   => '1.24'
   , PREREQ_PM =>
     { Test::More => 0.47
     , Test::Pod  => 1.00

Modified: branches/upstream/libmime-types-perl/current/lib/MIME/Type.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libmime-types-perl/current/lib/MIME/Type.pm?rev=20390&op=diff
==============================================================================
--- branches/upstream/libmime-types-perl/current/lib/MIME/Type.pm (original)
+++ branches/upstream/libmime-types-perl/current/lib/MIME/Type.pm Sat May 24 22:35:15 2008
@@ -1,10 +1,11 @@
-# Copyrights 1999,2001-2007 by Mark Overmeer.
+# Copyrights 1999,2001-2008 by Mark Overmeer.
 #  For other contributors see ChangeLog.
 # See the manual pages for details on the licensing terms.
-# Pod stripped from pm file by OODoc 1.03.
+# Pod stripped from pm file by OODoc 1.04.
 package MIME::Type;
 use vars '$VERSION';
-$VERSION = '1.23';
+$VERSION = '1.24';
+
 
 use strict;
 

Modified: branches/upstream/libmime-types-perl/current/lib/MIME/Type.pod
URL: http://svn.debian.org/wsvn/branches/upstream/libmime-types-perl/current/lib/MIME/Type.pod?rev=20390&op=diff
==============================================================================
--- branches/upstream/libmime-types-perl/current/lib/MIME/Type.pod (original)
+++ branches/upstream/libmime-types-perl/current/lib/MIME/Type.pod Sat May 24 22:35:15 2008
@@ -270,12 +270,12 @@
 
 =head1 SEE ALSO
 
-This module is part of MIME-Types distribution version 1.23,
-built on December 17, 2007. Website: F<http://perl.overmeer.net/mimetypes/>
+This module is part of MIME-Types distribution version 1.24,
+built on May 23, 2008. Website: F<http://perl.overmeer.net/mimetypes/>
 
 =head1 LICENSE
 
-Copyrights 1999,2001-2007 by Mark Overmeer. For other contributors see ChangeLog.
+Copyrights 1999,2001-2008 by Mark Overmeer. For other contributors see ChangeLog.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Modified: branches/upstream/libmime-types-perl/current/lib/MIME/Types.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libmime-types-perl/current/lib/MIME/Types.pm?rev=20390&op=diff
==============================================================================
--- branches/upstream/libmime-types-perl/current/lib/MIME/Types.pm (original)
+++ branches/upstream/libmime-types-perl/current/lib/MIME/Types.pm Sat May 24 22:35:15 2008
@@ -1,11 +1,12 @@
-# Copyrights 1999,2001-2007 by Mark Overmeer.
+# Copyrights 1999,2001-2008 by Mark Overmeer.
 #  For other contributors see ChangeLog.
 # See the manual pages for details on the licensing terms.
-# Pod stripped from pm file by OODoc 1.03.
+# Pod stripped from pm file by OODoc 1.04.
 
 package MIME::Types;
 use vars '$VERSION';
-$VERSION = '1.23';
+$VERSION = '1.24';
+
 
 use strict;
 
@@ -414,7 +415,7 @@
 application/vnd.kde.kword	kwd,kwt
 application/vnd.kenameapp	htke
 application/vnd.kidspiration	kia
-application/vnd.Kinar		kne,knp,sdf
+application/vnd.Kinar		kne,knp
 application/vnd.google-earth.kml+xml			kml	8bit
 application/vnd.google-earth.kmz			kmz	8bit
 application/vnd.koan
@@ -477,7 +478,22 @@
 application/vnd.novadigm.EDM
 application/vnd.novadigm.EDX
 application/vnd.novadigm.EXT
+application/vnd.oasis.opendocument.text			odt
+application/vnd.oasis.opendocument.text-template	ott
+application/vnd.oasis.opendocument.text-web		oth
+application/vnd.oasis.opendocument.text-master		odm
+application/vnd.oasis.opendocument.graphics		odg
+application/vnd.oasis.opendocument.graphics-template	otg
+application/vnd.oasis.opendocument.presentation		odp
+application/vnd.oasis.opendocument.presentation-template	otp
+application/vnd.oasis.opendocument.spreadsheet		ods
+application/vnd.oasis.opendocument.spreadsheet-template	ots
+application/vnd.oasis.opendocument.chart		odc
+application/vnd.oasis.opendocument.formula		odf
+application/vnd.oasis.opendocument.database		odb
+application/vnd.oasis.opendocument.image		odi
 application/vnd.obn
+application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx quoted-printable
 application/vnd.osa.netdeploy
 application/vnd.palm		prc,pdb,pqa,oprc
 application/vnd.paos.xml
@@ -516,6 +532,13 @@
 application/vnd.sss-cod
 application/vnd.sss-dtf
 application/vnd.sss-ntf
+application/vnd.stardivision.chart	sds
+application/vnd.stardivision.calc	sdc
+application/vnd.stardivision.writer	sdw
+application/vnd.stardivision.writer-global	sgl
+application/vnd.stardivision.draw	sda
+application/vnd.stardivision.impress	sdd
+application/vnd.stardivision.math	sdf
 application/vnd.street-stream
 application/vnd.sun.xml.calc		sxc
 application/vnd.sun.xml.calc.template	stc
@@ -802,7 +825,7 @@
 message/http
 message/news								8bit
 message/partial								8bit
-message/rfc822								8bit
+message/rfc822				eml				8bit
 message/s-http
 message/sip
 message/sipfrag

Modified: branches/upstream/libmime-types-perl/current/lib/MIME/Types.pod
URL: http://svn.debian.org/wsvn/branches/upstream/libmime-types-perl/current/lib/MIME/Types.pod?rev=20390&op=diff
==============================================================================
--- branches/upstream/libmime-types-perl/current/lib/MIME/Types.pod (original)
+++ branches/upstream/libmime-types-perl/current/lib/MIME/Types.pod Sat May 24 22:35:15 2008
@@ -178,12 +178,12 @@
 
 =head1 SEE ALSO
 
-This module is part of MIME-Types distribution version 1.23,
-built on December 17, 2007. Website: F<http://perl.overmeer.net/mimetypes/>
+This module is part of MIME-Types distribution version 1.24,
+built on May 23, 2008. Website: F<http://perl.overmeer.net/mimetypes/>
 
 =head1 LICENSE
 
-Copyrights 1999,2001-2007 by Mark Overmeer. For other contributors see ChangeLog.
+Copyrights 1999,2001-2008 by Mark Overmeer. For other contributors see ChangeLog.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Modified: branches/upstream/libmime-types-perl/current/t/20types.t
URL: http://svn.debian.org/wsvn/branches/upstream/libmime-types-perl/current/t/20types.t?rev=20390&op=diff
==============================================================================
--- branches/upstream/libmime-types-perl/current/t/20types.t (original)
+++ branches/upstream/libmime-types-perl/current/t/20types.t Sat May 24 22:35:15 2008
@@ -22,7 +22,7 @@
 is($t->type, 'multipart/mixed');
 
 # No extensions, but a known, explicit encoding.
- at t = $a->type('message/rfc822');
+ at t = $a->type('message/external-body');
 cmp_ok(scalar @t, '==', 1);
 $t = $t[0];
 ok(not $t->extensions);




More information about the Pkg-perl-cvs-commits mailing list