summaryrefslogtreecommitdiff
path: root/dev-python/libsass-python/files
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-04-01 01:09:56 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-04-01 01:09:56 +0000
commitd1ce6e81b74316f4ee8bf59eec1785698c1c18be (patch)
tree1f5f286f96595072d879b7eb1211bda5a4300b6d /dev-python/libsass-python/files
parent56a408938ac562b792194ce040b5d75bfb491bad (diff)
downloadbaldeagleos-repo-d1ce6e81b74316f4ee8bf59eec1785698c1c18be.tar.gz
baldeagleos-repo-d1ce6e81b74316f4ee8bf59eec1785698c1c18be.tar.xz
baldeagleos-repo-d1ce6e81b74316f4ee8bf59eec1785698c1c18be.zip
Adding metadata
Diffstat (limited to 'dev-python/libsass-python/files')
-rw-r--r--dev-python/libsass-python/files/libsass-0.20.0_rename_sassc.patch64
1 files changed, 0 insertions, 64 deletions
diff --git a/dev-python/libsass-python/files/libsass-0.20.0_rename_sassc.patch b/dev-python/libsass-python/files/libsass-0.20.0_rename_sassc.patch
deleted file mode 100644
index 46efe8700328..000000000000
--- a/dev-python/libsass-python/files/libsass-0.20.0_rename_sassc.patch
+++ /dev/null
@@ -1,64 +0,0 @@
-diff --git a/sassc.py b/sassc.py
-deleted file mode 100644
-index 2415342..0000000
---- a/sassc.py
-+++ /dev/null
-@@ -1,15 +0,0 @@
--import warnings
--
--import pysassc
--
--
--def main(*args, **kwargs):
-- warnings.warn(
-- 'The `sassc` entrypoint is deprecated, please use `pysassc`',
-- FutureWarning,
-- ),
-- return pysassc.main(*args, **kwargs)
--
--
--if __name__ == '__main__':
-- exit(main())
-diff --git a/sasstests.py b/sasstests.py
-index 1f40a97..7547ab3 100644
---- a/sasstests.py
-+++ b/sasstests.py
-@@ -24,7 +24,6 @@ from werkzeug.wrappers import Response
-
- import pysassc
- import sass
--import sassc
- from sassutils._compat import collections_abc
- from sassutils.builder import Manifest, build_directory
- from sassutils.wsgi import SassMiddleware
-@@ -976,7 +975,7 @@ class SasscTestCase(BaseTestCase):
-
- def test_sassc_stdout(self):
- with pytest.warns(FutureWarning) as warninfo:
-- exit_code = sassc.main(
-+ exit_code = pysassc.main(
- ['sassc', 'test/a.scss'],
- self.out, self.err,
- )
-diff --git a/setup.py b/setup.py
-index e2a0c85..5905162 100644
---- a/setup.py
-+++ b/setup.py
-@@ -218,7 +218,7 @@ setup(
- version=version(),
- ext_modules=[sass_extension],
- packages=['sassutils'],
-- py_modules=['pysassc', 'sass', 'sassc', 'sasstests'],
-+ py_modules=['pysassc', 'sass', 'sasstests'],
- package_data={
- '': [
- 'README.rst',
-@@ -239,8 +239,6 @@ setup(
- ],
- 'console_scripts': [
- ['pysassc = pysassc:main'],
-- # TODO: remove `sassc` entry (#134)
-- ['sassc = sassc:main'],
- ],
- },
- install_requires=['six'],