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

pixman: Add version 0.42.2 #20190

Merged
merged 5 commits into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions recipes/pixman/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
sources:
"0.42.2":
url: "https://www.cairographics.org/releases/pixman-0.42.2.tar.gz"
sha256: "ea1480efada2fd948bc75366f7c349e1c96d3297d09a3fe62626e38e234a625e"
"0.40.0":
url: "https://www.cairographics.org/releases/pixman-0.40.0.tar.gz"
sha256: "6d200dec3740d9ec4ec8d1180e25779c00bc749f94278c8b9021f5534db223fc"
"0.38.4":
url: "https://www.cairographics.org/releases/pixman-0.38.4.tar.gz"
sha256: "da66d6fd6e40aee70f7bd02e4f8f76fc3f006ec879d346bae6a723025cfbdde7"
patches:
"0.42.2":
- patch_file: "patches/0.42.2-0001-pixman-arma64-Adjustments-to-build-with-llvm-integra.patch"
patch_description: "Adjustments to build for arm64 with LLVM's assembler"
patch_type: "portability"
patch_source: "https://gitlab.freedesktop.org/pixman/pixman/-/merge_requests/71"
"0.40.0":
- patch_file: "patches/0001-incompatible-pointer-types.patch"
patch_description: "backport fix for clang build"
Expand Down
4 changes: 2 additions & 2 deletions recipes/pixman/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class PixmanConan(ConanFile):
description = "Pixman is a low-level software library for pixel manipulation"
topics = ("graphics", "compositing", "rasterization")
url = "https://github.com/conan-io/conan-center-index"
homepage = "https://cairographics.org/"
homepage = "https://gitlab.freedesktop.org/pixman/pixman"
license = ("LGPL-2.1-only", "MPL-1.1")
package_type = "library"
settings = "os", "arch", "compiler", "build_type"
Expand Down Expand Up @@ -54,7 +54,7 @@ def validate(self):
raise ConanInvalidConfiguration("pixman can only be built as a static library on Windows")

def build_requirements(self):
self.tool_requires("meson/1.2.1")
self.tool_requires("meson/1.2.3")

def source(self):
get(self, **self.conan_data["sources"][self.version], strip_root=True)
Expand Down
Loading