package created using the webbuild interface [release 6.4.2-1mamba;Tue Jan 25 2022]
This commit is contained in:
parent
a7bb46c3dc
commit
7a961bbff1
@ -1,2 +1,4 @@
|
||||
# python-setuptools_scm
|
||||
|
||||
Handles managing your python package versions in scm metadata.
|
||||
|
||||
|
55
python-setuptools_scm.spec
Normal file
55
python-setuptools_scm.spec
Normal file
@ -0,0 +1,55 @@
|
||||
%define pkgname %(echo %name | cut -d- -f2-)
|
||||
Name: python-setuptools_scm
|
||||
Version: 6.4.2
|
||||
Release: 1mamba
|
||||
Summary: Handles managing your python package versions in scm metadata
|
||||
Group: System/Libraries
|
||||
Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
URL: https://github.com/pypa/setuptools_scm
|
||||
Source: https://pypi.debian.net/setuptools-scm/setuptools_scm-%{version}.tar.gz
|
||||
License: MIT
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: libpython3-devel
|
||||
BuildRequires: python3.7dist(packaging)
|
||||
BuildRequires: python3.7dist(setuptools)
|
||||
BuildRequires: python3.7dist(tomli)
|
||||
## AUTOBUILDREQ-END
|
||||
|
||||
%description
|
||||
%{summary}.
|
||||
|
||||
%if 0%{?with_pyver}
|
||||
%pyver_package
|
||||
%endif
|
||||
|
||||
%prep
|
||||
%setup -q -n setuptools_scm-%{version}
|
||||
|
||||
%build
|
||||
CFLAGS="%{optflags}" %{__python} setup.py build
|
||||
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
%{__python} setup.py install \
|
||||
-O1 --skip-build \
|
||||
--root="%{buildroot}" \
|
||||
--install-headers=%{python_inc} \
|
||||
--install-lib=%{python_sitearch} \
|
||||
--record=%{name}.filelist
|
||||
|
||||
sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist
|
||||
|
||||
%files %{?pyappend} -f %{name}.filelist
|
||||
%defattr(-,root,root)
|
||||
## note: this list is just an example; modify as required
|
||||
%dir %{python_sitearch}/%{pkgname}-%{version}-py*.egg-info
|
||||
%{python_sitearch}/%{pkgname}-%{version}-py*.egg-info/*
|
||||
%doc LICENSE
|
||||
## note: add extra documentation (if any)
|
||||
# %doc README.rst
|
||||
|
||||
%changelog
|
||||
* Tue Jan 25 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 6.4.2-1mamba
|
||||
- package created using the webbuild interface
|
Loading…
Reference in New Issue
Block a user