From e895c616920a378f12b5c436571551e0b70fc5b4 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 5 Aug 2022 20:17:27 +0200 Subject: Updating. Signed-off-by: Daniel Baumann --- bin/git-debian-changelog | 4 ++-- web/update | 7 +++++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/bin/git-debian-changelog b/bin/git-debian-changelog index c514cf9..a1bd245 100755 --- a/bin/git-debian-changelog +++ b/bin/git-debian-changelog @@ -189,9 +189,9 @@ fi if [ -n "${ID}" ] then - gbp dch --spawn-editor=never ${DISTRIBUTION} ${VERSION} --urgency ${URGENCY} --git-log="--no-show-signature" --debian-branch $(git branch --show-current) --git-author --release --since ${ID} ${CUSTOMIZATION} ${@} + echo | gbp dch --spawn-editor=never ${DISTRIBUTION} ${VERSION} --urgency ${URGENCY} --git-log="--no-show-signature" --debian-branch $(git branch --show-current) --git-author --release --since ${ID} ${CUSTOMIZATION} ${@} else - gbp dch --spawn-editor=never ${DISTRIBUTION} ${VERSION} --urgency ${URGENCY} --git-log="--no-show-signature" --auto --debian-branch $(git branch --show-current) --git-author --release ${CUSTOMIZATION} ${@} + echo | gbp dch --spawn-editor=never ${DISTRIBUTION} ${VERSION} --urgency ${URGENCY} --git-log="--no-show-signature" --auto --debian-branch $(git branch --show-current) --git-author --release ${CUSTOMIZATION} ${@} fi if [ -n "${DIST}" ] diff --git a/web/update b/web/update index 2575031..cd2d1e1 100755 --- a/web/update +++ b/web/update @@ -46,7 +46,7 @@ case "${MODE}" in graograman) #UPSTREAM_DISTRIBUTIONS="bookworm bookworm-updates bookworm-proposed-updates" - UPSTREAM_DISTRIBUTIONS="sid experimental" + UPSTREAM_DISTRIBUTIONS="sid" DOWNSTREAM_DISTRIBUTION="graograman" DOWNSTREAM_MIRROR="https://apt.progress-linux.org/packages" DOWNSTREAM_TAG="progress" @@ -139,7 +139,10 @@ Download_upstream_indices () ;; *) - wget -q -O - "http://security.debian.org/dists/${DISTRIBUTION}/updates/${SECTION}/binary-${ARCHITECTURE}/Packages.xz" | xz -d >> "upstream.${MODE}.binaries" + if wget -q -O /dev/null "http://security.debian.org/dists/${DISTRIBUTION}/updates/${SECTION}/binary-${ARCHITECTURE}/Packages.xz" + then + wget -q -O - "http://security.debian.org/dists/${DISTRIBUTION}/updates/${SECTION}/binary-${ARCHITECTURE}/Packages.xz" | xz -d >> "upstream.${MODE}.binaries" + fi ;; esac done -- cgit v1.2.3