sqlite: add 3.42.0 (#38091)

This commit is contained in:
Michael Kuhn 2023-06-03 19:30:25 +02:00 committed by GitHub
parent fa23a0228f
commit 7fca252aa4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,7 @@ class Sqlite(AutotoolsPackage):
homepage = "https://www.sqlite.org"
version("3.42.0", sha256="7abcfd161c6e2742ca5c6c0895d1f853c940f203304a0b49da4e1eca5d088ca6")
version("3.40.1", sha256="2c5dea207fa508d765af1ef620b637dcb06572afa6f01f0815bd5bbf864b33d9")
version("3.40.0", sha256="0333552076d2700c75352256e91c78bf5cd62491589ba0c69aed0a81868980e7")
version("3.39.4", sha256="f31d445b48e67e284cf206717cc170ab63cbe4fd7f79a82793b772285e78fdbb")
@ -152,7 +153,9 @@ def url_for_version(self, version):
version_string = str(full_version[0]) + "".join(["%02d" % v for v in full_version[1:]])
# See https://www.sqlite.org/chronology.html for version -> year
# correspondence.
if version >= Version("3.37.2"):
if version >= Version("3.41.0"):
year = "2023"
elif version >= Version("3.37.2"):
year = "2022"
elif version >= Version("3.34.1"):
year = "2021"