Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gdal: add 3.2.3 & 3.4.1 + keep last patch version of each minor version + modernize #8635

Merged
merged 10 commits into from
Feb 28, 2022
Prev Previous commit
Next Next commit
bump dependencies
  • Loading branch information
SpaceIm committed Feb 4, 2022
commit 01377f48e725ffec75e269ce659d9d7c0fb07cba
12 changes: 6 additions & 6 deletions recipes/gdal/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,11 +255,11 @@ def requirements(self):
if self.options.get_safe("with_zlib", True):
self.requires("zlib/1.2.11")
if self.options.get_safe("with_libdeflate"):
self.requires("libdeflate/1.8")
self.requires("libdeflate/1.9")
if self.options.with_libiconv:
self.requires("libiconv/1.16")
if self.options.get_safe("with_zstd"):
self.requires("zstd/1.5.1")
self.requires("zstd/1.5.2")
if self.options.get_safe("with_blosc"):
self.requires("c-blosc/1.21.1")
if self.options.get_safe("with_lz4"):
Expand Down Expand Up @@ -315,7 +315,7 @@ def requirements(self):
if self.options.with_xerces:
self.requires("xerces-c/3.2.3")
if self.options.with_expat:
self.requires("expat/2.4.2")
self.requires("expat/2.4.4")
if self.options.with_libkml:
self.requires("libkml/1.3.0")
if self.options.with_odbc and self.settings.os != "Windows":
Expand All @@ -329,17 +329,17 @@ def requirements(self):
# if self.options.with_spatialite:
# self.requires("libspatialite/4.3.0a")
if self.options.get_safe("with_sqlite3"):
self.requires("sqlite3/3.37.1")
self.requires("sqlite3/3.37.2")
# if self.options.with_rasterlite2:
# self.requires("rasterlite2/x.x.x")
if self.options.get_safe("with_pcre"):
self.requires("pcre/8.45")
if self.options.get_safe("with_pcre2"):
self.requires("pcre2/10.37")
if self.options.with_webp:
self.requires("libwebp/1.2.1")
self.requires("libwebp/1.2.2")
if self.options.with_geos:
self.requires("geos/3.10.1")
self.requires("geos/3.10.2")
# if self.options.with_sfcgal:
# self.requires("sfcgal/1.3.7")
if self.options.with_qhull:
Expand Down