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

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:40fd8ddf539e0e773a7a4e6d376794c3301459f9ab0050978bdcf97113dafe3e
size 2537672

3
DBD-SQLite-1.72.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5ca41e61eb52b52bd862a3088b912a75fe70910ac789b9a9983e0a449e94f551
size 2604501

View File

@@ -11,16 +11,3 @@ Index: DBD-SQLite-1.70/Makefile.PL
require File::Spec; require File::Spec;
if ( $sqlite_base = (grep(/SQLITE_LOCATION=.*/, @ARGV))[0] ) { if ( $sqlite_base = (grep(/SQLITE_LOCATION=.*/, @ARGV))[0] ) {
$sqlite_base =~ /=(.*)/; $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";
}

View File

@@ -1,3 +1,37 @@
-------------------------------------------------------------------
Wed Nov 23 17:38:35 UTC 2022 - Tina Müller <tina.mueller@suse.com>
- Update perl-DBD-SQLite-use-external-sqlite3.patch (remove metadata
fix, not needed anymore)
-------------------------------------------------------------------
Fri Nov 4 03:07:04 UTC 2022 - Tina Müller <timueller+perl@suse.de>
- 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++)
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Mar 15 08:24:59 UTC 2022 - Dirk Stoecker <opensuse@dstoecker.de> Tue Mar 15 08:24:59 UTC 2022 - Dirk Stoecker <opensuse@dstoecker.de>

View File

@@ -18,7 +18,7 @@
%define cpan_name DBD-SQLite %define cpan_name DBD-SQLite
Name: perl-DBD-SQLite Name: perl-DBD-SQLite
Version: 1.70 Version: 1.72
Release: 0 Release: 0
License: Artistic-1.0 OR GPL-1.0-or-later License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Self Contained SQLite RDBMS in a DBI Driver Summary: Self Contained SQLite RDBMS in a DBI Driver