mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-09 00:07:57 +03:00
63 lines
1.3 KiB
Bash
63 lines
1.3 KiB
Bash
# 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} )
|
|
|
|
inherit distutils-r1
|
|
|
|
MY_P=libsass-python-${PV}
|
|
DESCRIPTION="A straightforward binding of libsass for Python"
|
|
HOMEPAGE="
|
|
https://github.com/sass/libsass-python/
|
|
https://pypi.org/project/libsass/
|
|
"
|
|
SRC_URI="
|
|
https://github.com/sass/libsass-python/archive/${PV}.tar.gz
|
|
-> ${MY_P}.gh.tar.gz
|
|
"
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm64 x86"
|
|
|
|
DEPEND="
|
|
>=dev-libs/libsass-3.6.5
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
"
|
|
BDEPEND="
|
|
test? (
|
|
dev-python/pyqt5[testlib,${PYTHON_USEDEP}]
|
|
dev-python/werkzeug[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
src_prepare() {
|
|
distutils-r1_src_prepare
|
|
export SYSTEM_SASS=1
|
|
# https://bugs.gentoo.org/881339
|
|
# the package is applying C++ flags to C sources
|
|
sed -i -e "s:'-std=gnu++0x',::" -e "s:'-lstdc++'::" setup.py || die
|
|
}
|
|
|
|
python_test() {
|
|
local EPYTEST_DESELECT=(
|
|
# probably broken by removal of sassc
|
|
sasstests.py::SasscTestCase::test_sassc_stdout
|
|
# skip the pip tests because they need an internet connection
|
|
# not relevant for gentoo anyway
|
|
sasstests.py::DistutilsTestCase::test_build_sass
|
|
sasstests.py::DistutilsTestCase::test_output_style
|
|
)
|
|
|
|
epytest sasstests.py
|
|
}
|