diff options
Diffstat (limited to 'dev-perl/DBI-Shell')
5 files changed, 0 insertions, 120 deletions
diff --git a/dev-perl/DBI-Shell/Manifest b/dev-perl/DBI-Shell/Manifest index 9df193841014..ddc2d1f8b90d 100644 --- a/dev-perl/DBI-Shell/Manifest +++ b/dev-perl/DBI-Shell/Manifest @@ -1,7 +1,3 @@ -AUX DBI-Shell-11.950.0-local-scalar.patch 690 BLAKE2B 9c335d431c36c290a8de8b2dae1b8cf042f9500ad1604350b065964df838f2a695af1112dcaaec5b408bc126c5bc70a4cbd92e3d63179925f37281863997f1d9 SHA512 cea9657bcdf674cb1a30aaa28d4f7bea173bedbb07dd14b60866cd423f403f3946323d2831eeac6c9dc7387f15a4ce0b49e43d20b855ca177a172f5f44494057 -AUX DBI-Shell-11.950.0-nochrdir.patch 684 BLAKE2B 5172afa840872076088ac9ce367ea5cc5aaf8c0169e9948e0645a58dceeabf8b79c7957155cd99d0670fc53d5314e0ca98ad80f2e65a386a9c765d6deb59937b SHA512 95092f59cec232be5e8bab7973cd99040e25eaf77212f1673cf67f93458417b4b11f596d113f0a53385608e920d0e007a580e62733b65e72ea3a28677fb4eed8 -AUX DBI-Shell-11.950.0-perl526.patch 1291 BLAKE2B 34a23fa7e9bc4071a07ae227cfacc60fa6c332c9fd3e9d04c2888d8f8a8b501087b3c9cd11fbea268562e029d11e984ac47c09783eb2cc89f64e6f46f30bd251 SHA512 aa8bd8a9a149052da8aef526cf8b992bdfa5ca150028d68387de8a83cb1648da9a9e32f78fa136c66f32c3cd460bd0164b2cbcb3b60b6faa5d9b87c5784b789b -AUX DBI-Shell-11.950.0-sprintf-warn.patch 732 BLAKE2B 4866aa33b1cc810201ad88ffe3f04a120ebe31e08076ace85f81418f5c2720e97a70ca6b1140d3ca8f343ddbe313ffbf3989614a475aae43568d3e9a85976083 SHA512 2808715da12581e22fceb71057fa5080188af8e5a6b1c4375b0a050973477d66f2a91f1ff473d7f3b5da19f73d06e02bd5221aa908d7d2e948ca6ca1cb1d21a2 DIST DBI-Shell-11.97.tar.gz 57123 BLAKE2B 0c4d459dda185b6fb2ea292912da4624e1a4ed33aa4487eabf5c6c5be6571c1e8d32b29b703749fe562ebbd60aa389f62d5e3461863c5777490345451bf8cad8 SHA512 74bf7244691b8dee967bae4076b59b912d66ac08f48f8468531d003db6d85d43d836116f8314961602a002b58fc9f6d3bea88076e1d7e2783d430137dec68f4b EBUILD DBI-Shell-11.970.0.ebuild 823 BLAKE2B 3044528d43019ce7ae43c9e911817b2ae20366587bd5be11ff53399fe0a14c34988b4f6f1373f19b363980fc6f070589c7bde4011f3f6ff0c28db95cf69551f4 SHA512 cf80a94a1568cf484fe30513cc1fddb98d433c6e89d321c0da18de1e6af41043e488a485f2fdfaa751f75bb32f2d8e4a3ffeb0921bcd32d8eda3d44c5a8ef1d8 MISC metadata.xml 1567 BLAKE2B 73490e98e228004b9ec03b3a8d6749d4d2c73c9dd2a1dcfa507940a24e73b461b22f76818117af06e420538257912873392a60d85858a4360c0cadda1f20737b SHA512 1e1c25d23c0e24a36df92197bc395f5c32d8952c95d5a659895e97cf01fb58c1c88c761c0897e855d02d53497c526c3b3d8bbcf06a8db658a91a36dfb80a53d2 diff --git a/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-local-scalar.patch b/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-local-scalar.patch deleted file mode 100644 index 1d305f542d9e..000000000000 --- a/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-local-scalar.patch +++ /dev/null @@ -1,26 +0,0 @@ -From ef8efc5b80c9395c01f23e5acd28bb3ee7810b54 Mon Sep 17 00:00:00 2001 -From: Kent Fredric <kentnl@gentoo.org> -Date: Sun, 8 Oct 2017 13:08:20 +1300 -Subject: Fix useless localization of scalar assignment - -Bug: https://rt.cpan.org/Ticket/Display.html?id=73873 ---- - lib/DBI/Format.pm | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/lib/DBI/Format.pm b/lib/DBI/Format.pm -index 49cd7dd..bc985f9 100755 ---- a/lib/DBI/Format.pm -+++ b/lib/DBI/Format.pm -@@ -374,7 +374,7 @@ sub header { - - sub row { - my($self, $rowref) = @_; -- local( $^W = 0 ); -+ local ($^W) = 0; - my @row = @$rowref; - my $fh = $self->{'fh'}; - print $fh (join($self->{sep}, @row), "\n"); --- -2.14.1 - diff --git a/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-nochrdir.patch b/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-nochrdir.patch deleted file mode 100644 index b79649da4f5c..000000000000 --- a/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-nochrdir.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 9fb29d16514530245965b932040bb4fc37ffa9bf Mon Sep 17 00:00:00 2001 -From: Kent Fredric <kentnl@gentoo.org> -Date: Sun, 8 Oct 2017 13:11:29 +1300 -Subject: Fix no_chrdir warning - -Bug: https://rt.cpan.org/Ticket/Display.html?id=123215 ---- - lib/DBI/Shell/FindSqlFile.pm | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/lib/DBI/Shell/FindSqlFile.pm b/lib/DBI/Shell/FindSqlFile.pm -index e604290..2b56ccc 100644 ---- a/lib/DBI/Shell/FindSqlFile.pm -+++ b/lib/DBI/Shell/FindSqlFile.pm -@@ -62,7 +62,7 @@ sub look_for_file { - File::Find::find( - { - wanted => \&wanted -- , no_chrdir => 1 -+ , no_chdir => 1 - , bydepth => 0 - }, - @search_path); --- -2.14.1 - diff --git a/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-perl526.patch b/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-perl526.patch deleted file mode 100644 index cd8258480d70..000000000000 --- a/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-perl526.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 792cf15cb387e58cec1ef3c6d538689d02ab44c3 Mon Sep 17 00:00:00 2001 -From: Kent Fredric <kentnl@gentoo.org> -Date: Sun, 8 Oct 2017 12:46:17 +1300 -Subject: Fix '.' removal from @INC in Perl 5.26 - -Configuration files were always assumed to be explicit paths given -by outsiders, not random entries in @INC - -Bug: https://bugs.gentoo.org/615592 -Bug: https://rt.cpan.org/Ticket/Display.html?id=121136 ---- - lib/DBI/Shell.pm | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -diff --git a/lib/DBI/Shell.pm b/lib/DBI/Shell.pm -index 03dd958..7869f0f 100755 ---- a/lib/DBI/Shell.pm -+++ b/lib/DBI/Shell.pm -@@ -133,6 +133,7 @@ use Text::Abbrev (); - use Term::ReadLine; - use Getopt::Long 2.17; # upgrade from CPAN if needed: http://www.perl.com/CPAN - use IO::File; -+use File::Spec (); - - use DBI 1.00 qw(:sql_types :utils); - use DBI::Format; -@@ -544,7 +545,8 @@ sub configuration { - $sh->{config_file} = $ENV{DBISH_CONFIG} || "$homedir/.dbish_config"; - my $config; - if ($sh->{config_file} && -f $sh->{config_file}) { -- $config = require $sh->{config_file}; -+ my $full = File::Spec->rel2abs( $sh->{config_file} ); -+ $config = require $full; - # allow for custom configuration options. - if (exists $config->{'options'} ) { - $sh->install_options( $config->{'options'} ); --- -2.14.1 - diff --git a/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-sprintf-warn.patch b/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-sprintf-warn.patch deleted file mode 100644 index 46943c1266ba..000000000000 --- a/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-sprintf-warn.patch +++ /dev/null @@ -1,25 +0,0 @@ -From f44b8ba9d8cf954c76a967cbfb5d4182f109f8cf Mon Sep 17 00:00:00 2001 -From: Kent Fredric <kentnl@gentoo.org> -Date: Sun, 8 Oct 2017 13:30:36 +1300 -Subject: Silence warnings about reduntant sprintf args - -Bug: https://rt.cpan.org/Ticket/Display.html?id=123216 ---- - lib/DBI/Format/SQLMinus.pm | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/lib/DBI/Format/SQLMinus.pm b/lib/DBI/Format/SQLMinus.pm -index c3a9ba2..7b240c9 100755 ---- a/lib/DBI/Format/SQLMinus.pm -+++ b/lib/DBI/Format/SQLMinus.pm -@@ -155,6 +155,7 @@ sub header { - - if ( exists $cf->{format} and defined $cf->{format} ) { - $format_names = $cf->{format}; -+ no warnings 'redundant'; - $width = length sprintf( $format_names, " " ); - } - --- -2.14.1 - |