-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpython-gdeploy.spec
More file actions
46 lines (34 loc) · 1000 Bytes
/
python-gdeploy.spec
File metadata and controls
46 lines (34 loc) · 1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Name: python-gdeploy
Version: 1.1.0
Release: 1%{?dist}
BuildArch: noarch
Summary: python gdeploy is a python wrapper for gdeploy
Source0: %{name}-%{version}.tar.gz
License: LGPLv2+
URL: https://github.com/Tendrl/python-gdeploy
BuildRequires: python2-devel
BuildRequires: python-mock
BuildRequires: python-setuptools
Requires: gdeploy
%description
Python wrapper for gdeploy
%prep
%setup
# Remove bundled egg-info
rm -rf %{name}.egg-info
%build
%{__python} setup.py build
%install
%{__python} setup.py install --single-version-externally-managed -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES
%check
py.test -v python_gdeploy/tests || :
%files -f INSTALLED_FILES
%doc README.md
%license LICENSE
%changelog
* Fri Jun 02 2017 Rohan Kanade <rkanade@redhat.com> - 1.1.0-1
- Release python-gdeploy v1.1.0
* Tue Apr 18 2017 Rohan Kanade <rkanade@redhat.com> - 1.0.0-1
- Release python-gdeploy v1.0.0
* Mon Oct 17 2016 Timothy Asir Jeyasingh <tjeyasin@redhat.com> - 0.0.1-1
- Initial build.