r46170 - in /trunk/libpostscript-file-perl: Changes File.pm LICENSE MANIFEST META.yml Makefile.PL README debian/changelog debian/copyright lib/ t/fi05pstr.t t/release-pod-coverage.t t/release-pod-syntax.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed Oct 21 22:48:01 UTC 2009


Author: jawnsy-guest
Date: Wed Oct 21 22:47:55 2009
New Revision: 46170

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=46170
Log:
New upstream release

Added:
    trunk/libpostscript-file-perl/LICENSE
      - copied unchanged from r46169, branches/upstream/libpostscript-file-perl/current/LICENSE
    trunk/libpostscript-file-perl/lib/
      - copied from r46169, branches/upstream/libpostscript-file-perl/current/lib/
    trunk/libpostscript-file-perl/t/fi05pstr.t
      - copied unchanged from r46169, branches/upstream/libpostscript-file-perl/current/t/fi05pstr.t
    trunk/libpostscript-file-perl/t/release-pod-coverage.t
      - copied unchanged from r46169, branches/upstream/libpostscript-file-perl/current/t/release-pod-coverage.t
    trunk/libpostscript-file-perl/t/release-pod-syntax.t
      - copied unchanged from r46169, branches/upstream/libpostscript-file-perl/current/t/release-pod-syntax.t
Removed:
    trunk/libpostscript-file-perl/File.pm
Modified:
    trunk/libpostscript-file-perl/Changes
    trunk/libpostscript-file-perl/MANIFEST
    trunk/libpostscript-file-perl/META.yml
    trunk/libpostscript-file-perl/Makefile.PL
    trunk/libpostscript-file-perl/README
    trunk/libpostscript-file-perl/debian/changelog
    trunk/libpostscript-file-perl/debian/copyright

Modified: trunk/libpostscript-file-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpostscript-file-perl/Changes?rev=46170&op=diff
==============================================================================
--- trunk/libpostscript-file-perl/Changes (original)
+++ trunk/libpostscript-file-perl/Changes Wed Oct 21 22:47:55 2009
@@ -1,11 +1,25 @@
 Revision history for Perl extension PostScript::File.
+
+1.03   October 20, 2009
+	- Added pstr function/method
+	- Added embed_document method
+	- The dir & file parameters to new now actually work
+	- The file_ext parameter and {get,set}_file_ext methods allow
+	  you to change the way PostScript::File appends an extension
+	  to the output filename
+	- The PNG output added in 1.01 is now documented
+	- Using Ghostscript to generate PNG should work on Windows now
+	- Include resource types in %%DocumentSuppliedResources comment
+	- Fixed has_function to avoid false positives
+	- Include procset PostScript_File in %%DocumentSuppliedResources
+	- PostScript::File now requires Perl 5.8.0 or later
 
 1.02   September 21, 2009
 	- Now maintained by Christopher J. Madsen
 	- Stripping leading whitespace now works with Perl 5.10 (RT#49838)
 
 1.01	Wed Aug 27 19:23:26 GMT 2003
-	support for PNG format from GhostScript
+	support for PNG format from Ghostscript
 
 1.00	Wed May 14 12:05:50 GMT 2003
 	minor alterations

Modified: trunk/libpostscript-file-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpostscript-file-perl/MANIFEST?rev=46170&op=diff
==============================================================================
--- trunk/libpostscript-file-perl/MANIFEST (original)
+++ trunk/libpostscript-file-perl/MANIFEST Wed Oct 21 22:47:55 2009
@@ -1,10 +1,14 @@
 Changes
-File.pm
+LICENSE
 MANIFEST
+META.yml
 Makefile.PL
 README
+lib/PostScript/File.pm
 t/fi01simple.t
 t/fi02eps.t
 t/fi03debug.t
 t/fi04pages.t
-META.yml                                 Module meta-data (added by MakeMaker)
+t/fi05pstr.t
+t/release-pod-coverage.t
+t/release-pod-syntax.t

Modified: trunk/libpostscript-file-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpostscript-file-perl/META.yml?rev=46170&op=diff
==============================================================================
--- trunk/libpostscript-file-perl/META.yml (original)
+++ trunk/libpostscript-file-perl/META.yml Wed Oct 21 22:47:55 2009
@@ -1,27 +1,18 @@
---- #YAML:1.0
-name:               PostScript-File
-version:            1.02
-abstract:           Base class for creating Adobe PostScript files
+---
+abstract: 'Base class for creating Adobe PostScript files'
 author:
-    - Christopher J. Madsen <perl at cjmweb.net>
-license:            perl
-distribution_type:  module
-configure_requires:
-    ExtUtils::MakeMaker:  0
-build_requires:
-    ExtUtils::MakeMaker:  0
+  - 'Christopher Willmot <chris at willmot.co.uk>'
+  - 'Christopher J. Madsen <perl at cjmweb.net>'
+generated_by: 'Dist::Zilla version 1.092850'
+license: perl
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: PostScript-File
 requires:
-    File::Spec:     0
-    Sys::Hostname:  0
+  File::Spec: 0
+  File::Temp: 0
+  Sys::Hostname: 0
 resources:
-    bugtracker:  http://rt.cpan.org/Public/Dist/Display.html?Name=PostScript-File
-    license:     http://dev.perl.org/licenses/
-    repository:  git://github.com/madsen/postscript-file.git
-no_index:
-    directory:
-        - t
-        - inc
-generated_by:       ExtUtils::MakeMaker version 6.55_02
-meta-spec:
-    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
-    version:  1.4
+  repository: http://github.com/madsen/postscript-file
+version: 1.03

Modified: trunk/libpostscript-file-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpostscript-file-perl/Makefile.PL?rev=46170&op=diff
==============================================================================
--- trunk/libpostscript-file-perl/Makefile.PL (original)
+++ trunk/libpostscript-file-perl/Makefile.PL Wed Oct 21 22:47:55 2009
@@ -1,28 +1,22 @@
+
+use strict;
+use warnings;
+
 use ExtUtils::MakeMaker;
 
-my %parms = (
-    NAME		=> 'PostScript::File',
-    ABSTRACT_FROM	=> 'File.pm',
-#   AUTHOR		=> 'Christopher Willmot <chris at willmot.co.uk>',
-    AUTHOR		=> 'Christopher J. Madsen <perl at cjmweb.net>',
-    VERSION_FROM	=> 'File.pm',
-    PREREQ_PM		=> { File::Spec => 0,
-			     Sys::Hostname => 0 },
+WriteMakefile(
+  DISTNAME  => 'PostScript-File',
+  NAME      => 'PostScript::File',
+  AUTHOR    => "Christopher\ Willmot\ \<chris\@willmot\.co\.uk\>\,\ Christopher\ J\.\ Madsen\ \<perl\@cjmweb\.net\>",
+  ABSTRACT  => "Base\ class\ for\ creating\ Adobe\ PostScript\ files",
+  VERSION   => '1.03',
+  EXE_FILES => [ qw() ],
+  (eval { ExtUtils::MakeMaker->VERSION(6.31) } ? (LICENSE => 'perl') : ()),
+  PREREQ_PM    => {
+    "File::Spec" => '0',
+    "File::Temp" => '0',
+    "Sys::Hostname" => '0',
+  },
+  test => {TESTS => 't/*.t'}
 );
 
-if ($ExtUtils::MakeMaker::VERSION ge '6.30') {
-  $parms{LICENSE} = 'perl';
-}
-
-if ($ExtUtils::MakeMaker::VERSION ge '6.46') {
-  $parms{META_MERGE} = {
-    resources => {
-      bugtracker  =>
-        'http://rt.cpan.org/Public/Dist/Display.html?Name=PostScript-File',
-      license     => 'http://dev.perl.org/licenses/',
-      repository  => 'git://github.com/madsen/postscript-file.git',
-    }
-  };
-} # end if MakeMaker 6.46
-
-WriteMakefile(%parms);

Modified: trunk/libpostscript-file-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpostscript-file-perl/README?rev=46170&op=diff
==============================================================================
--- trunk/libpostscript-file-perl/README (original)
+++ trunk/libpostscript-file-perl/README Wed Oct 21 22:47:55 2009
@@ -1,5 +1,4 @@
-PostScript::File
-================
+PostScript::File version 1.03, released October 20, 2009
 
 This module produces the outline for an Adobe PostScript file. It provides
 convenient routines for writing postscript directly, including reporting
@@ -7,6 +6,8 @@
 the functions provided are also suitable for use in other modules.  See one of
 these modules for a top-level object.
 
+    PostScript::Calendar
+    PostScript::Report
     PostScript::Graph::XY
     PostScript::Graph::Bar
     Finance::Shares::Chart
@@ -14,6 +15,8 @@
 It is considered beta code as the interface has remained stable over many months
 of use.  However, not all the features have been tested properly so experiment
 with caution.
+
+
 
 INSTALLATION
 
@@ -24,6 +27,8 @@
    make test
    make install
 
+
+
 DEPENDENCIES
 
 This module requires these other modules and libraries, although they are both
@@ -32,9 +37,26 @@
   File::Spec
   Sys::Hostname
 
-SEE ALSO
 
-  PostScript::Graph::Paper
+
+CHANGES
+    Here's what's new in version 1.03 of PostScript::File:
+    (See the file "Changes" for the full revision history.)
+
+	- Added pstr function/method
+	- Added embed_document method
+	- The dir & file parameters to new now actually work
+	- The file_ext parameter and {get,set}_file_ext methods allow
+	  you to change the way PostScript::File appends an extension
+	  to the output filename
+	- The PNG output added in 1.01 is now documented
+	- Using Ghostscript to generate PNG should work on Windows now
+	- Include resource types in %%DocumentSuppliedResources comment
+	- Fixed has_function to avoid false positives
+	- Include procset PostScript_File in %%DocumentSuppliedResources
+	- PostScript::File now requires Perl 5.8.0 or later
+
+
 
 COPYRIGHT AND LICENCE
 

Modified: trunk/libpostscript-file-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpostscript-file-perl/debian/changelog?rev=46170&op=diff
==============================================================================
--- trunk/libpostscript-file-perl/debian/changelog (original)
+++ trunk/libpostscript-file-perl/debian/changelog Wed Oct 21 22:47:55 2009
@@ -1,3 +1,9 @@
+libpostscript-file-perl (1.03-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Jonathan Yu <jawnsy at cpan.org>  Wed, 21 Oct 2009 15:14:10 -0400
+
 libpostscript-file-perl (1.02-1) unstable; urgency=low
 
   [ Jonathan Yu ]

Modified: trunk/libpostscript-file-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpostscript-file-perl/debian/copyright?rev=46170&op=diff
==============================================================================
--- trunk/libpostscript-file-perl/debian/copyright (original)
+++ trunk/libpostscript-file-perl/debian/copyright Wed Oct 21 22:47:55 2009
@@ -8,6 +8,10 @@
 Copyright: 2009, Christopher J. Madsen <perl at cjmweb.net>
  2002-2003, Christopher P Willmot <chris at willmot.co.uk>
 License-Alias: Perl
+License: Artistic | GPL-1+
+
+Files: t/fi05pstr.t 
+Copyright: 2009, Christopher J. Madsen <cjm at pobox.com>
 License: Artistic | GPL-1+
 
 Files: debian/*




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