From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 28725158095 for ; Sun, 10 Jul 2022 18:54:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30C59E0D23; Sun, 10 Jul 2022 18:54:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 00094E0D23 for ; Sun, 10 Jul 2022 18:54:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1B47334100E for ; Sun, 10 Jul 2022 18:54:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD11E52D for ; Sun, 10 Jul 2022 18:54:10 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1657479247.accfe7a90ad8a8f15f1bfd4abc813c761b90c988.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/libsass/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/libsass/libsass-0.21.0.ebuild X-VCS-Directories: dev-python/libsass/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: accfe7a90ad8a8f15f1bfd4abc813c761b90c988 X-VCS-Branch: master Date: Sun, 10 Jul 2022 18:54:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e7e98731-64f6-46b5-a327-817985b3e4e5 X-Archives-Hash: 2acc6f133c0d7970b46076b1ac526ade commit: accfe7a90ad8a8f15f1bfd4abc813c761b90c988 Author: Michał Górny gentoo org> AuthorDate: Sun Jul 10 18:53:52 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jul 10 18:54:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=accfe7a9 dev-python/libsass: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/libsass/libsass-0.21.0.ebuild | 57 -------------------------------- 1 file changed, 57 deletions(-) diff --git a/dev-python/libsass/libsass-0.21.0.ebuild b/dev-python/libsass/libsass-0.21.0.ebuild deleted file mode 100644 index 42335f36cb91..000000000000 --- a/dev-python/libsass/libsass-0.21.0.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..10} ) -inherit distutils-r1 toolchain-funcs - -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 - # https://bugs.gentoo.org/730244 - if tc-is-clang; then - sed -i -e 's/-std=gnu++0x//g' setup.py || die - fi -} - -python_test() { - local 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 ${deselect[@]/#/--deselect } -}