dev-python/pycairo: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2024-11-29 04:52:23 +01:00
parent 9467a549ad
commit fa45b1034d
2 changed files with 0 additions and 74 deletions

View File

@@ -1,2 +1 @@
DIST pycairo-1.26.1.tar.gz 346882 BLAKE2B 52e92b3b7e6ffda89a01b293f0bc6c5da5018ba77dce92d30b221fbf1f8c1b253f5ae279d64a517810b6efe4d7d282c21dbc15e5ef8e372204095c773b12de52 SHA512 4f63fc4fb2b6bf65d8a1cbbeaf4d982c5eb2271309763522ee6f763f691428b3e420434382e8a3e1d6b841821940f44f4bc6f51724eb4474494d60b7ff1c9031
DIST pycairo-1.27.0.tar.gz 661450 BLAKE2B cc1ef54057d02f3e25fed010c995e4fe400ccdf3a5d2f241c029ded167c5db2560a4d9c8cb09b2f0519e674b5962f2244f0570401f45743fe1ec61d5a8982227 SHA512 1b077917b1d99262da1c1d2ff85ae841dd0ff715925a5a20032162aa876576d966fc6b30c154343cc45f104cce243887de9b5f14af1e15775cb71b6c11e553a6

View File

@@ -1,73 +0,0 @@
# 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 ~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
}