dev-python/absl-py: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny 2025-04-19 16:03:05 +02:00
parent e4feadf5af
commit 1d94f6a9ad
No known key found for this signature in database
GPG Key ID: 639ADAE2329E240E
5 changed files with 0 additions and 316 deletions

View File

@ -1,4 +1 @@
DIST abseil-py-2.1.0.gh.tar.gz 235261 BLAKE2B 85232156e722cb874e29e1f92513b24836553476d5ff379e8df32d307ca21709b5869edd80a3bb7fe757ae585bb45df21c89ae6f2218147a5812f171d946e094 SHA512 298a876ed850085836cb1ff6fddf98aca6a3283780bece8c0a7d118fd4e16cc258e51f721e4a5fcbe62b23d2da05638475d426bb650b0694ff7c1d0119e3be97
DIST abseil-py-2.2.0.gh.tar.gz 238608 BLAKE2B f8bc8e436064c687791d68d37137d10d18b2cfda055f8c814959e52883c10cf461c7220315a5f42b1e53a2a6c893e92498a57d92a3236abee7c18ea085f98c2f SHA512 91ead7f112ae8397f78a088c1784312e9784f5a46f52304607802a1bd485becc5144d6e437b9e2cf4112ac2194d7c0f91b811f329a38c2811971161b4bffbd30
DIST abseil-py-2.2.1.gh.tar.gz 238896 BLAKE2B 244090004143191e4ce9ed091c4e45b81069ee4b4c159a8b626cfd974f9f16b6cb28af743939399223e203dc1b423a55f763324690349b8ea9232c96236b0b50 SHA512 922cfd1523bedc985576b3d55da103a0d7cb3a28f8da6f8dc91701c82b9038d30bb904db7ebeb6c3a1d4f8c892ea4c88c047c80f8acbb94aa228869ee6a97275
DIST abseil-py-2.2.2.gh.tar.gz 238906 BLAKE2B b8f55e0a5cffc462ab544ba09c8b152bb5ef6ce489e82266a1338d1eab5727cfbdd1e842261e492a629ccb6e746eb55f3028de4661af9622472f277cbbe8ab61 SHA512 f60d6331319437607e3c747ca375760c6e9ed980a9f8ed40134559ed5ff3ec36c2d54fffb4d4ca9a8c1ca1ca46dedc3ec5e2d8e4ad63db8d090f74a0ce40b72f

View File

@ -1,91 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1
MY_P=abseil-py-${PV}
DESCRIPTION="Abseil Python Common Libraries"
HOMEPAGE="
https://github.com/abseil/abseil-py/
https://pypi.org/project/absl-py/
"
SRC_URI="
https://github.com/abseil/abseil-py/archive/v${PV}.tar.gz
-> ${MY_P}.gh.tar.gz
"
S=${WORKDIR}/${MY_P}
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 ~arm arm64 x86"
RDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
"
src_prepare() {
local PATCHES=(
# https://github.com/abseil/abseil-py/commit/78fb38cea7ffd1329f6455c997302529ce6fc6ce
"${FILESDIR}/${P}-py313.patch"
)
distutils-r1_src_prepare
# what a nightmare... well, we could have called bazel but that would
# even worse
local helpers=(
absl/flags/tests/argparse_flags_test_helper.py:absl/flags/tests/argparse_flags_test_helper
absl/logging/tests/logging_functional_test_helper.py:absl/logging/tests/logging_functional_test_helper
absl/testing/tests/absltest_fail_fast_test_helper.py:absl/testing/tests/absltest_fail_fast_test_helper
absl/testing/tests/absltest_filtering_test_helper.py:absl/testing/tests/absltest_filtering_test_helper
absl/testing/tests/absltest_randomization_testcase.py:absl/testing/tests/absltest_randomization_testcase
absl/testing/tests/absltest_sharding_test_helper.py:absl/testing/tests/absltest_sharding_test_helper
absl/testing/tests/absltest_sharding_test_helper_no_tests.py:absl/testing/tests/absltest_sharding_test_helper_no_tests
absl/testing/tests/absltest_test_helper.py:absl/testing/tests/absltest_test_helper
absl/testing/tests/absltest_test_helper_skipped.py:absl/testing/tests/absltest_test_helper_skipped
absl/testing/tests/xml_reporter_helper_test.py:absl/testing/tests/xml_reporter_helper_test
absl/tests/app_test_helper.py:absl/tests/app_test_helper_pure_python
)
local x
for x in "${helpers[@]}"; do
local script=${x%:*}
local sym=${x#*:}
sed -i -e "1i#!/usr/bin/env python" "${script}" || die
chmod +x "${script}" || die
ln -s "${script##*/}" "${sym}" || die
done
# i don't wanna know how these pass for upstream with wrong helper names
sed -e 's:\(app_test_helper\)\.py:\1_pure_python:' \
-i absl/tests/app_test.py || die
sed -e 's:\(logging_functional_test_helper\)\.py:\1:' \
-i absl/logging/tests/logging_functional_test.py || die
# parts of 617ce2c8b9976aa9e32c079c625fa6d864b2bbee
# (don't sed the one case containing ", suiteClass=...")
sed -e 's:unittest\.makeSuite\(([^,]*)\):unittest.defaultTestLoader.loadTestsFromTestCase\1:' \
-i absl/testing/tests/{absltest,parameterized}_test.py || die
}
python_test() {
local -x PYTHONPATH=.
local fails=0
while read -r -d '' x; do
ebegin "${x}"
"${EPYTHON}" "${x}"
eend ${?} || : "$(( fails += 1 ))"
done < <(find -name '*_test.py' -print0)
[[ ${fails} -ne 0 ]] && die "${fails} tests failed on ${EPYTHON}"
# we actually need to clean this up manually before running the test
# suite again...
chmod -R u+rwX "${T}"/absl_testing || die
rm -rf "${T}"/absl_testing || die
}

View File

@ -1,81 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1
MY_P=abseil-py-${PV}
DESCRIPTION="Abseil Python Common Libraries"
HOMEPAGE="
https://github.com/abseil/abseil-py/
https://pypi.org/project/absl-py/
"
SRC_URI="
https://github.com/abseil/abseil-py/archive/v${PV}.tar.gz
-> ${MY_P}.gh.tar.gz
"
S=${WORKDIR}/${MY_P}
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
RDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
"
src_prepare() {
distutils-r1_src_prepare
# what a nightmare... well, we could have called bazel but that would
# even worse
local helpers=(
absl/flags/tests/argparse_flags_test_helper.py:absl/flags/tests/argparse_flags_test_helper
absl/logging/tests/logging_functional_test_helper.py:absl/logging/tests/logging_functional_test_helper
absl/testing/tests/absltest_fail_fast_test_helper.py:absl/testing/tests/absltest_fail_fast_test_helper
absl/testing/tests/absltest_filtering_test_helper.py:absl/testing/tests/absltest_filtering_test_helper
absl/testing/tests/absltest_randomization_testcase.py:absl/testing/tests/absltest_randomization_testcase
absl/testing/tests/absltest_sharding_test_helper.py:absl/testing/tests/absltest_sharding_test_helper
absl/testing/tests/absltest_sharding_test_helper_no_tests.py:absl/testing/tests/absltest_sharding_test_helper_no_tests
absl/testing/tests/absltest_test_helper.py:absl/testing/tests/absltest_test_helper
absl/testing/tests/absltest_test_helper_skipped.py:absl/testing/tests/absltest_test_helper_skipped
absl/testing/tests/xml_reporter_helper_test.py:absl/testing/tests/xml_reporter_helper_test
absl/tests/app_test_helper.py:absl/tests/app_test_helper_pure_python
)
local x
for x in "${helpers[@]}"; do
local script=${x%:*}
local sym=${x#*:}
sed -i -e "1i#!/usr/bin/env python" "${script}" || die
chmod +x "${script}" || die
ln -s "${script##*/}" "${sym}" || die
done
# i don't wanna know how these pass for upstream with wrong helper names
sed -e 's:\(app_test_helper\)\.py:\1_pure_python:' \
-i absl/tests/app_test.py || die
sed -e 's:\(logging_functional_test_helper\)\.py:\1:' \
-i absl/logging/tests/logging_functional_test.py || die
}
python_test() {
local -x PYTHONPATH=.
local fails=0
while read -r -d '' x; do
ebegin "${x}"
"${EPYTHON}" "${x}"
eend ${?} || : "$(( fails += 1 ))"
done < <(find -name '*_test.py' -print0)
[[ ${fails} -ne 0 ]] && die "${fails} tests failed on ${EPYTHON}"
# we actually need to clean this up manually before running the test
# suite again...
chmod -R u+rwX "${T}"/absl_testing || die
rm -rf "${T}"/absl_testing || die
}

View File

@ -1,81 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1
MY_P=abseil-py-${PV}
DESCRIPTION="Abseil Python Common Libraries"
HOMEPAGE="
https://github.com/abseil/abseil-py/
https://pypi.org/project/absl-py/
"
SRC_URI="
https://github.com/abseil/abseil-py/archive/v${PV}.tar.gz
-> ${MY_P}.gh.tar.gz
"
S=${WORKDIR}/${MY_P}
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
RDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
"
src_prepare() {
distutils-r1_src_prepare
# what a nightmare... well, we could have called bazel but that would
# even worse
local helpers=(
absl/flags/tests/argparse_flags_test_helper.py:absl/flags/tests/argparse_flags_test_helper
absl/logging/tests/logging_functional_test_helper.py:absl/logging/tests/logging_functional_test_helper
absl/testing/tests/absltest_fail_fast_test_helper.py:absl/testing/tests/absltest_fail_fast_test_helper
absl/testing/tests/absltest_filtering_test_helper.py:absl/testing/tests/absltest_filtering_test_helper
absl/testing/tests/absltest_randomization_testcase.py:absl/testing/tests/absltest_randomization_testcase
absl/testing/tests/absltest_sharding_test_helper.py:absl/testing/tests/absltest_sharding_test_helper
absl/testing/tests/absltest_sharding_test_helper_no_tests.py:absl/testing/tests/absltest_sharding_test_helper_no_tests
absl/testing/tests/absltest_test_helper.py:absl/testing/tests/absltest_test_helper
absl/testing/tests/absltest_test_helper_skipped.py:absl/testing/tests/absltest_test_helper_skipped
absl/testing/tests/xml_reporter_helper_test.py:absl/testing/tests/xml_reporter_helper_test
absl/tests/app_test_helper.py:absl/tests/app_test_helper_pure_python
)
local x
for x in "${helpers[@]}"; do
local script=${x%:*}
local sym=${x#*:}
sed -i -e "1i#!/usr/bin/env python" "${script}" || die
chmod +x "${script}" || die
ln -s "${script##*/}" "${sym}" || die
done
# i don't wanna know how these pass for upstream with wrong helper names
sed -e 's:\(app_test_helper\)\.py:\1_pure_python:' \
-i absl/tests/app_test.py || die
sed -e 's:\(logging_functional_test_helper\)\.py:\1:' \
-i absl/logging/tests/logging_functional_test.py || die
}
python_test() {
local -x PYTHONPATH=.
local fails=0
while read -r -d '' x; do
ebegin "${x}"
"${EPYTHON}" "${x}"
eend ${?} || : "$(( fails += 1 ))"
done < <(find -name '*_test.py' -print0)
[[ ${fails} -ne 0 ]] && die "${fails} tests failed on ${EPYTHON}"
# we actually need to clean this up manually before running the test
# suite again...
chmod -R u+rwX "${T}"/absl_testing || die
rm -rf "${T}"/absl_testing || die
}

View File

@ -1,60 +0,0 @@
From 78fb38cea7ffd1329f6455c997302529ce6fc6ce Mon Sep 17 00:00:00 2001
From: Oleh Prypin <oprypin@google.com>
Date: Wed, 11 Dec 2024 04:19:00 -0800
Subject: [PATCH] Declare support for Python 3.13
PiperOrigin-RevId: 705056014
diff --git a/absl/flags/tests/argparse_flags_test.py b/absl/flags/tests/argparse_flags_test.py
index 679a1cce..cfc364f0 100644
--- a/absl/flags/tests/argparse_flags_test.py
+++ b/absl/flags/tests/argparse_flags_test.py
@@ -227,7 +227,10 @@ def test_help_main_module_flags(self):
# Only the short name is shown in the usage string.
self.assertIn('[-s ABSL_STRING]', help_message)
# Both names are included in the options section.
- self.assertIn('-s ABSL_STRING, --absl_string ABSL_STRING', help_message)
+ if sys.version_info >= (3, 13):
+ self.assertIn(' -s, --absl_string ABSL_STRING', help_message)
+ else:
+ self.assertIn(' -s ABSL_STRING, --absl_string ABSL_STRING', help_message)
# Verify help messages.
self.assertIn('help for --absl_string=%.', help_message)
self.assertIn('<apple|orange>: help for --absl_enum.', help_message)
diff --git a/absl/testing/tests/parameterized_test.py b/absl/testing/tests/parameterized_test.py
index 609c5571..4c024927 100644
--- a/absl/testing/tests/parameterized_test.py
+++ b/absl/testing/tests/parameterized_test.py
@@ -1128,6 +1128,9 @@ def test_successful_execution(self):
self.assertEqual(2, res.testsRun)
self.assertTrue(res.wasSuccessful())
+ @unittest.skipIf(
+ sys.version_info >= (3, 13), 'makeSuite was removed in Python 3.13'
+ )
def test_metaclass_side_effects(self):
ts = unittest.makeSuite(self.MyParams, suiteClass=self.MySuite)
diff --git a/absl/testing/tests/xml_reporter_test.py b/absl/testing/tests/xml_reporter_test.py
index ba8a88f7..e0b61a98 100644
--- a/absl/testing/tests/xml_reporter_test.py
+++ b/absl/testing/tests/xml_reporter_test.py
@@ -85,14 +85,16 @@ def xml_escaped_exception_type(exception_type):
FAILURE_MESSAGE = r"""
<failure message="e" type="{}"><!\[CDATA\[Traceback \(most recent call last\):
File ".*xml_reporter_test\.py", line \d+, in get_sample_failure
- self.fail\(\'e\'\)
+ self.fail\(\'e\'\)(
+ ~~~~~~~~~\^\^\^\^\^)?
AssertionError: e
\]\]></failure>""".format(xml_escaped_exception_type(AssertionError))
ERROR_MESSAGE = r"""
<error message="invalid&#x20;literal&#x20;for&#x20;int\(\)&#x20;with&#x20;base&#x20;10:&#x20;(&apos;)?a(&apos;)?" type="{}"><!\[CDATA\[Traceback \(most recent call last\):
File ".*xml_reporter_test\.py", line \d+, in get_sample_error
- int\('a'\)
+ int\('a'\)(
+ ~~~\^\^\^\^\^)?
ValueError: invalid literal for int\(\) with base 10: '?a'?
\]\]></error>""".format(xml_escaped_exception_type(ValueError))