forked from pool/python-zope.i18nmessageid
b0a90f2573
- version update to 5.0.1 - Remove deprecated use of setuptools features. See `issue 22 <https://github.com/zopefoundation/zope.i18nmessageid/issues/22>`_. OBS-URL: https://build.opensuse.org/request/show/785664 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.i18nmessageid?expand=0&rev=14
79 lines
2.4 KiB
RPMSpec
79 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package python-zope.i18nmessageid
|
|
#
|
|
# Copyright (c) 2020 SUSE LLC
|
|
# Copyright (c) 2013 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/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-zope.i18nmessageid
|
|
Version: 5.0.1
|
|
Release: 0
|
|
Summary: Zope Location
|
|
License: ZPL-2.1
|
|
URL: https://www.python.org/pypi/zope.i18nmessageid
|
|
Source: https://files.pythonhosted.org/packages/source/z/zope.i18nmessageid/zope.i18nmessageid-%{version}.tar.gz
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module zope.testrunner}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
# SECTION documentation requirements
|
|
BuildRequires: %{python_module Sphinx}
|
|
Requires: python-six
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
In Zope3, i18nmessageid are special objects that has a structural i18nmessageid.
|
|
|
|
%package -n %{name}-doc
|
|
Summary: Zope Location
|
|
Requires: %{name} = %{version}
|
|
Provides: %{python_module zope.i18nmessageid-doc = %{version}}
|
|
|
|
%description -n %{name}-doc
|
|
This package contains documentation files for %{name}.
|
|
|
|
%prep
|
|
%setup -q -n zope.i18nmessageid-%{version}
|
|
rm -rf zope.i18nmessageid.egg-info
|
|
|
|
%build
|
|
%python_build
|
|
python3 setup.py build_sphinx && rm build/sphinx/html/.buildinfo build/sphinx/html/objects.inv
|
|
|
|
%install
|
|
%python_install
|
|
# don't bother with development files
|
|
%{python_expand rm -f %{buildroot}%{$python_sitearch}/zope/i18nmessageid/_zope_i18nmessageid_message.c
|
|
%fdupes %{buildroot}%{$python_sitearch}
|
|
}
|
|
|
|
%check
|
|
sed -i '/coverage/d' setup.py
|
|
%python_exec setup.py test
|
|
|
|
%files %{python_files}
|
|
%license LICENSE.txt
|
|
%doc CHANGES.rst COPYRIGHT.txt README.rst
|
|
%{python_sitearch}/*
|
|
|
|
%files -n %{name}-doc
|
|
%doc build/sphinx/html/
|
|
|
|
%changelog
|