r2748 - in /packages/libclass-inspector-perl/branches/upstream/current: Changes MANIFEST META.yml Makefile.PL inc/Module/AutoInstall.pm inc/Module/Install/AutoInstall.pm inc/Module/Install/Include.pm lib/Class/Inspector.pm

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Wed May 10 11:43:39 UTC 2006


Author: eloy
Date: Wed May 10 11:43:38 2006
New Revision: 2748

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=2748
Log:
Load /tmp/tmp.VxZFW25565/libclass-inspector-perl-1.16 into
packages/libclass-inspector-perl/branches/upstream/current.

Removed:
    packages/libclass-inspector-perl/branches/upstream/current/inc/Module/AutoInstall.pm
    packages/libclass-inspector-perl/branches/upstream/current/inc/Module/Install/AutoInstall.pm
    packages/libclass-inspector-perl/branches/upstream/current/inc/Module/Install/Include.pm
Modified:
    packages/libclass-inspector-perl/branches/upstream/current/Changes
    packages/libclass-inspector-perl/branches/upstream/current/MANIFEST
    packages/libclass-inspector-perl/branches/upstream/current/META.yml
    packages/libclass-inspector-perl/branches/upstream/current/Makefile.PL
    packages/libclass-inspector-perl/branches/upstream/current/lib/Class/Inspector.pm

Modified: packages/libclass-inspector-perl/branches/upstream/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libclass-inspector-perl/branches/upstream/current/Changes?rev=2748&op=diff
==============================================================================
--- packages/libclass-inspector-perl/branches/upstream/current/Changes (original)
+++ packages/libclass-inspector-perl/branches/upstream/current/Changes Wed May 10 11:43:38 2006
@@ -1,11 +1,15 @@
 Revision history for Perl extension Class::Inspector.
 
+1.16 Wed 10 May 2006
+	- This release contains only build-time changes
+	- AutoInstall is only needed for options, so remove auto_install
+
 1.15 Sun  7 May 2006
-	- No functional changes
+	- This release contains only build-time changes
 	- Upgrading to Module::Install 0.62
 
 1.14 Sun  8 Apr 2006
-	- No functional changes
+	- This release contains only build-time changes
 	- Moved from older CVS to newer SVN repository
 	- Upgraded to Module::Install 0.61
 

Modified: packages/libclass-inspector-perl/branches/upstream/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libclass-inspector-perl/branches/upstream/current/MANIFEST?rev=2748&op=diff
==============================================================================
--- packages/libclass-inspector-perl/branches/upstream/current/MANIFEST (original)
+++ packages/libclass-inspector-perl/branches/upstream/current/MANIFEST Wed May 10 11:43:38 2006
@@ -1,11 +1,8 @@
 Changes
-inc/Module/AutoInstall.pm
 inc/Module/Install.pm
-inc/Module/Install/AutoInstall.pm
 inc/Module/Install/Base.pm
 inc/Module/Install/Can.pm
 inc/Module/Install/Fetch.pm
-inc/Module/Install/Include.pm
 inc/Module/Install/Makefile.pm
 inc/Module/Install/Metadata.pm
 inc/Module/Install/Win32.pm

Modified: packages/libclass-inspector-perl/branches/upstream/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libclass-inspector-perl/branches/upstream/current/META.yml?rev=2748&op=diff
==============================================================================
--- packages/libclass-inspector-perl/branches/upstream/current/META.yml (original)
+++ packages/libclass-inspector-perl/branches/upstream/current/META.yml Wed May 10 11:43:38 2006
@@ -5,7 +5,7 @@
     - t
 generated_by: Module::Install version 0.62
 distribution_type: module
-version: 1.15
+version: 1.16
 name: Class-Inspector
 author: Adam Kennedy <cpan at ali.as>
 license: perl

Modified: packages/libclass-inspector-perl/branches/upstream/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libclass-inspector-perl/branches/upstream/current/Makefile.PL?rev=2748&op=diff
==============================================================================
--- packages/libclass-inspector-perl/branches/upstream/current/Makefile.PL (original)
+++ packages/libclass-inspector-perl/branches/upstream/current/Makefile.PL Wed May 10 11:43:38 2006
@@ -5,5 +5,4 @@
 requires       'File::Spec' => '0.80';
 build_requires 'Test::More' => '0.47';
 
-auto_install;
 WriteAll;

Modified: packages/libclass-inspector-perl/branches/upstream/current/lib/Class/Inspector.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libclass-inspector-perl/branches/upstream/current/lib/Class/Inspector.pm?rev=2748&op=diff
==============================================================================
--- packages/libclass-inspector-perl/branches/upstream/current/lib/Class/Inspector.pm (original)
+++ packages/libclass-inspector-perl/branches/upstream/current/lib/Class/Inspector.pm Wed May 10 11:43:38 2006
@@ -39,24 +39,22 @@
 
 =cut
 
-# Load Overhead: 236k
-
 use 5.005;
 # We don't want to use strict refs, since we do a lot of things in here
 # that arn't strict refs friendly.
-use strict     qw{vars subs};
+use strict qw{vars subs};
 use File::Spec ();
 
 # Globals
 use vars qw{$VERSION $RE_IDENT $RE_CLASS $UNIX};
 BEGIN {
-	$VERSION = '1.15';
+	$VERSION = '1.16';
 
 	# Predefine some regexs
 	$RE_IDENT = qr/\A[^\W\d]\w*\z/s;
 	$RE_CLASS = qr/\A[^\W\d]\w*(?:(?:'|::)[^\W\d]\w*)*\z/s;
 
-	# Are we on Unix?
+	# Are we on something Unix-like?
 	$UNIX = !! ( $File::Spec::ISA[0] eq 'File::Spec::Unix' );
 }
 




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