r5049 - in /packages/libroman-perl/trunk: Changes MANIFEST META.yml
Makefile.PL README Roman.pm debian/changelog debian/control
debian/rules lib/ t/
gregoa-guest at users.alioth.debian.org
gregoa-guest at users.alioth.debian.org
Fri Apr 13 18:57:25 UTC 2007
Author: gregoa-guest
Date: Fri Apr 13 18:57:25 2007
New Revision: 5049
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=5049
Log:
* New upstream release.
* Enable tests in debian/rules (now there are tests) and add
libtest-pod-perl, libtest-pod-coverage-perl to Build-Depends-Indep.
Added:
packages/libroman-perl/trunk/Changes
- copied unchanged from r5048, packages/libroman-perl/branches/upstream/current/Changes
packages/libroman-perl/trunk/MANIFEST
- copied unchanged from r5048, packages/libroman-perl/branches/upstream/current/MANIFEST
packages/libroman-perl/trunk/META.yml
- copied unchanged from r5048, packages/libroman-perl/branches/upstream/current/META.yml
packages/libroman-perl/trunk/lib/
- copied from r5048, packages/libroman-perl/branches/upstream/current/lib/
packages/libroman-perl/trunk/t/
- copied from r5048, packages/libroman-perl/branches/upstream/current/t/
Removed:
packages/libroman-perl/trunk/Roman.pm
Modified:
packages/libroman-perl/trunk/Makefile.PL
packages/libroman-perl/trunk/README
packages/libroman-perl/trunk/debian/changelog
packages/libroman-perl/trunk/debian/control
packages/libroman-perl/trunk/debian/rules
Modified: packages/libroman-perl/trunk/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libroman-perl/trunk/Makefile.PL?rev=5049&op=diff
==============================================================================
--- packages/libroman-perl/trunk/Makefile.PL (original)
+++ packages/libroman-perl/trunk/Makefile.PL Fri Apr 13 18:57:25 2007
@@ -1,2 +1,19 @@
-use ExtUtils::MakeMaker;
-WriteMakefile( NAME => "Roman" );
+use 5.6.0;
+use strict;
+use warnings;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+ NAME => 'Roman',
+ AUTHOR => 'Alexandr Ciornii <alexchorny AT gmail.com>',
+ VERSION_FROM => 'lib/Roman.pm',
+ ABSTRACT_FROM => 'lib/Roman.pm',
+ PL_FILES => {},
+ PREREQ_PM => {
+ 'Test::More' => 0,
+ },
+ ($ExtUtils::MakeMaker::VERSION ge '6.30_00'?
+ ('LICENSE' => 'perl', ) : ()),
+ dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
+ clean => { FILES => 'Roman-*' },
+);
Modified: packages/libroman-perl/trunk/README
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libroman-perl/trunk/README?rev=5049&op=diff
==============================================================================
--- packages/libroman-perl/trunk/README (original)
+++ packages/libroman-perl/trunk/README Fri Apr 13 18:57:25 2007
@@ -1,76 +1,60 @@
-Roman.pm version 1.1
-
-NAME
- Roman - Perl module for conversion between Roman and Arabic
- numerals.
-
-SYNOPSIS
- use Roman;
-
- $arabic = arabic($roman) if isroman($roman);
- $roman = Roman($arabic);
- $roman = roman($arabic);
-
-DESCRIPTION
- This package provides some functions which help conversion
- of numeric notation between Roman and Arabic.
-
-INSTALLATION
- Just copy Roman.pm into your perl module path.
-
-BUGS
- Domain of valid Roman numerals is limited to less than 4000,
- since proper Roman digits for the rest are not available in
- ASCII.
-
-CHANGES
- 1997/09/03 Author's address is now <ozawa at aisoft.co.jp>
-
-AUTHOR
- OZAWA Sakuro <ozawa at aisoft.co.jp>
-
-COPYRIGHT
- Copyright (c) 1995 OZAWA Sakuro. All rights reserved. This
- program is free software; you can redistribute it and/or
- modify it under the same terms as Perl itself.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Sun Release 4.1 Last change: 1
-
-
-
-
-DESCRIPTION
-
-This package provides some functions which help conversion of numeric
-notation between Roman and Arabic.
-
-
-INSTALLATION
-
-Simply copy Roman.pm into your perl module path.
-
-AUTHOR
-
-OZAWA Sakuro <ozawa at prince.pe.u-tokyo.ac.jp>
+Roman.pm version 1.20
+
+NAME
+ Roman - Perl module for conversion between Roman and Arabic
+ numerals.
+
+SYNOPSIS
+ use Roman;
+
+ $arabic = arabic($roman) if isroman($roman);
+ $roman = Roman($arabic);
+ $roman = roman($arabic);
+
+DESCRIPTION
+ This package provides some functions which help conversion
+ of numeric notation between Roman and Arabic.
+
+INSTALLATION
+
+To install this module, run the following commands:
+
+ perl Makefile.PL
+ make
+ make test
+ make install
+
+Or use `cpan` or `cpanp` (best way).
+
+BUGS
+ Domain of valid Roman numerals is limited to less than 4000,
+ since proper Roman digits for the rest are not available in
+ ASCII.
+
+SUPPORT AND DOCUMENTATION
+
+After installing, you can find documentation for this module with the perldoc command.
+
+ perldoc Roman
+
+You can also look for information at:
+
+ Search CPAN
+ http://search.cpan.org/dist/Roman
+
+ CPAN Request Tracker:
+ http://rt.cpan.org/NoAuth/Bugs.html?Dist=Roman
+
+ AnnoCPAN, annotated CPAN documentation:
+ http://annocpan.org/dist/Roman
+
+ CPAN Ratings:
+ http://cpanratings.perl.org/d/Roman
+
+COPYRIGHT AND LICENCE
+
+Copyright (c) 1995-1997 OZAWA Sakuro.
+Copyright (C) 2007 Alexandr Ciornii
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
Modified: packages/libroman-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libroman-perl/trunk/debian/changelog?rev=5049&op=diff
==============================================================================
--- packages/libroman-perl/trunk/debian/changelog (original)
+++ packages/libroman-perl/trunk/debian/changelog Fri Apr 13 18:57:25 2007
@@ -1,3 +1,11 @@
+libroman-perl (1.20-1) unstable; urgency=low
+
+ * New upstream release.
+ * Enable tests in debian/rules (now there are tests) and add
+ libtest-pod-perl, libtest-pod-coverage-perl to Build-Depends-Indep.
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at> Fri, 13 Apr 2007 20:56:28 +0200
+
libroman-perl (1.1-21) unstable; urgency=low
* Use $(CURDIR) [make] instead of $(PWD) [sh] to fix issues with sudo.
Modified: packages/libroman-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libroman-perl/trunk/debian/control?rev=5049&op=diff
==============================================================================
--- packages/libroman-perl/trunk/debian/control (original)
+++ packages/libroman-perl/trunk/debian/control Fri Apr 13 18:57:25 2007
@@ -6,7 +6,7 @@
Standards-Version: 3.7.2
XS-Vcs-Svn: svn://svn.debian.org/pkg-perl/packages/libroman-perl/trunk/
Build-Depends: debhelper (>= 5.0.0)
-Build-Depends-Indep: perl
+Build-Depends-Indep: perl, libtest-pod-perl, libtest-pod-coverage-perl
Package: libroman-perl
Section: perl
Modified: packages/libroman-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libroman-perl/trunk/debian/rules?rev=5049&op=diff
==============================================================================
--- packages/libroman-perl/trunk/debian/rules (original)
+++ packages/libroman-perl/trunk/debian/rules Fri Apr 13 18:57:25 2007
@@ -25,8 +25,7 @@
dh_testdir
perl Makefile.PL INSTALLDIRS=vendor
$(MAKE) OPTIMIZE="-O2 -g -Wall"
- # there are no tests ...
- # $(MAKE) test
+ $(MAKE) test
touch build-stamp
install: install-stamp
More information about the Pkg-perl-cvs-commits
mailing list