mirror of
https://github.com/YunoHost/vinaigrette.git
synced 2024-09-03 20:06:11 +02:00
Add support for bookworm ?
This commit is contained in:
parent
c245f996d0
commit
b0a7f727d4
4 changed files with 19 additions and 2 deletions
|
@ -23,3 +23,16 @@ Description: YunoHost repository for Debian Bullseye
|
||||||
SignWith: 83BD9E70
|
SignWith: 83BD9E70
|
||||||
Tracking: all includechanges keepsources
|
Tracking: all includechanges keepsources
|
||||||
Log: logfile
|
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
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
readonly THISSCRIPT=$0
|
readonly THISSCRIPT=$0
|
||||||
readonly DISTRIBS="buster bullseye"
|
readonly DISTRIBS="buster bullseye bookworm"
|
||||||
readonly TIMETAG="$(date +%Y%m%d%H%M)"
|
readonly TIMETAG="$(date +%Y%m%d%H%M)"
|
||||||
readonly PACKAGES="moulinette SSOwat yunohost yunohost-admin"
|
readonly PACKAGES="moulinette SSOwat yunohost yunohost-admin"
|
||||||
readonly FORCE="false"
|
readonly FORCE="false"
|
||||||
|
@ -45,6 +45,7 @@ function build_if_needed()
|
||||||
|
|
||||||
[[ $DISTRIB == "buster" ]] && BRANCH_NIGHTLY="buster"
|
[[ $DISTRIB == "buster" ]] && BRANCH_NIGHTLY="buster"
|
||||||
[[ $DISTRIB == "bullseye" ]] && BRANCH_NIGHTLY="dev"
|
[[ $DISTRIB == "bullseye" ]] && BRANCH_NIGHTLY="dev"
|
||||||
|
[[ $DISTRIB == "bookworm" ]] && BRANCH_NIGHTLY="bookworm"
|
||||||
|
|
||||||
cd $GIT_REPOS/$PACKAGE
|
cd $GIT_REPOS/$PACKAGE
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ Usage:
|
||||||
$THISSCRIPT <distrib> <branch> <folder>
|
$THISSCRIPT <distrib> <branch> <folder>
|
||||||
|
|
||||||
Arguments:
|
Arguments:
|
||||||
<distrib> buster or bullseye
|
<distrib> buster or bullseye or bookworm
|
||||||
<branch> stable, testing, or unstable
|
<branch> stable, testing, or unstable
|
||||||
<folder> the folder in which to build...
|
<folder> the folder in which to build...
|
||||||
<archs> list of archs to build (or empty for autodetect). For example: amd63,armhf
|
<archs> list of archs to build (or empty for autodetect). For example: amd63,armhf
|
||||||
|
|
|
@ -12,6 +12,9 @@ then
|
||||||
elif [[ "$(echo $VERSION | awk -F'.' '{print $1}')" == "11" ]]
|
elif [[ "$(echo $VERSION | awk -F'.' '{print $1}')" == "11" ]]
|
||||||
then
|
then
|
||||||
readonly DISTRIB="bullseye"
|
readonly DISTRIB="bullseye"
|
||||||
|
elif [[ "$(echo $VERSION | awk -F'.' '{print $1}')" == "12" ]]
|
||||||
|
then
|
||||||
|
readonly DISTRIB="bookworm"
|
||||||
else
|
else
|
||||||
readonly DISTRIB="fixyoversionnumberbruh"
|
readonly DISTRIB="fixyoversionnumberbruh"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue