Dirk Mueller
344a781f7f
- Add %{?sle15_python_module_pythons} OBS-URL: https://build.opensuse.org/request/show/1092170 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.deferredimport?expand=0&rev=10
66 lines
2.1 KiB
RPMSpec
66 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package python-zope.deferredimport
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# 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.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-zope.deferredimport
|
|
Version: 4.4
|
|
Release: 0
|
|
Summary: On-demand import name resolver
|
|
License: ZPL-2.1
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/zopefoundation/zope.deferredimport
|
|
Source: https://files.pythonhosted.org/packages/source/z/zope.deferredimport/zope.deferredimport-%{version}.tar.gz
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module zope.proxy}
|
|
BuildRequires: %{python_module zope.testrunner}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-zope.proxy
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
Often, especially for package modules, you want to import names for
|
|
convenience, but not actually perform the imports until necessary.
|
|
The zope.deferredimport package provided facilities for defining names
|
|
in modules that will be imported from somewhere else when used. You
|
|
can also cause deprecation warnings to be issued when a variable is
|
|
used.
|
|
|
|
Documentation is hosted at https://zopedeferredimport.readthedocs.io/
|
|
|
|
%prep
|
|
%setup -q -n zope.deferredimport-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
%python_expand PYTHONPATH=src %{_bindir}/zope-testrunner-%{$python_bin_suffix} -vvv --test-path src
|
|
|
|
%files %{python_files}
|
|
%license LICENSE.txt
|
|
%doc README.rst
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|