r20687 - in /trunk/libvalidate-net-perl: Changes LICENSE MANIFEST META.yml Makefile.PL README debian/changelog inc/ lib/Validate/Net.pm t/01_compile.t t/01_main.t t/02_main.t t/97_meta.t t/98_pod.t t/99_pmv.t
gregoa at users.alioth.debian.org
gregoa at users.alioth.debian.org
Wed Jun 4 17:15:08 UTC 2008
Author: gregoa
Date: Wed Jun 4 17:15:07 2008
New Revision: 20687
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=20687
Log:
New upstream release.
Added:
trunk/libvalidate-net-perl/inc/
- copied from r20686, branches/upstream/libvalidate-net-perl/current/inc/
trunk/libvalidate-net-perl/t/01_compile.t
- copied unchanged from r20686, branches/upstream/libvalidate-net-perl/current/t/01_compile.t
trunk/libvalidate-net-perl/t/02_main.t
- copied unchanged from r20686, branches/upstream/libvalidate-net-perl/current/t/02_main.t
trunk/libvalidate-net-perl/t/97_meta.t
- copied unchanged from r20686, branches/upstream/libvalidate-net-perl/current/t/97_meta.t
trunk/libvalidate-net-perl/t/98_pod.t
- copied unchanged from r20686, branches/upstream/libvalidate-net-perl/current/t/98_pod.t
trunk/libvalidate-net-perl/t/99_pmv.t
- copied unchanged from r20686, branches/upstream/libvalidate-net-perl/current/t/99_pmv.t
Removed:
trunk/libvalidate-net-perl/t/01_main.t
Modified:
trunk/libvalidate-net-perl/Changes
trunk/libvalidate-net-perl/LICENSE
trunk/libvalidate-net-perl/MANIFEST
trunk/libvalidate-net-perl/META.yml
trunk/libvalidate-net-perl/Makefile.PL
trunk/libvalidate-net-perl/README
trunk/libvalidate-net-perl/debian/changelog
trunk/libvalidate-net-perl/lib/Validate/Net.pm
Modified: trunk/libvalidate-net-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libvalidate-net-perl/Changes?rev=20687&op=diff
==============================================================================
--- trunk/libvalidate-net-perl/Changes (original)
+++ trunk/libvalidate-net-perl/Changes Wed Jun 4 17:15:07 2008
@@ -1,6 +1,12 @@
Revision history for Perl extension Validate::Net.
-0.5 Thu Dec 4 2003
+0.6 Tue 3 Jun 2008
+ - Moving into SVN repository
+ - Upgrading to Module::Install 0.75
+ - Upgrading tests to current usage style
+ - Removing File::Spec dependency
+
+0.5 Thu 4 Dec 2003
- Fixed the tests to be Win32 compatible
0.4 missing
Modified: trunk/libvalidate-net-perl/LICENSE
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libvalidate-net-perl/LICENSE?rev=20687&op=diff
==============================================================================
--- trunk/libvalidate-net-perl/LICENSE (original)
+++ trunk/libvalidate-net-perl/LICENSE Wed Jun 4 17:15:07 2008
@@ -1,3 +1,4 @@
+
Terms of Perl itself
a) the GNU General Public License as published by the Free
Modified: trunk/libvalidate-net-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libvalidate-net-perl/MANIFEST?rev=20687&op=diff
==============================================================================
--- trunk/libvalidate-net-perl/MANIFEST (original)
+++ trunk/libvalidate-net-perl/MANIFEST Wed Jun 4 17:15:07 2008
@@ -1,8 +1,20 @@
Changes
+inc/Module/Install.pm
+inc/Module/Install/Base.pm
+inc/Module/Install/Can.pm
+inc/Module/Install/Fetch.pm
+inc/Module/Install/Makefile.pm
+inc/Module/Install/Metadata.pm
+inc/Module/Install/Win32.pm
+inc/Module/Install/WriteAll.pm
lib/Validate/Net.pm
LICENSE
Makefile.PL
MANIFEST This list of files
+META.yml
README
-t/01_main.t
-META.yml Module meta-data (added by MakeMaker)
+t/01_compile.t
+t/02_main.t
+t/97_meta.t
+t/98_pod.t
+t/99_pmv.t
Modified: trunk/libvalidate-net-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libvalidate-net-perl/META.yml?rev=20687&op=diff
==============================================================================
--- trunk/libvalidate-net-perl/META.yml (original)
+++ trunk/libvalidate-net-perl/META.yml Wed Jun 4 17:15:07 2008
@@ -1,13 +1,21 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
-name: Validate-Net
-version: 0.5
-version_from: lib/Validate/Net.pm
-installdirs: site
+---
+abstract: 'Format validation for Net:: related strings'
+author:
+ - 'Adam Kennedy <adamk at cpan.org>'
+distribution_type: module
+generated_by: 'Module::Install version 0.75'
+license: perl
+meta-spec:
+ url: http://module-build.sourceforge.net/META-spec-v1.3.html
+ version: 1.3
+module_name: Validate::Net
+name: Validate-Net
+no_index:
+ directory:
+ - inc
+ - t
requires:
- Class::Default: 0.2
- File::Spec: 0.83
- Test::More: 0
-
-distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.16
+ Class::Default: 0.02
+ Test::More: 0.42
+ perl: 5.005
+version: 0.6
Modified: trunk/libvalidate-net-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libvalidate-net-perl/Makefile.PL?rev=20687&op=diff
==============================================================================
--- trunk/libvalidate-net-perl/Makefile.PL (original)
+++ trunk/libvalidate-net-perl/Makefile.PL Wed Jun 4 17:15:07 2008
@@ -1,18 +1,7 @@
-require 5.000;
-use ExtUtils::MakeMaker;
-WriteMakefile(
- 'NAME' => 'Validate::Net',
- 'VERSION_FROM' => 'lib/Validate/Net.pm',
- 'PREREQ_PM' => {
- # For the module itself
- 'Class::Default' => 0.2,
+use inc::Module::Install 0.75;
- # For the tests
- 'File::Spec' => 0.83,
- 'Test::More' => 0,
- },
- ($] >= 5.005) ? (
- 'AUTHOR' => 'Adam Kennedy (cpan at ali.as)',
- 'ABSTRACT' => 'Provides standalone validation of Net:: related strings',
- ) : (),
-);
+all_from 'lib/Validate/Net.pm';
+requires 'Class::Default' => '0.02';
+requires 'Test::More' => '0.42';
+
+WriteAll;
Modified: trunk/libvalidate-net-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libvalidate-net-perl/README?rev=20687&op=diff
==============================================================================
--- trunk/libvalidate-net-perl/README (original)
+++ trunk/libvalidate-net-perl/README Wed Jun 4 17:15:07 2008
@@ -71,20 +71,23 @@
Add "dns" support for host names
SUPPORT
- Contact the author
+ Bugs should be reported via the CPAN bug tracking system
+
+ <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Validate-Net>
+
+ For other inquiries, contact the author
AUTHOR
- Adam Kennedy
- cpan at ali.as
- http://ali.as/
+ Adam Kennedy <adamk at cpan.org>
SEE ALSO
Net::*
COPYRIGHT
- Copyright (c) 2002-2003 Adam Kennedy. All rights reserved. This program
- is free software; you can redistribute it and/or modify it under the
- same terms as Perl itself.
+ Copyright 2002 - 2008 Adam Kennedy.
+
+ This program is free software; you can redistribute it and/or modify it
+ under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included
with this module.
Modified: trunk/libvalidate-net-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libvalidate-net-perl/debian/changelog?rev=20687&op=diff
==============================================================================
--- trunk/libvalidate-net-perl/debian/changelog (original)
+++ trunk/libvalidate-net-perl/debian/changelog Wed Jun 4 17:15:07 2008
@@ -1,3 +1,9 @@
+libvalidate-net-perl (0.6-1) UNRELEASED; urgency=low
+
+ * New upstream release.
+
+ -- gregor herrmann <gregoa at debian.org> Wed, 04 Jun 2008 19:13:19 +0200
+
libvalidate-net-perl (0.5-3) unstable; urgency=low
[ gregor herrmann ]
Modified: trunk/libvalidate-net-perl/lib/Validate/Net.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libvalidate-net-perl/lib/Validate/Net.pm?rev=20687&op=diff
==============================================================================
--- trunk/libvalidate-net-perl/lib/Validate/Net.pm (original)
+++ trunk/libvalidate-net-perl/lib/Validate/Net.pm Wed Jun 4 17:15:07 2008
@@ -6,15 +6,16 @@
# We use Class::Default to allow us to create a "default" validator
# which has a "medium" setting. Settings are discussed later.
+use 5.005;
use strict;
use base 'Class::Default';
# Globals
use vars qw{$VERSION $errstr $reason};
BEGIN {
- $VERSION = 0.5;
- $errstr = '';
- $reason = ''
+ $VERSION = '0.6';
+ $errstr = '';
+ $reason = ''
}
@@ -286,13 +287,15 @@
=head1 SUPPORT
-Contact the author
+Bugs should be reported via the CPAN bug tracking system
+
+L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Validate-Net>
+
+For other inquiries, contact the author
=head1 AUTHOR
- Adam Kennedy
- cpan at ali.as
- http://ali.as/
+Adam Kennedy E<lt>adamk at cpan.orgE<gt>
=head1 SEE ALSO
@@ -300,7 +303,8 @@
=head1 COPYRIGHT
-Copyright (c) 2002-2003 Adam Kennedy. All rights reserved.
+Copyright 2002 - 2008 Adam Kennedy.
+
This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
More information about the Pkg-perl-cvs-commits
mailing list