rpms/perl-pmtools/FC-4 pmtools-1.01-pman2pmman.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 perl-pmtools.spec, 1.3, 1.4 sources, 1.2, 1.3 pmtools-1.00-different-tarball.patch, 1.1, NONE pmtools-1.00-pmall.patch, 1.1, NONE pmtools-1.00-pmeth-pman2pmman.patch, 1.1, NONE

Jose Pedro Oliveira (jpo) fedora-extras-commits at redhat.com
Wed Mar 22 10:39:11 UTC 2006


Author: jpo

Update of /cvs/extras/rpms/perl-pmtools/FC-4
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv9712/FC-4

Modified Files:
	.cvsignore perl-pmtools.spec sources 
Added Files:
	pmtools-1.01-pman2pmman.patch 
Removed Files:
	pmtools-1.00-different-tarball.patch pmtools-1.00-pmall.patch 
	pmtools-1.00-pmeth-pman2pmman.patch 
Log Message:
Update to 1.01.

pmtools-1.01-pman2pmman.patch:

--- NEW FILE pmtools-1.01-pman2pmman.patch ---
diff -ruN pmtools-1.01-orig/Makefile.lame pmtools-1.01/Makefile.lame
--- pmtools-1.01-orig/Makefile.lame	2005-09-06 02:11:31.000000000 +0100
+++ pmtools-1.01/Makefile.lame	2006-03-22 10:23:53.000000000 +0000
@@ -1,5 +1,5 @@
 
-PROGRAMS=basepods faqpods modpods pfcat plxload pmall pman pmcat \
+PROGRAMS=basepods faqpods modpods pfcat plxload pmall pmman pmcat \
 	pmdesc pmdirs pmeth pmexp pmfunc pminst pmload pmls pmpath pmvers podgrep \
 	podpath pods podtoc sitepods stdpods
 
diff -ruN pmtools-1.01-orig/Makefile.PL pmtools-1.01/Makefile.PL
--- pmtools-1.01-orig/Makefile.PL	2006-03-22 00:54:57.000000000 +0000
+++ pmtools-1.01/Makefile.PL	2006-03-22 10:23:53.000000000 +0000
@@ -4,8 +4,8 @@
 	NAME => "pmtools",
         DISTNAME => "pmtools",
 	EXE_FILES => [  basepods, faqpods, modpods, pfcat, plxload,
-			pmall, pman, pmcat, pmdesc, pmdirs, pmeth, pmexp,
-			pmfunc, pminst, pmload, pmls, pmpath, pmvers,
+			pmall, pmcat, pmdesc, pmdirs, pmeth, pmexp,
+			pmfunc, pminst, pmload, pmman, pmls, pmpath, pmvers,
 			podgrep, podpath, pods, podtoc, sitepods,
 			stdpods ],
 	PM => { 'Devel/Loaded.pm' => '$(INST_LIBDIR)/Devel/Loaded.pm' }
diff -ruN pmtools-1.01-orig/MANIFEST pmtools-1.01/MANIFEST
--- pmtools-1.01-orig/MANIFEST	2006-03-22 02:57:51.000000000 +0000
+++ pmtools-1.01/MANIFEST	2006-03-22 10:23:53.000000000 +0000
@@ -12,7 +12,7 @@
 pfcat
 plxload
 pmall
-pman
+pmman
 pmcat
 pmdesc
 pmdirs
diff -ruN pmtools-1.01-orig/pman pmtools-1.01/pman
--- pmtools-1.01-orig/pman	2005-09-06 02:11:31.000000000 +0100
+++ pmtools-1.01/pman	1970-01-01 01:00:00.000000000 +0100
@@ -1,64 +0,0 @@
-#!/usr/bin/env perl
-# pman -- show a module's man page
-# tchrist at perl.com
-
-BEGIN { $^W = 1 }
-BEGIN { die "usage: $0 module ...\n" unless @ARGV }
-
-use FindBin qw($Bin);
-
-$errors = 0;
-
-unless ($pager = $ENV{PAGER}) {
-    require Config;
-    $pager = $Config::Config{"pager"} || "more";
-} 
-
-for $module (@ARGV) { 
-    my $path =  `$Bin/pmpath $module`;
-    if ($?) {
-	$errors++;
-	next;
-    } 
-    chomp $path;
-    system "pod2text $path | $pager";
-    $errors += ($? != 1);
-}
-
-exit($errors != 0);
-
-__END__
-
-=head1 NAME
-
-pman - show a module's man page
-
-=head1 DESCRIPTION
-
-Send a module's pod through pod2text and your pager.
-
-This is mostly here for people too lazy to type
-
-    $ pod2text `pmpath CGI` | $PAGER
-
-=head1 EXAMPLES
-
-    $ pman CGI
-    $ pman Curses
-
-Or running under different versions of Perl: 
-
-    $ oldperl -S pman CGI
-    $ filsperl -S pman Threads
-
-=head1 SEE ALSO
-
-pod2text(1), perlpod(1), pod2man(1), pod2html(1).
-
-=head1 AUTHOR and COPYRIGHT
-
-Copyright (c) 1999 Tom Christiansen
-
-This is free software.  You may modify it and distribute it 
-under Perl's Artistic Licence.  Modified versions must be
-clearly indicated.
diff -ruN pmtools-1.01-orig/pmman pmtools-1.01/pmman
--- pmtools-1.01-orig/pmman	1970-01-01 01:00:00.000000000 +0100
+++ pmtools-1.01/pmman	2006-03-22 10:23:53.000000000 +0000
@@ -0,0 +1,64 @@
+#!/usr/bin/env perl
+# pmman -- show a module's man page
+# tchrist at perl.com
+
+BEGIN { $^W = 1 }
+BEGIN { die "usage: $0 module ...\n" unless @ARGV }
+
+use FindBin qw($Bin);
+
+$errors = 0;
+
+unless ($pager = $ENV{PAGER}) {
+    require Config;
+    $pager = $Config::Config{"pager"} || "more";
+} 
+
+for $module (@ARGV) { 
+    my $path =  `$Bin/pmpath $module`;
+    if ($?) {
+	$errors++;
+	next;
+    } 
+    chomp $path;
+    system "pod2text $path | $pager";
+    $errors += ($? != 1);
+}
+
+exit($errors != 0);
+
+__END__
+
+=head1 NAME
+
+pmman - show a module's man page
+
+=head1 DESCRIPTION
+
+Send a module's pod through pod2text and your pager.
+
+This is mostly here for people too lazy to type
+
+    $ pod2text `pmpath CGI` | $PAGER
+
+=head1 EXAMPLES
+
+    $ pmman CGI
+    $ pmman Curses
+
+Or running under different versions of Perl: 
+
+    $ oldperl -S pmman CGI
+    $ filsperl -S pmman Threads
+
+=head1 SEE ALSO
+
+pod2text(1), perlpod(1), pod2man(1), pod2html(1).
+
+=head1 AUTHOR and COPYRIGHT
+
+Copyright (c) 1999 Tom Christiansen
+
+This is free software.  You may modify it and distribute it 
+under Perl's Artistic Licence.  Modified versions must be
+clearly indicated.
diff -ruN pmtools-1.01-orig/README pmtools-1.01/README
--- pmtools-1.01-orig/README	2005-09-06 02:11:31.000000000 +0100
+++ pmtools-1.01/README	2006-03-22 10:23:53.000000000 +0000
@@ -383,10 +383,10 @@
 
 =========================================================
 
-pman - show the module's pod docs
+pmman - show the module's pod docs
 
-    $ pman CGI
-    $ pman Curses
+    $ pmman CGI
+    $ pmman Curses
 
 This is mostly here for people too lazy to type
     $ pod2text `pmpath CGI` | more


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/perl-pmtools/FC-4/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore	17 Mar 2005 02:06:20 -0000	1.2
+++ .cvsignore	22 Mar 2006 10:39:11 -0000	1.3
@@ -1 +1 @@
-pmtools-1.00.tar.gz
+pmtools-1.01.tar.gz


Index: perl-pmtools.spec
===================================================================
RCS file: /cvs/extras/rpms/perl-pmtools/FC-4/perl-pmtools.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- perl-pmtools.spec	6 Apr 2005 22:13:29 -0000	1.3
+++ perl-pmtools.spec	22 Mar 2006 10:39:11 -0000	1.4
@@ -1,23 +1,18 @@
-%{!?perl_vendorlib: %define perl_vendorlib %(eval "`%{__perl} -V:installvendorlib`"; echo $installvendorlib)}
-
 Name:           perl-pmtools
-Version:        1.00
-Release:        2
-
+Version:        1.01
+Release:        1%{?dist}
 Summary:        A suite of small programs to help manage Perl modules
 
 Group:          Development/Libraries
 License:        Artistic
-Url:            http://language.perl.com/
-Source:         http://history.perl.org/src/pmtools-1.00.tar.gz
-Patch1:         pmtools-1.00-different-tarball.patch
-Patch2:         pmtools-1.00-pmall.patch
-Patch3:         pmtools-1.00-pmeth-pman2pmman.patch
+URL:            http://search.cpan.org/dist/pmtools/
+Source:         http://www.cpan.org/authors/id/M/ML/MLFISHER/pmtools-%{version}.tar.gz
+Patch:          pmtools-1.01-pman2pmman.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildArch:      noarch
 BuildRequires:  perl >= 1:5.6.1
-Requires:  perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
 
 %description
 This is pmtools -- a suite of small programs to help manage modules.
@@ -30,9 +25,7 @@
 
 %prep
 %setup -q -n pmtools-%{version}
-%patch1 -p1
-%patch2 -p1
-%patch3 -p1
+%patch -p1
 chmod 755 pmman
 find . -type f -perm 755 | xargs %{__perl} -pi -e 's{^#!/usr/bin/env perl}{#!%{__perl}}'
 
@@ -50,7 +43,7 @@
 chmod -R u+w $RPM_BUILD_ROOT/*
 
 
-%check || :
+%check
 make test
 
 
@@ -68,7 +61,19 @@
 
 
 %changelog
-* Fri Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
+* Wed Mar 22 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.01-1
+- Update to 1.01.
+- URL updated: pmtools is now available in CPAN.
+- Dropped patches pmtools-1.00-{different-tarball.patch,pmall.patch}:
+  they were accepted upstream.
+
+* Thu Mar  9 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.00-4
+- Rebuild for FC5 (perl 5.8.8).
+
+* Thu Dec 22 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.00-3
+- Dist tag.
+
+* Fri Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.00-2
 - rebuilt
 
 * Sun Feb 06 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.00-1
@@ -81,5 +86,5 @@
   script 'pman' into 'pmman' in order to avoid a filename clash with
   the pinfo package.
 
-* Sat Feb 28 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> 0:1.00-0.fdr.0
+* Sat Feb 28 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.00-0.fdr.0
 - Initial build for fedora.us


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/perl-pmtools/FC-4/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources	17 Mar 2005 02:06:20 -0000	1.2
+++ sources	22 Mar 2006 10:39:11 -0000	1.3
@@ -1 +1 @@
-88ee58113ac3d513d94f81f9fdfaeb00  pmtools-1.00.tar.gz
+85d800dff1f73b559a929d7984435b57  pmtools-1.01.tar.gz


--- pmtools-1.00-different-tarball.patch DELETED ---


--- pmtools-1.00-pmall.patch DELETED ---


--- pmtools-1.00-pmeth-pman2pmman.patch DELETED ---




More information about the fedora-extras-commits mailing list