diff --git a/README.md b/README.md index 20c84a1..1d4f11e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-ghp-import +Copy your docs directly to the gh-pages branch. + diff --git a/python-ghp-import.spec b/python-ghp-import.spec new file mode 100644 index 0000000..551b8ad --- /dev/null +++ b/python-ghp-import.spec @@ -0,0 +1,53 @@ +%define pkgname %(echo %name | cut -d- -f2- | tr - _) +Name: python-ghp-import +Version: 2.1.0 +Release: 1mamba +Summary: Copy your docs directly to the gh-pages branch +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/c-w/ghp-import +Source: http://pypi.debian.net/ghp-import/ghp-import-%{version}.tar.gz +License: Apache License 2.0 +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython3-devel +BuildRequires: python3.7dist(python-dateutil) +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n ghp-import-%{version} + +%build +CFLAGS="%{optflags}" %{__python} -m build --no-isolation --wheel + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} -m installer --destdir=%{buildroot} dist/*.whl + +%if "%{?with_pyver}" != "3" +# Rename any conflicting file outside of python site packages tree +for f in %{_bindir}/ghp-import; do + mv %{buildroot}${f}{,-%{?pyappend}} +done +%endif + +%files %{?pyappend} +%defattr(-,root,root) +%{_bindir}/ghp-import* +%dir %{python_sitelib}/%{pkgname}-%{version}.dist-info +%{python_sitelib}/%{pkgname}-%{version}.dist-info/* +%{python_sitelib}/__pycache__/ghp_import.cpython*.pyc +%{python_sitelib}/%{pkgname}.py +%doc LICENSE + +%changelog +* Tue Sep 19 2023 Silvan Calarco 2.1.0-1mamba +- package created using the webbuild interface