blob: 85bfabc49c02aae4277d68ba12d757bcff5463c6 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
%define rc_version 0
%if 0%{?rc_version}
%define release_prefix 0.rc%{rc_version}.
%endif
Name: mic
Summary: Image Creator for Linux Distributions
Version: 0.28.19
Release: 0
Group: Development/Tools
License: GPLv2
BuildArch: noarch
URL: http://www.tizen.org
Source0: %{name}_%{version}.tar.gz
%if 0%{?tizen_version:1}
Source1001: mic.manifest
%endif
Requires: python3 >= 3.2
#for mic in mic-bootstrap, we don't need the below three dependency packages.
#what is more, thre is no python3.x version currently in tizne platform.
#Requires: python3-urlgrabber >= 3.9.0
#Requires: yum
#Requires: python3-requests
Requires: python3-py
#xml module has been exist in python3 path once installing python3 package.
%if 0%{?suse_version}
Requires: python3-xml
%endif
%if 0%{?tizen_version:1}
Requires: python3-rpm
%else
Requires: rpm-python3
%endif
Requires: python3-pycurl
Requires: python3-distro
Requires: cpio
# not neccessary
Requires: gzip
Requires: bzip2
%if 0%{?tizen_version:1}
Requires: qemu-linux-user
%else
Requires: qemu-arm-static
%endif
BuildRequires: python3-devel
%if ! 0%{?tizen_version:1}
BuildRequires: python3-docutils
%endif
%if ! 0%{?centos_version}
BuildRequires:fdupes
%endif
%description
The tool mic is used to create and manipulate images for Linux distributions.
It is composed of three subcommand\: create, convert, chroot. Subcommand create
is used to create images with different types; subcommand convert is used to
convert an image to a specified type; subcommand chroot is used to chroot into
an image.
%prep
%setup -q -n %{name}-%{version}
%if 0%{?tizen_version:1}
cp %{SOURCE1001} .
%endif
%build
CFLAGS="$RPM_OPT_FLAGS" python3 setup.py build
%if ! 0%{?tizen_version:1}
make man
%endif
%install
rm -rf %{buildroot}
%if 0%{?suse_version}
python3 setup.py install --root=%{buildroot} --prefix=%{_prefix}
%else
python3 setup.py install --root=%{buildroot} -O1
%endif
# install man page
mkdir -p %{buildroot}/%{_prefix}/share/man/man1
%if ! 0%{?tizen_version:1}
install -m644 doc/mic.1 %{buildroot}/%{_prefix}/share/man/man1
%endif
# install bash completion
install -d -m0755 %{buildroot}/%{_sysconfdir}/bash_completion.d/
install -Dp -m0755 etc/bash_completion.d/%{name}.sh %{buildroot}/%{_sysconfdir}/bash_completion.d/
# install zsh completion
install -d -m0755 %{buildroot}/%{_sysconfdir}/zsh_completion.d/
install -Dp -m0755 etc/zsh_completion.d/_%{name} %{buildroot}/%{_sysconfdir}/zsh_completion.d/
%if ! 0%{?centos_version}
%fdupes %{buildroot}
%endif
%files
%if 0%{?tizen_version:1}
%manifest %{name}.manifest
%endif
%defattr(-,root,root,-)
%if ! (0%{?suse_version} || 0%{?centos_version})
%license COPYING
%endif
%doc doc/*
%doc README.rst AUTHORS ChangeLog
%if ! 0%{?tizen_version:1}
%{_mandir}/man1/*
%endif
%dir %{_sysconfdir}/%{name}
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf
%{python3_sitelib}/*
%dir %{_prefix}/lib/%{name}
%{_prefix}/lib/%{name}/*
%{_bindir}/mic
%{_sysconfdir}/bash_completion.d
%{_sysconfdir}/zsh_completion.d
|