]> git.pld-linux.org Git - packages/perl-DBD-SQLite.git/commitdiff
- updated to 1.72 auto/th/perl-DBD-SQLite-1.72-1
authorJakub Bogusz <qboosh@pld-linux.org>
Sun, 6 Nov 2022 16:26:21 +0000 (17:26 +0100)
committerJakub Bogusz <qboosh@pld-linux.org>
Sun, 6 Nov 2022 16:26:21 +0000 (17:26 +0100)
- adjusted data_type patch to supoort both lower and upper case

data_type.patch
perl-DBD-SQLite.spec

index 66807a02550f250bfa226f2f723c48e1aa042b76..73f2c16a466808d25721fd885f748880e556714b 100644 (file)
@@ -5,7 +5,7 @@
                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";
++              is lc($data->{data_type}) => 'integer', "data type is correct";
                ok $data->{primary}, "id is a primary key";
                ok !$data->{not_null}, "id is not null";
        }
index 18da4a60b7083bfdaca0ea3f6949ab4490a9c719..9de1ab3da2e3b9ceebe695c5a5b4ed678ebecd08 100644 (file)
@@ -1,20 +1,20 @@
 #
 # Conditional build:
-%bcond_without tests           # do not perform "make test"
-%bcond_without system_sqlite3  # don't use system sqlite3
+%bcond_without tests           # unit tests
+%bcond_without system_sqlite3  # system sqlite3
 #
 %define                pdir    DBD
 %define                pnam    SQLite
 Summary:       DBD::SQLite - Self Contained RDBMS in a DBI Driver (sqlite 3.x)
 Summary(pl.UTF-8):     DBD::SQLite - Kompletny RDBMS zawarty w sterowniku DBI (sqlite 3.x)
 Name:          perl-DBD-SQLite
-Version:       1.70
-Release:       2
+Version:       1.72
+Release:       1
 # same as perl
 License:       GPL v1+ or Artistic
 Group:         Development/Languages/Perl
 Source0:       https://www.cpan.org/modules/by-module/DBD/%{pdir}-%{pnam}-%{version}.tar.gz
-# Source0-md5: cc20dad09474da382488686ea07e8288
+# Source0-md5: 976df252ae0aceb7fb81587af425580b
 Patch0:                data_type.patch
 URL:           https://metacpan.org/release/DBD-SQLite
 BuildRequires: perl-DBI >= 1.57
This page took 0.188783 seconds and 4 git commands to generate.