python-ghp-import2/python-ghp-import2.spec

75 lines
2.3 KiB
RPMSpec
Raw Permalink Normal View History

2022-07-18 14:10:42 +08:00
%global _empty_manifest_terminate_build 0
Name: python-ghp-import2
Version: 2.1.0
Release: 1
Summary: Copy your docs directly to the gh-pages branch.
License: Apache-2.0
URL: https://github.com/c-w/ghp-import
Source0: https://files.pythonhosted.org/packages/d9/29/d40217cbe2f6b1359e00c6c307bb3fc876ba74068cbab3dde77f03ca0dc4/ghp-import-2.1.0.tar.gz
BuildArch: noarch
Requires: python3-dateutil
Requires: python3-twine
Requires: python3-markdown
Requires: python3-flake8
Requires: python3-wheel
%description
As part of gunicorn, Benoit Chesneau and Paul Davis were looking at how to host documentation. There's the obvious method of using GitHub's post-receive hook to trigger doc builds and rsync to a webserver, but we ended up wanting to try out github's hosting to make the whole interface a bit more robust.
%package -n python3-ghp-import2
Summary: Copy your docs directly to the gh-pages branch.
Provides: python-ghp-import2
BuildRequires: python3-devel
BuildRequires: python3-setuptools
%description -n python3-ghp-import2
%package help
Summary: Development documents and examples for ghp-import
Provides: python3-ghp-import2-doc
%description help
%prep
%autosetup -n ghp-import-2.1.0
%build
%py3_build
%install
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
%files -n python3-ghp-import2 -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Mon Jul 18 2022 Python_Bot <Python_Bot@openeuler.org> - 2.1.0-1
- Package Spec generated