You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
957 B
45 lines
957 B
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_EXT=1
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( pypy3 python3_{9..11} )
|
|
|
|
inherit distutils-r1
|
|
|
|
MY_PN="${PN//-/.}"
|
|
MY_P="${MY_PN}-${PV}"
|
|
|
|
DESCRIPTION="C-based reader/scanner and emitter for dev-python/ruamel-yaml"
|
|
HOMEPAGE="
|
|
https://pypi.org/project/ruamel.yaml.clib/
|
|
https://sourceforge.net/projects/ruamel-yaml-clib/
|
|
"
|
|
# sdist lacks .pyx files for cythonizing
|
|
SRC_URI="mirror://sourceforge/ruamel-dl-tagged-releases/${MY_P}.tar.xz"
|
|
# workaround https://bugs.gentoo.org/898716
|
|
S=${WORKDIR}/ruamel_yaml_clib
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
|
|
|
|
BDEPEND="
|
|
dev-python/cython[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-0.2.7-clang-16.patch
|
|
)
|
|
|
|
src_unpack() {
|
|
default
|
|
mv "${MY_P}" ruamel_yaml_clib || die
|
|
}
|
|
|
|
src_configure() {
|
|
cythonize -3 _ruamel_yaml.pyx || die
|
|
}
|