custom_build_tool/custom_build_tool.spec
2020-01-13 10:27:00 -05:00

561 lines
13 KiB
RPMSpec

%define with_gcov %{?_with_gcov:1} %{?!_with_gcov:0}
%define with_san %{?_with_san:1} %{?!_with_san:0}
%define with_ub %{?_with_ub:1} %{?!_with_ub:0}
%if !%{with_gcov}
%define debug_package %{nil}
%endif
Name: custom_build_tool
Summary: EulerOS custom build tool for obs
License: GPL
Group: System/Management
Version: 1.0
Release: 17%{?dist}
BuildRoot: %{_tmppath}/%{name}-%{version}
Source0: %{name}-%{version}.tar.bz2
Source1: needgcov-%{version}.tar.bz2
BuildRequires: util-linux coreutils
BuildRequires: -custom_build_tool-nocheck
BuildRequires: -obs-env
BuildRequires: -gcc_secure
BuildRequires: -custom_build_tool-sign
BuildRequires: -bep-env
BuildRequires: -custom_build_tool-gcov
BuildRequires: -custom_build_tool-san
BuildRequires: -custom_build_tool-uploadbuild
Requires: bash rpm-build rpm-sign sed util-linux coreutils gnupg2
%description
provide other method to deal parameter passing for OBS build
%package nocheck
Group: Development/Libraries
BuildArch: noarch
Requires:bash rpm-build sed util-linux coreutils
Requires:custom_build_tool
Summary: add nocheck to rpmbuild
%description nocheck
%package sign
Group: Development/Libraries
BuildArch: noarch
Requires:bash rpm-build rpm-sign sed util-linux coreutils gnupg2
Requires:custom_build_tool
Summary: add sign to rpmbuild
%description sign
%package nodebug
Group: Development/Libraries
BuildArch: noarch
Requires:bash rpm-build sed util-linux coreutils
Requires:custom_build_tool
Summary: change debug error to warning for rpmbuild
%description nodebug
%package target
Group: Development/Libraries
BuildArch: noarch
Requires:bash rpm-build sed util-linux coreutils
Requires:custom_build_tool
Summary: add target to rpmbuild
%description target
%package gcov
Group:Development/Libraries
Requires:util-linux rpm grep binutils gcc coreutils rpm-build
Requires:custom_build_tool
BuildRequires:util-linux coreutils
Summary:Build with gcov
%description gcov
%package uploadbuild
Group:Development/Libraries
Requires:util-linux rpm grep binutils gcc coreutils rpm-build pbzip2
Requires:custom_build_tool
BuildRequires:util-linux coreutils
Summary:Collect the rmpbuild/BUILD directory
%description uploadbuild
Collect the rmpbuild/BUILD directory and upload it to the specified server
%package san
Group:Development/Libraries
Requires:util-linux rpm grep binutils gcc coreutils rpm-build
Requires:custom_build_tool
Requires:gcc_secure
BuildRequires:util-linux coreutils
Summary:Build with san
%description san
%package gcov-server
Group:Development/Libraries
Requires:util-linux rpm grep binutils gcc coreutils rpm-build
BuildRequires:util-linux coreutils
Summary:gcov file transfer server
%description gcov-server
%prep
%setup -c -b 1
%build
%if %{with_gcov}
mv ../needgcov-%{version} ./
pushd needgcov-%{version}
export CFLAGS="%{optflags}"
make
popd
%endif
%if %{with_ub}
mv ../needgcov-%{version} ./
pushd needgcov-%{version}
export CFLAGS="%{optflags}"
make
popd
%endif
%install
mkdir -p %{buildroot}/opt/
mkdir -p %{buildroot}/opt/custom_build_tool
mkdir -p %{buildroot}/home/abuild/.gnupg/
mkdir -p %{buildroot}/root/.gnupg/
install -m 700 %{name}-%{version}/*.sh %{buildroot}/opt/custom_build_tool/
install -m 600 %{name}-%{version}/rpmbuild-nocheck %{buildroot}/opt/custom_build_tool/
install -m 600 %{name}-%{version}/rpmbuild-sign %{buildroot}/opt/custom_build_tool/
install -m 600 %{name}-%{version}/rpmbuild-target %{buildroot}/opt/custom_build_tool/
cp -a %{name}-%{version}/gpg/* %{buildroot}/root/.gnupg/
cp -a %{name}-%{version}/gpg/* %{buildroot}/home/abuild/.gnupg/
%if %{with_gcov}
install -m 600 %{name}-%{version}/rpmbuild-gcov %{buildroot}/opt/custom_build_tool/
install -m 755 needgcov-%{version}/client-tool/client-tool-linux %{buildroot}/opt/custom_build_tool/
install -m 644 needgcov-%{version}/client-tool/cmdlist %{buildroot}/opt/custom_build_tool/
install -m 755 needgcov-%{version}/upload.sh %{buildroot}/opt/custom_build_tool/
install -m 755 needgcov-%{version}/server-tool/server-tool-linux %{buildroot}/opt/custom_build_tool/
install -m 644 needgcov-%{version}/server-tool/config.ini %{buildroot}/opt/custom_build_tool/
%endif
%if %{with_san}
install -m 600 %{name}-%{version}/rpmbuild-san %{buildroot}/opt/custom_build_tool/
%endif
%if %{with_ub}
install -m 600 %{name}-%{version}/rpmbuild-ub %{buildroot}/opt/custom_build_tool/
install -m 755 needgcov-%{version}/client-tool/client-tool-linux %{buildroot}/opt/custom_build_tool/
install -m 644 needgcov-%{version}/client-tool/cmdlist %{buildroot}/opt/custom_build_tool/
install -m 755 needgcov-%{version}/upload_build.sh %{buildroot}/opt/custom_build_tool/
%endif
%post
bash /opt/custom_build_tool/custom_build_tool.sh
%post nocheck
sed -i '/####add parameter start/r /opt/custom_build_tool/rpmbuild-nocheck' /usr/bin/rpmbuild
%post sign
sed -i '/####add parameter start/r /opt/custom_build_tool/rpmbuild-sign' /usr/bin/rpmbuild
%post nodebug
sed -i 's/strict=true/strict=false/' /usr/lib/rpm/find-debuginfo.sh
%post target
sed -i '/####add parameter start/r /opt/custom_build_tool/rpmbuild-target' /usr/bin/rpmbuild
echo "abuild ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
%if %{with_gcov}
%post gcov
cp -a /usr/bin/mv /usr/bin/gmv
chmod 4777 /usr/bin/gmv
sed -i '/####add parameter start/r /opt/custom_build_tool/rpmbuild-gcov' /usr/bin/rpmbuild
old_gcc=/usr/bin/gcc
old_gplus=/usr/bin/g++
old_rpmbuild=/usr/bin/rpmbuild
old_cplus=/usr/bin/c++
cat <<END1 > ${old_rpmbuild}-gcov
#!/bin/sh -x
${old_rpmbuild} "\$@"
ret=\$?
if [ \$ret -eq 0 ]; then
source /opt/custom_build_tool/upload.sh
echo "Gcov version has been compiledddddddddddddddddddddddddddd"
else
if file /usr/bin/gcc | grep ELF; then
exit \$ret
else
/usr/bin/gmv ${old_gcc}_gcov $old_gcc
/usr/bin/gmv ${old_gplus}_gcov $old_gplus
if [ -d /home/abuild/rpmbuild/BUILD ]; then
rm -rf /home/abuild/rpmbuild/BUILD
rm -rf /home/abuild/rpmbuild/BUILDROOT
else
rm -rf /root/rpmbuild/BUILD
rm -rf /root/rpmbuild/BUILDROOT
fi
${old_rpmbuild} "\$@"
ret=\$?
if [ \$ret -eq 0 ]; then
source /opt/custom_build_tool/upload.sh
else
exit \$ret
fi
fi
fi
END1
chmod 755 ${old_rpmbuild}-gcov
# add gcc args
mv $old_gcc $old_gcc"_gcov"
cat <<END1 > $old_gcc
#!/bin/sh -x
echo "\$@" | grep conftest &>/tmp/tmp.tmp
ret=\$?
if [ \$ret -eq 0 ]; then
${old_gcc}_gcov "\$@"
else
${old_gcc}_gcov %{?_with_gcov_args} "\$@"
fi
END1
chmod 755 $old_gcc $old_gcc"_gcov"
# add gplus args
if [ -f $old_gplus ]; then
mv $old_gplus $old_gplus"_gcov"
cat <<END1 > $old_gplus
#!/bin/sh -x
echo "\$@" | grep conftest &>/tmp/tmp.tmp
ret=\$?
if [ \$ret -eq 0 ]; then
${old_gplus}_gcov "\$@"
else
${old_gplus}_gcov %{?_with_gcov_args} "\$@"
fi
END1
chmod 755 $old_gplus $old_gplus"_gcov"
fi
# add cplus args
if [ -f $old_cplus ]; then
mv $old_cplus $old_cplus"_gcov"
cat <<END1 > $old_cplus
#!/bin/sh
echo "\$@" | grep conftest &>/tmp/tmp.tmp
ret=\$?
if [ \$ret -eq 0 ]; then
${old_cplus}_gcov "\$@"
else
${old_cplus}_gcov %{?_with_gcov_args} "\$@"
fi
END1
chmod 755 $old_cplus $old_cplus"_gcov"
fi
%endif
%if %{with_ub}
%post uploadbuild
sed -i '/####add parameter start/r /opt/custom_build_tool/rpmbuild-ub' /usr/bin/rpmbuild
bin_rpmbuild=/usr/bin/rpmbuild
cmd_rpmbuild=/usr/bin/rpmbuild-ub
cat <<END1 > ${cmd_rpmbuild}
#!/bin/sh -x
${bin_rpmbuild} "\$@"
ret=\$?
if [ \$ret -ne 0 ]; then
exit \$ret
fi
source /opt/custom_build_tool/upload_build.sh
END1
chmod 755 ${cmd_rpmbuild}
%endif
%if %{with_san}
%post san
cp -a /usr/bin/mv /usr/bin/gmv
chmod 4777 /usr/bin/gmv
sed -i '/####add parameter start/r /opt/custom_build_tool/rpmbuild-san' /usr/bin/rpmbuild
old_gcc=/usr/bin/gcc
old_gplus=/usr/bin/g++
old_rpmbuild=/usr/bin/rpmbuild
old_cplus=/usr/bin/c++
ulimit -v unlimited
ulimit -a
sed '2 i export ASAN_OPTIONS=abort_on_error=0:disable_coredump=0:detect_leaks=0\nexport LD_PRELOAD=/usr/lib64/libasan.so.4' -i /usr/lib/rpm/find-debuginfo.sh
head /usr/lib/rpm/find-debuginfo.sh
sed -i "$ a* hard as unlimited\n* soft as unlimited" /etc/security/limits.conf
cat <<END1 > ${old_rpmbuild}-san
#!/bin/sh -x
ulimit -v unlimited
ulimit -a
export ASAN_OPTIONS=detect_leaks=0:halt_on_error=0
${old_rpmbuild} "\$@"
ret=\$?
echo "SAN version has been compiledddddddddddddddddddddddddddd"
exit \$ret
END1
chmod 755 ${old_rpmbuild}-san
# add gcc args
mv $old_gcc $old_gcc"_san"
cat <<END1 > $old_gcc
#!/bin/sh
echo "\$@" | grep conftest &>/tmp/tmp.tmp
ret=\$?
if [ \$ret -eq 0 ]; then
${old_gcc}_san "\$@"
else
${old_gcc}_san %{?_with_san_args} "\$@"
fi
END1
chmod 755 $old_gcc $old_gcc"_san"
# add gplus args
if [ -f $old_gplus ]; then
mv $old_gplus $old_gplus"_san"
cat <<END1 > $old_gplus
#!/bin/sh
echo "\$@" | grep conftest &>/tmp/tmp.tmp
ret=\$?
if [ \$ret -eq 0 ]; then
${old_gplus}_san "\$@"
else
${old_gplus}_san %{?_with_san_args} "\$@"
fi
END1
chmod 755 $old_gplus $old_gplus"_san"
fi
# add cplus args
if [ -f $old_cplus ]; then
mv $old_cplus $old_cplus"_san"
cat <<END1 > $old_cplus
#!/bin/sh
echo "\$@" | grep conftest &>/tmp/tmp.tmp
ret=\$?
if [ \$ret -eq 0 ]; then
${old_cplus}_san "\$@"
else
${old_cplus}_san %{?_with_san_args} "\$@"
fi
END1
chmod 755 $old_cplus $old_cplus"_san"
fi
%endif
%preun
%postun
rm -rf /opt/custom_build_tool/custom_build_tool.sh
%postun nocheck
rm -rf /opt/custom_build_tool/rpmbuild-nocheck
%postun sign
rm -rf /opt/custom_build_tool/rpmbuild-sign
%postun target
rm -rf /opt/custom_build_tool/rpmbuild-target
%if %{with_gcov}
%postun gcov
rm -rf /opt/custom_build_tool/rpmbuild-gcov
%endif
%if %{with_san}
%postun san
rm -rf /opt/custom_build_tool/rpmbuild-san
%endif
%if %{with_ub}
%postun uploadbuild
rm -rf /opt/custom_build_tool/rpmbuild-ub
%endif
%files
%defattr(-,root,root)
%dir /opt
%dir /opt/custom_build_tool
/opt/custom_build_tool/custom_build_tool.sh
%files nocheck
%defattr(-,root,root)
%dir /opt
%dir /opt/custom_build_tool
/opt/custom_build_tool/rpmbuild-nocheck
%files sign
%defattr(-,root,root)
%dir /opt
%dir /opt/custom_build_tool
/root/.gnupg/*
/home/abuild/.gnupg/*
/opt/custom_build_tool/rpmbuild-sign
%files nodebug
%defattr(-,root,root)
%if %{with_gcov}
%files gcov
%defattr(-,root,root)
%dir /opt
%dir /opt/custom_build_tool
/opt/custom_build_tool/rpmbuild-gcov
/opt/custom_build_tool/upload.sh
/opt/custom_build_tool/client-tool-linux
/opt/custom_build_tool/cmdlist
%files gcov-server
%defattr(-,root,root)
%dir /opt/custom_build_tool
/opt/custom_build_tool/server-tool-linux
/opt/custom_build_tool/config.ini
%endif
%if %{with_ub}
%files uploadbuild
%defattr(-,root,root)
%dir /opt
%dir /opt/custom_build_tool
/opt/custom_build_tool/rpmbuild-ub
/opt/custom_build_tool/upload_build.sh
/opt/custom_build_tool/client-tool-linux
/opt/custom_build_tool/cmdlist
%endif
%if %{with_san}
%files san
%defattr(-,root,root)
%dir /opt
%dir /opt/custom_build_tool
/opt/custom_build_tool/rpmbuild-san
%endif
%files target
%defattr(-,root,root)
%dir /opt
%dir /opt/custom_build_tool
/opt/custom_build_tool/rpmbuild-target
%clean
rm -rf $RPM_BUILD_ROOT/*
rm -rf %{_tmppath}/%{name}-%{version}
rm -rf $RPM_BUILD_DIR/%{name}-%{version}
%changelog
* Wed Jun 12 2019 guoqinglan<guoqinglan@huawei.com> - 1.0-17
- Type:enhancement
- ID:NA
- SUG:NA
- DESC: add rpmbuild upload whitelist mechanism
* Mon Jun 03 2019 guoqinglan<guoqinglan@huawei.com> - 1.0-16
- Type:enhancement
- ID:NA
- SUG:NA
- DESC: cancel rpmbuild failed upload cation
* Wed May 29 2019 guoqinglan<guoqinglan@huawei.com> - 1.0-15
- Type:enhancement
- ID:NA
- SUG:NA
- DESC: modify upload package name
* Wed May 29 2019 guoqinglan<guoqinglan@huawei.com> - 1.0-14
- Type:enhancement
- ID:NA
- SUG:NA
- DESC:add uploadbuild pkg
* Tue Apr 16 2019 wangqing<wangqing54@huawei.com> - 1.0-13
- Type:enhancement
- ID:NA
- SUG:NA
- DESC:fix cups sign failed
* Thu Apr 11 2019 wangqing<wangqing54@huawei.com> - 1.0-12
- Type:enhancement
- ID:NA
- SUG:NA
- DESC:Update key
* Mon Apr 01 2019 liuxueping<liuxueping1@huawei.com> - 1.0-11
- Type:enhancement
- ID:NA
- SUG:NA
- DESC: no buildrequires rpms about tool
* Thu Dec 06 2018 liuxueping<liuxueping1@huawei.com> - 1.0-10
- Type:enhancement
- ID:NA
- SUG:NA
- DESC: fix build failed in fedora29
* Thu Sep 20 2018 shanshishi<shanshishi@huawei.com> - 1.0-9
- Type:enhancement
- ID:NA
- SUG:NA
- DESC: fix duplicate and redundant code
* Tue Sep 7 2018 zhangpengfei<zhangpengfei14@huawei.com> - 1.0-8
- Type:enhancement
- ID:NA
- SUG:NA
- DESC:update gcov kernel build
* Tue Aug 27 2018 zhangpengfei<zhangpengfei14@huawei.com> - 1.0-7
- Type:enhancement
- ID:NA
- SUG:NA
- DESC:add gcov features
* Tue Aug 7 2018 zhangpengfei <zhangpengfei14@huawei.com> - 1.0.6
- Type:develop
- SUG:NA
- DESC:add nodebug target from RTOS
* Thu Jun 14 2018 zhangpengfei <zhangpengfei14@huawei.com> - 1.0.5
- Type:bugfix
- SUG:NA
- DESC:update the gpgkey to EulerOS SP5
* Thu Sep 14 2017 linyan <chentongbiao@huawei.com> - 1.0.4
- Type:bugfix
- SUG:NA
- DESC:update the gpgkey to EulerOS SP3
* Wed Aug 2 2017 linyan <linyanly.lin@huawei.com> - 1.0.3
- update releaes for obs build
* Fri Apr 28 2017 zwx326075 <zhangpengfei14@huawei.com> - 1.0.2
- add rpmbuild --sign option build on obs worker
* Thu Apr 13 2017 zwx326075 <zhangpengfei14@huawei.com> - 1.0.1
- init package, add rpmbuild --nocheck function