Skip to content

Commit

Permalink
Updated curl to v7.80.0 and sqlite to v3370000.
Browse files Browse the repository at this point in the history
████ ███  To request new features or in case this commit breaks something for you,
████ ███  please, create a new github issue with all possible information for me,
▓███▀█▄   but never share your API Keys!
▒▓██ ███
░▒▓█ ███  Signed-off-by: Carles Tubio <ctubio@users.noreply.github.com>
 _________________________________________
/ Hello, WORLD!                           \
|                                         |
\ pssst.. 1.00000000 BTC = 44550.32 EUR.  /
 -----------------------------------------
        \   ^__^
         \  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||
  • Loading branch information
ctubio committed Dec 8, 2021
1 parent 192c3e6 commit f7c1b89
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ $(if $(subst 0,,${MAKELEVEL}),,$(warning $(ERR));$(error $(HINT)))

V_ZLIB = 1.2.11
V_SSL = 3.0.0
V_CURL = 7.79.1
V_SQL = 3360000
V_JSON = 3.10.3
V_CURL = 7.80.0
V_SQL = 3370000
V_JSON = 3.10.4
V_CATCH = 2.13.7
V_UV = 1.42.0

Expand Down Expand Up @@ -37,13 +37,13 @@ clean:
@rm -vrf $(KBUILD)

check:
# zlib | $(V_ZLIB) | $(shell curl -s https://www.zlib.net/ChangeLog.txt | grep "Changes in " | head -n1 | cut -d' ' -f3)
# openssl | $(V_SSL) | $(shell curl -s https://www.openssl.org/news/cl$(shell curl -s https://www.openssl.org/source/ | grep "The latest stable version is " | cut -d' ' -f12 | tr -d '.').txt | grep "Changes between " | head -n1 | cut -d' ' -f4)
# curl | $(V_CURL) | $(shell curl -s https://curl.se/changes.html | grep "Fixed in " | head -n1 | cut -d' ' -f4)
# sqlite | $(V_SQL) | $(shell curl -s https://www.sqlite.org/download.html | grep "sqlite-amalgamation-" | head -n1 | cut -d'-' -f3 | cut -d'.' -f1)
# json | $(V_JSON) | $(shell curl -s https://api.github.com/repos/nlohmann/json/releases | grep "tag_name" | head -n1 | cut -d'v' -f2 | cut -d'"' -f1)
# catch | $(V_CATCH) | $(shell curl -s https://api.github.com/repos/catchorg/Catch2/releases | grep "tag_name" | head -n1 | cut -d'v' -f2 | cut -d'"' -f1)
# uv | $(V_UV) | $(shell curl -s https://api.github.com/repos/libuv/libuv/releases | grep "tag_name" | head -n1 | cut -d'v' -f2 | cut -d'"' -f1)
# zlib | $(V_ZLIB) | $(shell curl -s https://www.zlib.net/ChangeLog.txt | grep "Changes in " | head -n1 | cut -d' ' -f3)
# openssl | $(V_SSL) | $(shell curl -s https://www.openssl.org/news/cl$(shell curl -s https://www.openssl.org/source/ | grep "The latest stable version is " | cut -d' ' -f12 | tr -d '.').txt | grep "Changes between " | head -n1 | cut -d' ' -f4)
# curl | $(V_CURL) | $(shell curl -s https://curl.se/changes.html | grep "Fixed in " | head -n1 | cut -d' ' -f4)
# sqlite | $(V_SQL) | $(shell curl -s https://www.sqlite.org/download.html | grep "sqlite-amalgamation-" | head -n1 | cut -d'-' -f3 | cut -d'.' -f1)
# json | $(V_JSON) | $(shell curl -s https://api.github.com/repos/nlohmann/json/releases | grep "tag_name" | head -n1 | cut -d'v' -f2 | cut -d'"' -f1)
# catch | $(V_CATCH) | $(shell curl -s https://api.github.com/repos/catchorg/Catch2/releases | grep "tag_name" | head -n1 | cut -d'v' -f2 | cut -d'"' -f1)
# uv | $(V_UV) | $(shell curl -s https://api.github.com/repos/libuv/libuv/releases | grep "tag_name" | head -n1 | cut -d'v' -f2 | cut -d'"' -f1)

zlib:
test -d $(KBUILD)/var/zlib-$(V_ZLIB) || ( \
Expand Down

0 comments on commit f7c1b89

Please sign in to comment.