From 9f52c4becccdef5d2529dc65015b0e16b1419ba7 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Tue, 5 Mar 2024 22:42:14 +0100 Subject: [PATCH] Drop support for buster --- config/distributions | 13 ------------- rebuild-unstable | 3 +-- scripts/build_deb | 2 +- scripts/ynh-custom-builds | 1 - ynh-build | 5 +---- 5 files changed, 3 insertions(+), 21 deletions(-) diff --git a/config/distributions b/config/distributions index d7d09d8..9e466bd 100644 --- a/config/distributions +++ b/config/distributions @@ -1,16 +1,3 @@ -Origin: YunoHost -Label: YunoHost for Buster -Suite: stable -Codename: buster -Version: 10.0 -Architectures: i386 amd64 armel armhf arm64 source -Components: stable testing unstable extra -AlsoAcceptFor: buster-stable buster-testing buster-unstable stable testing unstable -Description: YunoHost repository for Debian Buster -SignWith: 59A3E6FF -Tracking: all includechanges keepsources -Log: logfile - Origin: YunoHost Label: YunoHost for Bullseye Suite: stable diff --git a/rebuild-unstable b/rebuild-unstable index 9a9a9ab..e0ce564 100755 --- a/rebuild-unstable +++ b/rebuild-unstable @@ -1,7 +1,7 @@ #!/bin/bash readonly THISSCRIPT=$0 -readonly DISTRIBS="buster bullseye bookworm" +readonly DISTRIBS="bullseye bookworm" readonly TIMETAG="$(date +%Y%m%d%H%M)" readonly PACKAGES="moulinette SSOwat yunohost yunohost-admin" readonly FORCE="false" @@ -43,7 +43,6 @@ function build_if_needed() local DISTRIB=$2 local LAST_BUILD_FOR_THIS_PACKAGE=$LAST_BUILDS_CACHE/${DISTRIB}_${PACKAGE} - [[ $DISTRIB == "buster" ]] && BRANCH_NIGHTLY="buster" [[ $DISTRIB == "bullseye" ]] && BRANCH_NIGHTLY="dev" [[ $DISTRIB == "bookworm" ]] && BRANCH_NIGHTLY="bookworm" diff --git a/scripts/build_deb b/scripts/build_deb index c1e9440..b6e7758 100755 --- a/scripts/build_deb +++ b/scripts/build_deb @@ -21,7 +21,7 @@ Usage: $THISSCRIPT Arguments: - buster or bullseye or bookworm + bullseye or bookworm stable, testing, or unstable the folder in which to build... list of archs to build (or empty for autodetect). For example: amd63,armhf diff --git a/scripts/ynh-custom-builds b/scripts/ynh-custom-builds index 39dc8e3..73a2210 100755 --- a/scripts/ynh-custom-builds +++ b/scripts/ynh-custom-builds @@ -4,7 +4,6 @@ readonly THISSCRIPT=$0 readonly PACKAGE=$1 readonly BRANCH=$2 readonly DISTRIB="bullseye" -#readonly DISTRIB="buster" readonly DISTRIB_N="11" source /home/vinaigrette/config/config diff --git a/ynh-build b/ynh-build index 3d60b2f..b9becc1 100755 --- a/ynh-build +++ b/ynh-build @@ -6,10 +6,7 @@ readonly BRANCH=$2 readonly VERSION=$3 readonly TAG=$(echo "debian/$VERSION" | tr '~' '-') -if [[ "$(echo $VERSION | awk -F'.' '{print $1}')" == "4" ]] -then - readonly DISTRIB="buster" -elif [[ "$(echo $VERSION | awk -F'.' '{print $1}')" == "11" ]] +if [[ "$(echo $VERSION | awk -F'.' '{print $1}')" == "11" ]] then readonly DISTRIB="bullseye" elif [[ "$(echo $VERSION | awk -F'.' '{print $1}')" == "12" ]]