diff -Nru dh-make-elpa-0.11/debian/changelog dh-make-elpa-0.12/debian/changelog --- dh-make-elpa-0.11/debian/changelog 2017-10-14 19:12:51.000000000 +0000 +++ dh-make-elpa-0.12/debian/changelog 2018-02-28 18:01:01.000000000 +0000 @@ -1,3 +1,16 @@ +dh-make-elpa (0.12) unstable; urgency=medium + + [ Alberto Luaces Fernández ] + * Generate Vcs-* fields pointing to salsa. + + [ Sean Whitton ] + * Update Vcs-* fields to point to salsa. + * Bump generated std-ver to 4.1.3 (no changes required). + * Declare compliance with Debian Policy 4.1.3. + * Update pattern for missing-dep-for-interpreter Lintian override. + + -- Sean Whitton Wed, 28 Feb 2018 11:01:01 -0700 + dh-make-elpa (0.11) unstable; urgency=medium * Generate standards-version 4.1.1. diff -Nru dh-make-elpa-0.11/debian/control dh-make-elpa-0.12/debian/control --- dh-make-elpa-0.11/debian/control 2017-10-14 19:12:18.000000000 +0000 +++ dh-make-elpa-0.12/debian/control 2018-02-28 17:10:28.000000000 +0000 @@ -5,9 +5,9 @@ Uploaders: Sean Whitton Build-Depends: debhelper (>= 10), -Standards-Version: 4.1.1 -Vcs-Git: https://anonscm.debian.org/git/pkg-emacsen/pkg/dh-make-elpa.git -Vcs-Browser: https://anonscm.debian.org/cgit/pkg-emacsen/pkg/dh-make-elpa.git/ +Standards-Version: 4.1.3 +Vcs-Git: https://salsa.debian.org/emacsen-team/dh-make-elpa.git/ +Vcs-Browser: https://salsa.debian.org/emacsen-team/dh-make-elpa Package: dh-make-elpa Architecture: all diff -Nru dh-make-elpa-0.11/debian/lintian-overrides dh-make-elpa-0.12/debian/lintian-overrides --- dh-make-elpa-0.11/debian/lintian-overrides 2017-10-14 19:10:05.000000000 +0000 +++ dh-make-elpa-0.12/debian/lintian-overrides 2018-02-28 18:00:09.000000000 +0000 @@ -1,2 +1,2 @@ # this is a template file, not a script to be executed -missing-dep-for-interpreter make => make | build-essential | dpkg-dev (usr/share/dh-make-elpa/rules.dh.tiny) +missing-dep-for-interpreter make => make | build-essential | dpkg-dev (usr/share/dh-make-elpa/rules.dh.tiny) #!/usr/bin/make diff -Nru dh-make-elpa-0.11/lib/DhMakeELPA/Command/Packaging.pm dh-make-elpa-0.12/lib/DhMakeELPA/Command/Packaging.pm --- dh-make-elpa-0.11/lib/DhMakeELPA/Command/Packaging.pm 2017-10-14 19:10:33.000000000 +0000 +++ dh-make-elpa-0.12/lib/DhMakeELPA/Command/Packaging.pm 2018-02-28 17:10:18.000000000 +0000 @@ -20,7 +20,7 @@ qw( main_dir debian_dir bins control pkgname homepage elpa_version copyright gpl_version ) ); -use constant debstdversion => '4.1.1'; +use constant debstdversion => '4.1.3'; sub extract_basic { my $self = shift; @@ -165,11 +165,11 @@ if ( $self->cfg->pkg_emacsen ) { $src->Vcs_Git( - sprintf( "https://anonscm.debian.org/git/pkg-emacsen/pkg/%s.git", + sprintf( "https://salsa.debian.org/emacsen-team/%s.git/", $self->pkgname ) ); $src->Vcs_Browser( - sprintf( "https://anonscm.debian.org/cgit/pkg-emacsen/pkg/%s.git/", + sprintf( "https://salsa.debian.org/emacsen-team/%s", $self->pkgname ) ); }