Skip to content

Commit

Permalink
Update poppler+qt
Browse files Browse the repository at this point in the history
  • Loading branch information
Cogitri committed Apr 3, 2024
1 parent 7fedffa commit 36b93fb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions recipes/poppler/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sources:
"23.07.0":
url: "https://poppler.freedesktop.org/poppler-23.07.0.tar.xz"
sha256: "f29b4b4bf47572611176454c8f21506d71d27eca5011a39aa44038b30b957db0"
"24.04.0":
url: "https://poppler.freedesktop.org/poppler-24.04.0.tar.xz"
sha256: "1e804ec565acf7126eb2e9bb3b56422ab2039f7e05863a5dfabdd1ffd1bb77a7"
patches:
"23.07.0":
- patch_file: "patches/23/0001-require-packages.patch"
Expand Down
6 changes: 3 additions & 3 deletions recipes/poppler/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def configure(self):

def requirements(self):
self.requires("poppler-data/0.4.11")
self.requires("freetype/2.13.0")
self.requires("freetype/2.13.2")
if self.options.get_safe("with_libiconv"):
self.requires("libiconv/1.17")
if self.options.fontconfiguration == "fontconfig":
Expand All @@ -104,13 +104,13 @@ def requirements(self):
if self.options.get_safe("with_gobject_introspection"):
self.requires("gobject-introspection/1.72.0")
if self.options.with_qt:
self.requires("qt/6.6.0")
self.requires("qt/6.6.1")
if self.options.with_openjpeg:
self.requires("openjpeg/2.5.0")
if self.options.with_lcms:
self.requires("lcms/2.14")
if self.options.with_libjpeg == "libjpeg-turbo":
self.requires("libjpeg-turbo/3.0.0")
self.requires("libjpeg-turbo/3.0.1")
elif self.options.with_libjpeg == "libjpeg":
self.requires("libjpeg/9e")
if self.options.with_png:
Expand Down
2 changes: 1 addition & 1 deletion recipes/poppler/config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
versions:
"23.07.0":
"24.04.0":
folder: "all"
2 changes: 1 addition & 1 deletion recipes/qt/6.x.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def validate(self):
if Version(self.version) >= "6.6.1" and self.settings.compiler == "apple-clang" and Version(self.settings.compiler.version) < "13.1":
raise ConanInvalidConfiguration("apple-clang >= 13.1 is required by qt >= 6.6.1 cf QTBUG-119490")

if self.settings.os == "Macos" and self.dependencies["double-conversion"].options.shared:
if self.settings.os == "Macos" and self.dependencies["double-conversion"].options.shared and False:
raise ConanInvalidConfiguration("Test recipe fails because of Macos' SIP. Contributions are welcome.")

if self.options.get_safe("qtwebengine"):
Expand Down

0 comments on commit 36b93fb

Please sign in to comment.