r46647 - in /trunk/libfile-spec-perl: ./ debian/ lib/File/ t/

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Nov 1 20:10:57 UTC 2009


Author: jawnsy-guest
Date: Sun Nov  1 20:10:52 2009
New Revision: 46647

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=46647
Log:
* New upstream release
* Standards-Version 3.8.3 (drop perl version dependency)
* Added myself to Uploaders and Copyright
* Move lintian-overrides -> libfile-spec-perl.lintian-overrides
* Rewrite control description
* Use new short debhelper rules format
* Refreshed copyright information per upstream

Added:
    trunk/libfile-spec-perl/debian/libfile-spec-perl.lintian-overrides
      - copied unchanged from r46645, trunk/libfile-spec-perl/debian/lintian-overrides
Removed:
    trunk/libfile-spec-perl/Build.PL
    trunk/libfile-spec-perl/SIGNATURE
    trunk/libfile-spec-perl/debian/lintian-overrides
Modified:
    trunk/libfile-spec-perl/Changes
    trunk/libfile-spec-perl/Cwd.pm
    trunk/libfile-spec-perl/Cwd.xs
    trunk/libfile-spec-perl/MANIFEST
    trunk/libfile-spec-perl/META.yml
    trunk/libfile-spec-perl/debian/changelog
    trunk/libfile-spec-perl/debian/control
    trunk/libfile-spec-perl/debian/copyright
    trunk/libfile-spec-perl/debian/rules
    trunk/libfile-spec-perl/lib/File/Spec.pm
    trunk/libfile-spec-perl/t/cwd.t
    trunk/libfile-spec-perl/t/taint.t
    trunk/libfile-spec-perl/t/win32.t

Modified: trunk/libfile-spec-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-spec-perl/Changes?rev=46647&op=diff
==============================================================================
--- trunk/libfile-spec-perl/Changes (original)
+++ trunk/libfile-spec-perl/Changes Sun Nov  1 20:10:52 2009
@@ -1,4 +1,18 @@
 Revision history for Perl distribution PathTools.
+
+3.31 - Sun Nov  1 15:15:00 2009
+
+- Do not pack a Build.PL to avoid a circular dependency involving
+  ExtUtils::CBuilder (PathTools RT #50749)
+
+3.30_02 - Tue Sep 29 08:17:00 2009
+
+- Remove more special logic required for core perl.
+
+3.30_01 - Mon Sep 21 14:39:00 2009
+
+- Merge changes from core perl.
+  (Mostly changes regarding the lib->ext migration)
 
 3.30 - Sun May 10 10:55:00 2009
 

Modified: trunk/libfile-spec-perl/Cwd.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-spec-perl/Cwd.pm?rev=46647&op=diff
==============================================================================
--- trunk/libfile-spec-perl/Cwd.pm (original)
+++ trunk/libfile-spec-perl/Cwd.pm Sun Nov  1 20:10:52 2009
@@ -171,7 +171,7 @@
 use Exporter;
 use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION);
 
-$VERSION = '3.30';
+$VERSION = '3.31';
 my $xs_version = $VERSION;
 $VERSION = eval $VERSION;
 
@@ -748,7 +748,7 @@
 }
 
 sub _win32_cwd {
-    if (defined &DynaLoader::boot_DynaLoader) {
+    if (eval 'defined &DynaLoader::boot_DynaLoader') {
 	$ENV{'PWD'} = Win32::GetCwd();
     }
     else { # miniperl

Modified: trunk/libfile-spec-perl/Cwd.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-spec-perl/Cwd.xs?rev=46647&op=diff
==============================================================================
--- trunk/libfile-spec-perl/Cwd.xs (original)
+++ trunk/libfile-spec-perl/Cwd.xs Sun Nov  1 20:10:52 2009
@@ -1,11 +1,9 @@
 #include "EXTERN.h"
 #include "perl.h"
 #include "XSUB.h"
-#ifndef NO_PPPORT_H
-#   define NEED_my_strlcpy
-#   define NEED_my_strlcat
-#   include "ppport.h"
-#endif
+#define NEED_my_strlcpy
+#define NEED_my_strlcat
+#include "ppport.h"
 
 #ifdef I_UNISTD
 #   include <unistd.h>

Modified: trunk/libfile-spec-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-spec-perl/MANIFEST?rev=46647&op=diff
==============================================================================
--- trunk/libfile-spec-perl/MANIFEST (original)
+++ trunk/libfile-spec-perl/MANIFEST Sun Nov  1 20:10:52 2009
@@ -1,4 +1,3 @@
-Build.PL
 Changes
 Cwd.pm
 Cwd.xs
@@ -29,4 +28,3 @@
 t/taint.t
 t/tmpdir.t
 t/win32.t
-SIGNATURE    Added here by Module::Build

Modified: trunk/libfile-spec-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-spec-perl/META.yml?rev=46647&op=diff
==============================================================================
--- trunk/libfile-spec-perl/META.yml (original)
+++ trunk/libfile-spec-perl/META.yml Sun Nov  1 20:10:52 2009
@@ -1,55 +1,25 @@
----
-name: PathTools
-version: 3.30
-author:
-  - 'Maintained by Ken Williams <KWILLIAMS at cpan.org>'
-abstract: Tools for working with paths and file specs across platforms
-license: perl
-resources:
-  license: ~
+--- #YAML:1.0
+name:               PathTools
+version:            3.31
+abstract:           ~
+author:  []
+license:            unknown
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
 requires:
-  Carp: 0
-  File::Basename: 0
-  perl: 5.005
-build_requires:
-  ExtUtils::CBuilder: 0
-  File::Path: 0
-  Module::Build: 0.19
-  Scalar::Util: 0
-  Test: 0
-dynamic_config: 1
-provides:
-  Cwd:
-    file: Cwd.pm
-    version: 3.30
-  File::Spec:
-    file: lib/File/Spec.pm
-    version: 3.30
-  File::Spec::Cygwin:
-    file: lib/File/Spec/Cygwin.pm
-    version: 3.30
-  File::Spec::Epoc:
-    file: lib/File/Spec/Epoc.pm
-    version: 3.30
-  File::Spec::Functions:
-    file: lib/File/Spec/Functions.pm
-    version: 3.30
-  File::Spec::Mac:
-    file: lib/File/Spec/Mac.pm
-    version: 3.30
-  File::Spec::OS2:
-    file: lib/File/Spec/OS2.pm
-    version: 3.30
-  File::Spec::Unix:
-    file: lib/File/Spec/Unix.pm
-    version: 3.30
-  File::Spec::VMS:
-    file: lib/File/Spec/VMS.pm
-    version: 3.30
-  File::Spec::Win32:
-    file: lib/File/Spec/Win32.pm
-    version: 3.30
-generated_by: Module::Build version 0.31012
+    Carp:            0
+    File::Basename:  0
+    File::Path:      0
+    Scalar::Util:    0
+    Test:            0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.54
 meta-spec:
-  url: http://module-build.sourceforge.net/META-spec-v1.2.html
-  version: 1.2
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: trunk/libfile-spec-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-spec-perl/debian/changelog?rev=46647&op=diff
==============================================================================
--- trunk/libfile-spec-perl/debian/changelog (original)
+++ trunk/libfile-spec-perl/debian/changelog Sun Nov  1 20:10:52 2009
@@ -1,4 +1,13 @@
-libfile-spec-perl (3.3000-2) UNRELEASED; urgency=low
+libfile-spec-perl (3.3100-1) UNRELEASED; urgency=low
+
+  [ Jonathan Yu ]
+  * New upstream release
+  * Standards-Version 3.8.3 (drop perl version dependency)
+  * Added myself to Uploaders and Copyright
+  * Move lintian-overrides -> libfile-spec-perl.lintian-overrides
+  * Rewrite control description
+  * Use new short debhelper rules format
+  * Refreshed copyright information per upstream
 
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
@@ -6,7 +15,7 @@
   [ Ryan Niebur ]
   * Update ryan52's email address
 
- -- Ryan Niebur <ryan at debian.org>  Fri, 25 Sep 2009 00:24:51 -0700
+ -- Jonathan Yu <jawnsy at cpan.org>  Sun, 01 Nov 2009 11:16:23 -0500
 
 libfile-spec-perl (3.3000-1) unstable; urgency=low
 

Modified: trunk/libfile-spec-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-spec-perl/debian/control?rev=46647&op=diff
==============================================================================
--- trunk/libfile-spec-perl/debian/control (original)
+++ trunk/libfile-spec-perl/debian/control Sun Nov  1 20:10:52 2009
@@ -1,12 +1,12 @@
 Source: libfile-spec-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7), perl (>= 5.8.0-7)
+Build-Depends: perl, debhelper (>= 7)
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Bastian Blank <waldi at debian.org>, Damyan Ivanov <dmn at debian.org>,
- gregor herrmann <gregoa at debian.org>,
+ gregor herrmann <gregoa at debian.org>, Jonathan Yu <jawnsy at cpan.org>,
  Jose Luis Rivas <ghostbar38 at gmail.com>, Ryan Niebur <ryan at debian.org>
-Standards-Version: 3.8.1
+Standards-Version: 3.8.3
 Homepage: http://search.cpan.org/dist/PathTools/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libfile-spec-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libfile-spec-perl/
@@ -17,11 +17,11 @@
 Conflicts: libpathtools-perl (<< 3.2501-1)
 Replaces: libpathtools-perl (<< 3.2501-1)
 Provides: libpathtools-perl
-Description: tools for working with paths and file specs across platforms
- The File::Spec distribution provides a group of modules for working 
- with paths and file specs across platforms. It also includes Cwd.
+Description: collection of tools for working with paths across platforms
+ File::Spec is a Perl module that provides a variety of modules and routines
+ useful for working with paths and file specifications in a cross-platform
+ manner. It also includes Cwd.
  .
- Please note that the modules from this package are already included in perl
- .
- This package is provided for people who need the newer versions of
- File::Spec from CPAN.
+ Please note that the modules from this package are already included in any
+ standard Perl installation since version 5.4.5; this package is provided
+ for those that need newer versions of this distribution.

Modified: trunk/libfile-spec-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-spec-perl/debian/copyright?rev=46647&op=diff
==============================================================================
--- trunk/libfile-spec-perl/debian/copyright (original)
+++ trunk/libfile-spec-perl/debian/copyright Sun Nov  1 20:10:52 2009
@@ -1,20 +1,18 @@
 Format-Specification:
     http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
-Upstream-Maintainer: Maintained by Ken Williams <KWILLIAMS at cpan.org>
+Upstream-Maintainer: Ken Williams <KWILLIAMS at cpan.org>
 Upstream-Source: http://search.cpan.org/dist/PathTools/
 Upstream-Name: PathTools
 
 Files: *
-Copyright: © 2004 by the Perl 5 Porters.  All rights reserved.
+Copyright: 2004, Perl 5 Porters
+License-Alias: Perl
 License: Artistic | GPL-1+
- This program is free software; you can redistribute it and/or modify it
- under the same terms as Perl itself.
 
-Files: Cwd*
-Copyright: © 2004 by the Perl 5 Porters.  All rights reserved.
-           © 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>
-           © 1994 by the Regents of the University of California.  All rights
-           reserved.
+Files: Cwd.xs, Cwd.pm
+Copyright: 2004, Perl 5 Porters
+ 2003, Constantin S. Svintsoff <kostik at iclub.nsu.ru>
+ 1994, Regents of the University of California
 License: GPL-1+ | Artistic, BSD
  This program is free software; you can redistribute it and/or modify it under
  the same terms as Perl itself.
@@ -51,16 +49,20 @@
  SUCH DAMAGE.
 
 Files: ppport.h
-Copyright: Version 3.x, Copyright (c) 2004-2007, Marcus Holland-Moritz.
-Copyright: Version 2.x, Copyright (C) 2001, Paul Marquess.
-Copyright: Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
-License: GPL-1+|Artistic
- This program is free software; you can redistribute it and/or
- modify it under the same terms as Perl itself.
+Copyright: 2004-2009, Marcus Holland-Moritz <mhx-cpan at gmx.net>
+ 2001, Paul Marquess <pmqs at cpan.org> (Version 2.x)
+ 1999, Kenneth Albanowski <kjahds at kjahds.com> (Version 1.x)
+License-Alias: Perl
+License: Artistic | GPL-1+
 
 Files: debian/*
-Copyright: © 2007-2008, members of the Debian Perl Group, cf. debian/changelog
-           © 2007,      Bastian Blank <waldi at debian.org>
+Copyright: 2009, Jonathan Yu <jawnsy at cpan.org>
+ 2009, Ryan Niebur <ryanryan52 at gmail.com>
+ 2008, Jose Luis Rivas <ghostbar38 at gmail.com>
+ 2008, gregor herrmann <gregoa at debian.org>
+ 2008, Damyan Ivanov <dmn at debian.org>
+ 2008, Roberto C. Sanchez <roberto at debian.org>
+ 2007, Bastian Blank <waldi at debian.org>
 License: other
  It is assumed that all Debian maintairers used a license compatible with
  upstream's.

Modified: trunk/libfile-spec-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-spec-perl/debian/rules?rev=46647&op=diff
==============================================================================
--- trunk/libfile-spec-perl/debian/rules (original)
+++ trunk/libfile-spec-perl/debian/rules Sun Nov  1 20:10:52 2009
@@ -1,23 +1,4 @@
 #!/usr/bin/make -f
 
-build: build-stamp
-build-stamp:
-	dh build
-	touch $@
-
-clean:
+%:
 	dh $@
-
-install: install-stamp
-install-stamp: build-stamp
-	dh install
-	touch $@
-
-binary-arch: install
-	dh $@
-
-binary-indep:
-
-binary: binary-arch binary-indep
-
-.PHONY: binary binary-arch binary-indep install clean build

Modified: trunk/libfile-spec-perl/lib/File/Spec.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-spec-perl/lib/File/Spec.pm?rev=46647&op=diff
==============================================================================
--- trunk/libfile-spec-perl/lib/File/Spec.pm (original)
+++ trunk/libfile-spec-perl/lib/File/Spec.pm Sun Nov  1 20:10:52 2009
@@ -3,7 +3,7 @@
 use strict;
 use vars qw(@ISA $VERSION);
 
-$VERSION = '3.30';
+$VERSION = '3.31';
 $VERSION = eval $VERSION;
 
 my %module = (MacOS   => 'Mac',

Modified: trunk/libfile-spec-perl/t/cwd.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-spec-perl/t/cwd.t?rev=46647&op=diff
==============================================================================
--- trunk/libfile-spec-perl/t/cwd.t (original)
+++ trunk/libfile-spec-perl/t/cwd.t Sun Nov  1 20:10:52 2009
@@ -1,15 +1,11 @@
 #!./perl -w
 
-BEGIN {
-    if ($ENV{PERL_CORE}) {
-        chdir 't';
-        @INC = '../lib';
-    }
-}
+use strict;
+
 use Cwd;
+
 chdir 't';
 
-use strict;
 use Config;
 use File::Spec;
 use File::Path;
@@ -218,11 +214,6 @@
 
     rmtree($test_dirs[0], 0, 0);
     1 while unlink $file;
-}
-
-if ($ENV{PERL_CORE}) {
-    chdir '../ext/Cwd/t';
-    unshift @INC, '../../../lib';
 }
 
 # Make sure we can run abs_path() on files, not just directories

Modified: trunk/libfile-spec-perl/t/taint.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-spec-perl/t/taint.t?rev=46647&op=diff
==============================================================================
--- trunk/libfile-spec-perl/t/taint.t (original)
+++ trunk/libfile-spec-perl/t/taint.t Sun Nov  1 20:10:52 2009
@@ -3,14 +3,8 @@
 
 use strict;
 
-BEGIN {
-    if ($ENV{PERL_CORE}) {
-        chdir 't';
-        @INC = '../lib';
-    }
-}
 use Cwd;
-chdir 't';
+chdir 't' unless $ENV{PERL_CORE};
 
 use File::Spec;
 use lib File::Spec->catdir('t', 'lib');

Modified: trunk/libfile-spec-perl/t/win32.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-spec-perl/t/win32.t?rev=46647&op=diff
==============================================================================
--- trunk/libfile-spec-perl/t/win32.t (original)
+++ trunk/libfile-spec-perl/t/win32.t Sun Nov  1 20:10:52 2009
@@ -1,10 +1,4 @@
 #!./perl
-
-BEGIN {
-    if ($ENV{PERL_CORE}) {
-        @INC = '../lib';
-    }
-}
 
 use File::Spec;
 use lib File::Spec->catdir('t', 'lib');




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