[packages/python3-cssutils] - up to 2.11.1

baggins baggins at pld-linux.org
Sat Mar 22 15:18:35 CET 2025


commit c3d3faa0b3a2334814e8f91b1634bcdbfcf8301b
Author: Jan Rękorajski <baggins at pld-linux.org>
Date:   Sat Mar 22 15:36:42 2025 +0100

    - up to 2.11.1

 python-cssutils-mock.patch  |  36 -----------
 python-cssutils-tests.patch |  36 -----------
 python-cssutils.spec        | 150 --------------------------------------------
 python3-cssutils.spec       |  85 +++++++++++++++++++++++++
 4 files changed, 85 insertions(+), 222 deletions(-)
---
diff --git a/python-cssutils.spec b/python-cssutils.spec
deleted file mode 100644
index 72e2fda..0000000
--- a/python-cssutils.spec
+++ /dev/null
@@ -1,150 +0,0 @@
-#
-# Conditional build:
-%bcond_without	python2		# CPython 2.x module
-%bcond_without	python3		# CPython 3.x module
-%bcond_without	tests		# unit tests
-%bcond_with	tests_net	# unit tests using network
-
-%define		module	cssutils
-%define		encutils_ver 0.9.8
-Summary:	A CSS Cascading Style Sheets library for Python 2
-Summary(pl.UTF-8):	Biblioteka CSS (Cascading Style Sheets) dla Pythona 2
-Name:		python-%{module}
-Version:	1.0.2
-Release:	11
-Epoch:		1
-License:	LGPL v3+
-Group:		Libraries/Python
-Source0:	https://files.pythonhosted.org/packages/source/c/cssutils/%{module}-%{version}.tar.gz
-# Source0-md5:	dc66d96c2d78f1687f59ac412fe9d318
-Patch0:		%{name}-tests.patch
-Patch1:		%{name}-mock.patch
-URL:		http://cthedot.de/cssutils/
-%if %{with python2}
-BuildRequires:	python-devel >= 1:2.5
-%{?with_tests:BuildRequires:	python-mock}
-BuildRequires:	python-setuptools
-%endif
-%if %{with python3}
-BuildRequires:	python3-2to3 >= 1:3.2
-BuildRequires:	python3-devel >= 1:3.2
-BuildRequires:	python3-setuptools
-%endif
-BuildRequires:	rpm-pythonprov
-BuildRequires:	rpmbuild(macros) >= 1.714
-Requires:	python-modules >= 1:2.5
-Provides:	python-encutils = %{encutils_ver}
-Obsoletes:	python-encutils < %{encutils_ver}
-BuildArch:	noarch
-BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
-
-%description
-A Python package to parse and build CSS Cascading Style Sheets. Partly
-implements the DOM Level 2 Stylesheets and DOM Level 2 CSS interfaces.
-
-%description -l pl.UTF-8
-Pakiet Pythona do analizy i tworzenia CSS (Cascading Style Sheets).
-Częściowo implementuje interfejsy DOM Level 2 Stylesheets oraz DOM
-Level 2 CSS.
-
-%package -n python3-%{module}
-Summary:	A CSS Cascading Style Sheets library for Python 3
-Summary(pl.UTF-8):	Biblioteka CSS (Cascading Style Sheets) dla Pythona 3
-Group:		Libraries/Python
-Requires:	python3-modules >= 1:3.2
-
-%description -n python3-%{module}
-A Python package to parse and build CSS Cascading Style Sheets. Partly
-implements the DOM Level 2 Stylesheets and DOM Level 2 CSS interfaces.
-
-%description -n python3-%{module} -l pl.UTF-8
-Pakiet Pythona do analizy i tworzenia CSS (Cascading Style Sheets).
-Częściowo implementuje interfejsy DOM Level 2 Stylesheets oraz DOM
-Level 2 CSS.
-
-%prep
-%setup -q -n %{module}-%{version}
-%patch -P 0 -p1
-%patch -P 1 -p1
-
-eval $(PYTHONPATH=src python -c "from encutils import VERSION;print 'VERSION=%%s' %% VERSION")
-if [ $VERSION != %{encutils_ver} ]; then
-	echo "Please set encutils_ver to $VERSION"
-	exit 1
-fi
-
-%if %{without tests_net}
-%{__sed} -i -e 's/def test_parseUrl/def skip_parseUrl/' src/cssutils/tests/test_parse.py
-%{__sed} -i -e 's/def test_handlers/def skip_handlers/' src/cssutils/tests/test_errorhandler.py
-%endif
-
-%build
-%if %{with python2}
-%py_build
-
-%if %{with tests}
-%{__python} -m unittest discover -t build-2/lib -s build-2/lib/cssutils/tests
-%endif
-%endif
-
-%if %{with python3}
-%py3_build
-
-%if %{with tests}
-%{__python3} -m unittest discover -t build-3/lib -s build-3/lib/cssutils/tests
-%endif
-%endif
-
-%install
-rm -rf $RPM_BUILD_ROOT
-
-%if %{with python3}
-%py3_install
-
-for f in csscapture csscombine cssparse ; do
-	%{__mv} $RPM_BUILD_ROOT%{_bindir}/$f $RPM_BUILD_ROOT%{_bindir}/${f}-3
-done
-
-%{__rm} -r $RPM_BUILD_ROOT%{py3_sitescriptdir}/cssutils/tests
-%endif
-
-%if %{with python2}
-%py_install
-
-for f in csscapture csscombine cssparse ; do
-	%{__mv} $RPM_BUILD_ROOT%{_bindir}/$f $RPM_BUILD_ROOT%{_bindir}/${f}-2
-	ln -sf ${f}-2 $RPM_BUILD_ROOT%{_bindir}/$f
-done
-
-%py_postclean
-%{__rm} -r $RPM_BUILD_ROOT%{py_sitescriptdir}/cssutils/tests
-%endif
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%if %{with python2}
-%files
-%defattr(644,root,root,755)
-%doc README.txt
-%attr(755,root,root) %{_bindir}/csscapture
-%attr(755,root,root) %{_bindir}/csscombine
-%attr(755,root,root) %{_bindir}/cssparse
-%attr(755,root,root) %{_bindir}/csscapture-2
-%attr(755,root,root) %{_bindir}/csscombine-2
-%attr(755,root,root) %{_bindir}/cssparse-2
-%{py_sitescriptdir}/cssutils
-%{py_sitescriptdir}/encutils
-%{py_sitescriptdir}/cssutils-%{version}-py*.egg-info
-%endif
-
-%if %{with python3}
-%files -n python3-%{module}
-%defattr(644,root,root,755)
-%attr(755,root,root) %{_bindir}/csscapture-3
-%attr(755,root,root) %{_bindir}/csscombine-3
-%attr(755,root,root) %{_bindir}/cssparse-3
-%{py3_sitescriptdir}/cssutils
-%{py3_sitescriptdir}/encutils
-%{py3_sitescriptdir}/cssutils-%{version}-py*.egg-info
-%endif
diff --git a/python3-cssutils.spec b/python3-cssutils.spec
new file mode 100644
index 0000000..d1d3be1
--- /dev/null
+++ b/python3-cssutils.spec
@@ -0,0 +1,85 @@
+#
+# Conditional build:
+%bcond_without	tests		# unit tests
+%bcond_with	tests_net	# unit tests using network
+
+%define		module	cssutils
+%define		encutils_ver 0.9.8
+Summary:	A CSS Cascading Style Sheets library for Python
+Summary(pl.UTF-8):	Biblioteka CSS (Cascading Style Sheets) dla Pythona
+Name:		python3-%{module}
+Version:	2.11.1
+Release:	1
+Epoch:		1
+License:	LGPL v3+
+Group:		Libraries/Python
+Source0:	https://files.pythonhosted.org/packages/source/c/cssutils/%{module}-%{version}.tar.gz
+# Source0-md5:	c8c21e635454d9ca73b21892def35f55
+URL:		http://cthedot.de/cssutils/
+BuildRequires:	python3-devel >= 1:3.2
+BuildRequires:	python3-build
+BuildRequires:	python3-installer
+%if %{with tests}
+BuildRequires:	python3-jaraco.test
+%endif
+BuildRequires:	rpm-pythonprov
+BuildRequires:	rpmbuild(macros) >= 1.714
+Requires:	python3-modules >= 1:2.5
+BuildArch:	noarch
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+A Python package to parse and build CSS Cascading Style Sheets. Partly
+implements the DOM Level 2 Stylesheets and DOM Level 2 CSS interfaces.
+
+%description -l pl.UTF-8
+Pakiet Pythona do analizy i tworzenia CSS (Cascading Style Sheets).
+Częściowo implementuje interfejsy DOM Level 2 Stylesheets oraz DOM
+Level 2 CSS.
+
+%prep
+%setup -q -n %{module}-%{version}
+
+%if %{without tests_net}
+%{__sed} -i -e 's/def test_parseUrl/def skip_parseUrl/' cssutils/tests/test_parse.py
+%{__sed} -i -e 's/def test_handlers/def skip_handlers/' cssutils/tests/test_errorhandler.py
+%endif
+
+%build
+%py3_build_pyproject
+
+%if %{with tests}
+%{__python3} -m zipfile -e build-3/*.whl build-3-test
+# use explicit plugins list for reliable builds (delete PYTEST_PLUGINS if empty)
+PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \
+PYTEST_PLUGINS= \
+%{__python3} -m pytest -o pythonpath="$PWD/build-3-test" cssutils/tests
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%py3_install_pyproject
+
+for f in csscapture csscombine cssparse ; do
+	%{__mv} $RPM_BUILD_ROOT%{_bindir}/$f $RPM_BUILD_ROOT%{_bindir}/${f}-3
+	ln -sf ${f}-3 $RPM_BUILD_ROOT%{_bindir}/$f
+done
+
+%{__rm} -r $RPM_BUILD_ROOT%{py3_sitescriptdir}/cssutils/tests
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc README.rst NEWS.rst
+%attr(755,root,root) %{_bindir}/csscapture
+%attr(755,root,root) %{_bindir}/csscombine
+%attr(755,root,root) %{_bindir}/cssparse
+%attr(755,root,root) %{_bindir}/csscapture-3
+%attr(755,root,root) %{_bindir}/csscombine-3
+%attr(755,root,root) %{_bindir}/cssparse-3
+%{py3_sitescriptdir}/cssutils
+%{py3_sitescriptdir}/encutils
+%{py3_sitescriptdir}/cssutils-%{version}.dist-info
diff --git a/python-cssutils-mock.patch b/python-cssutils-mock.patch
deleted file mode 100644
index cac4c08..0000000
--- a/python-cssutils-mock.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- cssutils-1.0.2/src/cssutils/tests/test_cssutils.py.orig	2017-03-04 10:53:23.000000000 +0100
-+++ cssutils-1.0.2/src/cssutils/tests/test_cssutils.py	2017-07-03 21:07:40.163504334 +0200
-@@ -13,8 +13,7 @@
- try:
-     import mock
- except ImportError:
--    mock = None
--    print "install mock library to run all tests"
-+    import unittest.mock as mock
- 
- 
- class CSSutilsTestCase(basetest.BaseTestCase):
---- cssutils-1.0.2/src/cssutils/tests/test_parse.py.orig	2015-11-25 23:11:26.000000000 +0100
-+++ cssutils-1.0.2/src/cssutils/tests/test_parse.py	2017-07-03 21:08:16.740170584 +0200
-@@ -12,8 +12,7 @@
- try:
-     import mock
- except ImportError:
--    mock = None
--    print "install mock library to run all tests"
-+    import unittest.mock as mock
- 
- 
- class CSSParserTestCase(basetest.BaseTestCase):
---- cssutils-1.0.2/src/cssutils/tests/test_util.py.orig	2016-10-27 13:55:21.000000000 +0200
-+++ cssutils-1.0.2/src/cssutils/tests/test_util.py	2017-07-03 21:08:36.456837025 +0200
-@@ -13,8 +13,7 @@
- try:
-     import mock
- except ImportError:
--    mock = None
--    print "install mock library to run all tests"
-+    import unittest.mock as mock
- 
- import basetest
- import encutils
diff --git a/python-cssutils-tests.patch b/python-cssutils-tests.patch
deleted file mode 100644
index c10d065..0000000
--- a/python-cssutils-tests.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- cssutils-1.0.2/src/cssutils/tests/test_errorhandler.py.orig	2020-08-30 09:20:19.626140366 +0200
-+++ cssutils-1.0.2/src/cssutils/tests/test_errorhandler.py	2020-08-30 09:37:59.517065111 +0200
-@@ -74,6 +74,13 @@
- 
-     def test_linecol(self):
-         "cssutils.log line col"
-+        def has_libxml2():
-+            try:
-+                import libxml2
-+                return True
-+            except:
-+                return False
-+
-         o = cssutils.log.raiseExceptions
-         cssutils.log.raiseExceptions = True
-         
-@@ -84,7 +91,7 @@
-             self.assertEqual(str(e), 'CSSImportRule: Unexpected ident. [1:9: x]')
-             self.assertEqual(e.line, 1)
-             self.assertEqual(e.col, 9)
--            if sys.platform.startswith('java'):
-+            if sys.platform.startswith('java') or not has_libxml2():
-                 self.assertEqual(e.msg, u'CSSImportRule: Unexpected ident. [1:9: x]')
-             else:
-                 self.assertEqual(e.args, (u'CSSImportRule: Unexpected ident. [1:9: x]',))
---- cssutils-1.0.2/src/cssutils/tests/test_encutils/__init__.py.orig	2015-11-25 23:11:26.000000000 +0100
-+++ cssutils-1.0.2/src/cssutils/tests/test_encutils/__init__.py	2020-08-30 09:28:21.096865349 +0200
-@@ -203,7 +203,7 @@
-                 #('utf-8', u'\u1111'.encode('utf-8'))
-                 ]
-         for exp, test in tests:
--            self.assertEqual(exp, encutils.tryEncodings(test))
-+            self.assertEqual(exp, encutils.tryEncodings(test).lower())
- 
- 
-     def test_getEncodingInfo(self):
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python3-cssutils.git/commitdiff/c3d3faa0b3a2334814e8f91b1634bcdbfcf8301b



More information about the pld-cvs-commit mailing list