diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-06-27 21:31:01 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-06-27 21:31:01 +0000 |
commit | 5f63531148f49c7612306c924babb6fa8ace54d4 (patch) | |
tree | 179d8a7b10fabac5313c973d8b033915d1bbbf09 /dev-db/sqlite/files | |
parent | QA: call econf in src_configure(), #275633 (diff) | |
download | gentoo-2-5f63531148f49c7612306c924babb6fa8ace54d4.tar.gz gentoo-2-5f63531148f49c7612306c924babb6fa8ace54d4.tar.bz2 gentoo-2-5f63531148f49c7612306c924babb6fa8ace54d4.zip |
Version bump.
(Portage version: 13716-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-db/sqlite/files')
-rw-r--r-- | dev-db/sqlite/files/sandbox-fix1.patch | 40 | ||||
-rw-r--r-- | dev-db/sqlite/files/sqlite-3-test-fix-3.3.4.patch | 20 | ||||
-rw-r--r-- | dev-db/sqlite/files/sqlite-3.3.3-tcl-fix.patch | 22 | ||||
-rw-r--r-- | dev-db/sqlite/files/sqlite-64bit-test-fix.patch | 15 | ||||
-rw-r--r-- | dev-db/sqlite/files/sqlite-64bit-test-fix2.patch | 13 |
5 files changed, 0 insertions, 110 deletions
diff --git a/dev-db/sqlite/files/sandbox-fix1.patch b/dev-db/sqlite/files/sandbox-fix1.patch deleted file mode 100644 index 38e4256f8012..000000000000 --- a/dev-db/sqlite/files/sandbox-fix1.patch +++ /dev/null @@ -1,40 +0,0 @@ ---- test/capi3.test~ 2006-01-30 23:35:44.000000000 +0100 -+++ test/capi3.test 2006-02-05 19:41:12.000000000 +0100 -@@ -140,18 +140,6 @@ - do_test capi3-3.2 { - sqlite3_close $db2 - } {SQLITE_OK} --do_test capi3-3.3 { -- catch { -- set db2 [sqlite3_open /bogus/path/test.db {}] -- } -- sqlite3_errcode $db2 --} {SQLITE_CANTOPEN} --do_test capi3-3.4 { -- sqlite3_errmsg $db2 --} {unable to open database file} --do_test capi3-3.5 { -- sqlite3_close $db2 --} {SQLITE_OK} - do_test capi3-3.6.1 { - sqlite3_close $db2 - } {SQLITE_MISUSE} -@@ -176,18 +164,6 @@ - do_test capi3-4.2 { - sqlite3_close $db2 - } {SQLITE_OK} --do_test capi3-4.3 { -- catch { -- set db2 [sqlite3_open16 [utf16 /bogus/path/test.db] {}] -- } -- sqlite3_errcode $db2 --} {SQLITE_CANTOPEN} --do_test capi3-4.4 { -- utf8 [sqlite3_errmsg16 $db2] --} {unable to open database file} --do_test capi3-4.5 { -- sqlite3_close $db2 --} {SQLITE_OK} - } ;# utf16 - - # This proc is used to test the following API calls: diff --git a/dev-db/sqlite/files/sqlite-3-test-fix-3.3.4.patch b/dev-db/sqlite/files/sqlite-3-test-fix-3.3.4.patch deleted file mode 100644 index 5429fbbd051c..000000000000 --- a/dev-db/sqlite/files/sqlite-3-test-fix-3.3.4.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- Makefile.in.old 2006-02-13 15:20:42.000000000 +0100 -+++ Makefile.in 2006-02-13 15:21:02.000000000 +0100 -@@ -242,7 +242,7 @@ - # of the most recently modified source code file - # - last_change: $(SRC) -- cat $(SRC) | grep '$$Id: ' | sort +4 | tail -1 \ -+ cat $(SRC) | grep '$$Id: ' | sort -k 5 | tail -1 \ - | $(NAWK) '{print $$5,$$6}' >last_change - - libsqlite3.la: $(LIBOBJ) -@@ -338,7 +338,7 @@ - $(LTCOMPILE) -c opcodes.c - - opcodes.c: opcodes.h $(TOP)/mkopcodec.awk -- sort -n -b +2 opcodes.h | $(NAWK) -f $(TOP)/mkopcodec.awk >opcodes.c -+ sort -n -b -k 3 opcodes.h | $(NAWK) -f $(TOP)/mkopcodec.awk >opcodes.c - - opcodes.h: parse.h $(TOP)/src/vdbe.c $(TOP)/mkopcodeh.awk - cat parse.h $(TOP)/src/vdbe.c | $(NAWK) -f $(TOP)/mkopcodeh.awk >opcodes.h diff --git a/dev-db/sqlite/files/sqlite-3.3.3-tcl-fix.patch b/dev-db/sqlite/files/sqlite-3.3.3-tcl-fix.patch deleted file mode 100644 index 2d4356db741b..000000000000 --- a/dev-db/sqlite/files/sqlite-3.3.3-tcl-fix.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- tclinstaller.tcl.old 2006-02-05 21:44:20.000000000 +0100 -+++ tclinstaller.tcl 2006-02-05 21:49:50.000000000 +0100 -@@ -7,14 +7,17 @@ - set VERSION [lindex $argv 0] - set LIBFILE .libs/libtclsqlite3[info sharedlibextension] - if { ![info exists env(DESTDIR)] } { set env(DESTDIR) "" } --set LIBDIR $env(DESTDIR)[lindex $auto_path 0] -+if { ![info exists env(TCLLIBDIR)] } { set env(TCLLIBDIR) [lindex $auto_path 0] } -+set LIBDIR $env(DESTDIR)$env(TCLLIBDIR) -+set LIBDIR_INSTALL $env(TCLLIBDIR) - set LIBNAME [file tail $LIBFILE] - set LIB $LIBDIR/sqlite3/$LIBNAME -+set LIB_INSTALL $LIBDIR_INSTALL/sqlite3/$LIBNAME - - file delete -force $LIBDIR/sqlite3 - file mkdir $LIBDIR/sqlite3 - set fd [open $LIBDIR/sqlite3/pkgIndex.tcl w] --puts $fd "package ifneeded sqlite3 $VERSION \[list load $LIB sqlite3\]" -+puts $fd "package ifneeded sqlite3 $VERSION \[list load $LIB_INSTALL sqlite3\]" - close $fd - - # We cannot use [file copy] because that will just make a copy of diff --git a/dev-db/sqlite/files/sqlite-64bit-test-fix.patch b/dev-db/sqlite/files/sqlite-64bit-test-fix.patch deleted file mode 100644 index f121e5293849..000000000000 --- a/dev-db/sqlite/files/sqlite-64bit-test-fix.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- test/printf.test~ 2005-12-19 18:31:01.000000000 +0100 -+++ test/printf.test 2006-02-05 18:12:33.000000000 +0100 -@@ -130,12 +130,6 @@ - sqlite3_mprintf_scaled {A double: %g} 1.0e307 100.0 - } {A double: NaN} - --do_test printf-8.1 { -- sqlite3_mprintf_int {%u %u %u} 0x7fffffff 0x80000000 0xffffffff --} {2147483647 2147483648 4294967295} --do_test printf-8.2 { -- sqlite3_mprintf_int {%lu %lu %lu} 0x7fffffff 0x80000000 0xffffffff --} {2147483647 2147483648 4294967295} - do_test printf-8.3 { - sqlite3_mprintf_int64 {%llu %llu %llu} 2147483647 2147483648 4294967296 - } {2147483647 2147483648 4294967296} diff --git a/dev-db/sqlite/files/sqlite-64bit-test-fix2.patch b/dev-db/sqlite/files/sqlite-64bit-test-fix2.patch deleted file mode 100644 index 08d93f0bc7d0..000000000000 --- a/dev-db/sqlite/files/sqlite-64bit-test-fix2.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- test/types3.test~ 2006-01-21 15:32:32.000000000 +0100 -+++ test/types3.test 2006-02-05 18:14:04.000000000 +0100 -@@ -30,10 +30,6 @@ - set V [expr {1+2}] - concat [tcl_variable_type V] [execsql {SELECT typeof(:V)}] - } {int integer} --do_test types3-1.3 { -- set V [expr {1+123456789012345}] -- concat [tcl_variable_type V] [execsql {SELECT typeof(:V)}] --} {wideInt integer} - - # A double variable comes in as REAL - do_test types3-1.4 { |