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.
gentoo-overlay/dev-python/libsass/libsass-0.21.0.ebuild

50 lines
1.2 KiB

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
MY_P=libsass-python-${PV}
DESCRIPTION="A straightforward binding of libsass for Python"
HOMEPAGE="https://github.com/sass/libsass-python/"
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 ~x86"
RDEPEND=">=dev-libs/libsass-3.6.5"
DEPEND=${RDEPEND}
BDEPEND="
dev-python/six[${PYTHON_USEDEP}]
test? (
dev-python/PyQt5[testlib,${PYTHON_USEDEP}]
dev-python/werkzeug[${PYTHON_USEDEP}]
)"
# Remove sassc, in favour of pysassc, see: https://github.com/sass/libsass-python/issues/134
# This avoids a file collision with dev-lang/sassc
PATCHES=( "${FILESDIR}"/${PN}-0.20.0_rename_sassc.patch )
distutils_enable_tests pytest
src_prepare() {
echo "${PV}" > .libsass-upstream-version || die
distutils-r1_src_prepare
export SYSTEM_SASS=1
}
python_test() {
local deselect=(
# probably broken by removal of sassc
sasstests.py::SasscTestCase::test_sassc_stdout
)
epytest sasstests.py ${deselect[@]/#/--deselect }
}