dev-python/pycairo: Bump to 1.26.1

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny 2024-06-21 17:27:13 +02:00
parent be0d5b56fb
commit 88084b4cb5
No known key found for this signature in database
GPG Key ID: 639ADAE2329E240E
2 changed files with 74 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST pycairo-1.26.0.tar.gz 346850 BLAKE2B da6c35c929d372764280e8963a8b66ba533ccb99be9ee2bfa10859c635dd16cc087d542607be9ec6a9ffb942feb892100d4b9017d832d478b35c434aa05b9bb9 SHA512 5313f0d408a6e6ce6e70ac92291be5dd8651e01fbf9411d0467061afa21849cde27db273f2a13b4c3c931183f63f75f31fc0f0d3283b8f339ba88e71eab432f1
DIST pycairo-1.26.1.tar.gz 346882 BLAKE2B 52e92b3b7e6ffda89a01b293f0bc6c5da5018ba77dce92d30b221fbf1f8c1b253f5ae279d64a517810b6efe4d7d282c21dbc15e5ef8e372204095c773b12de52 SHA512 4f63fc4fb2b6bf65d8a1cbbeaf4d982c5eb2271309763522ee6f763f691428b3e420434382e8a3e1d6b841821940f44f4bc6f51724eb4474494d60b7ff1c9031

View File

@ -0,0 +1,73 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..13} pypy3 )
PYTHON_REQ_USE="threads(+)"
inherit distutils-r1
DESCRIPTION="Python bindings for the cairo library"
HOMEPAGE="
https://www.cairographics.org/pycairo/
https://github.com/pygobject/pycairo/
https://pypi.org/project/pycairo/
"
SRC_URI="
https://github.com/pygobject/${PN}/releases/download/v${PV}/${P}.tar.gz
"
LICENSE="|| ( LGPL-2.1 MPL-1.1 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
IUSE="examples"
BDEPEND="
virtual/pkgconfig
test? (
dev-python/hypothesis[${PYTHON_USEDEP}]
)
"
RDEPEND="
>=x11-libs/cairo-1.15.10[svg(+)]
"
DEPEND="
${RDEPEND}
x11-base/xorg-proto
"
distutils_enable_sphinx docs \
dev-python/sphinx-rtd-theme
distutils_enable_tests pytest
python_test() {
esetup.py build_tests
epytest
}
python_install() {
distutils-r1_python_install
# we need to pass --root via install command, sigh
cat > "${T}/distutils-extra.cfg" <<-EOF || die
[install]
root = ${D}
EOF
local -x DIST_EXTRA_CONFIG=${T}/distutils-extra.cfg
esetup.py \
install_pkgconfig --pkgconfigdir="${EPREFIX}/usr/$(get_libdir)/pkgconfig"
}
python_install_all() {
if use examples; then
dodoc -r examples
fi
distutils-r1_python_install_all
insinto /usr/include/pycairo
doins cairo/py3cairo.h
}