Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
openEuler-Advisor
提交
13226e0e
O
openEuler-Advisor
项目概览
openeuler
/
openEuler-Advisor
通知
43
Star
4
Fork
4
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
O
openEuler-Advisor
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
13226e0e
编写于
6月 03, 2020
作者:
S
Shinwell Hu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix lint issue
上级
192444c0
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
13 addition
and
13 deletion
+13
-13
simple-update-robot.py
simple-update-robot.py
+13
-13
未找到文件。
simple-update-robot.py
浏览文件 @
13226e0e
...
...
@@ -39,7 +39,7 @@ def download_source_url(spec, o_ver, n_ver):
return
False
def
download_upstream_url
(
gt
,
repo
,
o_ver
,
n_ver
):
def
download_upstream_url
(
gt
,
repo
,
n_ver
):
"""
Download source from upstream metadata URL
"""
...
...
@@ -100,28 +100,24 @@ if __name__ == "__main__":
pars
.
add_argument
(
"-p"
,
"--PR"
,
help
=
"Create upgrade PR"
,
action
=
"store_true"
)
args
=
pars
.
parse_args
()
gt
=
gitee
.
Gitee
()
spec_string
=
gt
.
get_spec
(
args
.
pkg
)
my_gitee
=
gitee
.
Gitee
()
spec_string
=
my_gitee
.
get_spec
(
args
.
pkg
)
spec
=
Spec
.
from_string
(
spec_string
)
if
len
(
spec
.
patches
)
>=
1
:
print
(
"I'm too naive to handle complicated package."
)
print
(
"This package has multiple in-house patches."
)
sys
.
exit
(
1
)
s_spec
=
Spec
.
from_string
(
spec_string
)
if
args
.
fork
:
gt
.
fork_repo
(
args
.
pkg
)
my_gitee
.
fork_repo
(
args
.
pkg
)
if
args
.
clone
:
subprocess
.
call
([
"git"
,
"clone"
,
"git@gitee.com:shinwell_hu/"
+
args
.
pkg
])
subprocess
.
call
([
"git"
,
"clone"
,
"git@gitee.com:shinwell_hu/"
+
args
.
pkg
])
os
.
chdir
(
args
.
pkg
)
if
args
.
download
:
source_file
=
download_source_url
(
spec
,
args
.
old_version
,
args
.
new_version
)
source_file
=
download_source_url
(
s
_s
pec
,
args
.
old_version
,
args
.
new_version
)
if
source_file
:
print
(
source_file
)
else
:
source_file
=
download_upstream_url
(
gt
,
args
.
pkg
,
args
.
old_version
,
args
.
new_version
)
source_file
=
download_upstream_url
(
my_gitee
,
args
.
pkg
,
args
.
new_version
)
if
source_file
:
print
(
source_file
)
else
:
...
...
@@ -129,7 +125,11 @@ if __name__ == "__main__":
sys
.
exit
(
1
)
if
args
.
create_spec
:
if
len
(
spec
.
patches
)
>=
1
:
print
(
"I'm too naive to handle complicated package."
)
print
(
"This package has multiple in-house patches."
)
sys
.
exit
(
1
)
create_spec
(
args
.
pkg
,
spec_string
,
args
.
old_version
,
args
.
new_version
)
if
args
.
PR
:
gt
.
create_pr
(
"shinwell_hu"
,
args
.
pkg
)
my_gitee
.
create_pr
(
"shinwell_hu"
,
args
.
pkg
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录