summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_indexes.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-01-15 11:38:02 +0100
committerHolger Levsen <holger@layer-acht.org>2015-01-15 11:38:02 +0100
commita0bf06c658bb16117552e0575a8c7296dc9e9d21 (patch)
tree387b0584ba4c78eba3def77336e0990f5399a20d /bin/reproducible_html_indexes.sh
parent8393811602eecf89ee533a3e87acb1cca7ac50f4 (diff)
downloadjenkins.debian.net-a0bf06c658bb16117552e0575a8c7296dc9e9d21.tar.xz
reproducible: stop treating creating .buildinfo files specially (as every build creates it nowadays)
Diffstat (limited to 'bin/reproducible_html_indexes.sh')
-rwxr-xr-xbin/reproducible_html_indexes.sh26
1 files changed, 2 insertions, 24 deletions
diff --git a/bin/reproducible_html_indexes.sh b/bin/reproducible_html_indexes.sh
index 371e206a..d65a3dd3 100755
--- a/bin/reproducible_html_indexes.sh
+++ b/bin/reproducible_html_indexes.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-# Copyright 2014 Holger Levsen <holger@layer-acht.org>
+# Copyright 2014-2015 Holger Levsen <holger@layer-acht.org>
# released under the GPLv=2
DEBUG=false
@@ -47,7 +47,6 @@ force_package_targets ${BAD["all"]}
force_package_targets ${UGLY["all"]} ${GOOD["all"]} ${SOURCELESS["all"]} ${NOTFORUS["all"]} $BLACKLISTED
for VIEW in last_24h last_48h all_abc ; do
- BUILDINFO_SIGNS=true
PAGE=index_${VIEW}.html
echo "$(date) - starting to write $PAGE page."
write_page_header $VIEW "Overview of reproducible builds of ${SPOKENTARGET[$VIEW]}"
@@ -100,7 +99,6 @@ for VIEW in last_24h last_48h all_abc ; do
set_icon reproducible
write_icon
write_page "$COUNT_GOOD packages ($PERCENT_GOOD%) successfully built reproducibly$FINISH <code>"
- BUILDINFO_SIGNS=false
link_packages ${GOOD[$VIEW]}
write_page "</code></p>"
write_page_meta_sign
@@ -114,7 +112,6 @@ count_packages() {
}
for STATE in $ALLSTATES ; do
- BUILDINFO_SIGNS=false
PAGE=index_${STATE}.html
echo "$(date) - starting to write $PAGE page."
write_page_header $STATE "Overview of ${SPOKENTARGET[$STATE]}"
@@ -122,26 +119,7 @@ for STATE in $ALLSTATES ; do
case "$STATE" in
reproducible) PACKAGES=${GOOD["all"]}
;;
- FTBR) CANDIDATES=${BAD["all"]}
- PACKAGES=""
- for PKG in $CANDIDATES ; do
- set_package_star
- if [ "$STAR" = "" ] ; then
- PACKAGES="$PACKAGES $PKG"
- fi
- done
- ;;
- FTBR_with_buildinfo)
- BUILDINFO_SIGNS=true
- CANDIDATES=${BAD["all"]}
- PACKAGES=""
- for PKG in $CANDIDATES ; do
- set_package_star
- if [ "$STAR" != "" ] ; then
- PACKAGES="$PACKAGES $PKG"
- fi
- done
- WITH="YES"
+ FTBR) PACKAGES=${BAD["all"]}
;;
FTBFS) PACKAGES=${UGLY["all"]}
;;