From 3b08f674e3f771b49370edb144dab0958c8cf721 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Tue, 31 Aug 2021 08:59:54 +0100 Subject: gentoo resync : 31.08.2021 --- dev-perl/DBIx-SearchBuilder/Manifest | 1 - .../files/DBIx-SearchBuilder-1.66-no-dot-inc.patch | 341 --------------------- 2 files changed, 342 deletions(-) delete mode 100644 dev-perl/DBIx-SearchBuilder/files/DBIx-SearchBuilder-1.66-no-dot-inc.patch (limited to 'dev-perl/DBIx-SearchBuilder') diff --git a/dev-perl/DBIx-SearchBuilder/Manifest b/dev-perl/DBIx-SearchBuilder/Manifest index a3bcbda7917b..a9617b08cb36 100644 --- a/dev-perl/DBIx-SearchBuilder/Manifest +++ b/dev-perl/DBIx-SearchBuilder/Manifest @@ -1,4 +1,3 @@ -AUX DBIx-SearchBuilder-1.66-no-dot-inc.patch 8976 BLAKE2B 6e0a20539b99f2b80040b539b194d6ef6c1c69c4f9eba3bfaba658a8bc07050b869d60d1ca28e78e81a55032361d1595f0f34cd61541977c6e26eac2108a41f5 SHA512 ad733760ccc8b6dadd7238e0b8cd5e3cd34b6921e2483f0a3a6d8596623b4b8132c5d70cf4166e671f57f1950417d8e5c5564f9828c4625796a7e4b3f633d2f8 AUX DBIx-SearchBuilder-1.68-no-dot-inc.patch 8749 BLAKE2B 34f6e8108a4ec536cde3bc47bedef19126a96bfc50727273b1ad1b0978eb023a266fee29b7de1329a8a9a22ae924a0ef6c36cbb87a5791f657384b04f07b6ffd SHA512 110c6dab6121357f862e56bddf78a33e4b9b510034d79af6fc97d80995373b53c6c809fa26396dfc506a0e192c8532c1da8d8433ffd7ffbe20e45ee87b7ab7e7 DIST DBIx-SearchBuilder-1.69.tar.gz 118336 BLAKE2B 449bf21a3c2512f1afa08836c7c0d593f56f4ccfd6b2c126336144fb481585a86d1c75821e04a136710bd22be3e8ac93ec532ff60581330b33beac9f47885699 SHA512 3dc779ddda123493c852781cbd5e2ace2100ca8234a77a369ea802e6c041868e004aeaa0ce579b8a3899d371744927dd29a002aa149ba9b8097e429aeab7ac9e EBUILD DBIx-SearchBuilder-1.690.0.ebuild 874 BLAKE2B 982d04b623b7d7c3559a6c44ae67bef6cc18b11c671afc491196496c24b93a43536c510bbf2c15b1db76585de52cb37297440b82610ea8db28c71b2140e90a70 SHA512 6a84de432fdbf16153cde1817969ab6a4e88daa9a40d026ec64cbe5c095c9d970a59a3837bd45d00de515ec8cbc04927724e49b56d751d56bf8eea42d9c52d75 diff --git a/dev-perl/DBIx-SearchBuilder/files/DBIx-SearchBuilder-1.66-no-dot-inc.patch b/dev-perl/DBIx-SearchBuilder/files/DBIx-SearchBuilder-1.66-no-dot-inc.patch deleted file mode 100644 index 93ccd89c28e7..000000000000 --- a/dev-perl/DBIx-SearchBuilder/files/DBIx-SearchBuilder-1.66-no-dot-inc.patch +++ /dev/null @@ -1,341 +0,0 @@ -From 859d5403887df584af7e88e7bea7899ea6549fd0 Mon Sep 17 00:00:00 2001 -From: Kent Fredric -Date: Sun, 25 Jun 2017 19:16:42 +1200 -Subject: Fix for '.' removal from @INC in Perl 5.26 - -Bug: https://rt.cpan.org/Ticket/Display.html?id=121140 -Bug: https://bugs.gentoo.org/615602 -Bug: https://github.com/bestpractical/dbix-searchbuilder/pull/5 ---- - Makefile.PL | 1 + - t/01basics.t | 2 +- - t/01nocap_api.t | 2 +- - t/01records.t | 2 +- - t/01searches.t | 2 +- - t/02distinct_values.t | 2 +- - t/02null_order.t | 2 +- - t/02order_outer.t | 2 +- - t/02records_cachable.t | 2 +- - t/02records_datetime.t | 2 +- - t/02records_dt_interval.t | 2 +- - t/02records_integers.t | 2 +- - t/02records_object.t | 2 +- - t/02searches_function.t | 2 +- - t/02searches_joins.t | 2 +- - t/03compatibility.t | 2 +- - t/03cud_from_select.t | 2 +- - t/03rebless.t | 2 +- - t/03transactions.t | 2 +- - t/03versions.t | 2 +- - t/10schema.t | 4 ++-- - t/11schema_records.t | 2 +- - t/20set_edge_cases.t | 2 +- - 23 files changed, 24 insertions(+), 23 deletions(-) - -diff --git a/Makefile.PL b/Makefile.PL -index 49ec3f0..837f26f 100755 ---- a/Makefile.PL -+++ b/Makefile.PL -@@ -1,3 +1,4 @@ -+use lib '.'; - use inc::Module::Install; - - name ('DBIx-SearchBuilder'); -diff --git a/t/01basics.t b/t/01basics.t -index a46ede6..f0c18df 100644 ---- a/t/01basics.t -+++ b/t/01basics.t -@@ -3,7 +3,7 @@ - use strict; - - use Test::More; --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 4; -diff --git a/t/01nocap_api.t b/t/01nocap_api.t -index 1ea417e..be45395 100644 ---- a/t/01nocap_api.t -+++ b/t/01nocap_api.t -@@ -3,7 +3,7 @@ - use strict; - - use Test::More; --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - - use vars qw(@SPEC_METHODS @MODULES); - my @SPEC_METHODS = qw(AUTOLOAD DESTROY CLONE); -diff --git a/t/01records.t b/t/01records.t -index a1f1366..d701e94 100644 ---- a/t/01records.t -+++ b/t/01records.t -@@ -4,7 +4,7 @@ - use strict; - use warnings; - use Test::More; --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 66; -diff --git a/t/01searches.t b/t/01searches.t -index 83a2001..1276544 100644 ---- a/t/01searches.t -+++ b/t/01searches.t -@@ -4,7 +4,7 @@ - use strict; - use warnings; - use Test::More; --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 150; -diff --git a/t/02distinct_values.t b/t/02distinct_values.t -index f20328d..826db21 100644 ---- a/t/02distinct_values.t -+++ b/t/02distinct_values.t -@@ -4,7 +4,7 @@ - use strict; - use warnings; - use Test::More; --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 9; -diff --git a/t/02null_order.t b/t/02null_order.t -index 9feda47..fab111d 100644 ---- a/t/02null_order.t -+++ b/t/02null_order.t -@@ -4,7 +4,7 @@ - use strict; - use warnings; - use Test::More; --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 11; -diff --git a/t/02order_outer.t b/t/02order_outer.t -index 08a236b..14a39fe 100644 ---- a/t/02order_outer.t -+++ b/t/02order_outer.t -@@ -4,7 +4,7 @@ - use strict; - use warnings; - use Test::More; --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 98; -diff --git a/t/02records_cachable.t b/t/02records_cachable.t -index cdbb9da..9418990 100644 ---- a/t/02records_cachable.t -+++ b/t/02records_cachable.t -@@ -4,7 +4,7 @@ - use strict; - use warnings; - use Test::More; --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 16; -diff --git a/t/02records_datetime.t b/t/02records_datetime.t -index f1a0d7a..6882729 100644 ---- a/t/02records_datetime.t -+++ b/t/02records_datetime.t -@@ -5,7 +5,7 @@ BEGIN { $ENV{'TZ'} = 'Europe/Moscow' }; - use strict; - use warnings; - use Test::More; --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 38; -diff --git a/t/02records_dt_interval.t b/t/02records_dt_interval.t -index ef1ead3..283746f 100644 ---- a/t/02records_dt_interval.t -+++ b/t/02records_dt_interval.t -@@ -5,7 +5,7 @@ BEGIN { $ENV{'TZ'} = 'Europe/Moscow' }; - use strict; - use warnings; - use Test::More; --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 17; -diff --git a/t/02records_integers.t b/t/02records_integers.t -index d13e2ee..95b8504 100644 ---- a/t/02records_integers.t -+++ b/t/02records_integers.t -@@ -3,7 +3,7 @@ - use strict; - use warnings; - use Test::More; --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 37; -diff --git a/t/02records_object.t b/t/02records_object.t -index 18c724e..34576db 100644 ---- a/t/02records_object.t -+++ b/t/02records_object.t -@@ -5,7 +5,7 @@ use strict; - use warnings; - use Test::More; - --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 11; -diff --git a/t/02searches_function.t b/t/02searches_function.t -index 2fd6e7e..c8682de 100644 ---- a/t/02searches_function.t -+++ b/t/02searches_function.t -@@ -3,7 +3,7 @@ - use strict; - use Test::More; - --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 18; -diff --git a/t/02searches_joins.t b/t/02searches_joins.t -index 1661f2b..cbdc3c9 100644 ---- a/t/02searches_joins.t -+++ b/t/02searches_joins.t -@@ -3,7 +3,7 @@ - use strict; - use Test::More; - --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 59; -diff --git a/t/03compatibility.t b/t/03compatibility.t -index 14eb382..3939503 100644 ---- a/t/03compatibility.t -+++ b/t/03compatibility.t -@@ -4,7 +4,7 @@ - use strict; - use warnings; - use Test::More; --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 2; -diff --git a/t/03cud_from_select.t b/t/03cud_from_select.t -index 7f5d21b..2f324b7 100644 ---- a/t/03cud_from_select.t -+++ b/t/03cud_from_select.t -@@ -3,7 +3,7 @@ - use strict; - use Test::More; - --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 14; -diff --git a/t/03rebless.t b/t/03rebless.t -index 888bb94..467cf00 100644 ---- a/t/03rebless.t -+++ b/t/03rebless.t -@@ -6,7 +6,7 @@ use warnings; - use Test::More; - use DBIx::SearchBuilder::Handle; - --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 4; -diff --git a/t/03transactions.t b/t/03transactions.t -index e641c19..ef0f973 100644 ---- a/t/03transactions.t -+++ b/t/03transactions.t -@@ -4,7 +4,7 @@ - use strict; - use warnings; - use Test::More; --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 52; -diff --git a/t/03versions.t b/t/03versions.t -index 79bb2e9..4acba37 100644 ---- a/t/03versions.t -+++ b/t/03versions.t -@@ -5,7 +5,7 @@ use warnings; - use Test::More; - use DBIx::SearchBuilder::Handle; - --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 6; -diff --git a/t/10schema.t b/t/10schema.t -index 2ff5ab6..fcf1a7b 100644 ---- a/t/10schema.t -+++ b/t/10schema.t -@@ -8,7 +8,7 @@ use constant TESTS_PER_DRIVER => 14; - our @AvailableDrivers; - - BEGIN { -- require("t/utils.pl"); -+ require("./t/utils.pl"); - my $total = 3 + scalar(@AvailableDrivers) * TESTS_PER_DRIVER; - if( not eval { require DBIx::DBSchema } ) { - plan skip_all => "DBIx::DBSchema not installed"; -@@ -22,7 +22,7 @@ BEGIN { - use_ok("DBIx::SearchBuilder::Handle"); - } - --require_ok("t/testmodels.pl"); -+require_ok("./t/testmodels.pl"); - - foreach my $d ( @AvailableDrivers ) { - SKIP: { -diff --git a/t/11schema_records.t b/t/11schema_records.t -index 4fc4dc4..a586cda 100644 ---- a/t/11schema_records.t -+++ b/t/11schema_records.t -@@ -5,7 +5,7 @@ use strict; - use warnings; - use Test::More; - --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 63; -diff --git a/t/20set_edge_cases.t b/t/20set_edge_cases.t -index 943f76a..d22b1ee 100644 ---- a/t/20set_edge_cases.t -+++ b/t/20set_edge_cases.t -@@ -3,7 +3,7 @@ - use strict; - use warnings; - use Test::More; --BEGIN { require "t/utils.pl" } -+BEGIN { require "./t/utils.pl" } - our (@AvailableDrivers); - - use constant TESTS_PER_DRIVER => 20; --- -2.14.1 - -- cgit v1.2.3