rollback change in spec file 57/279857/1 accepted/tizen_7.0_unified accepted/tizen_7.0_unified_hotfix accepted/tizen_8.0_unified sandbox/wangbiao/py2 sandbox/xuhy/riscv tizen_7.0 tizen_7.0_hotfix tizen_8.0 accepted/tizen/7.0/unified/20221110.063432 accepted/tizen/7.0/unified/hotfix/20221116.111138 accepted/tizen/8.0/unified/20231005.095228 accepted/tizen/unified/20220819.122444 submit/tizen/20220818.095606 tizen_7.0_m2_release tizen_8.0_m2_release
authorbiao716.wang <biao716.wang@samsung.com>
Thu, 18 Aug 2022 09:53:19 +0000 (18:53 +0900)
committerbiao716.wang <biao716.wang@samsung.com>
Thu, 18 Aug 2022 09:53:19 +0000 (18:53 +0900)
Change-Id: I46c35dda14da4b5943339a3a18a03beb56780e5b
Signed-off-by: biao716.wang <biao716.wang@samsung.com>
packaging/mic.spec

index 28bc1a2..2032f45 100755 (executable)
 Name:       mic
 Summary:    Image Creator for Linux Distributions
 Version:    0.28.17
-Release:    %{?release_prefix}%{?opensuse_bs:<CI_CNT>.<B_CNT>}%{!?opensuse_bs:0}
+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:   python >= 2.6
 Requires:   python-urlgrabber >= 3.9.0
@@ -39,14 +42,20 @@ Requires:   cpio
 Requires:   gzip
 Requires:   bzip2
 
+%if 0%{?tizen_version:1}
+Requires:   qemu-linux-user
+%else
+Requires:   qemu-arm-static
+%endif
+
 BuildRequires:  python-devel
 %if ! 0%{?tizen_version:1}
 BuildRequires:  python-docutils
 %endif
 
-Obsoletes:  mic2
-
-BuildRoot:  %{_tmppath}/%{name}_%{version}-build
+%if ! 0%{?centos_version}
+BuildRequires:fdupes
+%endif
 
 %description
 The tool mic is used to create and manipulate images for Linux distributions.
@@ -57,22 +66,29 @@ an image.
 
 %prep
 %setup -q -n %{name}-%{version}
+%if 0%{?tizen_version:1}
+cp %{SOURCE1001} .
+%endif
 
 %build
 CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
-make man
+%if ! 0%{?tizen_version:1}
+ make man
+%endif
 
 %install
-rm -rf $RPM_BUILD_ROOT
+rm -rf %{buildroot}
 %if 0%{?suse_version}
-%{__python} setup.py install --root=$RPM_BUILD_ROOT --prefix=%{_prefix}
+%{__python} setup.py install --root=%{buildroot} --prefix=%{_prefix}
 %else
-%{__python} setup.py install --root=$RPM_BUILD_ROOT -O1
+%{__python} 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/
@@ -82,10 +98,21 @@ install -Dp -m0755 etc/bash_completion.d/%{name}.sh %{buildroot}/%{_sysconfdir}/
 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 COPYING ChangeLog
+%doc README.rst AUTHORS ChangeLog
 %if ! 0%{?tizen_version:1}
 %{_mandir}/man1/*
 %endif