ebd536db80
Upstream changes: 1.31 Wed 15 Sep 2010 - Production release, identical to 1.30_06 1.30_06 Thu 9 Sep 2010 - Resolved # 60860: Slow but steady memory leak on last_insert_id calls (ISHIGAKI) - Moved DBD::SQLite::FTS3Transitional into a dedicated dist (DAMI) - Updated bundled Test::NoWarnings to 1.02 (ADAMK) - Slightly bumped Test::More and added Test::Builder dependencies, because they are inherited from the bundled Test::NoWarnings (ADAMK) - Upgraded ppport.h to the latest version (ADAMK) 1.30_05 Fri 27 Aug 2010 - Test::NoWarnings bundled in the "inc" directory was ignored in a new test. (ISHIGAKI) 1.30_04 Wed 25 Aug 2010 - Updated to SQLite 3.7.2 (DUNCAND) - Resolved #60698: "Test failures with SQLite 3.7", using included patch by Niko Tyni (ntyni@debian.org) of t/lib/Test.pm (DUNCAND) - Added support for FTS3 tokenizers written in Perl. Added tests and documentation on how to use FTS3. Changed compilation flag to use the recommanded -DSQLITE_ENABLE_FTS3_PARENTHESIS *** MAY POSSIBLY BREAK OLD APPLICATIONS THAT ALREADY USED FTS3 *** (DAMI) - Fixed various backward compatibility issues back to SQLite 3.6.1 (ISHIGAKI) - Resolved #58332: Documentation error for preventing fsync (ISHIGAKI) 1.30_03 Mon 21 May 2010 - Updated to SQLite 3.6.23.1 (ISHIGAKI) - Resolved #56693: [PATCH] Fix spelling errors (patch by Ansgar Burchardt) (ISHIGAKI) - Added compile_options() to get compile options (ISHIGAKI) - Fixed punctuation; suggested by Father Chrysostomos (ISHIGAKI) - Ignore unknown collations, as they may be installed without using DBD::SQLite's api. This should help ICU plugin. (ISHIGAKI) 1.30_02 Tue 30 Mar 2010 - Implemented sqlite_use_immediate_transaction database handle attribute to avoid deadlocks easily (ISHIGAKI) - Resolved #55466: Problem with names in DB that using square bracers (ISHIGAKI) - Added SQLITE_ENABLE_LOCKING_STYLE=0 for Mac OSX to avoid compile error (ISHIGAKI) 1.30_01 Wed 10 Mar 2010 *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS *** - Resolved #54271: Inserting a string with utf-8 flag on corrupts BLOB data; now BLOB data is always stored as bytes (without the utf-8 flag) even if it has the flag set (ISHIGAKI) - Updated to SQLite 3.6.23 (DUNCAND) - Implemented NUM_OF_PARAMS statement handle attribute (ISHIGAKI) - Added experimental "sqlite_allow_multiple_statements" database handle attribute, and "sqlite_unprepared_statements" statement handle attribute, to allow processing a SQL dump. (ISHIGAKI) - Resolved #53579: Added a note and a test of placeholders. (ISHIGAKI) - Resolved #45113, which was actually an issue of dequoting primary key column names (ISHIGAKI) - You can now retrieve some of the statement handle attributes before you execute. (ISHIGAKI) - Added preamble to copy sqlite3.[hc] files into a share directory (where you can access via File::ShareDir) to allow extension authors to use the same C source/header as they used to build DBD::SQLite itself. (ISHIGAKI)
27 lines
776 B
Makefile
27 lines
776 B
Makefile
# $NetBSD: Makefile,v 1.26 2010/09/17 05:05:45 sno Exp $
|
|
#
|
|
|
|
DISTNAME= DBD-SQLite-1.31
|
|
PKGNAME= p5-${DISTNAME}
|
|
#PKGREVISION= 1
|
|
SVR4_PKGNAME= p5dsl
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBD/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/DBD-SQLite/
|
|
COMMENT= Perl DBI/DBD driver for sqlite databases
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_LANGUAGES= c
|
|
PERL5_PACKLIST= auto/DBD/SQLite/.packlist
|
|
#MAKE_PARAMS+= SQLITE_LOCATION=${PREFIX:Q}
|
|
|
|
BUILDLINK_API_DEPENDS.p5-DBI+= p5-DBI>=1.580
|
|
.include "../../databases/p5-DBI/buildlink3.mk"
|
|
#.include "../../databases/sqlite3/buildlink3.mk"
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|