diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-08 11:16:36 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-08 11:16:36 +0000 |
commit | b8cf36593ae76911a9cd8e17cccc617669203182 (patch) | |
tree | 854494081b639a378ac7173c381d6c5014c46db5 /dev-db/sqlite/files | |
parent | Version bump. (diff) | |
download | historical-b8cf36593ae76911a9cd8e17cccc617669203182.tar.gz historical-b8cf36593ae76911a9cd8e17cccc617669203182.tar.bz2 historical-b8cf36593ae76911a9cd8e17cccc617669203182.zip |
Delete older ebuilds.
Diffstat (limited to 'dev-db/sqlite/files')
3 files changed, 0 insertions, 171 deletions
diff --git a/dev-db/sqlite/files/sqlite-3.6.14.2-fix_alignment.patch b/dev-db/sqlite/files/sqlite-3.6.14.2-fix_alignment.patch deleted file mode 100644 index fe7ee13bc7a4..000000000000 --- a/dev-db/sqlite/files/sqlite-3.6.14.2-fix_alignment.patch +++ /dev/null @@ -1,30 +0,0 @@ ---- src/rowset.c -+++ src/rowset.c -@@ -60,7 +60,7 @@ - ** There is an added cost of O(N) when switching between TEST and - ** SMALLEST primitives. - ** --** $Id: rowset.c,v 1.6 2009/04/22 15:32:59 drh Exp $ -+** $Id: rowset.c,v 1.7 2009/05/22 01:00:13 drh Exp $ - */ - #include "sqliteInt.h" - -@@ -127,15 +127,15 @@ - */ - RowSet *sqlite3RowSetInit(sqlite3 *db, void *pSpace, unsigned int N){ - RowSet *p; -- assert( N >= sizeof(*p) ); -+ assert( N >= ROUND8(sizeof(*p)) ); - p = pSpace; - p->pChunk = 0; - p->db = db; - p->pEntry = 0; - p->pLast = 0; - p->pTree = 0; -- p->pFresh = (struct RowSetEntry*)&p[1]; -- p->nFresh = (u16)((N - sizeof(*p))/sizeof(struct RowSetEntry)); -+ p->pFresh = (struct RowSetEntry*)(ROUND8(sizeof(*p)) + (char*)p); -+ p->nFresh = (u16)((N - ROUND8(sizeof(*p)))/sizeof(struct RowSetEntry)); - p->isSorted = 1; - p->iBatch = 0; - return p; diff --git a/dev-db/sqlite/files/sqlite-3.6.16-tkt3922.test.patch b/dev-db/sqlite/files/sqlite-3.6.16-tkt3922.test.patch deleted file mode 100644 index a3e0fadf8e08..000000000000 --- a/dev-db/sqlite/files/sqlite-3.6.16-tkt3922.test.patch +++ /dev/null @@ -1,25 +0,0 @@ -http://www.sqlite.org/cvstrac/tktview?tn=3951 - ---- test/tkt3922.test -+++ test/tkt3922.test -@@ -36,20 +36,6 @@ - } - } {-1 integer} - } --do_test tkt3922.2 { -- execsql { -- DELETE FROM t1; -- INSERT INTO t1 VALUES('-9223372036854775809'); -- SELECT a, typeof(a) FROM t1; -- } --} {-9.22337203685478e+18 real} --do_test tkt3922.3 { -- execsql { -- DELETE FROM t1; -- INSERT INTO t1 VALUES('-9223372036854776832'); -- SELECT a, typeof(a) FROM t1; -- } --} {-9.22337203685478e+18 real} - do_test tkt3922.4 { - execsql { - DELETE FROM t1; diff --git a/dev-db/sqlite/files/sqlite-3.6.17-fix_installation.patch b/dev-db/sqlite/files/sqlite-3.6.17-fix_installation.patch deleted file mode 100644 index 2b6c2ab405af..000000000000 --- a/dev-db/sqlite/files/sqlite-3.6.17-fix_installation.patch +++ /dev/null @@ -1,116 +0,0 @@ -https://www.sqlite.org/cvstrac/tktview?tn=4016 - ---- Makefile.in -+++ Makefile.in -@@ -683,8 +683,7 @@ - $(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/status.c - - sqlite3.h: $(TOP)/src/sqlite.h.in -- sed -e s/--VERS--/$(RELEASE)/ $(TOP)/src/sqlite.h.in | \ -- sed -e s/--VERSION-NUMBER--/$(VERSION_NUMBER)/ >sqlite3.h -+ cat $(TOP)/src/sqlite.h.in | tclsh $(TOP)/tool/mksqlite3h.tcl `cat ${TOP}/VERSION` > sqlite3.h - - table.lo: $(TOP)/src/table.c $(HDR) - $(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/table.c ---- main.mk -+++ main.mk -@@ -389,9 +389,7 @@ - awk -f $(TOP)/addopcodes.awk parse.h.temp >parse.h - - sqlite3.h: $(TOP)/src/sqlite.h.in -- sed -e s/--VERS--/`cat ${TOP}/VERSION`/ \ -- -e s/--VERSION-NUMBER--/`cat ${TOP}/VERSION | sed 's/[^0-9]/ /g' | $(NAWK) '{printf "%d%03d%03d",$$1,$$2,$$3}'`/ \ -- $(TOP)/src/sqlite.h.in >sqlite3.h -+ cat $(TOP)/src/sqlite.h.in | tclsh $(TOP)/tool/mksqlite3h.tcl `cat ${TOP}/VERSION` > sqlite3.h - - keywordhash.h: $(TOP)/tool/mkkeywordhash.c - $(BCC) -o mkkeywordhash $(OPTS) $(TOP)/tool/mkkeywordhash.c ---- tool/mksqlite3c.tcl -+++ tool/mksqlite3c.tcl -@@ -305,36 +305,3 @@ - - close $out - --# This block overwrites the copy of sqlite3.h in the current directory. --# --# It copies tsrc/sqlite3.h to ./sqlite3.h, adding SQLITE_API in front of the --# API functions and global variables as it goes. --# --set fd_in [open tsrc/sqlite3.h r] --set fd_out [open sqlite3.h w] --while {![eof $fd_in]} { -- set varpattern {^[a-zA-Z][a-zA-Z_0-9 *]+sqlite3_[_a-zA-Z0-9]+(\[|;| =)} -- set declpattern {^ *[a-zA-Z][a-zA-Z_0-9 ]+ \**sqlite3_[_a-zA-Z0-9]+\(} -- -- set line [gets $fd_in] -- if {[regexp {define SQLITE_EXTERN extern} $line]} { -- puts $fd_out $line -- puts $fd_out [gets $fd_in] -- puts $fd_out "" -- puts $fd_out "#ifndef SQLITE_API" -- puts $fd_out "# define SQLITE_API" -- puts $fd_out "#endif" -- set line "" -- } -- -- if {([regexp $varpattern $line] && ![regexp {^ *typedef} $line]) -- || ([regexp $declpattern $line]) -- } { -- set line "SQLITE_API $line" -- } -- puts $fd_out $line --} --close $fd_out --close $fd_in -- -- ---- tool/mksqlite3h.tcl -+++ tool/mksqlite3h.tcl -@@ -0,0 +1,47 @@ -+#!/usr/bin/tclsh -+# -+# This script performs processing on src/sqlite.h.in. It: -+# -+# 1) Adds SQLITE_EXTERN in front of the declaration of global variables, -+# 2) Adds SQLITE_API in front of the declaration of API functions, -+# 3) Replaces the string --VERS-- with the current library version, -+# formatted as a string (e.g. "3.6.17"), and -+# 4) Replaces the string --VERSION-NUMBER-- with current library version, -+# formatted as an integer (e.g. "3006017"). -+# -+# This script reads from stdin, and outputs to stdout. The current library -+# version number should be passed as the only argument. Example invocation: -+# -+# cat sqlite.h.in | mksqlite3h.tcl 3.6.17 > sqlite3.h -+# -+ -+set zVersion [lindex $argv 0] -+set nVersion [eval format "%d%03d%03d" [split $zVersion .]] -+ -+while {![eof stdin]} { -+ set varpattern {^[a-zA-Z][a-zA-Z_0-9 *]+sqlite3_[_a-zA-Z0-9]+(\[|;| =)} -+ set declpattern {^ *[a-zA-Z][a-zA-Z_0-9 ]+ \**sqlite3_[_a-zA-Z0-9]+\(} -+ -+ set line [gets stdin] -+ -+ regsub -- --VERS-- $line $zVersion line -+ regsub -- --VERSION-NUMBER-- $line $nVersion line -+ -+ if {[regexp {define SQLITE_EXTERN extern} $line]} { -+ puts $line -+ puts [gets stdin] -+ puts "" -+ puts "#ifndef SQLITE_API" -+ puts "# define SQLITE_API" -+ puts "#endif" -+ set line "" -+ } -+ -+ if {([regexp $varpattern $line] && ![regexp {^ *typedef} $line]) -+ || ([regexp $declpattern $line]) -+ } { -+ set line "SQLITE_API $line" -+ } -+ puts $line -+} -+ |