package created using the webbuild interface [release 2.1.0-1mamba;Tue Sep 19 2023]

This commit is contained in:
Silvan Calarco 2024-01-06 11:12:12 +01:00
parent 30e6ce5ca0
commit 8d8152914d
2 changed files with 55 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-ghp-import # python-ghp-import
Copy your docs directly to the gh-pages branch.

53
python-ghp-import.spec Normal file
View File

@ -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 <silvan.calarco@mambasoft.it>
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 <silvan.calarco@mambasoft.it> 2.1.0-1mamba
- package created using the webbuild interface