diff --git a/.gitignore b/.gitignore index 233fee1..7a4db72 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,16 @@ -SOURCES/DBD-SQLite-1.58.tar.gz +DBD-SQLite-1.29.tar.gz +/DBD-SQLite-1.31.tar.gz +/DBD-SQLite-1.33.tar.gz +/DBD-SQLite-1.35.tar.gz +/DBD-SQLite-1.37.tar.gz +/DBD-SQLite-1.39.tar.gz +/DBD-SQLite-1.40.tar.gz +/DBD-SQLite-1.42.tar.gz +/DBD-SQLite-1.44.tar.gz +/DBD-SQLite-1.46.tar.gz +/DBD-SQLite-1.48.tar.gz +/DBD-SQLite-1.50.tar.gz +/DBD-SQLite-1.52.tar.gz +/DBD-SQLite-1.54.tar.gz +/DBD-SQLite-1.56.tar.gz /DBD-SQLite-1.58.tar.gz diff --git a/DBD-SQLite-1.62-Remove-bundled-source-extentions.patch b/DBD-SQLite-1.62-Remove-bundled-source-extentions.patch deleted file mode 100644 index 38e89b2..0000000 --- a/DBD-SQLite-1.62-Remove-bundled-source-extentions.patch +++ /dev/null @@ -1,96 +0,0 @@ -From 244f130b8f918cc80b1c2165877102fe56d6611f Mon Sep 17 00:00:00 2001 -From: Jitka Plesnikova -Date: Wed, 2 Jan 2019 13:34:31 +0100 -Subject: [PATCH] Remove bundled source extentions - ---- - README | 30 ------------------------------ - lib/DBD/SQLite.pm | 31 ------------------------------- - 2 files changed, 61 deletions(-) - -diff --git a/README b/README -index 34973a3..069cdeb 100644 ---- a/README -+++ b/README -@@ -1439,36 +1439,6 @@ VIRTUAL TABLES IMPLEMENTED IN PERL - Other Perl virtual tables may also be published separately on - CPAN. - --FOR DBD::SQLITE EXTENSION AUTHORS -- Since 1.30_01, you can retrieve the bundled SQLite C source and/or -- header like this: -- -- use File::ShareDir 'dist_dir'; -- use File::Spec::Functions 'catfile'; -- -- # the whole sqlite3.h header -- my $sqlite3_h = catfile(dist_dir('DBD-SQLite'), 'sqlite3.h'); -- -- # or only a particular header, amalgamated in sqlite3.c -- my $what_i_want = 'parse.h'; -- my $sqlite3_c = catfile(dist_dir('DBD-SQLite'), 'sqlite3.c'); -- open my $fh, '<', $sqlite3_c or die $!; -- my $code = do { local $/; <$fh> }; -- my ($parse_h) = $code =~ m{( -- /\*+[ ]Begin[ ]file[ ]$what_i_want[ ]\*+ -- .+? -- /\*+[ ]End[ ]of[ ]$what_i_want[ ]\*+/ -- )}sx; -- open my $out, '>', $what_i_want or die $!; -- print $out $parse_h; -- close $out; -- -- You usually want to use this in your extension's "Makefile.PL", -- and you may want to add DBD::SQLite to your extension's -- "CONFIGURE_REQUIRES" to ensure your extension users use the same C -- source/header they use to build DBD::SQLite itself (instead of the -- ones installed in their system). -- - TO DO - The following items remain to be done. - -diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm -index f6b90e4..e1150aa 100644 ---- a/lib/DBD/SQLite.pm -+++ b/lib/DBD/SQLite.pm -@@ -2649,37 +2649,6 @@ sources, etc. - - Other Perl virtual tables may also be published separately on CPAN. - --=head1 FOR DBD::SQLITE EXTENSION AUTHORS -- --Since 1.30_01, you can retrieve the bundled SQLite C source and/or --header like this: -- -- use File::ShareDir 'dist_dir'; -- use File::Spec::Functions 'catfile'; -- -- # the whole sqlite3.h header -- my $sqlite3_h = catfile(dist_dir('DBD-SQLite'), 'sqlite3.h'); -- -- # or only a particular header, amalgamated in sqlite3.c -- my $what_i_want = 'parse.h'; -- my $sqlite3_c = catfile(dist_dir('DBD-SQLite'), 'sqlite3.c'); -- open my $fh, '<', $sqlite3_c or die $!; -- my $code = do { local $/; <$fh> }; -- my ($parse_h) = $code =~ m{( -- /\*+[ ]Begin[ ]file[ ]$what_i_want[ ]\*+ -- .+? -- /\*+[ ]End[ ]of[ ]$what_i_want[ ]\*+/ -- )}sx; -- open my $out, '>', $what_i_want or die $!; -- print $out $parse_h; -- close $out; -- --You usually want to use this in your extension's C, --and you may want to add DBD::SQLite to your extension's C --to ensure your extension users use the same C source/header they use --to build DBD::SQLite itself (instead of the ones installed in their --system). -- - =head1 TO DO - - The following items remain to be done. --- -2.17.2 - diff --git a/DBD-SQLite-1.64-Unbundle-Test-FailWarnings.patch b/DBD-SQLite-1.64-Unbundle-Test-FailWarnings.patch deleted file mode 100644 index 6d9047c..0000000 --- a/DBD-SQLite-1.64-Unbundle-Test-FailWarnings.patch +++ /dev/null @@ -1,49 +0,0 @@ -From 7b0ab0afac68a6540e1023419d66423f24f6134a Mon Sep 17 00:00:00 2001 -From: Jitka Plesnikova -Date: Mon, 3 Dec 2018 15:36:25 +0100 -Subject: [PATCH] Unbundle Test::FailWarnings - ---- - Makefile.PL | 6 ++---- - t/virtual_table/11_filecontent_fulltext.t | 7 ++----- - 2 files changed, 5 insertions(+), 10 deletions(-) - -diff --git a/Makefile.PL b/Makefile.PL -index 1175783..f523987 100644 ---- a/Makefile.PL -+++ b/Makefile.PL -@@ -367,6 +367,7 @@ WriteMakefile( - build_requires => { - 'File::Spec' => (WINLIKE ? '3.27' : '0.82'), - 'Test::More' => '0.88', -+ 'Test::FailWarnings' => '0.008', - }, - requires => { - 'Tie::Hash' => 0, -diff --git a/t/virtual_table/11_filecontent_fulltext.t b/t/virtual_table/11_filecontent_fulltext.t -index 0a0304f..a49fd35 100644 ---- a/t/virtual_table/11_filecontent_fulltext.t -+++ b/t/virtual_table/11_filecontent_fulltext.t -@@ -21,8 +21,7 @@ my @tests = ( - lib/DBD/SQLite/VirtualTable/FileContent.pm - lib/DBD/SQLite/VirtualTable/PerlData.pm]], - ["install_method" => qw[lib/DBD/SQLite.pm]], -- ['"use strict"' => qw[inc/Test/FailWarnings.pm -- lib/DBD/SQLite.pm -+ ['"use strict"' => qw[lib/DBD/SQLite.pm - lib/DBD/SQLite/Constants.pm - lib/DBD/SQLite/GetInfo.pm - lib/DBD/SQLite/VirtualTable.pm -@@ -36,8 +35,7 @@ my @tests = ( - # literally. - if (has_compile_option('ENABLE_FTS3_PARENTHESIS')) { - push @tests, ( -- ['"use strict" AND "use warnings"' => qw[inc/Test/FailWarnings.pm -- lib/DBD/SQLite/Constants.pm -+ ['"use strict" AND "use warnings"' => qw[lib/DBD/SQLite/Constants.pm - lib/DBD/SQLite/GetInfo.pm - lib/DBD/SQLite/VirtualTable.pm - lib/DBD/SQLite/VirtualTable/FileContent.pm --- -2.17.2 - diff --git a/gating.yaml b/gating.yaml deleted file mode 100644 index c190bde..0000000 --- a/gating.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- !Policy -product_versions: - - rhel-9 -decision_context: osci_compose_gate -rules: - - !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional} diff --git a/perl-DBD-SQLite.rpmlintrc b/perl-DBD-SQLite.rpmlintrc deleted file mode 100644 index ca20202..0000000 --- a/perl-DBD-SQLite.rpmlintrc +++ /dev/null @@ -1,2 +0,0 @@ -from Config import * -addFilter("spelling-error .* (https|www)");