8
0

Accepting request 1037719 from devel:languages:perl:autoupdate

- Update perl-DBD-SQLite-use-external-sqlite3.patch (remove metadata
  fix, not needed anymore)
- updated to 1.72
   see /usr/share/doc/packages/perl-DBD-SQLite/Changes
  1.72 2022-11-04
      - Switched to a production version
  1.71_07 2022-10-26
      - Upgraded SQLite to 3.39.4
  1.71_06 2022-03-12
      - Set UTF8CACHE to avoid slowdown with -DDEBUGGING (andk, Leont, FGasper)
  1.71_05 2022-02-26
      - Fix another test failure on perl built with -DDEBUGGING
      - Lowercase datatype in table column metadata for backcompat
  1.71_04 2022-02-26
      - Fix test failure on perl built with -DDEBUGGING (andk++)
  1.71_03 2022-02-23
      - Upgraded SQLite to 3.38.0
      - Expose sqlite_error_offset introduced in 3.38.0
  1.71_02 2022-01-07
      - Upgraded SQLite to 3.37.2
      - Improve sqlite_load_extension doc (GH#94, Derek Lamb++)
  1.71_01 2021-12-02
      - Upgraded SQLite to 3.37.0
      - Add a feature to unregister a created function
      - Fix accented characters in POD (GH#90, HaraldJoerg++)

OBS-URL: https://build.opensuse.org/request/show/1037719
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-DBD-SQLite?expand=0&rev=75
This commit is contained in:
Stephan Kulow
2022-11-24 09:14:01 +00:00
committed by Git OBS Bridge
parent d03509a5eb
commit 871b99ede2
5 changed files with 38 additions and 17 deletions

View File

@@ -11,16 +11,3 @@ Index: DBD-SQLite-1.70/Makefile.PL
require File::Spec;
if ( $sqlite_base = (grep(/SQLITE_LOCATION=.*/, @ARGV))[0] ) {
$sqlite_base =~ /=(.*)/;
Index: DBD-SQLite-1.70/t/51_table_column_metadata.t
===================================================================
--- DBD-SQLite-1.70.orig/t/51_table_column_metadata.t
+++ DBD-SQLite-1.70/t/51_table_column_metadata.t
@@ -19,7 +19,7 @@ for my $call_func (@CALL_FUNCS) {
my $data = $dbh->$call_func(undef, 'foo', 'id', 'table_column_metadata');
ok $data && ref $data eq ref {}, "got a metadata";
ok $data->{auto_increment}, "id is auto incremental";
- is $data->{data_type} => 'integer', "data type is correct";
+ is $data->{data_type} => 'INTEGER', "data type is correct";
ok $data->{primary}, "id is a primary key";
ok !$data->{not_null}, "id is not null";
}