This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=306270f4bd1dbfed1629289727094e0204acbe6f commit 306270f4bd1dbfed1629289727094e0204acbe6f Author: Guillem Jover <guil...@debian.org> AuthorDate: Mon Mar 20 23:52:52 2023 +0100 Dselect::Method::Ftp: Rename from Dselect::Ftp Namespace the modules, as we are going to be adding other method modules in the future. --- dselect/methods/Dselect/{ => Method}/Ftp.pm | 0 dselect/methods/Makefile.am | 2 +- dselect/methods/ftp/install.pl | 2 +- dselect/methods/ftp/setup.pl | 2 +- dselect/methods/ftp/update.pl | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dselect/methods/Dselect/Ftp.pm b/dselect/methods/Dselect/Method/Ftp.pm similarity index 100% rename from dselect/methods/Dselect/Ftp.pm rename to dselect/methods/Dselect/Method/Ftp.pm diff --git a/dselect/methods/Makefile.am b/dselect/methods/Makefile.am index d8404b502..4a87dfdf4 100644 --- a/dselect/methods/Makefile.am +++ b/dselect/methods/Makefile.am @@ -25,7 +25,7 @@ nobase_methods_SCRIPTS = \ perllibdir = $(PERL_LIBDIR) nobase_dist_perllib_DATA = \ - Dselect/Ftp.pm \ + Dselect/Method/Ftp.pm \ # EOL EXTRA_DIST = \ diff --git a/dselect/methods/ftp/install.pl b/dselect/methods/ftp/install.pl index 07ec2f0a8..e51e0a274 100755 --- a/dselect/methods/ftp/install.pl +++ b/dselect/methods/ftp/install.pl @@ -34,7 +34,7 @@ if ($@) { exit 1; } -use Dselect::Ftp; +use Dselect::Method::Ftp; my $ftp; diff --git a/dselect/methods/ftp/setup.pl b/dselect/methods/ftp/setup.pl index 4298e8a55..0c7b7da0c 100755 --- a/dselect/methods/ftp/setup.pl +++ b/dselect/methods/ftp/setup.pl @@ -28,7 +28,7 @@ if ($@) { exit 1; } -use Dselect::Ftp; +use Dselect::Method::Ftp; # deal with arguments my $vardir = $ARGV[0]; diff --git a/dselect/methods/ftp/update.pl b/dselect/methods/ftp/update.pl index 8fa1e9f09..a7e166226 100755 --- a/dselect/methods/ftp/update.pl +++ b/dselect/methods/ftp/update.pl @@ -28,7 +28,7 @@ if ($@) { exit 1; } -use Dselect::Ftp; +use Dselect::Method::Ftp; # deal with arguments my $vardir = $ARGV[0]; -- Dpkg.Org's dpkg