mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-05 02:18:08 -07:00
Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net> Signed-off-by: Matt Turner <mattst88@gentoo.org>
35 lines
882 B
Bash
35 lines
882 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{6,7,8,9} )
|
|
DISTUTILS_USE_SETUPTOOLS=rdepend
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A straightforward binding of libsass for Python"
|
|
HOMEPAGE="https://github.com/sass/libsass-python"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND="dev-libs/libsass
|
|
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}"/${P}_rename_sassc.patch )
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
python_test() {
|
|
"${EPYTHON}" sasstests.py || die "Tests fail with ${EPYTHON}"
|
|
}
|