diff --git a/README.md b/README.md index d2386be3..f016c534 100644 --- a/README.md +++ b/README.md @@ -147,6 +147,9 @@ register_repo("conda-forge", "cdt-builds", config=cfg) | [`cairo-devel-cos7-aarch64`](https://anaconda.org/conda-forge/cairo-devel-cos7-aarch64) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/cairo-devel-cos7-aarch64.svg)](https://anaconda.org/conda-forge/cairo-devel-cos7-aarch64) | | [`cairo-devel-cos7-ppc64le`](https://anaconda.org/conda-forge/cairo-devel-cos7-ppc64le) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/cairo-devel-cos7-ppc64le.svg)](https://anaconda.org/conda-forge/cairo-devel-cos7-ppc64le) | | [`cairo-devel-cos7-x86_64`](https://anaconda.org/conda-forge/cairo-devel-cos7-x86_64) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/cairo-devel-cos7-x86_64.svg)](https://anaconda.org/conda-forge/cairo-devel-cos7-x86_64) | +| [`cairo-gobject-cos7-aarch64`](https://anaconda.org/conda-forge/cairo-gobject-cos7-aarch64) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/cairo-gobject-cos7-aarch64.svg)](https://anaconda.org/conda-forge/cairo-gobject-cos7-aarch64) | +| [`cairo-gobject-cos7-ppc64le`](https://anaconda.org/conda-forge/cairo-gobject-cos7-ppc64le) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/cairo-gobject-cos7-ppc64le.svg)](https://anaconda.org/conda-forge/cairo-gobject-cos7-ppc64le) | +| [`cairo-gobject-cos7-x86_64`](https://anaconda.org/conda-forge/cairo-gobject-cos7-x86_64) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/cairo-gobject-cos7-x86_64.svg)](https://anaconda.org/conda-forge/cairo-gobject-cos7-x86_64) | | [`centos-release-cos7-aarch64`](https://anaconda.org/conda-forge/centos-release-cos7-aarch64) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/centos-release-cos7-aarch64.svg)](https://anaconda.org/conda-forge/centos-release-cos7-aarch64) | | [`centos-release-cos7-ppc64le`](https://anaconda.org/conda-forge/centos-release-cos7-ppc64le) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/centos-release-cos7-ppc64le.svg)](https://anaconda.org/conda-forge/centos-release-cos7-ppc64le) | | [`centos-release-cos7-x86_64`](https://anaconda.org/conda-forge/centos-release-cos7-x86_64) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/centos-release-cos7-x86_64.svg)](https://anaconda.org/conda-forge/centos-release-cos7-x86_64) | diff --git a/cdts/cairo-gobject-cos7-aarch64/build.sh b/cdts/cairo-gobject-cos7-aarch64/build.sh new file mode 100755 index 00000000..ca6ebc1a --- /dev/null +++ b/cdts/cairo-gobject-cos7-aarch64/build.sh @@ -0,0 +1,59 @@ +#!/bin/bash + +set -o errexit -o pipefail + +SYSROOT_DIR="${PREFIX}"/aarch64-conda-linux-gnu/sysroot + +mkdir -p "${SYSROOT_DIR}" +if [[ -d usr/lib ]]; then + if [[ ! -d lib ]]; then + ln -s usr/lib lib + fi +fi +if [[ -d usr/lib64 ]]; then + if [[ ! -d lib64 ]]; then + ln -s usr/lib64 lib64 + fi +fi +pushd ${SRC_DIR}/binary > /dev/null 2>&1 +rsync -K -a . "${SYSROOT_DIR}" +popd > /dev/null 2>&1 + +# START OF INSERTED BUILD APPENDS + +# END OF INSERTED BUILD APPENDS + +# this code makes sure that any symlinks are relative and their targets exist +# the CDT would fail at test time, but doing it here produces useful error +# messages for fixing things +error_code=0 +for blnk in $(find ./binary -type l); do + # loop is over symlinks in the RPM, so get the path in the sysroot + lnk=${SYSROOT_DIR}${blnk#"./binary"} + + # if it is not a link in the sysroot, move on + if [[ ! -L ${lnk} ]]; then + continue + fi + + # get the link dir and the destination of the link + lnk_dir=$(dirname ${lnk}) + lnk_dst_nm=$(readlink ${lnk}) + if [[ ${lnk_dst_nm:0:1} == "/" ]]; then + lnk_dst=${lnk_dst_nm} + else + lnk_dst="${lnk_dir}/${lnk_dst_nm}" + fi + + # now test if it is absolute and relative to the system and not the PREFIX + # also test if the dest file exists + if [[ ${lnk_dst_nm:0:1} == "/" ]] && [[ ! ${lnk_dst_nm} == ${SYSROOT_DIR}* ]]; then + echo "***WARNING ABSOLUTE SYMLINK***: ${lnk} -> ${lnk_dst}" + error_code=1 + elif [[ ! -e "${lnk_dst}" ]]; then + echo "***WARNING SYMLINK W/O DESTINATION: ${lnk} -> ${lnk_dst}" + error_code=1 + fi +done + +exit ${error_code} diff --git a/cdts/cairo-gobject-cos7-aarch64/meta.yaml b/cdts/cairo-gobject-cos7-aarch64/meta.yaml new file mode 100644 index 00000000..ca97d149 --- /dev/null +++ b/cdts/cairo-gobject-cos7-aarch64/meta.yaml @@ -0,0 +1,49 @@ +package: + name: cairo-gobject-cos7-aarch64 + version: 1.15.12 + +source: + - url: http://mirror.centos.org/altarch/7/os/aarch64/Packages/cairo-gobject-1.15.12-4.el7.aarch64.rpm + sha256: 3a1d4c046e6512a4ac932ee6a889826dac242e22df0c4b9c89a45c2cb3173b4e + no_hoist: true + folder: binary + # - url: http://vault.centos.org/7.7.1908/os/Source/SPackages/cairo-1.15.12-4.el7.src.rpm + # no_hoist: true + # folder: source + +build: + number: {{ cdt_build_number|int + 1000 }} + noarch: generic + binary_relocation: False + detect_binary_files_with_prefix: False + missing_dso_whitelist: + - '*' + +requirements: + build: + - cairo-cos7-aarch64 ==1.15.12 *_{{ cdt_build_number|int + 1000 }} + host: + - cairo-cos7-aarch64 ==1.15.12 *_{{ cdt_build_number|int + 1000 }} + - sysroot_linux-aarch64 2.17.* + run: + - cairo-cos7-aarch64 ==1.15.12 *_{{ cdt_build_number|int + 1000 }} + - sysroot_linux-aarch64 2.17.* + +test: + commands: + - echo "it installs!" + +about: + home: http://cairographics.org + license: LGPLv2 or MPLv1.1 + license_family: LGPL + license_file: {{ SRC_DIR }}/binary/LICENSE_NOT_FOUND + summary: "(CDT) GObject bindings for cairo" + description: | + Cairo is a 2D graphics library designed to provide high-quality display and + print output. This package contains functionality to make cairo graphics + library integrate well with the GObject object system used by GNOME. + +extra: + recipe-maintainers: + - conda-forge/help-cdts diff --git a/cdts/cairo-gobject-cos7-ppc64le/build.sh b/cdts/cairo-gobject-cos7-ppc64le/build.sh new file mode 100755 index 00000000..b4d65ea7 --- /dev/null +++ b/cdts/cairo-gobject-cos7-ppc64le/build.sh @@ -0,0 +1,59 @@ +#!/bin/bash + +set -o errexit -o pipefail + +SYSROOT_DIR="${PREFIX}"/powerpc64le-conda-linux-gnu/sysroot + +mkdir -p "${SYSROOT_DIR}" +if [[ -d usr/lib ]]; then + if [[ ! -d lib ]]; then + ln -s usr/lib lib + fi +fi +if [[ -d usr/lib64 ]]; then + if [[ ! -d lib64 ]]; then + ln -s usr/lib64 lib64 + fi +fi +pushd ${SRC_DIR}/binary > /dev/null 2>&1 +rsync -K -a . "${SYSROOT_DIR}" +popd > /dev/null 2>&1 + +# START OF INSERTED BUILD APPENDS + +# END OF INSERTED BUILD APPENDS + +# this code makes sure that any symlinks are relative and their targets exist +# the CDT would fail at test time, but doing it here produces useful error +# messages for fixing things +error_code=0 +for blnk in $(find ./binary -type l); do + # loop is over symlinks in the RPM, so get the path in the sysroot + lnk=${SYSROOT_DIR}${blnk#"./binary"} + + # if it is not a link in the sysroot, move on + if [[ ! -L ${lnk} ]]; then + continue + fi + + # get the link dir and the destination of the link + lnk_dir=$(dirname ${lnk}) + lnk_dst_nm=$(readlink ${lnk}) + if [[ ${lnk_dst_nm:0:1} == "/" ]]; then + lnk_dst=${lnk_dst_nm} + else + lnk_dst="${lnk_dir}/${lnk_dst_nm}" + fi + + # now test if it is absolute and relative to the system and not the PREFIX + # also test if the dest file exists + if [[ ${lnk_dst_nm:0:1} == "/" ]] && [[ ! ${lnk_dst_nm} == ${SYSROOT_DIR}* ]]; then + echo "***WARNING ABSOLUTE SYMLINK***: ${lnk} -> ${lnk_dst}" + error_code=1 + elif [[ ! -e "${lnk_dst}" ]]; then + echo "***WARNING SYMLINK W/O DESTINATION: ${lnk} -> ${lnk_dst}" + error_code=1 + fi +done + +exit ${error_code} diff --git a/cdts/cairo-gobject-cos7-ppc64le/meta.yaml b/cdts/cairo-gobject-cos7-ppc64le/meta.yaml new file mode 100644 index 00000000..a22097c4 --- /dev/null +++ b/cdts/cairo-gobject-cos7-ppc64le/meta.yaml @@ -0,0 +1,49 @@ +package: + name: cairo-gobject-cos7-ppc64le + version: 1.15.12 + +source: + - url: http://mirror.centos.org/altarch/7/os/ppc64le/Packages/cairo-gobject-1.15.12-4.el7.ppc64le.rpm + sha256: 3f1ac67e199e7cad0353dad11a91028c6b9bfa9103b2e27f1bd6cb656c55de02 + no_hoist: true + folder: binary + # - url: http://vault.centos.org/7.7.1908/os/Source/SPackages/cairo-1.15.12-4.el7.src.rpm + # no_hoist: true + # folder: source + +build: + number: {{ cdt_build_number|int + 1000 }} + noarch: generic + binary_relocation: False + detect_binary_files_with_prefix: False + missing_dso_whitelist: + - '*' + +requirements: + build: + - cairo-cos7-ppc64le ==1.15.12 *_{{ cdt_build_number|int + 1000 }} + host: + - cairo-cos7-ppc64le ==1.15.12 *_{{ cdt_build_number|int + 1000 }} + - sysroot_linux-ppc64le 2.17.* + run: + - cairo-cos7-ppc64le ==1.15.12 *_{{ cdt_build_number|int + 1000 }} + - sysroot_linux-ppc64le 2.17.* + +test: + commands: + - echo "it installs!" + +about: + home: http://cairographics.org + license: LGPLv2 or MPLv1.1 + license_family: LGPL + license_file: {{ SRC_DIR }}/binary/LICENSE_NOT_FOUND + summary: "(CDT) GObject bindings for cairo" + description: | + Cairo is a 2D graphics library designed to provide high-quality display and + print output. This package contains functionality to make cairo graphics + library integrate well with the GObject object system used by GNOME. + +extra: + recipe-maintainers: + - conda-forge/help-cdts diff --git a/cdts/cairo-gobject-cos7-x86_64/build.sh b/cdts/cairo-gobject-cos7-x86_64/build.sh new file mode 100755 index 00000000..44dc3055 --- /dev/null +++ b/cdts/cairo-gobject-cos7-x86_64/build.sh @@ -0,0 +1,59 @@ +#!/bin/bash + +set -o errexit -o pipefail + +SYSROOT_DIR="${PREFIX}"/x86_64-conda-linux-gnu/sysroot + +mkdir -p "${SYSROOT_DIR}" +if [[ -d usr/lib ]]; then + if [[ ! -d lib ]]; then + ln -s usr/lib lib + fi +fi +if [[ -d usr/lib64 ]]; then + if [[ ! -d lib64 ]]; then + ln -s usr/lib64 lib64 + fi +fi +pushd ${SRC_DIR}/binary > /dev/null 2>&1 +rsync -K -a . "${SYSROOT_DIR}" +popd > /dev/null 2>&1 + +# START OF INSERTED BUILD APPENDS + +# END OF INSERTED BUILD APPENDS + +# this code makes sure that any symlinks are relative and their targets exist +# the CDT would fail at test time, but doing it here produces useful error +# messages for fixing things +error_code=0 +for blnk in $(find ./binary -type l); do + # loop is over symlinks in the RPM, so get the path in the sysroot + lnk=${SYSROOT_DIR}${blnk#"./binary"} + + # if it is not a link in the sysroot, move on + if [[ ! -L ${lnk} ]]; then + continue + fi + + # get the link dir and the destination of the link + lnk_dir=$(dirname ${lnk}) + lnk_dst_nm=$(readlink ${lnk}) + if [[ ${lnk_dst_nm:0:1} == "/" ]]; then + lnk_dst=${lnk_dst_nm} + else + lnk_dst="${lnk_dir}/${lnk_dst_nm}" + fi + + # now test if it is absolute and relative to the system and not the PREFIX + # also test if the dest file exists + if [[ ${lnk_dst_nm:0:1} == "/" ]] && [[ ! ${lnk_dst_nm} == ${SYSROOT_DIR}* ]]; then + echo "***WARNING ABSOLUTE SYMLINK***: ${lnk} -> ${lnk_dst}" + error_code=1 + elif [[ ! -e "${lnk_dst}" ]]; then + echo "***WARNING SYMLINK W/O DESTINATION: ${lnk} -> ${lnk_dst}" + error_code=1 + fi +done + +exit ${error_code} diff --git a/cdts/cairo-gobject-cos7-x86_64/meta.yaml b/cdts/cairo-gobject-cos7-x86_64/meta.yaml new file mode 100644 index 00000000..206d8eab --- /dev/null +++ b/cdts/cairo-gobject-cos7-x86_64/meta.yaml @@ -0,0 +1,49 @@ +package: + name: cairo-gobject-cos7-x86_64 + version: 1.15.12 + +source: + - url: http://mirror.centos.org/centos/7/os/x86_64/Packages/cairo-gobject-1.15.12-4.el7.x86_64.rpm + sha256: 10b0eb65496e8b8c7b1d14fb3c529c4e5473e113d9b872cbb504fc4611a469af + no_hoist: true + folder: binary + # - url: http://vault.centos.org/7.7.1908/os/Source/SPackages/cairo-1.15.12-4.el7.src.rpm + # no_hoist: true + # folder: source + +build: + number: {{ cdt_build_number|int + 1000 }} + noarch: generic + binary_relocation: False + detect_binary_files_with_prefix: False + missing_dso_whitelist: + - '*' + +requirements: + build: + - cairo-cos7-x86_64 ==1.15.12 *_{{ cdt_build_number|int + 1000 }} + host: + - cairo-cos7-x86_64 ==1.15.12 *_{{ cdt_build_number|int + 1000 }} + - sysroot_linux-64 2.17.* + run: + - cairo-cos7-x86_64 ==1.15.12 *_{{ cdt_build_number|int + 1000 }} + - sysroot_linux-64 2.17.* + +test: + commands: + - echo "it installs!" + +about: + home: http://cairographics.org + license: LGPLv2 or MPLv1.1 + license_family: LGPL + license_file: {{ SRC_DIR }}/binary/LICENSE_NOT_FOUND + summary: "(CDT) GObject bindings for cairo" + description: | + Cairo is a 2D graphics library designed to provide high-quality display and + print output. This package contains functionality to make cairo graphics + library integrate well with the GObject object system used by GNOME. + +extra: + recipe-maintainers: + - conda-forge/help-cdts diff --git a/legacy_cdts/cairo-gobject-cos7-aarch64/build.sh b/legacy_cdts/cairo-gobject-cos7-aarch64/build.sh new file mode 100755 index 00000000..97499cee --- /dev/null +++ b/legacy_cdts/cairo-gobject-cos7-aarch64/build.sh @@ -0,0 +1,59 @@ +#!/bin/bash + +set -o errexit -o pipefail + +SYSROOT_DIR="${PREFIX}"/aarch64-conda_cos7-linux-gnu/sysroot + +mkdir -p "${SYSROOT_DIR}" +if [[ -d usr/lib ]]; then + if [[ ! -d lib ]]; then + ln -s usr/lib lib + fi +fi +if [[ -d usr/lib64 ]]; then + if [[ ! -d lib64 ]]; then + ln -s usr/lib64 lib64 + fi +fi +pushd ${SRC_DIR}/binary > /dev/null 2>&1 +rsync -K -a . "${SYSROOT_DIR}" +popd > /dev/null 2>&1 + +# START OF INSERTED BUILD APPENDS + +# END OF INSERTED BUILD APPENDS + +# this code makes sure that any symlinks are relative and their targets exist +# the CDT would fail at test time, but doing it here produces useful error +# messages for fixing things +error_code=0 +for blnk in $(find ./binary -type l); do + # loop is over symlinks in the RPM, so get the path in the sysroot + lnk=${SYSROOT_DIR}${blnk#"./binary"} + + # if it is not a link in the sysroot, move on + if [[ ! -L ${lnk} ]]; then + continue + fi + + # get the link dir and the destination of the link + lnk_dir=$(dirname ${lnk}) + lnk_dst_nm=$(readlink ${lnk}) + if [[ ${lnk_dst_nm:0:1} == "/" ]]; then + lnk_dst=${lnk_dst_nm} + else + lnk_dst="${lnk_dir}/${lnk_dst_nm}" + fi + + # now test if it is absolute and relative to the system and not the PREFIX + # also test if the dest file exists + if [[ ${lnk_dst_nm:0:1} == "/" ]] && [[ ! ${lnk_dst_nm} == ${SYSROOT_DIR}* ]]; then + echo "***WARNING ABSOLUTE SYMLINK***: ${lnk} -> ${lnk_dst}" + error_code=1 + elif [[ ! -e "${lnk_dst}" ]]; then + echo "***WARNING SYMLINK W/O DESTINATION: ${lnk} -> ${lnk_dst}" + error_code=1 + fi +done + +exit ${error_code} diff --git a/legacy_cdts/cairo-gobject-cos7-aarch64/meta.yaml b/legacy_cdts/cairo-gobject-cos7-aarch64/meta.yaml new file mode 100644 index 00000000..e050c467 --- /dev/null +++ b/legacy_cdts/cairo-gobject-cos7-aarch64/meta.yaml @@ -0,0 +1,49 @@ +package: + name: cairo-gobject-cos7-aarch64 + version: 1.15.12 + +source: + - url: http://mirror.centos.org/altarch/7/os/aarch64/Packages/cairo-gobject-1.15.12-4.el7.aarch64.rpm + sha256: 3a1d4c046e6512a4ac932ee6a889826dac242e22df0c4b9c89a45c2cb3173b4e + no_hoist: true + folder: binary + # - url: http://vault.centos.org/7.7.1908/os/Source/SPackages/cairo-1.15.12-4.el7.src.rpm + # no_hoist: true + # folder: source + +build: + number: {{ cdt_build_number|int }} + noarch: generic + binary_relocation: False + detect_binary_files_with_prefix: False + missing_dso_whitelist: + - '*' + +requirements: + build: + - cairo-cos7-aarch64 ==1.15.12 *_{{ cdt_build_number|int }} + host: + - cairo-cos7-aarch64 ==1.15.12 *_{{ cdt_build_number|int }} + run: + - cairo-cos7-aarch64 ==1.15.12 *_{{ cdt_build_number|int }} + run_constrained: + - sysroot_linux-aarch64 ==99999999999 + +test: + commands: + - echo "it installs!" + +about: + home: http://cairographics.org + license: LGPLv2 or MPLv1.1 + license_family: LGPL + license_file: {{ SRC_DIR }}/binary/LICENSE_NOT_FOUND + summary: "(CDT) GObject bindings for cairo" + description: | + Cairo is a 2D graphics library designed to provide high-quality display and + print output. This package contains functionality to make cairo graphics + library integrate well with the GObject object system used by GNOME. + +extra: + recipe-maintainers: + - conda-forge/help-cdts diff --git a/legacy_cdts/cairo-gobject-cos7-ppc64le/build.sh b/legacy_cdts/cairo-gobject-cos7-ppc64le/build.sh new file mode 100755 index 00000000..0f6cb1aa --- /dev/null +++ b/legacy_cdts/cairo-gobject-cos7-ppc64le/build.sh @@ -0,0 +1,59 @@ +#!/bin/bash + +set -o errexit -o pipefail + +SYSROOT_DIR="${PREFIX}"/powerpc64le-conda_cos7-linux-gnu/sysroot + +mkdir -p "${SYSROOT_DIR}" +if [[ -d usr/lib ]]; then + if [[ ! -d lib ]]; then + ln -s usr/lib lib + fi +fi +if [[ -d usr/lib64 ]]; then + if [[ ! -d lib64 ]]; then + ln -s usr/lib64 lib64 + fi +fi +pushd ${SRC_DIR}/binary > /dev/null 2>&1 +rsync -K -a . "${SYSROOT_DIR}" +popd > /dev/null 2>&1 + +# START OF INSERTED BUILD APPENDS + +# END OF INSERTED BUILD APPENDS + +# this code makes sure that any symlinks are relative and their targets exist +# the CDT would fail at test time, but doing it here produces useful error +# messages for fixing things +error_code=0 +for blnk in $(find ./binary -type l); do + # loop is over symlinks in the RPM, so get the path in the sysroot + lnk=${SYSROOT_DIR}${blnk#"./binary"} + + # if it is not a link in the sysroot, move on + if [[ ! -L ${lnk} ]]; then + continue + fi + + # get the link dir and the destination of the link + lnk_dir=$(dirname ${lnk}) + lnk_dst_nm=$(readlink ${lnk}) + if [[ ${lnk_dst_nm:0:1} == "/" ]]; then + lnk_dst=${lnk_dst_nm} + else + lnk_dst="${lnk_dir}/${lnk_dst_nm}" + fi + + # now test if it is absolute and relative to the system and not the PREFIX + # also test if the dest file exists + if [[ ${lnk_dst_nm:0:1} == "/" ]] && [[ ! ${lnk_dst_nm} == ${SYSROOT_DIR}* ]]; then + echo "***WARNING ABSOLUTE SYMLINK***: ${lnk} -> ${lnk_dst}" + error_code=1 + elif [[ ! -e "${lnk_dst}" ]]; then + echo "***WARNING SYMLINK W/O DESTINATION: ${lnk} -> ${lnk_dst}" + error_code=1 + fi +done + +exit ${error_code} diff --git a/legacy_cdts/cairo-gobject-cos7-ppc64le/meta.yaml b/legacy_cdts/cairo-gobject-cos7-ppc64le/meta.yaml new file mode 100644 index 00000000..1810036b --- /dev/null +++ b/legacy_cdts/cairo-gobject-cos7-ppc64le/meta.yaml @@ -0,0 +1,49 @@ +package: + name: cairo-gobject-cos7-ppc64le + version: 1.15.12 + +source: + - url: http://mirror.centos.org/altarch/7/os/ppc64le/Packages/cairo-gobject-1.15.12-4.el7.ppc64le.rpm + sha256: 3f1ac67e199e7cad0353dad11a91028c6b9bfa9103b2e27f1bd6cb656c55de02 + no_hoist: true + folder: binary + # - url: http://vault.centos.org/7.7.1908/os/Source/SPackages/cairo-1.15.12-4.el7.src.rpm + # no_hoist: true + # folder: source + +build: + number: {{ cdt_build_number|int }} + noarch: generic + binary_relocation: False + detect_binary_files_with_prefix: False + missing_dso_whitelist: + - '*' + +requirements: + build: + - cairo-cos7-ppc64le ==1.15.12 *_{{ cdt_build_number|int }} + host: + - cairo-cos7-ppc64le ==1.15.12 *_{{ cdt_build_number|int }} + run: + - cairo-cos7-ppc64le ==1.15.12 *_{{ cdt_build_number|int }} + run_constrained: + - sysroot_linux-ppc64le ==99999999999 + +test: + commands: + - echo "it installs!" + +about: + home: http://cairographics.org + license: LGPLv2 or MPLv1.1 + license_family: LGPL + license_file: {{ SRC_DIR }}/binary/LICENSE_NOT_FOUND + summary: "(CDT) GObject bindings for cairo" + description: | + Cairo is a 2D graphics library designed to provide high-quality display and + print output. This package contains functionality to make cairo graphics + library integrate well with the GObject object system used by GNOME. + +extra: + recipe-maintainers: + - conda-forge/help-cdts