2018-10-17 07:46:40 +00:00
|
|
|
#
|
|
|
|
|
# spec file for package python-abseil
|
|
|
|
|
#
|
- Update to version 2.1.0
* Added:
+ (flags) Added absl.flags.override_value function to provide
FlagHolder with a construct to modify values.
+ (testing) Added a new method
absltest.TestCase.assertDataclassEqual that tests equality of
dataclass.dataclass objects with better error messages when
the assert fails.
* Changed
+ (flags) absl.flags.argparse_flags.ArgumentParser now
correctly inherits an empty instance of FlagValues to ensure
that absl flags, such as --flagfile, --undefok are supported.
+ (testing) Do not exit 5 if tests were skipped on Python 3.12.
This follows the CPython change in python/cpython#113856.
* Fixed
+ (flags) The flag foo no longer retains the value bar after
FLAGS.foo = bar fails due to a validation error.
+ (testing) Fixed an issue caused by this Python 3.12.1 change
where the test reporter crashes when all tests are skipped.
- Update to version 2.0.0
* Changed
+ absl-py no longer supports Python 3.6.
+ Support Python 3.12.
+ (logging) logging.exception can now take exc_info as
argument, with default value True.
+ (testing) For Python 3.11+, the calls to
absltest.TestCase.enter_context are forwarded to
unittest.TestCase.enterContext (when called via instance)
or unittest.TestCase.enterClassContext (when called via
class) now.
+ (testing) absltest.TestCase.assertSameStructure() now uses
the test case's equality functions (registered with
TestCase.addTypeEqualityFunc()) for comparing leaves
of the structure.
+ (testing) abslTest.TestCase.fail() now names its arguments
(self, msg=None, user_msg=None), and not (self, msg=None,
prefix=None), better reflecting the behavior and usage of
the two message arguments.
+ DEFINE_enum, DEFINE_multi_enum, and EnumParser now raise
errors when enum_values is provided as a single string value.
Additionally, EnumParser.enum_values is now stored as a list
copy of the provided enum_values parameter.
+ (testing) Updated paramaterized.CoopTestCase() to use
Python 3 metaclass idioms.
+ (testing) absltest.TestCase.assertSequenceStartsWith now
explicitly fail when passed a Mapping or Set object as the
whole argument.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-abseil?expand=0&rev=28
2024-06-13 09:58:36 +00:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2018-10-17 07:46:40 +00:00
|
|
|
#
|
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
2018-10-17 07:48:53 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2018-10-17 07:46:40 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
- Update to version 2.1.0
* Added:
+ (flags) Added absl.flags.override_value function to provide
FlagHolder with a construct to modify values.
+ (testing) Added a new method
absltest.TestCase.assertDataclassEqual that tests equality of
dataclass.dataclass objects with better error messages when
the assert fails.
* Changed
+ (flags) absl.flags.argparse_flags.ArgumentParser now
correctly inherits an empty instance of FlagValues to ensure
that absl flags, such as --flagfile, --undefok are supported.
+ (testing) Do not exit 5 if tests were skipped on Python 3.12.
This follows the CPython change in python/cpython#113856.
* Fixed
+ (flags) The flag foo no longer retains the value bar after
FLAGS.foo = bar fails due to a validation error.
+ (testing) Fixed an issue caused by this Python 3.12.1 change
where the test reporter crashes when all tests are skipped.
- Update to version 2.0.0
* Changed
+ absl-py no longer supports Python 3.6.
+ Support Python 3.12.
+ (logging) logging.exception can now take exc_info as
argument, with default value True.
+ (testing) For Python 3.11+, the calls to
absltest.TestCase.enter_context are forwarded to
unittest.TestCase.enterContext (when called via instance)
or unittest.TestCase.enterClassContext (when called via
class) now.
+ (testing) absltest.TestCase.assertSameStructure() now uses
the test case's equality functions (registered with
TestCase.addTypeEqualityFunc()) for comparing leaves
of the structure.
+ (testing) abslTest.TestCase.fail() now names its arguments
(self, msg=None, user_msg=None), and not (self, msg=None,
prefix=None), better reflecting the behavior and usage of
the two message arguments.
+ DEFINE_enum, DEFINE_multi_enum, and EnumParser now raise
errors when enum_values is provided as a single string value.
Additionally, EnumParser.enum_values is now stored as a list
copy of the provided enum_values parameter.
+ (testing) Updated paramaterized.CoopTestCase() to use
Python 3 metaclass idioms.
+ (testing) absltest.TestCase.assertSequenceStartsWith now
explicitly fail when passed a Mapping or Set object as the
whole argument.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-abseil?expand=0&rev=28
2024-06-13 09:58:36 +00:00
|
|
|
%{?sle15_python_module_pythons}
|
2018-10-17 07:46:40 +00:00
|
|
|
Name: python-abseil
|
- Update to version 2.1.0
* Added:
+ (flags) Added absl.flags.override_value function to provide
FlagHolder with a construct to modify values.
+ (testing) Added a new method
absltest.TestCase.assertDataclassEqual that tests equality of
dataclass.dataclass objects with better error messages when
the assert fails.
* Changed
+ (flags) absl.flags.argparse_flags.ArgumentParser now
correctly inherits an empty instance of FlagValues to ensure
that absl flags, such as --flagfile, --undefok are supported.
+ (testing) Do not exit 5 if tests were skipped on Python 3.12.
This follows the CPython change in python/cpython#113856.
* Fixed
+ (flags) The flag foo no longer retains the value bar after
FLAGS.foo = bar fails due to a validation error.
+ (testing) Fixed an issue caused by this Python 3.12.1 change
where the test reporter crashes when all tests are skipped.
- Update to version 2.0.0
* Changed
+ absl-py no longer supports Python 3.6.
+ Support Python 3.12.
+ (logging) logging.exception can now take exc_info as
argument, with default value True.
+ (testing) For Python 3.11+, the calls to
absltest.TestCase.enter_context are forwarded to
unittest.TestCase.enterContext (when called via instance)
or unittest.TestCase.enterClassContext (when called via
class) now.
+ (testing) absltest.TestCase.assertSameStructure() now uses
the test case's equality functions (registered with
TestCase.addTypeEqualityFunc()) for comparing leaves
of the structure.
+ (testing) abslTest.TestCase.fail() now names its arguments
(self, msg=None, user_msg=None), and not (self, msg=None,
prefix=None), better reflecting the behavior and usage of
the two message arguments.
+ DEFINE_enum, DEFINE_multi_enum, and EnumParser now raise
errors when enum_values is provided as a single string value.
Additionally, EnumParser.enum_values is now stored as a list
copy of the provided enum_values parameter.
+ (testing) Updated paramaterized.CoopTestCase() to use
Python 3 metaclass idioms.
+ (testing) absltest.TestCase.assertSequenceStartsWith now
explicitly fail when passed a Mapping or Set object as the
whole argument.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-abseil?expand=0&rev=28
2024-06-13 09:58:36 +00:00
|
|
|
Version: 2.1.0
|
2018-10-17 07:46:40 +00:00
|
|
|
Release: 0
|
|
|
|
|
Summary: Abseil Python Common Libraries
|
|
|
|
|
License: Apache-2.0
|
2018-10-17 07:48:53 +00:00
|
|
|
URL: https://github.com/abseil/abseil-py
|
2021-12-09 16:56:42 +00:00
|
|
|
Source0: https://github.com/abseil/abseil-py/archive/v%{version}.tar.gz#/abseil-py-%{version}.tar.gz
|
2018-10-17 07:46:40 +00:00
|
|
|
BuildRequires: %{python_module setuptools}
|
2018-10-17 07:48:53 +00:00
|
|
|
BuildRequires: fdupes
|
2018-10-17 07:46:40 +00:00
|
|
|
BuildRequires: python-rpm-macros
|
2020-11-16 21:03:04 +00:00
|
|
|
Provides: python-absl-py = %{version}
|
|
|
|
|
Obsoletes: python-absl-py < %{version}
|
2018-10-17 07:48:53 +00:00
|
|
|
BuildArch: noarch
|
2018-10-17 07:46:40 +00:00
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
This package is a collection of Python library code for building Python
|
|
|
|
|
applications. The code is collected from Google's own Python code base, and has
|
|
|
|
|
been extensively tested and used in production.
|
|
|
|
|
* Simple application startup
|
|
|
|
|
* Distributed commandline flags system
|
|
|
|
|
* Custom logging module with additional features
|
|
|
|
|
* Testing utilities
|
|
|
|
|
|
|
|
|
|
%prep
|
2021-12-09 16:56:42 +00:00
|
|
|
%setup -q -n abseil-py-%{version}
|
2018-10-17 07:46:40 +00:00
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%python_build
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%python_install
|
|
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
|
|
2018-10-17 07:48:53 +00:00
|
|
|
%check
|
2018-10-17 07:46:40 +00:00
|
|
|
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python smoke_tests/sample_app.py --echo smoke 2>&1 |grep 'echo is smoke.'
|
|
|
|
|
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python smoke_tests/sample_test.py 2>&1 | grep 'msg_for_test'
|
|
|
|
|
|
|
|
|
|
%files %{python_files}
|
2018-10-17 07:48:53 +00:00
|
|
|
%license LICENSE
|
2018-10-17 07:46:40 +00:00
|
|
|
%doc README.md
|
2021-12-09 16:56:42 +00:00
|
|
|
%{python_sitelib}/absl
|
|
|
|
|
%{python_sitelib}/absl_py-%{version}*-info
|
2018-10-17 07:46:40 +00:00
|
|
|
|
|
|
|
|
%changelog
|