blob: 85fa9b466f233642288a78dd99af01be4ce54f5e (
plain)
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
47
48
49
50
51
52
53
54
|
# Macros for py2/py3 compatibility
%if 0%{?fedora} || 0%{?rhel} > 7 || 0%{?openEuler}
%global pyver 3
%else
%global pyver 2
%endif
%global pyver_bin python%{pyver}
%global pyver_sitelib %{expand:%{python%{pyver}_sitelib}}
%global pyver_install %{expand:%{py%{pyver}_install}}
%global pyver_build %{expand:%{py%{pyver}_build}}
# End of macros for py2/py3 compatibility
%{!?upstream_version: %global upstream_version %{version}%{?milestone}}
Name: dib-utils
Summary: Pieces of diskimage-builder that are useful standalone
Version: 0.0.11
Release: 1%{?dist}
License: ASL 2.0
Group: System Environment/Base
URL: https://git.openstack.org/cgit/openstack/dib-utils
Source0: https://tarballs.openstack.org/dib-utils/dib-utils-%{upstream_version}.tar.gz
BuildArch: noarch
BuildRequires: python%{pyver}-devel
BuildRequires: python%{pyver}-setuptools
BuildRequires: python%{pyver}-pbr
Conflicts: diskimage-builder < 0.1.15
%description
Pieces of diskimage-builder that are useful standalone.
This allows them to be used without pulling in all of
diskimage-builder and its dependencies.
%prep
%setup -q -n %{name}-%{upstream_version}
%build
%{pyver_build}
%install
%{pyver_install}
%files
%doc README.md
%{_bindir}/dib-run-parts
%{pyver_sitelib}/dib_utils*
%changelog
* Thu Aug 16 2018 RDO <dev@lists.rdoproject.org> 0.0.11-1
- Update to 0.0.11
|