1 Star 0 Fork 32

hantwofish/gazelle_1

forked from src-openEuler/gazelle 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0248-tools-fix-sync-patch-script-date-wrong-and-update-th.patch 1.62 KB
一键复制 编辑 原始数据 按行查看 历史
From ccab3a40054a7d95e144bca8f9e0fd0c376cbaf6 Mon Sep 17 00:00:00 2001
From: yinbin <yinbin8@huawei.com>
Date: Mon, 26 Aug 2024 21:12:17 +0800
Subject: [PATCH] tools: fix sync patch script date wrong and update the way
get patchnum
---
tools/sync-gazelle-src.sh | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
diff --git a/tools/sync-gazelle-src.sh b/tools/sync-gazelle-src.sh
index 8d44ca2..142e770 100644
--- a/tools/sync-gazelle-src.sh
+++ b/tools/sync-gazelle-src.sh
@@ -63,10 +63,16 @@ for commitid in ${COMMIT_ID};do
git checkout -b $TARGET_BRANCH origin/$TARGET_BRANCH
git pull https://gitee.com/src-openeuler/gazelle.git $TARGET_BRANCH
fi
- patchnum=$(ls ./*.patch | wc -l)
- let patchnum+=1
- let Patchnum=9000+$patchnum
- patchnum=$(printf "%04d\n" $patchnum)
+
+ #get patchnum from spec file.
+ patchnum=$(grep -o "Patch[0-9]\+" *.spec | tail -n 1 | awk -Fh '{print $2}')
+ if [ -z $patchnum ];then
+ #there is no patch in spec file. get patch by conunt patches in dir.
+ patchnum=$(ls ./*.patch | wc -l)
+ let Patchnum=9000+$patchnum
+ patchnum=$(printf "%04d\n" $patchnum)
+ fi
+ let patchnum+=1
new_patchname=$(echo $patchname | sed -e "s/^0001-/${patchnum}-/g")
echo $new_patchname
@@ -82,7 +88,7 @@ for commitid in ${COMMIT_ID};do
#add changelog in spec file
changelog_line=$(grep -n '^%changelog' gazelle.spec | cut -f1 -d':')
- changelog_data=$(date | awk '{print $1,$2,$3,$6}')
+ changelog_data=$(date +"%a %b %d %Y")
changelog_version=$(grep '^Version' gazelle.spec | awk '{print $2}')
if [ -z "$done_once" ];then
--
2.33.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hantwofish/gazelle_1.git
git@gitee.com:hantwofish/gazelle_1.git
hantwofish
gazelle_1
gazelle_1
master

搜索帮助