diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-11-08 22:26:07 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-11-08 22:26:07 +0100 |
commit | 70576f582a10d204b13d9216e62d02c1fc1afba3 (patch) | |
tree | 4691e99baefd7d6428762c6c8311aa8a7bf6b985 /bin | |
parent | 44072e5660de5ad8dfb2a671d1e572f74ebf86c8 (diff) | |
download | jenkins.debian.net-70576f582a10d204b13d9216e62d02c1fc1afba3.tar.xz |
reproducible Debian: rename meta_pkgset.csv to reproducible_pkgsets.csv
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.py | 2 | ||||
-rwxr-xr-x | bin/reproducible_common.sh | 2 | ||||
-rwxr-xr-x | bin/reproducible_create_meta_pkg_sets.sh | 4 | ||||
-rw-r--r-- | bin/reproducible_pkgsets.csv (renamed from bin/meta_pkgset.csv) | 0 |
4 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 443ef9cf..04552d13 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -90,7 +90,7 @@ JENKINS_URL = 'https://jenkins.debian.net' # META_PKGSET[pkgset_id] = (pkgset_name, pkgset_group) # csv file columns: (pkgset_id, pkgset_group, pkgset_name) META_PKGSET = {} -with open(os.path.join(BIN_PATH, './meta_pkgset.csv'), newline='') as f: +with open(os.path.join(BIN_PATH, './reproducible_pkgsets.csv'), newline='') as f: for line in csv.reader(f): META_PKGSET[int(line[0])] = (line[2], line[1]) diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index b4af8375..c7a2d591 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -114,7 +114,7 @@ TABLE[9]=stats_bugs_sin_ftbfs_state while IFS=, read col1 col2 col3 do META_PKGSET[$col1]=$col3 -done < $BIN_PATH/meta_pkgset.csv +done < $BIN_PATH/reproducible_pkgsets.csv # mustache templates PAGE_FOOTER_TEMPLATE=$TEMPLATE_PATH/default_page_footer.mustache diff --git a/bin/reproducible_create_meta_pkg_sets.sh b/bin/reproducible_create_meta_pkg_sets.sh index 5d4dfc89..dcce7603 100755 --- a/bin/reproducible_create_meta_pkg_sets.sh +++ b/bin/reproducible_create_meta_pkg_sets.sh @@ -149,7 +149,7 @@ use_previous_sets_build_depends() { update_pkg_set_specific() { # - # bin/meta_pkgset.csv defines the names of the packages set and their ordering + # bin/reproducible_pkgsets.csv defines the names of the packages set and their ordering # case ${META_PKGSET[$index]} in essential) @@ -266,7 +266,7 @@ update_pkg_set_specific() { fi ;; *_build-depends) - # all build depends of the previous set (as defined in bin/meta_pkgset.csv) + # all build depends of the previous set (as defined in bin/reproducible_pkgsets.csv) use_previous_sets_build_depends ;; kde) # kde and everything it depends on diff --git a/bin/meta_pkgset.csv b/bin/reproducible_pkgsets.csv index 80370645..80370645 100644 --- a/bin/meta_pkgset.csv +++ b/bin/reproducible_pkgsets.csv |