diff options
author | Cy Schubert <cy@FreeBSD.org> | 2020-06-12 13:02:53 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2020-06-12 13:02:53 +0000 |
commit | bc51631fc3be9479f2b0f31abe6a3bf5b68c3d77 (patch) | |
tree | ccc2357105366e3f5cc27bb40604430b624cb14e | |
parent | b1820097b2d5cac4b8c3c3e5edb73aab5b0cc171 (diff) |
Notes
-rw-r--r-- | databases/sqlite3/Makefile | 3 | ||||
-rw-r--r-- | databases/sqlite3/distinfo | 6 | ||||
-rw-r--r-- | databases/sqlite3/files/patch-sqlite3.c | 18 |
3 files changed, 4 insertions, 23 deletions
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile index 547597403ba7..c8bf058e7b5a 100644 --- a/databases/sqlite3/Makefile +++ b/databases/sqlite3/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= sqlite3 -DISTVERSION= 3.31.1 -PORTREVISION= 1 +DISTVERSION= 3.32.0 PORTEPOCH= 1 CATEGORIES= databases MASTER_SITES= https://www.sqlite.org/2020/ http://www2.sqlite.org/2020/ http://www3.sqlite.org/2020/ diff --git a/databases/sqlite3/distinfo b/databases/sqlite3/distinfo index efa6736e0b85..74a108e1b882 100644 --- a/databases/sqlite3/distinfo +++ b/databases/sqlite3/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1587473576 -SHA256 (sqlite-autoconf-3310100.tar.gz) = 62284efebc05a76f909c580ffa5c008a7d22a1287285d68b7825a2b6b51949ae -SIZE (sqlite-autoconf-3310100.tar.gz) = 2887243 +TIMESTAMP = 1591926363 +SHA256 (sqlite-autoconf-3320000.tar.gz) = 598317fd74f5dcc8921949c47665b9e512d0d9c6a445a2e843430f04dc10bda4 +SIZE (sqlite-autoconf-3320000.tar.gz) = 2902505 diff --git a/databases/sqlite3/files/patch-sqlite3.c b/databases/sqlite3/files/patch-sqlite3.c deleted file mode 100644 index 004a6232593c..000000000000 --- a/databases/sqlite3/files/patch-sqlite3.c +++ /dev/null @@ -1,18 +0,0 @@ ---- sqlite3.c.orig 2020-01-27 12:25:19.000000000 -0800 -+++ sqlite3.c 2020-04-23 19:24:26.380323000 -0700 -@@ -121302,12 +121302,14 @@ - x = *sqlite3VdbeGetOp(v, addrConflictCk); - if( x.opcode!=OP_IdxRowid ){ - int p2; /* New P2 value for copied conflict check opcode */ -+ const char *zP4; - if( sqlite3OpcodeProperty[x.opcode]&OPFLG_JUMP ){ - p2 = lblRecheckOk; - }else{ - p2 = x.p2; - } -- sqlite3VdbeAddOp4(v, x.opcode, x.p1, p2, x.p3, x.p4.z, x.p4type); -+ zP4 = x.p4type==P4_INT32 ? SQLITE_INT_TO_PTR(x.p4.i) : x.p4.z; -+ sqlite3VdbeAddOp4(v, x.opcode, x.p1, p2, x.p3, zP4, x.p4type); - sqlite3VdbeChangeP5(v, x.p5); - VdbeCoverageIf(v, p2!=x.p2); - } |