From 6240a153a34190dce3096531599c10eaa2b22617 Mon Sep 17 00:00:00 2001 From: lcrpkking Date: Thu, 9 Feb 2023 03:26:29 +0000 Subject: [PATCH] add rsync as buildrequire Signed-off-by: lcrpkking --- rubyporter | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rubyporter b/rubyporter index 60b78a2..f4036c5 100755 --- a/rubyporter +++ b/rubyporter @@ -153,6 +153,7 @@ class RubyPorter: print(buildreq_tag_template.format(req='ruby-devel')) print(buildreq_tag_template.format(req='rubygems')) print(buildreq_tag_template.format(req='rubygems-devel')) + print(buildreq_tag_template.format(req='rsync')) if not self.__build_noarch: print(buildreq_tag_template.format(req='gcc')) print(buildreq_tag_template.format(req='gdb')) @@ -404,4 +405,4 @@ if __name__ == "__main__": elif args.download: download_source(porter, args.path) elif args.json: - porter.store_json(args.path) \ No newline at end of file + porter.store_json(args.path) -- Gitee