package created using the webbuild interface [release 3.1.0-1mamba;Wed Jan 20 2021]

This commit is contained in:
Silvan Calarco 2024-01-06 11:17:04 +01:00
parent 6376f9d65e
commit 7a9ef0d653
2 changed files with 58 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-intervaltree
A mutable, self-balancing interval tree for Python 2 and 3. Queries may be by point, by range overlap, or by range envelopment.

56
python-intervaltree.spec Normal file
View File

@ -0,0 +1,56 @@
Name: python-intervaltree
Version: 3.1.0
Release: 1mamba
Summary: A mutable, self-balancing interval tree for Python 2 and 3. Queries may be by point, by range overlap, or by range envelopment
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://pypi.org/project/intervaltree/
Source: https://pypi.debian.net/intervaltree/intervaltree-%{version}.tar.gz
License: Apache License 2.0
## AUTOBUILDREQ-BEGIN
BuildRequires: python3
## AUTOBUILDREQ-END
BuildRequires: libpython-devel
Requires: python >= %python_version
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
%{summary}.
%if 0%{?with_pyver}
%define py_requires_append \
Requires: python-sortedcontainers%{?pyappend:-%pyappend}
%pyver_package
%endif
%prep
%setup -q -n intervaltree-%{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 "s,.*/man/.*,&.gz," %{name}.filelist
%files %{?pyappend} -f %{name}.filelist
%defattr(-,root,root)
## note: this list is just an example; modify as required
# %{python_sitearch}/%{name}.py*
# %{python_sitearch}/%{name}.so
## note: add extra documentation (if any)
# %doc README.md
%changelog
* Wed Jan 20 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 3.1.0-1mamba
- package created using the webbuild interface