This is an automated email from the git hooks/post-receive script.

kanashiro-guest pushed a commit to branch master
in repository libfile-rsync-perl.

commit 77b268718c92e66b40f4129c6596f396fefed8a6
Author: Lucas Kanashiro <kanashiro.dua...@gmail.com>
Date:   Sun Aug 16 11:43:08 2015 -0300

    Remove no longer necessary patches
---
 debian/changelog                                   |  1 +
 debian/patches/install-libs-in-libdir.patch        | 17 -----
 .../patches/non-interactive-path-for-rsync.patch   | 72 ----------------------
 debian/patches/series                              |  2 -
 4 files changed, 1 insertion(+), 91 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index a0b2aaf..8489981 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -16,6 +16,7 @@ libfile-rsync-perl (0.45-1) UNRELEASED; urgency=low
   [ Lucas Kanashiro ]
   * Add debian/upstream/metadata
   * Import upstream version 0.45
+  * Remove no longer necessary patches
 
  -- Lucas Kanashiro <kanashiro.dua...@gmail.com>  Sun, 16 Aug 2015 11:38:40 
-0300
 
diff --git a/debian/patches/install-libs-in-libdir.patch 
b/debian/patches/install-libs-in-libdir.patch
deleted file mode 100644
index dadf8ea..0000000
--- a/debian/patches/install-libs-in-libdir.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Description: Install libs in LIBDIR instead of ARCHDIR
-Author: Xavier Guimard <x.guim...@free.fr>
-Bug: https://rt.cpan.org/Ticket/Display.html?id=82221
-Forwarded: https://rt.cpan.org/Ticket/Display.html?id=82221
-Last-Update: 2012-12-25
-
---- a/Makefile.PL
-+++ b/Makefile.PL
-@@ -19,7 +19,7 @@
-       PREREQ_PM      => { 'Scalar::Util' => 0 },
-       PL_FILES       => { 'makepm.PL' => 'config.pm' },
-       PM             => { 'Rsync.pm'  => '$(INST_LIB)/File/Rsync.pm',
--                        'config.pm' => '$(INST_ARCHLIB)/File/Rsync/Config.pm' 
},
-+                        'config.pm' => '$(INST_LIB)/File/Rsync/Config.pm' },
-       dist           => { COMPRESS => 'gzip', SUFFIX => 'gz' },
-       realclean      => { FILES => 'config.pm' },
- );
diff --git a/debian/patches/non-interactive-path-for-rsync.patch 
b/debian/patches/non-interactive-path-for-rsync.patch
deleted file mode 100644
index 9f11ed1..0000000
--- a/debian/patches/non-interactive-path-for-rsync.patch
+++ /dev/null
@@ -1,72 +0,0 @@
-Description: Non interactive path for rsync
-Author: Ivan Kohler <i...@debian.org>
-Forwarded: not-needed
-Reviewed-By: Xavier Guimard <x.guim...@free.fr>
-Last-Update: 2012-12-25
-
---- a/makepm.PL
-+++ b/makepm.PL
-@@ -1,32 +1,37 @@
- # makepm.PL -- Builds Rsync.pm from Rsync.in.  -*- perl -*-
--sub find_rsync {
--   my @dirs = map { s/^$/./; $_ } split (':', $ENV{PATH});
--   push (@dirs, qw(/usr/local/bin /usr/bin /opt/bin));
--   for my $dir (@dirs) {
--      next unless -d $dir;
--      next unless -x "$dir/rsync";
--      return "$dir/rsync";
--   }
--}
--$|=1;
--$RSYNC=&find_rsync;
--print <<'EOT';
- 
--File::Rsync needs to know the path to the rsync binary.  This path is encoded
--in the installed module as the default path to rsync (it can be overridden
--at runtime).  Please enter the full path to the rsync program or just hit
--Enter if the guess is correct.  (If you always want the module to depend on
--the $PATH environment variable at runtime, just set the path to 'rsync'
--(this is not recommended)).
-+#sub find_rsync {
-+#   my @dirs = map { s/^$/./; $_ } split (':', $ENV{PATH});
-+#   push (@dirs, qw(/usr/local/bin /usr/bin /opt/bin));
-+#   for my $dir (@dirs) {
-+#      next unless -d $dir;
-+#      next unless -x "$dir/rsync";
-+#      return "$dir/rsync";
-+#   }
-+#}
-+#$|=1;
-+#$RSYNC=&find_rsync;
-+#print <<'EOT';
-+#
-+#File::Rsync needs to know the path to the rsync binary.  This path is encoded
-+#in the installed module as the default path to rsync (it can be overridden
-+#at runtime).  Please enter the full path to the rsync program or just hit
-+#Enter if the guess is correct.  (If you always want the module to depend on
-+#the $PATH environment variable at runtime, just set the path to 'rsync'
-+#(this is not recommended)).
-+#
-+#EOT
-+#$RSYNC||='/usr/local/bin/rsync';
-+#print "Path to rsync [$RSYNC]: ";
-+#my $ans=<STDIN>;
-+#chomp $ans;
-+#$RSYNC=$ans || $RSYNC;
-+#$RSYNC=~s/\\/\\\\/g;
-+#$RSYNC=~s/\'/\\\'/g;
-+
-+#hardcode for non-interactive build
-+$RSYNC = '/usr/bin/rsync';
- 
--EOT
--$RSYNC||='/usr/local/bin/rsync';
--print "Path to rsync [$RSYNC]: ";
--my $ans=<STDIN>;
--chomp $ans;
--$RSYNC=$ans || $RSYNC;
--$RSYNC=~s/\\/\\\\/g;
--$RSYNC=~s/\'/\\\'/g;
- open IN,'config.in' or die "Cannot read config.in: $!\n";
- open OUT,'>config.pm' or die "Cannot write config.pm: $!\n";
- while (<IN>) {
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 18f6b96..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1,2 +0,0 @@
-non-interactive-path-for-rsync.patch
-install-libs-in-libdir.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libfile-rsync-perl.git

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to