package created using the webbuild interface [release 0.2.1-1mamba;Sat Oct 15 2016]

This commit is contained in:
Davide Madrisan 2024-01-06 11:05:21 +01:00
parent 8cd1711baa
commit 3135fe68dc
2 changed files with 54 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-dockerpy-creds
Python bindings for the docker credentials store API.

View File

@ -0,0 +1,52 @@
Name: python-dockerpy-creds
Version: 0.2.1
Release: 1mamba
Summary: Python bindings for the docker credentials store API
Group: System/Libraries/Python
Vendor: openmamba
Distribution: openmamba
Packager: Davide Madrisan <davide.madrisan@gmail.com>
URL: https://github.com/shin-/dockerpy-creds
Source: https://github.com/shin-/dockerpy-creds/archive/%{version}.tar.gz
License: Apache License 2.0
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
%if 0%{?with_pyver}
BuildRequires: libpython%{?with_pyver}-devel
%else
BuildRequires: libpython-devel
%endif
BuildRequires: libpython-devel
Requires: python >= %python_version
Requires: python-six%{?pyappend}
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
%{summary}.
%if 0%{?with_pyver}
%pyver_package
%endif
%prep
%setup -q -n dockerpy-creds-%{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
%files %{?pyappend} -f %{name}.filelist
%defattr(-,root,root)
%doc LICENSE README.md
%changelog
* Sat Oct 15 2016 Davide Madrisan <davide.madrisan@gmail.com> 0.2.1-1mamba
- package created using the webbuild interface