r38761 - in /trunk/libdevel-nytprof-perl/debian: changelog patches/manpage-section.patch patches/usr-share.patch

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Fri Jun 26 18:09:01 UTC 2009


Author: jawnsy-guest
Date: Fri Jun 26 18:08:54 2009
New Revision: 38761

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=38761
Log:
Refreshed quilt patches as code has changed slightly

Modified:
    trunk/libdevel-nytprof-perl/debian/changelog
    trunk/libdevel-nytprof-perl/debian/patches/manpage-section.patch
    trunk/libdevel-nytprof-perl/debian/patches/usr-share.patch

Modified: trunk/libdevel-nytprof-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-nytprof-perl/debian/changelog?rev=38761&op=diff
==============================================================================
--- trunk/libdevel-nytprof-perl/debian/changelog (original)
+++ trunk/libdevel-nytprof-perl/debian/changelog Fri Jun 26 18:08:54 2009
@@ -5,6 +5,7 @@
     + Several resources added to META.yml
   * Added /me to Uploaders & d/copyright
   * Standards-Version 3.8.2
+  * Refreshed quilt patches as code has changed slightly
 
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.

Modified: trunk/libdevel-nytprof-perl/debian/patches/manpage-section.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-nytprof-perl/debian/patches/manpage-section.patch?rev=38761&op=diff
==============================================================================
--- trunk/libdevel-nytprof-perl/debian/patches/manpage-section.patch (original)
+++ trunk/libdevel-nytprof-perl/debian/patches/manpage-section.patch Fri Jun 26 18:08:54 2009
@@ -1,6 +1,8 @@
 Author: gregor herrmann <gregoa at debian.org>
-Description: fix manpage section
-
+Debian-Specific: yes
+Description: Fix manpage section
+ Manual pages generated by pod2man are installed in section 1, we want them
+ installed in section .1p because they are Perl-specific.
 --- a/Makefile.PL
 +++ b/Makefile.PL
 @@ -29,8 +29,8 @@

Modified: trunk/libdevel-nytprof-perl/debian/patches/usr-share.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-nytprof-perl/debian/patches/usr-share.patch?rev=38761&op=diff
==============================================================================
--- trunk/libdevel-nytprof-perl/debian/patches/usr-share.patch (original)
+++ trunk/libdevel-nytprof-perl/debian/patches/usr-share.patch Fri Jun 26 18:08:54 2009
@@ -1,14 +1,17 @@
 Author: gregor herrmann <gregoa at debian.org>
-Description: the arch-indep files (css, js, png) are installed into
-             /usr/share/perl5/....
+Debian-Specific: yes
+Description: Patch search path so arch-indep files are found
+ On Debian, all of the js, gif, css etc files are installed in /usr/share/perl5
+ rather than /usr/lib/perl5. They are not in the library directory as
+ Devel::NYTProf::Data expects
 
 --- a/bin/nytprofhtml
 +++ b/bin/nytprofhtml
-@@ -639,6 +639,7 @@
+@@ -1017,6 +1017,7 @@
      my ($profile) = @_;
      # find the js, gif, css etc files installed with Devel::NYTProf
-     (my $lib = $INC{"Devel/NYTProf/Data.pm"}) =~ s/Data\.pm$//;
+     (my $lib = $INC{"Devel/NYTProf/Data.pm"}) =~ s/\/Data\.pm$//;
 +    $lib =~ s{usr/lib/perl5}{usr/share/perl5};
-     for my $src (<$lib/js/*>) {
-         (my $file = $src) =~ s/.*\///;
-         unlink "$opt{out}/$file";
+     _copy_dir("$lib/js", "$opt{out}/js");
+ }
+ 




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