* [gentoo-commits] repo/gentoo:master commit in: dev-python/css-parser/, dev-python/css-parser/files/
@ 2021-05-18 9:32 Michał Górny
0 siblings, 0 replies; 4+ messages in thread
From: Michał Górny @ 2021-05-18 9:32 UTC (permalink / raw
To: gentoo-commits
commit: 26e0302cb9b4d2dacf43874dd1b5150fe2ca5f58
Author: Zamarin Arthur <arthurzam <AT> gmail <DOT> com>
AuthorDate: Tue May 18 09:17:13 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May 18 09:30:57 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26e0302c
dev-python/css-parser: add 1.0.6, py3.10
- passes tests when using FEATURES="-network-sandbox"
- adding chardet dependency removes warning during tests
Signed-off-by: Zamarin Arthur <arthurzam <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/20818
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/css-parser/Manifest | 1 +
dev-python/css-parser/css-parser-1.0.6.ebuild | 26 ++++
.../files/css-parser-1.0.6-fix-py3.10-test.patch | 141 +++++++++++++++++++++
3 files changed, 168 insertions(+)
diff --git a/dev-python/css-parser/Manifest b/dev-python/css-parser/Manifest
index 6cb95949e81..610aec31c95 100644
--- a/dev-python/css-parser/Manifest
+++ b/dev-python/css-parser/Manifest
@@ -1 +1,2 @@
DIST css-parser-1.0.4.tar.gz 143977 BLAKE2B 94a42d751a90d306b0dd2d503d8d9c326509b438d1f52b5567e6f6db7d80e7a6d2c37cbfa0db79225cc4d0fd5df612b3e430fa1c62604a2f8990d20678019af0 SHA512 3781128e55c1e72aa00369873e214f683e3f42944ae83d399697adb7d2966f68fb500c39982845ce9cd06078e4021838d82b06f99d90938069371da8a89a0857
+DIST css-parser-1.0.6.tar.gz 336932 BLAKE2B 00cfc4597137c0aa6af3cc8a72fa3e59a1d7b83210668c8421c0703a4a38d05d73f691ff00ffac14025f021a10f85c1d3697778794d23f75db381f5e63e24b7d SHA512 4c623541e1145c91458e7e2028f6a0de652ae2189dc99672fc72f098799d6349edb051bafc0901258481fa3422346303d2ef634392889ee83a29814609cdbd43
diff --git a/dev-python/css-parser/css-parser-1.0.6.ebuild b/dev-python/css-parser/css-parser-1.0.6.ebuild
new file mode 100644
index 00000000000..ccc51564195
--- /dev/null
+++ b/dev-python/css-parser/css-parser-1.0.6.ebuild
@@ -0,0 +1,26 @@
+# 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
+
+DESCRIPTION="A CSS Cascading Style Sheets library (fork of cssutils)"
+HOMEPAGE="https://pypi.org/project/css-parser/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="test? ( dev-python/chardet[${PYTHON_USEDEP}] )"
+
+PATCHES=(
+ "${FILESDIR}/${P}-fix-py3.10-test.patch"
+)
+
+distutils_enable_tests setup.py
diff --git a/dev-python/css-parser/files/css-parser-1.0.6-fix-py3.10-test.patch b/dev-python/css-parser/files/css-parser-1.0.6-fix-py3.10-test.patch
new file mode 100644
index 00000000000..9107adefed5
--- /dev/null
+++ b/dev-python/css-parser/files/css-parser-1.0.6-fix-py3.10-test.patch
@@ -0,0 +1,141 @@
+diff --git a/css_parser_tests/basetest.py b/css_parser_tests/basetest.py
+index 2b26906..115053f 100644
+--- a/css_parser_tests/basetest.py
++++ b/css_parser_tests/basetest.py
+@@ -149,21 +149,7 @@ class BaseTestCase(unittest.TestCase):
+ else:
+ self.fail("%s did not raise %s" % (callsig, exception))
+
+- def assertRaisesMsg(self, excClass, msg, callableObj, *args, **kwargs):
+- """
+- Just like unittest.TestCase.assertRaises,
+- but checks that the message is right too.
+-
+- Usage::
+-
+- self.assertRaisesMsg(
+- MyException, "Exception message",
+- my_function, (arg1, arg2)
+- )
+-
+- from
+- http://www.nedbatchelder.com/blog/200609.html#e20060905T064418
+- """
++ def _assertRaisesMsgSubstring(self, excClass, msg, substring_match, callableObj, *args, **kwargs):
+ try:
+ callableObj(*args, **kwargs)
+ except excClass as exc:
+@@ -171,7 +157,7 @@ class BaseTestCase(unittest.TestCase):
+ if not msg:
+ # No message provided: any message is fine.
+ return
+- elif excMsg == msg:
++ elif (msg in excMsg if substring_match else msg == excMsg):
+ # Message provided, and we got the right message: passes.
+ return
+ else:
+@@ -189,6 +175,29 @@ class BaseTestCase(unittest.TestCase):
+ excName
+ )
+
++ def assertRaisesMsg(self, excClass, msg, callableObj, *args, **kwargs):
++ """
++ Just like unittest.TestCase.assertRaises,
++ but checks that the message is right too.
++
++ Usage::
++
++ self.assertRaisesMsg(
++ MyException, "Exception message",
++ my_function, arg1, arg2,
++ kwarg1=val, kwarg2=val)
++
++ from
++ http://www.nedbatchelder.com/blog/200609.html#e20060905T064418
++ """
++ return self._assertRaisesMsgSubstring(excClass, msg, False, callableObj, *args, **kwargs)
++
++ def assertRaisesMsgSubstring(self, excClass, msg, callableObj, *args, **kwargs):
++ """
++ Just like assertRaisesMsg, but looks for substring in the message.
++ """
++ return self._assertRaisesMsgSubstring(excClass, msg, True, callableObj, *args, **kwargs)
++
+ def do_equal_p(self, tests, att='cssText', debug=False, raising=True):
+ """
+ if raising self.p is used for parsing, else self.pf
+diff --git a/css_parser_tests/test_property.py b/css_parser_tests/test_property.py
+index ae6ab2a..561a5eb 100644
+--- a/css_parser_tests/test_property.py
++++ b/css_parser_tests/test_property.py
+@@ -162,8 +162,8 @@ class PropertyTestCase(basetest.BaseTestCase):
+ "Property.literalname"
+ p = css_parser.css.property.Property(r'c\olor', 'red')
+ self.assertEqual(r'c\olor', p.literalname)
+- self.assertRaisesMsg(AttributeError, "can't set attribute", p.__setattr__,
+- 'literalname', 'color')
++ self.assertRaisesMsgSubstring(AttributeError, "can't set attribute", p.__setattr__,
++ 'literalname', 'color')
+
+ def test_validate(self):
+ "Property.valid"
+diff --git a/css_parser_tests/test_selector.py b/css_parser_tests/test_selector.py
+index c0c769e..f2746d8 100644
+--- a/css_parser_tests/test_selector.py
++++ b/css_parser_tests/test_selector.py
+@@ -412,7 +412,7 @@ class SelectorTestCase(basetest.BaseTestCase):
+
+ # readonly
+ def _set(): selector.specificity = 1
+- self.assertRaisesMsg(AttributeError, "can't set attribute", _set)
++ self.assertRaisesMsgSubstring(AttributeError, "can't set attribute", _set)
+
+ tests = {
+ '*': (0, 0, 0, 0),
+diff --git a/css_parser_tests/test_selectorlist.py b/css_parser_tests/test_selectorlist.py
+index 7028fe7..54c945a 100644
+--- a/css_parser_tests/test_selectorlist.py
++++ b/css_parser_tests/test_selectorlist.py
+@@ -11,6 +11,7 @@ from css_parser.css.selectorlist import SelectorList
+ class SelectorListTestCase(basetest.BaseTestCase):
+
+ def setUp(self):
++ basetest.BaseTestCase.setUp(self)
+ self.r = SelectorList()
+
+ def test_init(self):
+diff --git a/run_tests.py b/run_tests.py
+index 554c752..6507434 100755
+--- a/run_tests.py
++++ b/run_tests.py
+@@ -1,10 +1,12 @@
+ #!/usr/bin/env python
+ # vim:fileencoding=utf-8
+-# License: Apache 2.0 Copyright: 2017, Kovid Goyal <kovid at kovidgoyal.net>
++# License: LGPLv3 Copyright: 2017, Kovid Goyal <kovid at kovidgoyal.net>
+
+-from __future__ import absolute_import, division, print_function, unicode_literals
++from __future__ import (absolute_import, division, print_function,
++ unicode_literals)
+
+ import importlib
++import logging
+ import os
+ import sys
+ import unittest
+@@ -72,6 +74,7 @@ def find_tests():
+
+ def run_tests(test_names=()):
+ sys.path = [base, os.path.join(base, 'src')] + sys.path
++ import css_parser
+ tests = find_tests()
+ suites = []
+ for name in test_names:
+@@ -85,6 +88,7 @@ def run_tests(test_names=()):
+ tests = unittest.TestSuite(suites) if suites else tests
+
+ r = unittest.TextTestRunner
++ css_parser.log.setLevel(logging.CRITICAL)
+ result = r().run(tests)
+
+ if not result.wasSuccessful():
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/css-parser/, dev-python/css-parser/files/
@ 2022-01-10 20:47 Michał Górny
0 siblings, 0 replies; 4+ messages in thread
From: Michał Górny @ 2022-01-10 20:47 UTC (permalink / raw
To: gentoo-commits
commit: b3b5c6c51d3741741284d47827c5ea71bd113a2d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 10 20:42:51 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jan 10 20:42:51 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3b5c6c5
dev-python/css-parser: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/css-parser/Manifest | 1 -
dev-python/css-parser/css-parser-1.0.6.ebuild | 26 ----
.../files/css-parser-1.0.6-fix-py3.10-test.patch | 141 ---------------------
3 files changed, 168 deletions(-)
diff --git a/dev-python/css-parser/Manifest b/dev-python/css-parser/Manifest
index 771b7158e92f..326256e92810 100644
--- a/dev-python/css-parser/Manifest
+++ b/dev-python/css-parser/Manifest
@@ -1,2 +1 @@
-DIST css-parser-1.0.6.tar.gz 336932 BLAKE2B 00cfc4597137c0aa6af3cc8a72fa3e59a1d7b83210668c8421c0703a4a38d05d73f691ff00ffac14025f021a10f85c1d3697778794d23f75db381f5e63e24b7d SHA512 4c623541e1145c91458e7e2028f6a0de652ae2189dc99672fc72f098799d6349edb051bafc0901258481fa3422346303d2ef634392889ee83a29814609cdbd43
DIST css-parser-1.0.7.tar.gz 348843 BLAKE2B 72fd2a0555eea2b912d3088b1d38a4bf082862a47a414c4c00718ad1b31299a3df3b2e9dcf4f22c3195520c28f5652aaf4103a9a999ceb3ea6b8c785f50bb40e SHA512 51e4ca836b18f963d798a14762bed78cbd3034598cc828dfe81b3f7d921a5bfe52374b0dc6160e1c01e40a8c8147a10664b9f7edeee867ca1086e6a4a96ff162
diff --git a/dev-python/css-parser/css-parser-1.0.6.ebuild b/dev-python/css-parser/css-parser-1.0.6.ebuild
deleted file mode 100644
index c069413d87d8..000000000000
--- a/dev-python/css-parser/css-parser-1.0.6.ebuild
+++ /dev/null
@@ -1,26 +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
-
-DESCRIPTION="A CSS Cascading Style Sheets library (fork of cssutils)"
-HOMEPAGE="https://pypi.org/project/css-parser/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="test? ( dev-python/chardet[${PYTHON_USEDEP}] )"
-
-PATCHES=(
- "${FILESDIR}/${P}-fix-py3.10-test.patch"
-)
-
-distutils_enable_tests setup.py
diff --git a/dev-python/css-parser/files/css-parser-1.0.6-fix-py3.10-test.patch b/dev-python/css-parser/files/css-parser-1.0.6-fix-py3.10-test.patch
deleted file mode 100644
index 9107adefed56..000000000000
--- a/dev-python/css-parser/files/css-parser-1.0.6-fix-py3.10-test.patch
+++ /dev/null
@@ -1,141 +0,0 @@
-diff --git a/css_parser_tests/basetest.py b/css_parser_tests/basetest.py
-index 2b26906..115053f 100644
---- a/css_parser_tests/basetest.py
-+++ b/css_parser_tests/basetest.py
-@@ -149,21 +149,7 @@ class BaseTestCase(unittest.TestCase):
- else:
- self.fail("%s did not raise %s" % (callsig, exception))
-
-- def assertRaisesMsg(self, excClass, msg, callableObj, *args, **kwargs):
-- """
-- Just like unittest.TestCase.assertRaises,
-- but checks that the message is right too.
--
-- Usage::
--
-- self.assertRaisesMsg(
-- MyException, "Exception message",
-- my_function, (arg1, arg2)
-- )
--
-- from
-- http://www.nedbatchelder.com/blog/200609.html#e20060905T064418
-- """
-+ def _assertRaisesMsgSubstring(self, excClass, msg, substring_match, callableObj, *args, **kwargs):
- try:
- callableObj(*args, **kwargs)
- except excClass as exc:
-@@ -171,7 +157,7 @@ class BaseTestCase(unittest.TestCase):
- if not msg:
- # No message provided: any message is fine.
- return
-- elif excMsg == msg:
-+ elif (msg in excMsg if substring_match else msg == excMsg):
- # Message provided, and we got the right message: passes.
- return
- else:
-@@ -189,6 +175,29 @@ class BaseTestCase(unittest.TestCase):
- excName
- )
-
-+ def assertRaisesMsg(self, excClass, msg, callableObj, *args, **kwargs):
-+ """
-+ Just like unittest.TestCase.assertRaises,
-+ but checks that the message is right too.
-+
-+ Usage::
-+
-+ self.assertRaisesMsg(
-+ MyException, "Exception message",
-+ my_function, arg1, arg2,
-+ kwarg1=val, kwarg2=val)
-+
-+ from
-+ http://www.nedbatchelder.com/blog/200609.html#e20060905T064418
-+ """
-+ return self._assertRaisesMsgSubstring(excClass, msg, False, callableObj, *args, **kwargs)
-+
-+ def assertRaisesMsgSubstring(self, excClass, msg, callableObj, *args, **kwargs):
-+ """
-+ Just like assertRaisesMsg, but looks for substring in the message.
-+ """
-+ return self._assertRaisesMsgSubstring(excClass, msg, True, callableObj, *args, **kwargs)
-+
- def do_equal_p(self, tests, att='cssText', debug=False, raising=True):
- """
- if raising self.p is used for parsing, else self.pf
-diff --git a/css_parser_tests/test_property.py b/css_parser_tests/test_property.py
-index ae6ab2a..561a5eb 100644
---- a/css_parser_tests/test_property.py
-+++ b/css_parser_tests/test_property.py
-@@ -162,8 +162,8 @@ class PropertyTestCase(basetest.BaseTestCase):
- "Property.literalname"
- p = css_parser.css.property.Property(r'c\olor', 'red')
- self.assertEqual(r'c\olor', p.literalname)
-- self.assertRaisesMsg(AttributeError, "can't set attribute", p.__setattr__,
-- 'literalname', 'color')
-+ self.assertRaisesMsgSubstring(AttributeError, "can't set attribute", p.__setattr__,
-+ 'literalname', 'color')
-
- def test_validate(self):
- "Property.valid"
-diff --git a/css_parser_tests/test_selector.py b/css_parser_tests/test_selector.py
-index c0c769e..f2746d8 100644
---- a/css_parser_tests/test_selector.py
-+++ b/css_parser_tests/test_selector.py
-@@ -412,7 +412,7 @@ class SelectorTestCase(basetest.BaseTestCase):
-
- # readonly
- def _set(): selector.specificity = 1
-- self.assertRaisesMsg(AttributeError, "can't set attribute", _set)
-+ self.assertRaisesMsgSubstring(AttributeError, "can't set attribute", _set)
-
- tests = {
- '*': (0, 0, 0, 0),
-diff --git a/css_parser_tests/test_selectorlist.py b/css_parser_tests/test_selectorlist.py
-index 7028fe7..54c945a 100644
---- a/css_parser_tests/test_selectorlist.py
-+++ b/css_parser_tests/test_selectorlist.py
-@@ -11,6 +11,7 @@ from css_parser.css.selectorlist import SelectorList
- class SelectorListTestCase(basetest.BaseTestCase):
-
- def setUp(self):
-+ basetest.BaseTestCase.setUp(self)
- self.r = SelectorList()
-
- def test_init(self):
-diff --git a/run_tests.py b/run_tests.py
-index 554c752..6507434 100755
---- a/run_tests.py
-+++ b/run_tests.py
-@@ -1,10 +1,12 @@
- #!/usr/bin/env python
- # vim:fileencoding=utf-8
--# License: Apache 2.0 Copyright: 2017, Kovid Goyal <kovid at kovidgoyal.net>
-+# License: LGPLv3 Copyright: 2017, Kovid Goyal <kovid at kovidgoyal.net>
-
--from __future__ import absolute_import, division, print_function, unicode_literals
-+from __future__ import (absolute_import, division, print_function,
-+ unicode_literals)
-
- import importlib
-+import logging
- import os
- import sys
- import unittest
-@@ -72,6 +74,7 @@ def find_tests():
-
- def run_tests(test_names=()):
- sys.path = [base, os.path.join(base, 'src')] + sys.path
-+ import css_parser
- tests = find_tests()
- suites = []
- for name in test_names:
-@@ -85,6 +88,7 @@ def run_tests(test_names=()):
- tests = unittest.TestSuite(suites) if suites else tests
-
- r = unittest.TextTestRunner
-+ css_parser.log.setLevel(logging.CRITICAL)
- result = r().run(tests)
-
- if not result.wasSuccessful():
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/css-parser/, dev-python/css-parser/files/
@ 2022-08-10 13:05 Sam James
0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2022-08-10 13:05 UTC (permalink / raw
To: gentoo-commits
commit: f196f19cb6c00c18e4cdce076e7265676bd9646e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 10 12:41:34 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 10 13:00:00 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f196f19c
dev-python/css-parser: enable py3.11
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/css-parser/css-parser-1.0.7-r1.ebuild | 6 ++-
.../files/css-parser-1.0.7-python311-tests.patch | 51 ++++++++++++++++++++++
2 files changed, 56 insertions(+), 1 deletion(-)
diff --git a/dev-python/css-parser/css-parser-1.0.7-r1.ebuild b/dev-python/css-parser/css-parser-1.0.7-r1.ebuild
index d450388f0198..91c945604f6a 100644
--- a/dev-python/css-parser/css-parser-1.0.7-r1.ebuild
+++ b/dev-python/css-parser/css-parser-1.0.7-r1.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
@@ -20,4 +20,8 @@ BDEPEND="
test? ( dev-python/chardet[${PYTHON_USEDEP}] )
"
+PATCHES=(
+ "${FILESDIR}"/${P}-python311-tests.patch
+)
+
distutils_enable_tests unittest
diff --git a/dev-python/css-parser/files/css-parser-1.0.7-python311-tests.patch b/dev-python/css-parser/files/css-parser-1.0.7-python311-tests.patch
new file mode 100644
index 000000000000..c9e4801cafbe
--- /dev/null
+++ b/dev-python/css-parser/files/css-parser-1.0.7-python311-tests.patch
@@ -0,0 +1,51 @@
+https://github.com/ebook-utils/css-parser/commit/ad79cfcb6e55837a4353b92d051de023c18f6581
+
+From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
+Date: Sat, 21 May 2022 14:21:28 +0200
+Subject: [PATCH] tests: adjust exception string checks for python 3.11
+
+Fixes https://bugzilla.redhat.com/show_bug.cgi?id=2062102.
+--- a/css_parser_tests/test_property.py
++++ b/css_parser_tests/test_property.py
+@@ -5,6 +5,7 @@
+ import xml.dom
+ from . import basetest
+ import css_parser
++import sys
+
+
+ class PropertyTestCase(basetest.BaseTestCase):
+@@ -162,8 +163,9 @@ def test_literalname(self):
+ "Property.literalname"
+ p = css_parser.css.property.Property(r'c\olor', 'red')
+ self.assertEqual(r'c\olor', p.literalname)
+- self.assertRaisesMsgSubstring(AttributeError, "can't set attribute", p.__setattr__,
+- 'literalname', 'color')
++ pattern = "object has no setter" if sys.version_info >= (3,11) else "can't set attribute"
++ self.assertRaisesMsgSubstring(AttributeError, pattern,
++ p.__setattr__, 'literalname', 'color')
+
+ def test_validate(self):
+ "Property.valid"
+--- a/css_parser_tests/test_selector.py
++++ b/css_parser_tests/test_selector.py
+@@ -11,6 +11,7 @@
+ import xml.dom
+ from . import basetest
+ import css_parser
++import sys
+
+
+ class SelectorTestCase(basetest.BaseTestCase):
+@@ -412,7 +413,9 @@ def test_specificity(self):
+
+ # readonly
+ def _set(): selector.specificity = 1
+- self.assertRaisesMsgSubstring(AttributeError, "can't set attribute", _set)
++
++ pattern = "object has no setter" if sys.version_info >= (3,11) else "can't set attribute"
++ self.assertRaisesMsgSubstring(AttributeError, pattern, _set)
+
+ tests = {
+ '*': (0, 0, 0, 0),
+
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/css-parser/, dev-python/css-parser/files/
@ 2022-11-04 6:15 Michał Górny
0 siblings, 0 replies; 4+ messages in thread
From: Michał Górny @ 2022-11-04 6:15 UTC (permalink / raw
To: gentoo-commits
commit: 1d0497a1dfcd390cdf16fc99848b059ec34d2b70
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 4 06:14:47 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Nov 4 06:14:47 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d0497a1
dev-python/css-parser: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/css-parser/Manifest | 1 -
dev-python/css-parser/css-parser-1.0.7-r1.ebuild | 27 ------------
.../files/css-parser-1.0.7-python311-tests.patch | 51 ----------------------
3 files changed, 79 deletions(-)
diff --git a/dev-python/css-parser/Manifest b/dev-python/css-parser/Manifest
index c5f1369f7569..892b9b9ddc89 100644
--- a/dev-python/css-parser/Manifest
+++ b/dev-python/css-parser/Manifest
@@ -1,2 +1 @@
-DIST css-parser-1.0.7.tar.gz 348843 BLAKE2B 72fd2a0555eea2b912d3088b1d38a4bf082862a47a414c4c00718ad1b31299a3df3b2e9dcf4f22c3195520c28f5652aaf4103a9a999ceb3ea6b8c785f50bb40e SHA512 51e4ca836b18f963d798a14762bed78cbd3034598cc828dfe81b3f7d921a5bfe52374b0dc6160e1c01e40a8c8147a10664b9f7edeee867ca1086e6a4a96ff162
DIST css-parser-1.0.8.tar.gz 349363 BLAKE2B 2e67d74422cf87e1c593793f6acc9089a745d020cba18c63c70bc2099f53aad95bd5de1def49a3f5ab7cbff7f91efb3a60b3d2d9f1efa55244d99770f0d7baec SHA512 1b22665a172b8a29e277217f39bac1512867dbd5acdfe37ddf078eab71452467adc3dcdac68e424df32cc204f3e55da45d31663f8e7aa143c0243818df32487a
diff --git a/dev-python/css-parser/css-parser-1.0.7-r1.ebuild b/dev-python/css-parser/css-parser-1.0.7-r1.ebuild
deleted file mode 100644
index 91c945604f6a..000000000000
--- a/dev-python/css-parser/css-parser-1.0.7-r1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="A CSS Cascading Style Sheets library (fork of cssutils)"
-HOMEPAGE="https://pypi.org/project/css-parser/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
-
-BDEPEND="
- test? ( dev-python/chardet[${PYTHON_USEDEP}] )
-"
-
-PATCHES=(
- "${FILESDIR}"/${P}-python311-tests.patch
-)
-
-distutils_enable_tests unittest
diff --git a/dev-python/css-parser/files/css-parser-1.0.7-python311-tests.patch b/dev-python/css-parser/files/css-parser-1.0.7-python311-tests.patch
deleted file mode 100644
index c9e4801cafbe..000000000000
--- a/dev-python/css-parser/files/css-parser-1.0.7-python311-tests.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-https://github.com/ebook-utils/css-parser/commit/ad79cfcb6e55837a4353b92d051de023c18f6581
-
-From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
-Date: Sat, 21 May 2022 14:21:28 +0200
-Subject: [PATCH] tests: adjust exception string checks for python 3.11
-
-Fixes https://bugzilla.redhat.com/show_bug.cgi?id=2062102.
---- a/css_parser_tests/test_property.py
-+++ b/css_parser_tests/test_property.py
-@@ -5,6 +5,7 @@
- import xml.dom
- from . import basetest
- import css_parser
-+import sys
-
-
- class PropertyTestCase(basetest.BaseTestCase):
-@@ -162,8 +163,9 @@ def test_literalname(self):
- "Property.literalname"
- p = css_parser.css.property.Property(r'c\olor', 'red')
- self.assertEqual(r'c\olor', p.literalname)
-- self.assertRaisesMsgSubstring(AttributeError, "can't set attribute", p.__setattr__,
-- 'literalname', 'color')
-+ pattern = "object has no setter" if sys.version_info >= (3,11) else "can't set attribute"
-+ self.assertRaisesMsgSubstring(AttributeError, pattern,
-+ p.__setattr__, 'literalname', 'color')
-
- def test_validate(self):
- "Property.valid"
---- a/css_parser_tests/test_selector.py
-+++ b/css_parser_tests/test_selector.py
-@@ -11,6 +11,7 @@
- import xml.dom
- from . import basetest
- import css_parser
-+import sys
-
-
- class SelectorTestCase(basetest.BaseTestCase):
-@@ -412,7 +413,9 @@ def test_specificity(self):
-
- # readonly
- def _set(): selector.specificity = 1
-- self.assertRaisesMsgSubstring(AttributeError, "can't set attribute", _set)
-+
-+ pattern = "object has no setter" if sys.version_info >= (3,11) else "can't set attribute"
-+ self.assertRaisesMsgSubstring(AttributeError, pattern, _set)
-
- tests = {
- '*': (0, 0, 0, 0),
-
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-11-04 6:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-10 13:05 [gentoo-commits] repo/gentoo:master commit in: dev-python/css-parser/, dev-python/css-parser/files/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2022-11-04 6:15 Michał Górny
2022-01-10 20:47 Michał Górny
2021-05-18 9:32 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox