- 07 9月, 2020 1 次提交
-
-
由 Liu Shaofei 提交于
Load/save yaml with script. So as to normalize format/style. No behavior change. Since future changes will be made by scripts, this separates the more meaningful changes (like adding git url/tags) from trivial format changes. require 'yaml' ARGV.each do |f| h = YAML.load_file f File.open(f, 'w') do |fd| fd.write YAML.dump(h) end end Signed-off-by: NLiu Shaofei <liushaofei5@huawei.com> Signed-off-by: NWu Fengguang <wufengguang@huawei.com>
-
- 22 7月, 2020 1 次提交
-
-
由 Liu Shaofei 提交于
- trivial changes caused by manual created YAML ==> script created YAML +--- version_control: github -src_repo: yaml/pyyaml +src_repo: yaml/pyyaml -separator: . +separator: "." - bug fix -tag_prefix: ^v +tag_prefix: "^" - add git_url (future manual input just needs this) +git_url: https://github.com/yaml/pyyaml.git - add git tags, prefix-and-ordered by date +git_tag: + - 2020-03-18 5.3.1 + - 2020-01-06 5.3 + - 2018-08-16 4.1-retracted + - 2019-12-21 5.3b1 Signed-off-by: NLiu Shaofei <liushaofei5@huawei.com> Signed-off-by: NWu Fengguang <wufengguang@huawei.com>
-
- 04 7月, 2020 1 次提交
-
-
由 Wu Fengguang 提交于
sed -i 's/seperator/separator/g' $(gg -l seperator) Signed-off-by: NWu Fengguang <wufengguang@huawei.com>
-
- 26 4月, 2020 1 次提交
-
-
由 Shinwell Hu 提交于
-