# HG changeset patch # User Hans-G?nter Theisgen # Date 1640960027 -3600 # Node ID ff289f52a506c988c8e7a81f21e7e9fdbfd2ecdf # Parent 62c2c4167b03394bc89eb95fbc2e047c780efa5b updated perl-dbd-sqlite (1.64 -> 1.70) diff -r 62c2c4167b03 -r ff289f52a506 perl-dbd-sqlite/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-dbd-sqlite/description.txt Fri Dec 31 15:13:47 2021 +0100 @@ -0,0 +1,19 @@ +DBD::SQLite is a Perl DBI driver for SQLite, that includes the +entire thing in the distribution. +So in order to get a fast transaction capable RDBMS working for +your perl project you simply have to install this module, +and nothing else. + +SQLite supports the following features: + +- Implements a large subset of SQL92 +- A complete DB in a single disk file +- Atomic commit and rollback +- Extensible + +There's lots more to it, so please refer to the docs on the SQLite +web page for SQL details. +Also refer to DBI for details on how to use DBI itself. +The API works like every DBI module does. +However, currently many statement attributes are not implemented or +are limited by the typeless nature of the SQLite database. diff -r 62c2c4167b03 -r ff289f52a506 perl-dbd-sqlite/receipt --- a/perl-dbd-sqlite/receipt Fri Dec 31 15:11:07 2021 +0100 +++ b/perl-dbd-sqlite/receipt Fri Dec 31 15:13:47 2021 +0100 @@ -1,12 +1,13 @@ # SliTaz package receipt. PACKAGE="perl-dbd-sqlite" -VERSION="1.64" +VERSION="1.70" CATEGORY="development" SHORT_DESC="Perl extension DBD::SQLite." MAINTAINER="admin@trixarian.net" LICENSE="GPL" -WEB_SITE="https://metacpan.org/release/DBD-SQLite" +WEB_SITE="https://metacpan.org/pod/DBD::SQLite" +REPOLOGY="perl:dbd-sqlite" SOURCE="DBD-SQLite" TARBALL="$SOURCE-$VERSION.tar.gz" @@ -26,12 +27,11 @@ { perl Makefile.PL && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/lib $fs/usr + cook_copy_folders lib }