aa5926e028
- Spec file cleanup: * Run spec-cleaner * Remove outdated %clean section, AutoReqProv and authors from descr. - Fix license to Python-2.0 (also SPDX style) - Spec file cleanup: * Run spec-cleaner * Remove outdated %clean section, AutoReqProv and authors from descr. - Fix license to Python-2.0 (also SPDX style) - Spec file cleanup: * Run spec-cleaner * Remove outdated %clean section, AutoReqProv and authors from descr. - Fix license to Python-2.0 (also SPDX style) OBS-URL: https://build.opensuse.org/request/show/95517 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python?expand=0&rev=109
93 lines
2.9 KiB
RPMSpec
93 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package python-doc
|
|
#
|
|
# Copyright (c) 2011 SUSE LINUX Products 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/
|
|
#
|
|
|
|
|
|
|
|
Name: python-doc
|
|
Version: 2.7
|
|
Release: 0
|
|
License: Python-2.0
|
|
Summary: Additional Package Documentation for Python
|
|
Url: http://www.python.org/
|
|
Group: Development/Languages/Python
|
|
%define pyver 2.7.2
|
|
%define tarname Python-%{pyver}
|
|
Source0: %{tarname}.tar.bz2
|
|
Source1: python-%{version}-docs-html.tar.bz2
|
|
Source2: python-%{version}-docs-pdf-a4.tar.bz2
|
|
Source3: python-%{version}-docs-pdf-letter.tar.bz2
|
|
Provides: pyth_doc
|
|
Provides: pyth_ps
|
|
Obsoletes: pyth_doc
|
|
Obsoletes: pyth_ps
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildArch: noarch
|
|
Enhances: python = %{pyver}
|
|
|
|
%description
|
|
Tutorial, Global Module Index, Language Reference, Library Reference,
|
|
Extending and Embedding Reference, Python/C API Reference, Documenting
|
|
Python, and Macintosh Module Reference in HTML format.
|
|
|
|
%package pdf
|
|
Summary: Python PDF Documentation
|
|
Group: Development/Languages/Python
|
|
Provides: pyth_pdf
|
|
Obsoletes: pyth_pdf
|
|
|
|
%description pdf
|
|
Tutorial, Global Module Index, Language Reference, Library Reference,
|
|
Extending and Embedding Reference, Python/C API Reference, Documenting
|
|
Python, and Macintosh Module Reference in PDF format.
|
|
|
|
%prep
|
|
%setup -q -n %{tarname}
|
|
|
|
%build
|
|
# nothing to do (...whistles innocently)
|
|
|
|
%install
|
|
export PDOCS=%{buildroot}%{_docdir}/python
|
|
install -d -m 755 $PDOCS/Misc
|
|
install -d -m 755 $PDOCS/paper-a4 $PDOCS/paper-letter $PDOCS/html
|
|
tar xfj %{SOURCE1} -C $PDOCS/
|
|
mv $PDOCS/python-%{version}-docs-html $PDOCS/html
|
|
tar xfj %{SOURCE2} -C $PDOCS
|
|
mv $PDOCS/docs-pdf $PDOCS/paper-a4
|
|
tar xfj %{SOURCE3} -C $PDOCS
|
|
mv $PDOCS/docs-pdf $PDOCS/paper-letter
|
|
install -c -m 644 Doc/ACKS.txt $PDOCS/ACKS.txt
|
|
install -c -m 644 README $PDOCS/README
|
|
for i in Misc/* ; do
|
|
[ -f $i ] && install -c -m 644 $i $PDOCS/Misc/
|
|
done
|
|
|
|
%files
|
|
%defattr(644,root,root,755)
|
|
%dir %{_docdir}/python
|
|
%doc %{_docdir}/python/Misc
|
|
%doc %{_docdir}/python/html
|
|
%doc %{_docdir}/python/ACKS.txt
|
|
%doc %{_docdir}/python/README
|
|
|
|
%files pdf
|
|
%defattr(644,root,root,755)
|
|
%doc %{_docdir}/python/paper-a4
|
|
%doc %{_docdir}/python/paper-letter
|
|
|
|
%changelog
|