aboutsummaryrefslogtreecommitdiff
path: root/databases/sqlite3
Commit message (Collapse)AuthorAgeFilesLines
* devel/icu: update to 69.1Jan Beich2021-04-081-0/+1
| | | | | Changes: https://github.com/unicode-org/icu/releases/tag/release-69-1 Reported by: GitHub (watch releases)
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Add sqlite_analyzer supportDmitry Marakasov2021-03-144-25/+32
| | | | | | | | | | | | | - Switch to more complete distfile which allows to enable TCL extensions and sqlite_analyzer - Switch to pkg-plist PR: 221735 Reported by: lapo@lapo.it Approved by: maintainer timeout (pavelivolkov@gmail.com, 3.5 years) Notes: svn path=/head/; revision=568415
* Remove redundant option descriptions that match the default onesTobias Kortkamp2021-03-071-1/+0
| | | | | | | | | (ignoring case) Reported by: danfe (for net/mosquitto), portscan Notes: svn path=/head/; revision=567577
* databases/sqlite3: Update to 3.34.1Lewis Cook2021-01-252-6/+5
| | | | | | | | | | | Changes: https://www.sqlite.org/releaselog/3_34_1.html PR: 252963 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Approved by: fernape (mentor) Differential Revision: https://reviews.freebsd.org/D28327 Notes: svn path=/head/; revision=562588
* databases/sqlite3: fix build w/o THREADSPietro Cerutti2020-12-111-0/+13
| | | | | | | | PR: 244459 Reported by: Brian Haug <haug.bsd6114@yahoo.com> Notes: svn path=/head/; revision=557735
* databases/sqlite3: update to 3.34.0Pietro Cerutti2020-12-112-5/+5
| | | | | | | | | | Release notes: https://sqlite.org/releaselog/3_34_0.html PR: 251632 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> Notes: svn path=/head/; revision=557725
* devel/icu: update to 68.1Jan Beich2020-11-031-0/+1
| | | | | | | | | Changes: http://site.icu-project.org/download/68 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ Reported by: GitHub (watch releases) Notes: svn path=/head/; revision=553940
* databases/sqlite3: fix build on powerpc64lePiotr Kubaj2020-09-241-0/+1
| | | | | | | Specify that powerpc64le is little-endian, sqlite thinks all powerpc* are big-endian. Notes: svn path=/head/; revision=549969
* databases/sqlite3: Update to 3.33.0Li-Wen Hsu2020-08-212-5/+15
| | | | | | | | PR: 248809 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Notes: svn path=/head/; revision=545597
* databases/sqlite3: Change candidates of OPTIONS_RADIO_RLJochen Neumeister2020-08-171-11/+7
| | | | | | | | | | | | Removed unneeded LIBEDIT_DESC and "USES= ncurses". In the target "post-install" added list for check used shared libraries. PR: 248446 Submitted by: maintainer Sponsored by: Netzkommune GmbH Notes: svn path=/head/; revision=545157
* databases/sqlite3: pet portlintKoichiro Iwao2020-08-051-6/+6
| | | | | | | | > WARN: Makefile: [137]: whitespace before end of line. > FATAL: Makefile: [209]: use a tab (not space) after a variable name Notes: svn path=/head/; revision=544190
* Bump PORTREVISION after the changes in r543921.Guido Falsi2020-08-031-1/+1
| | | | | | | Requested by: Yasuhiro KIMURA <yasu@utahime.org> Notes: svn path=/head/; revision=544088
* - Add back REALINEP and READLINES options and make them and LIBEDITGuido Falsi2020-08-011-5/+10
| | | | | | | | | | | | | | | | option work after r542047 [1] - Also add back options descriptions [1] - While here make STAT3 and STAT4 options descriptions start with uppercase letter [1] - Since in r542047 OPTIONS_GROUP_RL was changed to OPTIONS_RADIO_RL also bug 239228 can be closed [2] PR: 248323 [1], 239228 [2] Submitted by: myself [1], Dennis Clarke <dclarke@blastwave.org> [2] Approved by: maintainer [1] Notes: svn path=/head/; revision=543921
* databases/sqlite3: change options logicBernard Spil2020-07-111-18/+11
| | | | | | | | | PR: 222021 Submitted by: Pavel Volkov <pavelivolkov gmail com> Approved by: maintainer (pavelivolkov gmail com) Notes: svn path=/head/; revision=542047
* Update to 3.32.3Li-Wen Hsu2020-07-072-4/+4
| | | | | | | | PR: 247819 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Notes: svn path=/head/; revision=541414
* Update 3.32.0 --> 3.32.2Cy Schubert2020-06-132-4/+4
| | | | | | | | | | | | | | | | | Fix two long-standing bugs that allow malicious SQL statements to crash the process that is running SQLite. These bugs were announced by a third-party approximately 24 hours after the 3.32.0 release but are not specific to the 3.32.0 release. Fix a long-standing bug in the byte-code engine that can cause a COMMIT command report as success when in fact it failed to commit. Ticket 810dc8038872e212. Approved by: portmgr (blanket: run-time bugfix) MFH: 2020Q2 Notes: svn path=/head/; revision=538636
* Update 3.31.1 --> 3.32.0Cy Schubert2020-06-123-23/+4
| | | | | | | | | | | | | | | Address multiple security vulnerabilities. PR: 247149 Reported by: spam123@bitbert.com Reminded by: emaste Approved by: Approved by: portmgr (blanket: security bugfix) MFH: 2020Q2 Security: CVE-2020-11655, CVE-2020-13434, CVE-2020-13435, CVE-2020-13630, CVE-2020-13631, CVE-2020-13632 Notes: svn path=/head/; revision=538614
* Fix PowerPC segfault.Cy Schubert2020-04-241-0/+18
| | | | | | | | | | | | | | The segfault fix was originally developed by our upstream, sqlite.org, to address S/390 and Sparc segfaults, both of which are big endian. Our PowerPC is also big endian, which this patch also fixes. Inspired by: src r360223 Approved by: Approved by: portmgr (blanket: run-time bugfix) Obtained from: https://www.sqlite.org/src/vinfo/04885763c4cd00cb?diff=1 https://sqlite.org/forum/forumpost/672291a5b2 Notes: svn path=/head/; revision=532729
* devel/icu: update to 67.1Jan Beich2020-04-231-0/+1
| | | | | | | | | Changes: http://site.icu-project.org/download/67 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ Reported by: GitHub (watch releases) Notes: svn path=/head/; revision=532707
* databases/sqlite3: Update to 3.31.1Danilo G. Baio2020-04-212-7/+11
| | | | | | | | | | | Changelog: https://www.sqlite.org/releaselog/3_31_1.html ABI: https://abi-laboratory.pro/tracker/timeline/sqlite/ PR: 243602 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Notes: svn path=/head/; revision=532270
* databases/sqlite3: Set JSON1 option as defaultDanilo G. Baio2020-04-211-2/+3
| | | | | | | | | | | | | JSON1 is required for net-im/py-matrix-synapse. PR: 244366 PR: 243602 Submitted by: Sascha Biberhofer <ports@skyforge.at> Approved by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) MFH: 2020Q2 Notes: svn path=/head/; revision=532268
* devel/icu: update to 66.1Jan Beich2020-03-131-0/+1
| | | | | | | | Changes: http://site.icu-project.org/download/66 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ Notes: svn path=/head/; revision=528343
* databases/sqlite3: revert upgrade to 3.31.0Tobias C. Berner2020-01-272-11/+7
| | | | | | | | | | | | | Firefox relied on internals. They changed, which leads to segfaults. [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1607902 [2] https://hg.mozilla.org/try/rev/8d7104bac33729b4da67954b07fb08371df39bd8 PR: 243602 Reported by: Michael Butler <imb@protected-networks.net>, David Wolfskill <david@catwhisker.org> Notes: svn path=/head/; revision=524241
* databases/sqlite3: Update to 3.31.0Tobias C. Berner2020-01-262-6/+11
| | | | | | | | PR: 243602 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Notes: svn path=/head/; revision=524162
* Update to 3.30.1.Raphael Kubo da Costa2019-11-022-5/+4
| | | | | | | | PR: 241214 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Notes: svn path=/head/; revision=516357
* devel/icu: update to 65.1Jan Beich2019-10-031-0/+1
| | | | | | | | Changes: http://site.icu-project.org/download/65 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ Notes: svn path=/head/; revision=513733
* Thinking about r508819 a bit more, make sure nothing depends on fetchMathieu Arnold2019-08-131-1/+1
| | | | | | | directly in ports. Notes: svn path=/head/; revision=508825
* databases/sqlite3: Update to 3.29.0Steve Wills2019-07-162-6/+12
| | | | | | | | | | While here, add DQS option PR: 239201 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Notes: svn path=/head/; revision=506769
* databases/sqlite3: update to 3.28.0Jan Beich2019-05-042-4/+4
| | | | | | | | | | | Changes: https://sqlite.org/releaselog/3_28_0.html ABI: https://abi-laboratory.pro/tracker/timeline/sqlite/ PR: 237677 Approved by: Pavel Volkov (maintainer) MFH: 2019Q2 Notes: svn path=/head/; revision=500835
* databases/sqlite3: update to 3.27.2Jan Beich2019-04-202-5/+4
| | | | | | | | | | Changes: https://sqlite.org/releaselog/3_27_2.html ABI: https://abi-laboratory.pro/tracker/timeline/sqlite/ PR: 237373 Approved by: Pavel Volkov (maintainer) Notes: svn path=/head/; revision=499447
* Update devel/readline to 8.0Sunpoet Po-Chuan Hsieh2019-04-091-1/+1
| | | | | | | | | | | - Bump PORTREVISION of dependent ports for shlib change Changes: https://tiswww.case.edu/php/chet/readline/CHANGES PR: 236156 Exp-run by: antoine Notes: svn path=/head/; revision=498476
* devel/icu: update to 64.1Jan Beich2019-03-271-0/+1
| | | | | | | | | | | Changes: http://site.icu-project.org/download/64 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ PR: 236325 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D19479 Notes: svn path=/head/; revision=496981
* databases/sqlite3: update 3.26.0 -> 3.27.1Kurt Jaeger2019-02-202-5/+5
| | | | | | | | | | PR: 235802 Reported by: Charlie Li <ml+freebsd@vishwin.info> Approved by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Relnotes: https://www.sqlite.org/changes.html Notes: svn path=/head/; revision=493419
* databases/sqlite3: Update to 3.26.0Steve Wills2018-12-043-19/+11
| | | | | | | | PR: 233712 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Notes: svn path=/head/; revision=486622
* devel/icu: update to 63.1Jan Beich2018-10-231-0/+1
| | | | | | | | | | Changes: http://site.icu-project.org/download/63 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ PR: 232300 Exp-run by: antoine Notes: svn path=/head/; revision=482830
* databases/sqlite3: update to 3.25.1Steve Wills2018-09-202-9/+5
| | | | | | | | | | | While here, UPD_DEL_LIMIT option which didn't work. PR: 231518 PR: 207383 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Notes: svn path=/head/; revision=480212
* Fix configure error when SESSION is enabledSunpoet Po-Chuan Hsieh2018-09-201-0/+11
| | | | | | | | | | | | | | | | | | | | In file included from <built-in>:318: <command line>:39:28: warning: ISO C99 requires whitespace after the macro name [-Wc99-extensions] #define SQLITE_ENABLE_RTREE-DSQLITE_ENABLE_SESSION 1 ^ sqlite3.c:308:5: error: token is not a valid binary operator in a preprocessor subexpression #if SQLITE_ENABLE_RTREE ^~~~~~~~~~~~~~~~~~~ <command line>:39:52: note: expanded from here #define SQLITE_ENABLE_RTREE-DSQLITE_ENABLE_SESSION 1 ~~~~~~~~~~~~~~~~~~~~~~~ ^ 1 warning and 1 error generated. *** Error code 1 Approved by: portmgr (blanket) Notes: svn path=/head/; revision=480170
* databases/sqlite3: Update to 3.25.0Steve Wills2018-09-192-6/+9
| | | | | | | | PR: 231452 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Notes: svn path=/head/; revision=480123
* databases/sqlite3: document gecko@ also needs FTS3_TOKENJan Beich2018-08-241-1/+1
| | | | | | | | https://searchfox.org/mozilla-central/rev/c45b9755593c/db/sqlite3/src/moz.build#61-63 https://searchfox.org/comm-central/rev/39cff66145fd/mailnews/extensions/fts3/src/nsFts3Tokenizer.cpp#40 Notes: svn path=/head/; revision=477940
* devel/icu: update to 62.1Jan Beich2018-06-291-0/+1
| | | | | | | | | | Changes: http://site.icu-project.org/download/62 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ PR: 229359 Exp-run by: antoine (only 10.4) Notes: svn path=/head/; revision=473551
* databases/sqlite3: Update to 3.24.0Steve Wills2018-06-142-5/+10
| | | | | | | | PR: 228885 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Notes: svn path=/head/; revision=472410
* databases/sqlite3: Update to 3.23.1Jochen Neumeister2018-05-032-4/+4
| | | | | | | | | | Changelog: http://www.sqlite.org/releaselog/3_23_1.html PR: 227889 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Notes: svn path=/head/; revision=468935
* databases/sqlite3: Update 3.22.0 -> 3.23.0Yuri Victorovich2018-04-093-42/+10
| | | | | | | | | | | | | | | Changelog: https://www.sqlite.org/releaselog/3_23_0.html Port changes: * Add SER1 option for the new optional sqlite3_serialize()/sqlite3_deserialize() functions * Remove security patches that are now in the release PR: 227365 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Notes: svn path=/head/; revision=466838
* devel/icu: update to 61.1Jan Beich2018-04-061-1/+1
| | | | | | | | | | | Changes: http://site.icu-project.org/download/61 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ PR: 227042 Exp-run by: antoine MFH: 2018Q2 (required by Firefox 61) Notes: svn path=/head/; revision=466648
* databases/sqlite3: Patch for CVE-2018-8740Yuri Victorovich2018-03-222-0/+37
| | | | | | | | | | | | | | | Detect databases whose schema is corrupted using a CREATE TABLE AS statement and issue an appropriate error message. CVE-2018-8740 will be entered into VuXML when SQLite will make a release, because CVE-2018-8740 says that versions up to and including the current version 3.22.0 are vulnerable. Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Reported by: tj <tj@mrsk.me> Notes: svn path=/head/; revision=465275
* databases/sqlite: Update to 3.22.0Yuri Victorovich2018-03-144-42/+31
| | | | | | | | | | | | | | | | | | | | | | | | Changelog: https://www.sqlite.org/releaselog/3_22_0.html Port changes: * Added the OFFSET option for the new sqlite_offset() function * Added 'Optional extensions' and 'Optional functions' option groups for better options readability * Deleted patches from files/ because they were disabling certain options in the command-line utility that the upstream keeps always enabled there * Changed capitalization in some options according to common spelling rules PR: 225627 Submitted by: Charlie Li <ml+freebsd@vishwin.info> (original version) Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer, later version) Approved by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Differential Revision: https://reviews.freebsd.org/D14216 Notes: svn path=/head/; revision=464472
* devel/icu: update to 60.1Jan Beich2017-11-091-0/+1
| | | | | | | | | | Changes: http://site.icu-project.org/download/60 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ PR: 223373 Exp-run by: antoine Notes: svn path=/head/; revision=453790
* databases/sqlite3: update to 3.21.0Jan Beich2017-11-012-6/+9
| | | | | | | | | | Changes: https://www.sqlite.org/releaselog/3_21_0.html ABI: https://abi-laboratory.pro/tracker/timeline/sqlite/ PR: 223363 Submitted by: Pavel Volkov (maintainer) Notes: svn path=/head/; revision=453320
* Enable FTS5 by default.Koop Mast2017-10-231-2/+3
| | | | | | | | | | * add note who is going to use this feature. PR: 223133 Approved by: maintainer (Pavel Volkov <pavelivolkov@gmail.com>) Notes: svn path=/head/; revision=452700