sqlite: add 3.35.3 (#22697)

This commit is contained in:
Michael Kuhn 2021-04-01 13:57:20 +02:00 committed by GitHub
parent 2556490cb0
commit 76424c1a91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,7 @@ class Sqlite(AutotoolsPackage):
"""
homepage = "https://www.sqlite.org"
version('3.35.3', sha256='ecbccdd440bdf32c0e1bb3611d635239e3b5af268248d130d0445a32daf0274b')
version('3.34.0', sha256='bf6db7fae37d51754737747aaaf413b4d6b3b5fbacd52bdb2d0d6e5b2edd9aee')
version('3.33.0', sha256='106a2c48c7f75a298a7557bcc0d5f4f454e5b43811cc738b7ca294d6956bbb15')
version('3.32.03', sha256='a31507123c1c2e3a210afec19525fd7b5bb1e19a6a34ae5b998fbd7302568b66')
@ -74,7 +75,9 @@ def url_for_version(self, version):
''.join(['%02d' % v for v in full_version[1:]])
# See https://sqlite.org/chronology.html for version -> year
# correspondence.
if version >= Version('3.31.0'):
if version >= Version('3.34.1'):
year = '2021'
elif version >= Version('3.31.0'):
year = '2020'
elif version >= Version('3.27.0'):
year = '2019'