wok rev 24199

updated perl-dbd-sqlite (1.64 -> 1.70)
author Hans-G?nter Theisgen
date Fri Dec 31 15:13:47 2021 +0100 (2021-12-31)
parents 62c2c4167b03
children 62abd6ffd5b0
files perl-dbd-sqlite/description.txt perl-dbd-sqlite/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/perl-dbd-sqlite/description.txt	Fri Dec 31 15:13:47 2021 +0100
     1.3 @@ -0,0 +1,19 @@
     1.4 +DBD::SQLite is a Perl DBI driver for SQLite, that includes the
     1.5 +entire thing in the distribution.
     1.6 +So in order to get a fast transaction capable RDBMS working for
     1.7 +your perl project you simply have to install this module,
     1.8 +and nothing else.
     1.9 +
    1.10 +SQLite supports the following features:
    1.11 +
    1.12 +- Implements a large subset of SQL92
    1.13 +- A complete DB in a single disk file
    1.14 +- Atomic commit and rollback
    1.15 +- Extensible
    1.16 +
    1.17 +There's lots more to it, so please refer to the docs on the SQLite
    1.18 +web page for SQL details.
    1.19 +Also refer to DBI for details on how to use DBI itself.
    1.20 +The API works like every DBI module does.
    1.21 +However, currently many statement attributes are not implemented or
    1.22 +are limited by the typeless nature of the SQLite database.
     2.1 --- a/perl-dbd-sqlite/receipt	Fri Dec 31 15:11:07 2021 +0100
     2.2 +++ b/perl-dbd-sqlite/receipt	Fri Dec 31 15:13:47 2021 +0100
     2.3 @@ -1,12 +1,13 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="perl-dbd-sqlite"
     2.7 -VERSION="1.64"
     2.8 +VERSION="1.70"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="Perl extension DBD::SQLite."
    2.11  MAINTAINER="admin@trixarian.net"
    2.12  LICENSE="GPL"
    2.13 -WEB_SITE="https://metacpan.org/release/DBD-SQLite"
    2.14 +WEB_SITE="https://metacpan.org/pod/DBD::SQLite"
    2.15 +REPOLOGY="perl:dbd-sqlite"
    2.16  
    2.17  SOURCE="DBD-SQLite"
    2.18  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.19 @@ -26,12 +27,11 @@
    2.20  {
    2.21  	perl Makefile.PL &&
    2.22  	make &&
    2.23 -	make DESTDIR=$DESTDIR install
    2.24 +	make install DESTDIR=$DESTDIR
    2.25  }
    2.26  
    2.27  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.28  genpkg_rules()
    2.29  {
    2.30 -	mkdir -p $fs/usr
    2.31 -	cp -a $install/usr/lib	$fs/usr
    2.32 +	cook_copy_folders	lib
    2.33  }