diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-11-14 01:04:06 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-11-14 01:04:06 +0000 |
| commit | 38ddbc6cbbe7942fe57bc53cebf9f1bf68d4350d (patch) | |
| tree | d3064a99cc301fa2d99fbfcecc7831e8b579be2c /dev-python/libsass | |
| parent | 468c58da56484a7818dccf0ed72172386c42975c (diff) | |
| download | baldeagleos-repo-38ddbc6cbbe7942fe57bc53cebf9f1bf68d4350d.tar.gz baldeagleos-repo-38ddbc6cbbe7942fe57bc53cebf9f1bf68d4350d.tar.xz baldeagleos-repo-38ddbc6cbbe7942fe57bc53cebf9f1bf68d4350d.zip | |
Adding metadata
Diffstat (limited to 'dev-python/libsass')
| -rw-r--r-- | dev-python/libsass/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/libsass/libsass-0.22.0.ebuild | 59 |
2 files changed, 60 insertions, 0 deletions
diff --git a/dev-python/libsass/Manifest b/dev-python/libsass/Manifest index ab82a1ada608..ce06c29ba660 100644 --- a/dev-python/libsass/Manifest +++ b/dev-python/libsass/Manifest @@ -1 +1,2 @@ DIST libsass-python-0.21.0.gh.tar.gz 55774 BLAKE2B 3c584ff3b6c09bc768554a3a4f7ef28ecea0726f59206da8540f9c1b4db74ab1235695074dd6b95db74f174066bb856c9854026525da82e7763f341920f0bd53 SHA512 d5b7a1bf0dc736a6a38e2e609f0a213306de31d5ad84cfdcd96f9ff72a1c38f15bad3cf25a1cec6dca5a9f3b00a8509afff2b4ea5e4db80e218e3ae603d55856 +DIST libsass-python-0.22.0.gh.tar.gz 55135 BLAKE2B 8495462fa8e6a68bf73ecdf68771c577bad1affa1121c1781dac41c912aae731df88c2b1d1a4ef363e50a98ff1b471e7c45562faa6f2425e8ec5f47f9cf76c6c SHA512 13914b60fe19fc70d197a948a2bc83f7646e4acaa45caed6df68bf2eb10e0a7ef811cdbbcc7a4338f9c1433cba8e316146c20072dc4ff34f51e094ead1bfdcd7 diff --git a/dev-python/libsass/libsass-0.22.0.ebuild b/dev-python/libsass/libsass-0.22.0.ebuild new file mode 100644 index 000000000000..74864e172752 --- /dev/null +++ b/dev-python/libsass/libsass-0.22.0.ebuild @@ -0,0 +1,59 @@ +# 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 + +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 ~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 +} |
