[SCM] Debian packaging of dh-make-perl branch, master, updated. 4c2b2fa71c35b8c55d605b185d6ab88361fadaf4

Damyan Ivanov dmn at debian.org
Wed Aug 10 19:09:12 UTC 2011


The following commit has been merged in the master branch:
commit 4c2b2fa71c35b8c55d605b185d6ab88361fadaf4
Author: Damyan Ivanov <dmn at debian.org>
Date:   Wed Aug 10 22:08:12 2011 +0300

    stop creating .gitignore ignoring .pc/
    
    This may clash with .gitignore from upstream and is
    better handled globally

diff --git a/debian/changelog b/debian/changelog
index acb4927..01c4cc6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -21,9 +21,6 @@ dh-make-perl (0.74-1) UNRELEASED; urgency=low
   * DhMakePerl::Config: Change default VCS to Git.
 
   [ Salvatore Bonaccorso ]
-  * DhMakePerl::Command::make: Fix bug in creation of .gitignore file in
-    setup_git_repository, causing that the process stopped and no pristine-tar
-    branch got created.
   * Debian::AptContents: Fix typo in POD.
 
   [ Maximilian Gass ]
diff --git a/lib/DhMakePerl/Command/make.pm b/lib/DhMakePerl/Command/make.pm
index acf8248..9667894 100644
--- a/lib/DhMakePerl/Command/make.pm
+++ b/lib/DhMakePerl/Command/make.pm
@@ -612,13 +612,6 @@ sub setup_git_repository {
     $git->command( qw( checkout -b master upstream ) );
     $git->command( 'add', 'debian' );
     $git->command( 'commit', '-m', 'Initial packaging by dh-make-perl' );
-    open my $gitignore, '>',
-        File::Spec->catfile( $self->main_dir, '.gitignore' )
-        or die "Unable to open .gitignore: $!";
-    print $gitignore "/.pc/\n";
-    close $gitignore;
-    $git->command( add => '.gitignore' );
-    $git->command( commit => -m => 'add default .gitignore' );
     $git->command(
         qw( remote add origin ),
         sprintf( "ssh://git.debian.org/git/pkg-perl/packages/%s.git",

-- 
Debian packaging of dh-make-perl



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