mirror of
https://github.com/flatcar/scripts.git
synced 2025-09-25 23:51:07 +02:00
dev-python/pillow: Sync with Gentoo
It's from Gentoo commit d1e39b3d2d1f8dc50709949cc43539bd5c08577a.
This commit is contained in:
parent
f4223b8e45
commit
099f939e81
@ -1 +1,2 @@
|
|||||||
DIST pillow-11.1.0.gh.tar.gz 46815201 BLAKE2B 7990683c90359e0a72e17a13e1a29455bc3ace8ce3616d6af59360edfc1ac87541bd1fd6967160bd8d7dd25cfedfc9d2e9b058c3ed433a6208379834f15bc312 SHA512 bb0622fae0b9c3903ddd945dced8e2b94348b2bd06c14bc74da00d8aa3a795aab2daaff39ca6c40b712dcce4f10218cd30739f0eb616c9dfbc16efcf80886f1e
|
DIST pillow-11.1.0.gh.tar.gz 46815201 BLAKE2B 7990683c90359e0a72e17a13e1a29455bc3ace8ce3616d6af59360edfc1ac87541bd1fd6967160bd8d7dd25cfedfc9d2e9b058c3ed433a6208379834f15bc312 SHA512 bb0622fae0b9c3903ddd945dced8e2b94348b2bd06c14bc74da00d8aa3a795aab2daaff39ca6c40b712dcce4f10218cd30739f0eb616c9dfbc16efcf80886f1e
|
||||||
|
DIST pythoncapi_compat.h 61109 BLAKE2B 9b8d9f774a6803dee73aedc5465519f2956c284bf70314f5e046d0d5522a10891bf55358a85fea5a156d4063736424c0f019bc71dd18592bbf56c364db7b6bce SHA512 d0ca43186fdc3cd8d0e993135b50fc86eeea05e8b84cba529d89f60ce28bc9502f8d3825eb508be5d68d1fbfc53423a69756c0e79fe0fe7adf94c602b1cf79ff
|
||||||
|
@ -6,7 +6,7 @@ EAPI=8
|
|||||||
DISTUTILS_EXT=1
|
DISTUTILS_EXT=1
|
||||||
# setuptools wrapper
|
# setuptools wrapper
|
||||||
DISTUTILS_USE_PEP517=standalone
|
DISTUTILS_USE_PEP517=standalone
|
||||||
PYTHON_COMPAT=( python3_{10..13} pypy3 )
|
PYTHON_COMPAT=( python3_{10..13} pypy3 pypy3_11 )
|
||||||
PYTHON_REQ_USE='tk?,threads(+)'
|
PYTHON_REQ_USE='tk?,threads(+)'
|
||||||
|
|
||||||
inherit distutils-r1 toolchain-funcs virtualx
|
inherit distutils-r1 toolchain-funcs virtualx
|
||||||
@ -23,6 +23,7 @@ HOMEPAGE="
|
|||||||
SRC_URI="
|
SRC_URI="
|
||||||
https://github.com/python-pillow/Pillow/archive/${PV}.tar.gz
|
https://github.com/python-pillow/Pillow/archive/${PV}.tar.gz
|
||||||
-> ${P}.gh.tar.gz
|
-> ${P}.gh.tar.gz
|
||||||
|
https://github.com/python/pythoncapi-compat/raw/c84545f0e1e21757d4901f75c47333d25a3fcff0/pythoncapi_compat.h
|
||||||
"
|
"
|
||||||
S="${WORKDIR}/${MY_P}"
|
S="${WORKDIR}/${MY_P}"
|
||||||
|
|
||||||
@ -66,10 +67,22 @@ BDEPEND="
|
|||||||
EPYTEST_XDIST=1
|
EPYTEST_XDIST=1
|
||||||
distutils_enable_tests pytest
|
distutils_enable_tests pytest
|
||||||
|
|
||||||
PATCHES=(
|
src_prepare() {
|
||||||
# https://github.com/python-pillow/pillow/pull/7634
|
local PATCHES=(
|
||||||
"${FILESDIR}/${PN}-10.2.0-cross.patch"
|
# https://github.com/python-pillow/pillow/pull/7634
|
||||||
)
|
"${FILESDIR}/${PN}-10.2.0-cross.patch"
|
||||||
|
)
|
||||||
|
|
||||||
|
distutils-r1_src_prepare
|
||||||
|
|
||||||
|
# https://github.com/python-pillow/Pillow/pull/8757
|
||||||
|
if ! grep -q 0041177c4f348c8952b4c8980b2c90856e61c7c7 \
|
||||||
|
src/thirdparty/pythoncapi_compat.h
|
||||||
|
then
|
||||||
|
die "Remove pythoncapi_compat.h update"
|
||||||
|
fi
|
||||||
|
cp "${DISTDIR}/pythoncapi_compat.h" src/thirdparty/ || die
|
||||||
|
}
|
||||||
|
|
||||||
usepil() {
|
usepil() {
|
||||||
usex "${1}" enable disable
|
usex "${1}" enable disable
|
||||||
|
Loading…
x
Reference in New Issue
Block a user