python-zope.security/python-zope.security.spec

97 lines
3.0 KiB
RPMSpec
Raw Normal View History

#
# spec file for package python-zope.security
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2013-2022 LISA GmbH, Bingen, Germany.
#
# 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.
Accepting request 692314 from home:mcalabkova:branches:devel:languages:python - update to version 4.3.1 * Fix the decimal.Decimal checker, __truediv__ was missing causing ForbiddenAttribute on a ProxyFactory(Decimal('1')) / 1 operation 4.3.0 * Add the interface ISystemPrincipal and make zope.security.management.system_user a regular object that implements this interface. 4.2* * Add support for Python 3.7. * Make the pure-Python proxy on Python 2 not check permissions for __unicode__ just like the C implementation. Note that __str__ is checked for both implementations on both Python 2 and 3, but if there is no __unicode__ method defined, Python 2’s automatic fallback to __str__ is not checked when unicode is called. * Fix the default values for Permission fields title and description under Python 2. * Change the IPermission.id from Text (unicode) to a NativeStringLine. * Fix the extremely rare potential for a crash when the C extensions are in use. * The pure-Python proxy didn’t propagate TypeError from __repr__ and __str__ like the C implementation did. * Iteration of zope.interface.providedBy() is now allowed by default on all versions of Python. * Drop support for Python 3.3. * Respect PURE_PYTHON at runtime. * Fix watching checkers (ZOPE_WATCH_CHECKERS=1) in pure-Python mode. - Fix tests using multibuild (can be dropped in the future). OBS-URL: https://build.opensuse.org/request/show/692314 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.security?expand=0&rev=7
2019-04-09 08:15:29 +02:00
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
Accepting request 692314 from home:mcalabkova:branches:devel:languages:python - update to version 4.3.1 * Fix the decimal.Decimal checker, __truediv__ was missing causing ForbiddenAttribute on a ProxyFactory(Decimal('1')) / 1 operation 4.3.0 * Add the interface ISystemPrincipal and make zope.security.management.system_user a regular object that implements this interface. 4.2* * Add support for Python 3.7. * Make the pure-Python proxy on Python 2 not check permissions for __unicode__ just like the C implementation. Note that __str__ is checked for both implementations on both Python 2 and 3, but if there is no __unicode__ method defined, Python 2’s automatic fallback to __str__ is not checked when unicode is called. * Fix the default values for Permission fields title and description under Python 2. * Change the IPermission.id from Text (unicode) to a NativeStringLine. * Fix the extremely rare potential for a crash when the C extensions are in use. * The pure-Python proxy didn’t propagate TypeError from __repr__ and __str__ like the C implementation did. * Iteration of zope.interface.providedBy() is now allowed by default on all versions of Python. * Drop support for Python 3.3. * Respect PURE_PYTHON at runtime. * Fix watching checkers (ZOPE_WATCH_CHECKERS=1) in pure-Python mode. - Fix tests using multibuild (can be dropped in the future). OBS-URL: https://build.opensuse.org/request/show/692314 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.security?expand=0&rev=7
2019-04-09 08:15:29 +02:00
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
%bcond_without test
%else
%define psuffix %{nil}
%bcond_with test
%endif
Name: python-zope.security%{psuffix}
Version: 7.0
Release: 0
Summary: Zope Security Framework
License: ZPL-2.1
Group: Development/Languages/Python
URL: https://www.python.org/pypi/zope.security
Source0: https://files.pythonhosted.org/packages/source/z/zope.security/zope.security-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module zope.interface}
BuildRequires: %{python_module zope.proxy-devel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-pytz
Requires: python-zope.component
Requires: python-zope.configuration
Requires: python-zope.i18nmessageid
Requires: python-zope.interface
Requires: python-zope.location
Accepting request 692314 from home:mcalabkova:branches:devel:languages:python - update to version 4.3.1 * Fix the decimal.Decimal checker, __truediv__ was missing causing ForbiddenAttribute on a ProxyFactory(Decimal('1')) / 1 operation 4.3.0 * Add the interface ISystemPrincipal and make zope.security.management.system_user a regular object that implements this interface. 4.2* * Add support for Python 3.7. * Make the pure-Python proxy on Python 2 not check permissions for __unicode__ just like the C implementation. Note that __str__ is checked for both implementations on both Python 2 and 3, but if there is no __unicode__ method defined, Python 2’s automatic fallback to __str__ is not checked when unicode is called. * Fix the default values for Permission fields title and description under Python 2. * Change the IPermission.id from Text (unicode) to a NativeStringLine. * Fix the extremely rare potential for a crash when the C extensions are in use. * The pure-Python proxy didn’t propagate TypeError from __repr__ and __str__ like the C implementation did. * Iteration of zope.interface.providedBy() is now allowed by default on all versions of Python. * Drop support for Python 3.3. * Respect PURE_PYTHON at runtime. * Fix watching checkers (ZOPE_WATCH_CHECKERS=1) in pure-Python mode. - Fix tests using multibuild (can be dropped in the future). OBS-URL: https://build.opensuse.org/request/show/692314 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.security?expand=0&rev=7
2019-04-09 08:15:29 +02:00
Requires: python-zope.proxy >= 4.3.0
Requires: python-zope.schema >= 4.2.0
Accepting request 692314 from home:mcalabkova:branches:devel:languages:python - update to version 4.3.1 * Fix the decimal.Decimal checker, __truediv__ was missing causing ForbiddenAttribute on a ProxyFactory(Decimal('1')) / 1 operation 4.3.0 * Add the interface ISystemPrincipal and make zope.security.management.system_user a regular object that implements this interface. 4.2* * Add support for Python 3.7. * Make the pure-Python proxy on Python 2 not check permissions for __unicode__ just like the C implementation. Note that __str__ is checked for both implementations on both Python 2 and 3, but if there is no __unicode__ method defined, Python 2’s automatic fallback to __str__ is not checked when unicode is called. * Fix the default values for Permission fields title and description under Python 2. * Change the IPermission.id from Text (unicode) to a NativeStringLine. * Fix the extremely rare potential for a crash when the C extensions are in use. * The pure-Python proxy didn’t propagate TypeError from __repr__ and __str__ like the C implementation did. * Iteration of zope.interface.providedBy() is now allowed by default on all versions of Python. * Drop support for Python 3.3. * Respect PURE_PYTHON at runtime. * Fix watching checkers (ZOPE_WATCH_CHECKERS=1) in pure-Python mode. - Fix tests using multibuild (can be dropped in the future). OBS-URL: https://build.opensuse.org/request/show/692314 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.security?expand=0&rev=7
2019-04-09 08:15:29 +02:00
%if %{with test}
BuildRequires: %{python_module BTrees}
BuildRequires: %{python_module zope.component}
BuildRequires: %{python_module zope.configuration}
BuildRequires: %{python_module zope.location}
BuildRequires: %{python_module zope.proxy >= 4.3.0}
BuildRequires: %{python_module zope.schema >= 4.2.0}
Accepting request 692314 from home:mcalabkova:branches:devel:languages:python - update to version 4.3.1 * Fix the decimal.Decimal checker, __truediv__ was missing causing ForbiddenAttribute on a ProxyFactory(Decimal('1')) / 1 operation 4.3.0 * Add the interface ISystemPrincipal and make zope.security.management.system_user a regular object that implements this interface. 4.2* * Add support for Python 3.7. * Make the pure-Python proxy on Python 2 not check permissions for __unicode__ just like the C implementation. Note that __str__ is checked for both implementations on both Python 2 and 3, but if there is no __unicode__ method defined, Python 2’s automatic fallback to __str__ is not checked when unicode is called. * Fix the default values for Permission fields title and description under Python 2. * Change the IPermission.id from Text (unicode) to a NativeStringLine. * Fix the extremely rare potential for a crash when the C extensions are in use. * The pure-Python proxy didn’t propagate TypeError from __repr__ and __str__ like the C implementation did. * Iteration of zope.interface.providedBy() is now allowed by default on all versions of Python. * Drop support for Python 3.3. * Respect PURE_PYTHON at runtime. * Fix watching checkers (ZOPE_WATCH_CHECKERS=1) in pure-Python mode. - Fix tests using multibuild (can be dropped in the future). OBS-URL: https://build.opensuse.org/request/show/692314 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.security?expand=0&rev=7
2019-04-09 08:15:29 +02:00
BuildRequires: %{python_module zope.security = %{version}}
BuildRequires: %{python_module zope.testing}
BuildRequires: %{python_module zope.testrunner}
%endif
%python_subpackages
%description
The Security framework provides a generic mechanism to implement security
policies on Python objects.
%prep
%setup -q -n zope.security-%{version}
%build
Accepting request 692314 from home:mcalabkova:branches:devel:languages:python - update to version 4.3.1 * Fix the decimal.Decimal checker, __truediv__ was missing causing ForbiddenAttribute on a ProxyFactory(Decimal('1')) / 1 operation 4.3.0 * Add the interface ISystemPrincipal and make zope.security.management.system_user a regular object that implements this interface. 4.2* * Add support for Python 3.7. * Make the pure-Python proxy on Python 2 not check permissions for __unicode__ just like the C implementation. Note that __str__ is checked for both implementations on both Python 2 and 3, but if there is no __unicode__ method defined, Python 2’s automatic fallback to __str__ is not checked when unicode is called. * Fix the default values for Permission fields title and description under Python 2. * Change the IPermission.id from Text (unicode) to a NativeStringLine. * Fix the extremely rare potential for a crash when the C extensions are in use. * The pure-Python proxy didn’t propagate TypeError from __repr__ and __str__ like the C implementation did. * Iteration of zope.interface.providedBy() is now allowed by default on all versions of Python. * Drop support for Python 3.3. * Respect PURE_PYTHON at runtime. * Fix watching checkers (ZOPE_WATCH_CHECKERS=1) in pure-Python mode. - Fix tests using multibuild (can be dropped in the future). OBS-URL: https://build.opensuse.org/request/show/692314 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.security?expand=0&rev=7
2019-04-09 08:15:29 +02:00
%python_build
%install
Accepting request 692314 from home:mcalabkova:branches:devel:languages:python - update to version 4.3.1 * Fix the decimal.Decimal checker, __truediv__ was missing causing ForbiddenAttribute on a ProxyFactory(Decimal('1')) / 1 operation 4.3.0 * Add the interface ISystemPrincipal and make zope.security.management.system_user a regular object that implements this interface. 4.2* * Add support for Python 3.7. * Make the pure-Python proxy on Python 2 not check permissions for __unicode__ just like the C implementation. Note that __str__ is checked for both implementations on both Python 2 and 3, but if there is no __unicode__ method defined, Python 2’s automatic fallback to __str__ is not checked when unicode is called. * Fix the default values for Permission fields title and description under Python 2. * Change the IPermission.id from Text (unicode) to a NativeStringLine. * Fix the extremely rare potential for a crash when the C extensions are in use. * The pure-Python proxy didn’t propagate TypeError from __repr__ and __str__ like the C implementation did. * Iteration of zope.interface.providedBy() is now allowed by default on all versions of Python. * Drop support for Python 3.3. * Respect PURE_PYTHON at runtime. * Fix watching checkers (ZOPE_WATCH_CHECKERS=1) in pure-Python mode. - Fix tests using multibuild (can be dropped in the future). OBS-URL: https://build.opensuse.org/request/show/692314 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.security?expand=0&rev=7
2019-04-09 08:15:29 +02:00
%if !%{with test}
%python_install
Accepting request 692314 from home:mcalabkova:branches:devel:languages:python - update to version 4.3.1 * Fix the decimal.Decimal checker, __truediv__ was missing causing ForbiddenAttribute on a ProxyFactory(Decimal('1')) / 1 operation 4.3.0 * Add the interface ISystemPrincipal and make zope.security.management.system_user a regular object that implements this interface. 4.2* * Add support for Python 3.7. * Make the pure-Python proxy on Python 2 not check permissions for __unicode__ just like the C implementation. Note that __str__ is checked for both implementations on both Python 2 and 3, but if there is no __unicode__ method defined, Python 2’s automatic fallback to __str__ is not checked when unicode is called. * Fix the default values for Permission fields title and description under Python 2. * Change the IPermission.id from Text (unicode) to a NativeStringLine. * Fix the extremely rare potential for a crash when the C extensions are in use. * The pure-Python proxy didn’t propagate TypeError from __repr__ and __str__ like the C implementation did. * Iteration of zope.interface.providedBy() is now allowed by default on all versions of Python. * Drop support for Python 3.3. * Respect PURE_PYTHON at runtime. * Fix watching checkers (ZOPE_WATCH_CHECKERS=1) in pure-Python mode. - Fix tests using multibuild (can be dropped in the future). OBS-URL: https://build.opensuse.org/request/show/692314 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.security?expand=0&rev=7
2019-04-09 08:15:29 +02:00
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%python_expand rm %{buildroot}%{$python_sitearch}/zope/security/*.c
Accepting request 692314 from home:mcalabkova:branches:devel:languages:python - update to version 4.3.1 * Fix the decimal.Decimal checker, __truediv__ was missing causing ForbiddenAttribute on a ProxyFactory(Decimal('1')) / 1 operation 4.3.0 * Add the interface ISystemPrincipal and make zope.security.management.system_user a regular object that implements this interface. 4.2* * Add support for Python 3.7. * Make the pure-Python proxy on Python 2 not check permissions for __unicode__ just like the C implementation. Note that __str__ is checked for both implementations on both Python 2 and 3, but if there is no __unicode__ method defined, Python 2’s automatic fallback to __str__ is not checked when unicode is called. * Fix the default values for Permission fields title and description under Python 2. * Change the IPermission.id from Text (unicode) to a NativeStringLine. * Fix the extremely rare potential for a crash when the C extensions are in use. * The pure-Python proxy didn’t propagate TypeError from __repr__ and __str__ like the C implementation did. * Iteration of zope.interface.providedBy() is now allowed by default on all versions of Python. * Drop support for Python 3.3. * Respect PURE_PYTHON at runtime. * Fix watching checkers (ZOPE_WATCH_CHECKERS=1) in pure-Python mode. - Fix tests using multibuild (can be dropped in the future). OBS-URL: https://build.opensuse.org/request/show/692314 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.security?expand=0&rev=7
2019-04-09 08:15:29 +02:00
%endif
Accepting request 692314 from home:mcalabkova:branches:devel:languages:python - update to version 4.3.1 * Fix the decimal.Decimal checker, __truediv__ was missing causing ForbiddenAttribute on a ProxyFactory(Decimal('1')) / 1 operation 4.3.0 * Add the interface ISystemPrincipal and make zope.security.management.system_user a regular object that implements this interface. 4.2* * Add support for Python 3.7. * Make the pure-Python proxy on Python 2 not check permissions for __unicode__ just like the C implementation. Note that __str__ is checked for both implementations on both Python 2 and 3, but if there is no __unicode__ method defined, Python 2’s automatic fallback to __str__ is not checked when unicode is called. * Fix the default values for Permission fields title and description under Python 2. * Change the IPermission.id from Text (unicode) to a NativeStringLine. * Fix the extremely rare potential for a crash when the C extensions are in use. * The pure-Python proxy didn’t propagate TypeError from __repr__ and __str__ like the C implementation did. * Iteration of zope.interface.providedBy() is now allowed by default on all versions of Python. * Drop support for Python 3.3. * Respect PURE_PYTHON at runtime. * Fix watching checkers (ZOPE_WATCH_CHECKERS=1) in pure-Python mode. - Fix tests using multibuild (can be dropped in the future). OBS-URL: https://build.opensuse.org/request/show/692314 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.security?expand=0&rev=7
2019-04-09 08:15:29 +02:00
%if %{with test}
%check
%python_expand %{_bindir}/zope-testrunner-%{$python_bin_suffix} -vvv --test-path src
Accepting request 692314 from home:mcalabkova:branches:devel:languages:python - update to version 4.3.1 * Fix the decimal.Decimal checker, __truediv__ was missing causing ForbiddenAttribute on a ProxyFactory(Decimal('1')) / 1 operation 4.3.0 * Add the interface ISystemPrincipal and make zope.security.management.system_user a regular object that implements this interface. 4.2* * Add support for Python 3.7. * Make the pure-Python proxy on Python 2 not check permissions for __unicode__ just like the C implementation. Note that __str__ is checked for both implementations on both Python 2 and 3, but if there is no __unicode__ method defined, Python 2’s automatic fallback to __str__ is not checked when unicode is called. * Fix the default values for Permission fields title and description under Python 2. * Change the IPermission.id from Text (unicode) to a NativeStringLine. * Fix the extremely rare potential for a crash when the C extensions are in use. * The pure-Python proxy didn’t propagate TypeError from __repr__ and __str__ like the C implementation did. * Iteration of zope.interface.providedBy() is now allowed by default on all versions of Python. * Drop support for Python 3.3. * Respect PURE_PYTHON at runtime. * Fix watching checkers (ZOPE_WATCH_CHECKERS=1) in pure-Python mode. - Fix tests using multibuild (can be dropped in the future). OBS-URL: https://build.opensuse.org/request/show/692314 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.security?expand=0&rev=7
2019-04-09 08:15:29 +02:00
%endif
%if !%{with test}
%files %{python_files}
Accepting request 692314 from home:mcalabkova:branches:devel:languages:python - update to version 4.3.1 * Fix the decimal.Decimal checker, __truediv__ was missing causing ForbiddenAttribute on a ProxyFactory(Decimal('1')) / 1 operation 4.3.0 * Add the interface ISystemPrincipal and make zope.security.management.system_user a regular object that implements this interface. 4.2* * Add support for Python 3.7. * Make the pure-Python proxy on Python 2 not check permissions for __unicode__ just like the C implementation. Note that __str__ is checked for both implementations on both Python 2 and 3, but if there is no __unicode__ method defined, Python 2’s automatic fallback to __str__ is not checked when unicode is called. * Fix the default values for Permission fields title and description under Python 2. * Change the IPermission.id from Text (unicode) to a NativeStringLine. * Fix the extremely rare potential for a crash when the C extensions are in use. * The pure-Python proxy didn’t propagate TypeError from __repr__ and __str__ like the C implementation did. * Iteration of zope.interface.providedBy() is now allowed by default on all versions of Python. * Drop support for Python 3.3. * Respect PURE_PYTHON at runtime. * Fix watching checkers (ZOPE_WATCH_CHECKERS=1) in pure-Python mode. - Fix tests using multibuild (can be dropped in the future). OBS-URL: https://build.opensuse.org/request/show/692314 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.security?expand=0&rev=7
2019-04-09 08:15:29 +02:00
%license LICENSE.txt
%doc README.rst
%dir %{python_sitearch}/zope
%{python_sitearch}/zope/security
%{python_sitearch}/zope.security-%{version}*-info
%{python_sitearch}/zope.security-%{version}*-nspkg.pth
Accepting request 692314 from home:mcalabkova:branches:devel:languages:python - update to version 4.3.1 * Fix the decimal.Decimal checker, __truediv__ was missing causing ForbiddenAttribute on a ProxyFactory(Decimal('1')) / 1 operation 4.3.0 * Add the interface ISystemPrincipal and make zope.security.management.system_user a regular object that implements this interface. 4.2* * Add support for Python 3.7. * Make the pure-Python proxy on Python 2 not check permissions for __unicode__ just like the C implementation. Note that __str__ is checked for both implementations on both Python 2 and 3, but if there is no __unicode__ method defined, Python 2’s automatic fallback to __str__ is not checked when unicode is called. * Fix the default values for Permission fields title and description under Python 2. * Change the IPermission.id from Text (unicode) to a NativeStringLine. * Fix the extremely rare potential for a crash when the C extensions are in use. * The pure-Python proxy didn’t propagate TypeError from __repr__ and __str__ like the C implementation did. * Iteration of zope.interface.providedBy() is now allowed by default on all versions of Python. * Drop support for Python 3.3. * Respect PURE_PYTHON at runtime. * Fix watching checkers (ZOPE_WATCH_CHECKERS=1) in pure-Python mode. - Fix tests using multibuild (can be dropped in the future). OBS-URL: https://build.opensuse.org/request/show/692314 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.security?expand=0&rev=7
2019-04-09 08:15:29 +02:00
%endif
%changelog