mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-23 16:49:10 -07:00
dev-python/mechanize: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -1,2 +1 @@
|
||||
DIST mechanize-0.4.8.tar.gz 218055 BLAKE2B bd91738092ac473ee6e65ee5f175479515f735a0433b112241f17061adf7e60ef6fa410fa549f088390b6ef6c8b2ff95e00335a626322ad170c88923c96e8e44 SHA512 71087481d27359b3ce795eae440ebb3a146f8dd5a6d5ac5dc91ae3c63f2c487beb472aa06b2925d6121faa038a0a8be50f6cecc54ee7209eb2b61e16242ffaa3
|
||||
DIST mechanize-0.4.9.tar.gz 218286 BLAKE2B 42ea97f843ec61b5ae05913e564f0cdb473976ea4e08a886c3bed15b27cea64def7fe5c73c1b809e48688d5ae41c269e85b633a24731c83409bf9855fc72b85f SHA512 a0c5d6e01ddabd35dded9908e4f7e24cb0a8c20a674af603cd2f5f146c75d38dc96c36af0898646691206ce41745dff9a736ce53efd03ff48e55e763814b893c
|
||||
|
||||
@@ -1,79 +0,0 @@
|
||||
https://github.com/python-mechanize/mechanize/commit/529d2c4cb8f31284f8026642968ba3adb9de1171
|
||||
https://github.com/python-mechanize/mechanize/commit/7ba3d586368c03577c061c35bc27664a907f5435
|
||||
https://github.com/python-mechanize/mechanize/commit/560839d51e54943890c2d37c0d0854792479cb80
|
||||
|
||||
From: Kovid Goyal <kovid@kovidgoyal.net>
|
||||
Date: Tue, 24 May 2022 11:13:16 +0530
|
||||
Subject: [PATCH] Use asserts for failing test so we get better feedback on the
|
||||
failure
|
||||
|
||||
--- a/test/test_cookies.py
|
||||
+++ b/test/test_cookies.py
|
||||
@@ -1028,10 +1028,10 @@ def test_Cookie_iterator(self): # noqa
|
||||
i = 0
|
||||
for c in cs:
|
||||
# assert isinstance(c, Cookie)
|
||||
- assert c.version == versions[i]
|
||||
- assert c.name == names[i]
|
||||
- assert c.domain == domains[i]
|
||||
- assert c.path == paths[i]
|
||||
+ self.assertEqual(c.version, versions[i])
|
||||
+ self.assertEqual(c.name, names[i])
|
||||
+ self.assertEqual(c.domain, domains[i])
|
||||
+ self.assertEqual(c.path, paths[i])
|
||||
i = i + 1
|
||||
|
||||
self.assertRaises(IndexError, lambda cs=cs: cs[5])
|
||||
|
||||
From: Kovid Goyal <kovid@kovidgoyal.net>
|
||||
Date: Tue, 24 May 2022 17:54:50 +0530
|
||||
Subject: [PATCH] DRYer
|
||||
|
||||
--- a/test/test_cookies.py
|
||||
+++ b/test/test_cookies.py
|
||||
@@ -1025,14 +1025,9 @@ def test_Cookie_iterator(self): # noqa
|
||||
|
||||
# sequential iteration
|
||||
for i in range(4):
|
||||
- i = 0
|
||||
- for c in cs:
|
||||
+ for c, expected in zip(cs, zip(versions, names, domains, paths)):
|
||||
# assert isinstance(c, Cookie)
|
||||
- self.assertEqual(c.version, versions[i])
|
||||
- self.assertEqual(c.name, names[i])
|
||||
- self.assertEqual(c.domain, domains[i])
|
||||
- self.assertEqual(c.path, paths[i])
|
||||
- i = i + 1
|
||||
+ self.assertEqual((c.version, c.name, c.domain, c.path), expected)
|
||||
|
||||
self.assertRaises(IndexError, lambda cs=cs: cs[5])
|
||||
|
||||
Date: Tue, 24 May 2022 18:09:16 +0530
|
||||
Subject: [PATCH] Change test to not rely on order of cookie iteration
|
||||
|
||||
python 3.11 iterates in add order, earlier pythons iterate in domain
|
||||
sorted order
|
||||
|
||||
Fix #74
|
||||
--- a/test/test_cookies.py
|
||||
+++ b/test/test_cookies.py
|
||||
@@ -1022,13 +1022,12 @@ def test_Cookie_iterator(self): # noqa
|
||||
"www.acme.com"
|
||||
]
|
||||
paths = ["/", "/", "/", "/blah", "/blah/"]
|
||||
-
|
||||
+ expected = set(zip(versions, names, domains, paths))
|
||||
# sequential iteration
|
||||
- for i in range(4):
|
||||
- for c, expected in zip(cs, zip(versions, names, domains, paths)):
|
||||
- # assert isinstance(c, Cookie)
|
||||
- self.assertEqual((c.version, c.name, c.domain, c.path), expected)
|
||||
-
|
||||
+ # python 3.11 iterates in add order, earlier pythons iterate in domain
|
||||
+ # sorted order
|
||||
+ actual = {(c.version, c.name, c.domain, c.path) for c in cs}
|
||||
+ self.assertEqual(expected, actual)
|
||||
self.assertRaises(IndexError, lambda cs=cs: cs[5])
|
||||
|
||||
def test_parse_ns_headers(self):
|
||||
|
||||
@@ -1,32 +0,0 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Stateful programmatic web browsing in Python"
|
||||
HOMEPAGE="https://github.com/python-mechanize/mechanize"
|
||||
|
||||
LICENSE="|| ( BSD ZPL )"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND=">=dev-python/html5lib-0.999999999[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
test? (
|
||||
${RDEPEND}
|
||||
)
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-0.4.8-python3.11-test-order.patch
|
||||
)
|
||||
|
||||
python_test() {
|
||||
"${EPYTHON}" run_tests.py || die
|
||||
}
|
||||
Reference in New Issue
Block a user