Skip to content

Commit

Permalink
bump sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
harryboo committed Nov 27, 2024
1 parent 0d575fc commit b60321f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Latest changes
* RPCBind 1.2.7
* RRDtool 1.2.30/1.9.0
* S-Lang 2.3.3
* SQLite 3.40.1/3.47.0
* SQLite 3.40.1/3.47.1
* strace 4.9/5.0/6.12
* Stunnel 5.73
* Subversion 1.9.12/1.14.3
Expand Down
4 changes: 2 additions & 2 deletions make/pkgs/sqlite/Config.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
config FREETZ_PACKAGE_SQLITE
bool "SQLite 3.40.1/3.47.0 (binary only)"
bool "SQLite 3.40.1/3.47.1 (binary only)"
select FREETZ_LIB_libsqlite3
default n
help
Expand All @@ -17,7 +17,7 @@ if FREETZ_PACKAGE_SQLITE
depends on FREETZ_LIB_libsqlite3_WITH_VERSION_ABANDON

config FREETZ_PACKAGE_SQLITE_VERSION_CURRENT
bool "3.47.0"
bool "3.47.1"
depends on FREETZ_LIB_libsqlite3_WITH_VERSION_CURRENT

endchoice
Expand Down
2 changes: 1 addition & 1 deletion make/pkgs/sqlite/patches/current/010-pthread_fixes.patch
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--- configure
+++ configure
@@ -3283,6 +3283,24 @@
@@ -3284,6 +3284,24 @@
fi


Expand Down
6 changes: 3 additions & 3 deletions make/pkgs/sqlite/sqlite.mk
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
$(call PKG_INIT_BIN, $(if $(FREETZ_LIB_libsqlite3_WITH_VERSION_ABANDON),3400100,3470000))
$(call PKG_INIT_BIN, $(if $(FREETZ_LIB_libsqlite3_WITH_VERSION_ABANDON),3400100,3470100))
$(PKG)_LIB_VERSION:=0.8.6
$(PKG)_SOURCE:=$(pkg)-autoconf-$($(PKG)_VERSION).tar.gz
$(PKG)_HASH_ABANDON:=2c5dea207fa508d765af1ef620b637dcb06572afa6f01f0815bd5bbf864b33d9
$(PKG)_HASH_CURRENT:=83eb21a6f6a649f506df8bd3aab85a08f7556ceed5dbd8dea743ea003fc3a957
$(PKG)_HASH_CURRENT:=416a6f45bf2cacd494b208fdee1beda509abda951d5f47bc4f2792126f01b452
$(PKG)_HASH:=$($(PKG)_HASH_$(if $(FREETZ_LIB_libsqlite3_WITH_VERSION_ABANDON),ABANDON,CURRENT))
$(PKG)_SITE_ABANDON:=https://www.sqlite.org/2022
$(PKG)_SITE_CURRENT:=https://www.sqlite.org/2024
$(PKG)_SITE:=$($(PKG)_SITE_$(if $(FREETZ_LIB_libsqlite3_WITH_VERSION_ABANDON),ABANDON,CURRENT))
### VERSION:=3.40.1/3.47.0
### VERSION:=3.40.1/3.47.1
### WEBSITE:=https://www.sqlite.org
### MANPAGE:=https://www.sqlite.org/docs.html
### CHANGES:=https://www.sqlite.org/changes.html
Expand Down

1 comment on commit b60321f

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See for infos about sqlite and maybe a changelog link:
https://freetz-ng.github.io/freetz-ng/make/sqlite

Please sign in to comment.