a61398687f
- singlespec auto-conversion - common -doc subpackage - improve packaging of docs OBS-URL: https://build.opensuse.org/request/show/521118 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-FormEncode?expand=0&rev=15
91 lines
2.9 KiB
RPMSpec
91 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package python-FormEncode
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define oldpython python
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-FormEncode
|
|
Version: 1.3.0
|
|
Release: 0
|
|
Summary: HTML form validation, generation, and conversion package
|
|
License: Python-2.0
|
|
Group: Development/Languages/Python
|
|
Url: http://formencode.org
|
|
Source: https://files.pythonhosted.org/packages/source/F/FormEncode/FormEncode-%{version}.zip
|
|
Source1: FormEncode-doc-infrastructure.tar.gz
|
|
# Documentation requirements:
|
|
BuildRequires: %{python_module Sphinx}
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildRequires: unzip
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildArch: noarch
|
|
%ifpython2
|
|
Provides: %{oldpython}-formencode = %{version}
|
|
Obsoletes: %{oldpython}-formencode < %{version}
|
|
%endif
|
|
%python_subpackages
|
|
|
|
%description
|
|
FormEncode validates and converts nested structures. It allows for
|
|
a declarative form of defining the validation, and decoupled processes
|
|
for filling and generating forms.
|
|
|
|
%package doc
|
|
Summary: HTML form validation, generation, and conversion package
|
|
Group: Development/Libraries/Python
|
|
Requires: %{name} = %{version}
|
|
|
|
%description doc
|
|
This package contains documentation files for %{name}.
|
|
|
|
%prep
|
|
%setup -q -n FormEncode-%{version} -a1
|
|
find . -name \*.txt -exec sed -i 's/\r$//g' {} \;
|
|
sed -i 's/\r$//g' PKG-INFO README.rst
|
|
sed -i '/^:date:/d' docs/*.txt # fix build-compare
|
|
|
|
%build
|
|
%python_build
|
|
%python_exec setup.py build_sphinx && rm build/sphinx/html/.buildinfo
|
|
|
|
%install
|
|
%python_install
|
|
|
|
# install documentation
|
|
rm -r %{buildroot}/%{python_sitelib}/docs # remove misplaced documentation
|
|
mkdir -p %{buildroot}%{_docdir}/%{name}
|
|
cp -r README.rst build/sphinx/html %{buildroot}%{_docdir}/%{name}/
|
|
|
|
%fdupes %{buildroot}/%{_prefix}
|
|
|
|
%files %{python_files}
|
|
%defattr(-,root,root,-)
|
|
%exclude %{_docdir}/%{name}/html
|
|
%doc %dir %{_docdir}/%{name}/
|
|
%doc %{_docdir}/%{name}/README.rst
|
|
%{python_sitelib}/*
|
|
|
|
%files %{python_files doc}
|
|
%defattr(-,root,root,-)
|
|
%doc %dir %{_docdir}/%{name}/html
|
|
%doc %{_docdir}/%{name}/html/*
|
|
|
|
%changelog
|