forked from karmab/kcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kcli.spec
66 lines (56 loc) · 2.15 KB
/
kcli.spec
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
55
56
57
58
59
60
61
62
63
64
65
66
#
# spec file for package kcli
#
# Copyright (c) 2017 Karim Boumedhel
#
Name: {{{ git_dir_name }}}
Version: 99.{{{ git_custom_version }}}
Release: 0%{?dist}
Url: http://github.com/karmab/kcli
Summary: Wrapper for libvirt, azure, aws, gcp, kubevirt, ovirt, openstack, packet, proxmox and vsphere
License: ASL 2.0
Group: Development/Languages/Python
VCS: {{{ git_dir_vcs }}}
Source: {{{ git_dir_pack }}}
AutoReq: no
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: python3-devel rubygem-ronn gzip python3-setuptools
Requires: python3 libvirt-python3 genisoimage nmap-ncat python3-prettytable python3-jinja2 python3-PyYAML python3-argcomplete
%description
Kcli is a wrapper for local/remote libvirt, aws, azure, gcp, kubevirt, ovirt, openstack, packet, proxmox and vsphere
It easily deploy single vms from cloud images or several using plans or kubernetes clusters
%global debug_package %{nil}
%prep
{{{ git_dir_setup_macro }}}
%build
sed -i "s/, 'libvirt.*/\]/" setup.py
INSTALL=$(grep -m 1 INSTALL setup.py | sed 's/INSTALL = //')
sed -i "s/install_requires=INSTALL/install_requires=$INSTALL/" setup.py
sed -i '/INSTALL/d' setup.py
GIT_VERSION="$(curl -s https://github.com/karmab/kcli/commits/main | grep 'https://github.com/karmab/kcli/commits/main?' | sed 's@.*=\(.......\).*+.*@\1@') $(date +%Y/%m/%d)"
echo $GIT_VERSION > kvirt/version/git
%{python3} setup.py build
%install
%{python3} setup.py install --prefix=%{_prefix} --root=%{buildroot}
mkdir -p %{buildroot}/%{_docdir}/kcli
mkdir -p %{buildroot}/%{_mandir}/man1
LANG=en_US.UTF-8 ronn -r README.md
mv README kcli.1
gzip kcli.1
cp kcli.1.gz %{buildroot}/%{_mandir}/man1
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc %{_docdir}/kcli
%{_mandir}/man1/kcli.1.gz
%{python3_sitelib}/*
%attr(0755,root,root) %{_bindir}/kcli
%attr(0755,root,root) %{_bindir}/kweb
%attr(0755,root,root) %{_bindir}/klist.py
%attr(0755,root,root) %{_bindir}/ksushy
%attr(0755,root,root) %{_bindir}/ignitionmerger
%attr(0755,root,root) %{_bindir}/ekstoken
%attr(0755,root,root) %{_bindir}/gketoken
%changelog
{{{ git_dir_changelog }}}