summaryrefslogtreecommitdiff
path: root/dev-python/libsass-python/libsass-python-0.22.0.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-11-15 13:35:04 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-11-15 13:35:04 +0000
commit0e02d1c30e53c5c0a7a9ce0d46a17dedacfb864b (patch)
tree9bc031a11f7efcb65d43591eb855aa89f651fb07 /dev-python/libsass-python/libsass-python-0.22.0.ebuild
parentd38fac373e18985b7042b20d8c091d70cde30536 (diff)
downloadbaldeagleos-repo-0e02d1c30e53c5c0a7a9ce0d46a17dedacfb864b.tar.gz
baldeagleos-repo-0e02d1c30e53c5c0a7a9ce0d46a17dedacfb864b.tar.xz
baldeagleos-repo-0e02d1c30e53c5c0a7a9ce0d46a17dedacfb864b.zip
Adding metadata
Diffstat (limited to 'dev-python/libsass-python/libsass-python-0.22.0.ebuild')
-rw-r--r--dev-python/libsass-python/libsass-python-0.22.0.ebuild57
1 files changed, 0 insertions, 57 deletions
diff --git a/dev-python/libsass-python/libsass-python-0.22.0.ebuild b/dev-python/libsass-python/libsass-python-0.22.0.ebuild
deleted file mode 100644
index 1fa9f9355b73..000000000000
--- a/dev-python/libsass-python/libsass-python-0.22.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{7,8,9,10,11} )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit distutils-r1
-
-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
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~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() {
- echo "${PV}" > .libsass-upstream-version || die
- distutils-r1_src_prepare
- export SYSTEM_SASS=1
-}
-
-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
-}