diff --git a/README.md b/README.md index 4994eac..7ff14fe 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-incremental +A small library that versions your Python projects. + diff --git a/python-incremental.spec b/python-incremental.spec new file mode 100644 index 0000000..435e42c --- /dev/null +++ b/python-incremental.spec @@ -0,0 +1,53 @@ +Name: python-incremental +Version: 17.5.0 +Release: 1mamba +Summary: A small library that versions your Python projects +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://hawkowl.github.io/incremental +Source: http://pypi.debian.net/incremental/incremental-%{version}.tar.gz +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n incremental-%{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 +%doc LICENSE +## note: eventually add the remaining documents (if any) +# %doc README.rst + +%changelog +* Thu Jan 10 2019 Silvan Calarco 17.5.0-1mamba +- package created using the webbuild interface