forked from pool/python-zope.i18nmessageid
a808b8ed5c
* Fix the intersphinx mapping. - Switch to autosetup macro. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.i18nmessageid?expand=0&rev=34
105 lines
3.1 KiB
RPMSpec
105 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package python-zope.i18nmessageid
|
|
#
|
|
# 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.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
%if "%{flavor}" == "test"
|
|
%define psuffix -test
|
|
%bcond_without test
|
|
%else
|
|
%define psuffix %{nil}
|
|
%bcond_with test
|
|
%endif
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-zope.i18nmessageid%{psuffix}
|
|
Version: 6.1.0
|
|
Release: 0
|
|
Summary: Zope Location
|
|
License: ZPL-2.1
|
|
URL: https://github.com/zopefoundation/zope.i18nmessageid
|
|
Source: https://files.pythonhosted.org/packages/source/z/zope.i18nmessageid/zope.i18nmessageid-%{version}.tar.gz
|
|
# PATCH-FIX-UPSTREAM gh#zopefoundation/zope.i18nmessageid#59ef476780398c83eaa4516d2fd3aaaecfb0f9a1
|
|
Patch0: fix-intersphinx-mapping.patch
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
# SECTION documentation requirements
|
|
BuildRequires: python3-Sphinx
|
|
# /SECTION
|
|
# SECTION testing requirements
|
|
%if %{with test}
|
|
BuildRequires: %{python_module zope.i18nmessageid}
|
|
%endif
|
|
%python_subpackages
|
|
|
|
%description
|
|
In Zope3, i18nmessageid are special objects that has a structural i18nmessageid.
|
|
|
|
%package -n %{name}-doc
|
|
Summary: Zope Location
|
|
Provides: %{python_module zope.i18nmessageid-doc = %{version}}
|
|
BuildArch: noarch
|
|
|
|
%description -n %{name}-doc
|
|
This package contains documentation files for %{name}.
|
|
|
|
%prep
|
|
%autosetup -p1 -n zope.i18nmessageid-%{version}
|
|
rm -rf zope.i18nmessageid.egg-info
|
|
|
|
%build
|
|
%if !%{with test}
|
|
%pyproject_wheel
|
|
sphinx-build -b html docs build/sphinx/html && rm -r build/sphinx/html/.{buildinfo,doctrees} build/sphinx/html/objects.inv
|
|
%endif
|
|
|
|
%install
|
|
%if !%{with test}
|
|
%pyproject_install
|
|
# don't bother with development files
|
|
%{python_expand rm -f %{buildroot}%{$python_sitearch}/zope/i18nmessageid/_zope_i18nmessageid_message.c
|
|
%fdupes %{buildroot}%{$python_sitearch}
|
|
}
|
|
%endif
|
|
|
|
%check
|
|
%if %{with test}
|
|
%pyunittest 'zope.i18nmessageid.tests.test_suite'
|
|
%endif
|
|
|
|
%if !%{with test}
|
|
%files %{python_files}
|
|
%license LICENSE.txt
|
|
%doc CHANGES.rst COPYRIGHT.txt README.rst
|
|
%dir %{python_sitearch}/zope
|
|
%{python_sitearch}/zope/i18nmessageid
|
|
%{python_sitearch}/zope.i18nmessageid-%{version}.dist-info
|
|
%{python_sitearch}/zope.i18nmessageid-%{version}*-nspkg.pth
|
|
%endif
|
|
|
|
%if !%{with test}
|
|
%files -n %{name}-doc
|
|
%doc build/sphinx/html/
|
|
%endif
|
|
|
|
%changelog
|