diff --git a/config/distributions b/config/distributions index 92d90de..d7d09d8 100644 --- a/config/distributions +++ b/config/distributions @@ -23,3 +23,16 @@ Description: YunoHost repository for Debian Bullseye SignWith: 83BD9E70 Tracking: all includechanges keepsources Log: logfile + +Origin: YunoHost +Label: YunoHost for Bookworm +Suite: stable +Codename: bookworm +Version: 12.0 +Architectures: i386 amd64 armhf arm64 source +Components: stable testing unstable extra +AlsoAcceptFor: bookworm-stable bookworm-testing bookworm-unstable stable testing unstable +Description: YunoHost repository for Debian Bookworm +SignWith: 3DAC3BD5 +Tracking: all includechanges keepsources +Log: logfile diff --git a/rebuild-unstable b/rebuild-unstable index a5c4680..9a9a9ab 100755 --- a/rebuild-unstable +++ b/rebuild-unstable @@ -1,7 +1,7 @@ #!/bin/bash readonly THISSCRIPT=$0 -readonly DISTRIBS="buster bullseye" +readonly DISTRIBS="buster bullseye bookworm" readonly TIMETAG="$(date +%Y%m%d%H%M)" readonly PACKAGES="moulinette SSOwat yunohost yunohost-admin" readonly FORCE="false" @@ -45,6 +45,7 @@ function build_if_needed() [[ $DISTRIB == "buster" ]] && BRANCH_NIGHTLY="buster" [[ $DISTRIB == "bullseye" ]] && BRANCH_NIGHTLY="dev" + [[ $DISTRIB == "bookworm" ]] && BRANCH_NIGHTLY="bookworm" cd $GIT_REPOS/$PACKAGE diff --git a/scripts/build_deb b/scripts/build_deb index 4029e8a..c1e9440 100755 --- a/scripts/build_deb +++ b/scripts/build_deb @@ -21,7 +21,7 @@ Usage: $THISSCRIPT Arguments: - buster or bullseye + buster or 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/ynh-build b/ynh-build index a54480c..3d60b2f 100755 --- a/ynh-build +++ b/ynh-build @@ -12,6 +12,9 @@ then elif [[ "$(echo $VERSION | awk -F'.' '{print $1}')" == "11" ]] then readonly DISTRIB="bullseye" +elif [[ "$(echo $VERSION | awk -F'.' '{print $1}')" == "12" ]] +then + readonly DISTRIB="bookworm" else readonly DISTRIB="fixyoversionnumberbruh" fi