Compare commits

...

12 Commits

Author SHA1 Message Date
openeuler-ci-bot
4dba3ece89
!366 delete oeAware-manager in rpmlist.xml
From: @zhao-lichang 
Reviewed-by: @shenyangyang01 
Signed-off-by: @shenyangyang01
2024-12-05 10:01:25 +00:00
zhaolichang
8da5a6e6dd delete oeAware-manager in rpmlist.xml 2024-12-05 17:47:31 +08:00
openeuler-ci-bot
475dfbada0
!364 delete libkperf in rpmlist.xml
From: @zhao-lichang 
Reviewed-by: @shenyangyang01 
Signed-off-by: @shenyangyang01
2024-12-05 08:40:37 +00:00
zhaolichang
3b80a3f481 delete libkperf in rpmlist.xml 2024-12-05 15:24:15 +08:00
openeuler-ci-bot
d1c23fad05
!358 delete libkperf and oeAware-manager in minimal install
From: @zhao-lichang 
Reviewed-by: @shenyangyang01 
Signed-off-by: @shenyangyang01
2024-12-04 07:56:50 +00:00
zhaolichang
b4b9341fc1 delete libkperf and oeAware-manager in minimal install 2024-12-04 14:33:04 +08:00
openeuler-ci-bot
ab5ff75901
!352 add libkperf and oeAware-manager
From: @zhao-lichang 
Reviewed-by: @shenyangyang01 
Signed-off-by: @shenyangyang01
2024-12-03 09:07:29 +00:00
zhaolichang
b35914f2f4 add libkperf and oeAware-manager 2024-12-03 15:38:48 +08:00
openeuler-ci-bot
d9d16031f6
!325 【轻量级 PR】:fix bad date in changelog
From: @zhangshaoning_uniontech 
Reviewed-by: @zhuchunyi 
Signed-off-by: @zhuchunyi
2024-07-31 08:18:53 +00:00
openeuler-ci-bot
d26080a498
!334 fix bug IABY7K
From: @wangchong1995924 
Reviewed-by: @t_feng 
Signed-off-by: @t_feng
2024-07-11 03:35:44 +00:00
wangchong1995924
0d8a194e13 fix bug IABY7K 2024-07-11 10:48:33 +08:00
张少宁
485f3973a8
fix bad date in changelog
Signed-off-by: 张少宁 <zhangshaoning@uniontech.com>
2024-06-18 05:25:37 +00:00
2 changed files with 60 additions and 3 deletions

31
0009-bugfix-IABY7K.patch Normal file
View File

@ -0,0 +1,31 @@
From 6c40ee80b6b3e5a723506cad70571347e5bae53e Mon Sep 17 00:00:00 2001
From: wangchong1995924 <15229716099@163.com>
Date: Thu, 11 Jul 2024 10:41:41 +0800
Subject: [PATCH] fix issue IABY7K
diff --git a/isomaker/rpm.sh b/isomaker/rpm.sh
index 85b1042..fde30a0 100644
--- a/isomaker/rpm.sh
+++ b/isomaker/rpm.sh
@@ -167,7 +167,7 @@ function get_edge_rpms()
function get_everything_rpms()
{
- yum list --installroot="${BUILD}"/tmp --available | awk '{print $1}' | grep -E "\.noarch|\.${ARCH}" | grep -v "debuginfo" | grep -v "debugsource" > ava_every_lst
+ yum list --installroot="${BUILD}"/tmp --available | awk '{print $1}' | grep -E "\.noarch|\.${ARCH}" | grep -v "debuginfo\." | grep -v "debugsource\." > ava_every_lst
parse_rpmlist_xml "exclude"
cat parsed_rpmlist_exclude
if [ -s parsed_rpmlist_exclude ];then
@@ -241,7 +241,7 @@ function everything_source_rpms_download()
function everything_debug_rpms_download()
{
mkdir ${EVERY_DEBUG_DIR}
- yum list --installroot="${BUILD}"/tmp --available | awk '{print $1}' | grep -E "debuginfo|debugsource" > ava_debug_lst
+ yum list --installroot="${BUILD}"/tmp --available | awk '{print $1}' | grep -E "debuginfo\.|debugsource\." > ava_debug_lst
yumdownloader --resolve --installroot="${BUILD}"/tmp --destdir="${EVERY_DEBUG_DIR}" $(cat ava_debug_lst | tr '\n' ' ')
if [ $? != 0 ] || [ $(ls ${EVERY_DEBUG_DIR} | wc -l) == 0 ]; then
echo "yumdownloader with --resolve failed, trying to yumdownloader without --resolve"
--
2.27.0

View File

@ -11,7 +11,7 @@ Summary: a building tool for DVD ISO making and ISO cutting
License: Mulan PSL v2
Group: System/Management
Version: 2.0.3
Release: 11
Release: 16
BuildRoot: %{_tmppath}/%{name}
Source: https://gitee.com/openeuler/oemaker/repository/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
@ -32,6 +32,7 @@ Patch0005: 0005-add-fpi_tail-param-for-grub.patch
Patch0006: 0006-support-usb-flash-drive-mode.patch
Patch0007: 0007-restore-env-after-selinux-status-changes.patch
Patch0008: 0008-automated-kickstart-function.patch
Patch0009: 0009-bugfix-IABY7K.patch
%description
a building tool for DVD ISO making and ISO cutting
@ -135,6 +136,31 @@ rm -rf %{buildroot}
rm -rf $RPM_BUILD_DIR/%{name}
%changelog
* Thu Dec 5 2024 zhaolichang <zhaolichang@huawei.com> - 2.0.3-16
- ID:NA
- SUG:NA
- DESC: delete oeAware-manager in rpmlist.xml
* Thu Dec 5 2024 zhaolichang <zhaolichang@huawei.com> - 2.0.3-15
- ID:NA
- SUG:NA
- DESC: delete libkperf in rpmlist.xml
* Wed Dec 4 2024 zhaolichang <zhaolichang@huawei.com> - 2.0.3-14
- ID:NA
- SUG:NA
- DESC: delete libkperf and oeAware-manager in minimal install
* Tue Dec 3 2024 zhaolichang <zhaolichang@huawei.com> - 2.0.3-13
- ID:NA
- SUG:NA
- DESC: add libkperf and oeAware-manager
* Wed Jul 10 2024 wangchong <wangchong56@huawei.com> - 2.0.3-12
- ID:NA
- SUG:NA
- DESC: fix issue IABY7K
* Mon Oct 23 2023 chenhuihan <chenhuihan@huawei.com> - 2.0.3-11
- ID:NA
- SUG:NA
@ -215,12 +241,12 @@ rm -rf $RPM_BUILD_DIR/%{name}
- SUG:NA
- DESC: bugfix I3QY98
* TUE May 11 2021 imxcc <xingchaochao@huawei.com> - 2.0.0-3
* Tue May 11 2021 imxcc <xingchaochao@huawei.com> - 2.0.0-3
- ID:NA
- SUG:NA
- DESC: add qemu-block-iscsi in virtualization-hypervisor group
* TUE May 11 2021 XuFei <xufei30@huawei.com> - 2.0.0-2
* Tue May 11 2021 XuFei <xufei30@huawei.com> - 2.0.0-2
- ID:NA
- SUG:NA
- DESC: add stratovirt in virtualization-hypervisor group