vinaigrette/scripts/ynh-custom-builds

122 lines
2.9 KiB
Text
Raw Normal View History

#!/bin/bash
readonly THISSCRIPT=$0
readonly PACKAGE=$1
readonly BRANCH=$2
2021-02-05 02:18:01 +01:00
readonly DISTRIB="bullseye"
#readonly DISTRIB="buster"
readonly DISTRIB_N="11"
source /home/vinaigrette/config/config
source /home/vinaigrette/scripts/common.sh
# ##### #
# Usage #
# ##### #
function usage()
{
cat << EOF
Usage:
2021-01-27 23:03:13 +01:00
$THISSCRIPT <project> <branch>
Arguments:
<project> metronome or other project name to be built
<branch> stable, testing or unstable
EOF
}
function main()
{
validate_arguments
cd $GIT_REPOS/$PACKAGE
tweak_$PACKAGE
build
}
# ################# #
# Check user inputs #
# ################# #
function validate_arguments()
{
2022-01-19 23:21:15 +01:00
[[ $PACKAGE =~ ^metronome|python-zeroconf|lexicon$ ]] || critical "Invalid package $PACKAGE"
[[ $BRANCH =~ ^testing|stable|unstable$ ]] || critical "Invalid branch $BRANCH"
[[ "$(tty)" != "not a tty" ]] || critical "You aint in a tty (are you in a 'lxc exec' ?) The script can't run because pbuilder won't be happy :|"
}
# ##################### #
# Build recipe / tweaks #
# ##################### #
2021-08-19 19:48:03 +02:00
function tweak_python-zeroconf()
{
readonly VERSION="$(dpkg-parsechangelog -S Version 2>/dev/null)+ynh$DISTRIB_N"
}
2022-01-05 18:17:20 +01:00
function tweak_lexicon()
{
readonly VERSION="$(dpkg-parsechangelog -S Version 2>/dev/null)+ynh$DISTRIB_N-1"
}
2022-01-19 23:21:15 +01:00
#function tweak_miniupnpc()
#{
# readonly VERSION="$(dpkg-parsechangelog -S Version 2>/dev/null)+ynh$DISTRIB_N"
#}
2020-02-12 18:57:37 +01:00
2022-01-19 23:21:15 +01:00
#function tweak_gevent-websocket()
#{
# readonly VERSION="$(dpkg-parsechangelog -S Version 2>/dev/null)+ynh$DISTRIB_N"
#}
2020-02-12 18:57:37 +01:00
function tweak_metronome()
{
2022-01-10 21:50:21 +01:00
readonly VERSION="$(dpkg-parsechangelog -S Version 2>/dev/null)+ynh$DISTRIB_N"
}
function build()
{
# SVERSION is VERSION without the -1 at the end ...
local SVERSION=$(echo $VERSION | tr '-' ' ' | awk '{print $1}')
cd $GIT_REPOS/$PACKAGE
# Tweak the changelog temporarily
info "Setting version in changelog to ${VERSION}"
rm -f debian/changelog.dch
cp debian/changelog debian/changelog.old
dch --package "${PACKAGE}" \
--force-bad-version \
-v "${VERSION}" \
-D "${BRANCH}" \
--force-distribution \
"YunoHost custom build." \
> /dev/null 2>&1
# Create temporary folder
TMP_FOLDER=$(mktemp -d)
# Extract git archive a desired tag
info "Exporting in $TMP_FOLDER ... "
git ls-files | xargs tar -czf archive.tar.gz
cat archive.tar.gz | tar -xz -C $TMP_FOLDER
# For some reason, these wants archive named
# e.g. metronome_x.y.z+stuff.orig.tar.gz
# in the parent folder...
mv archive.tar.gz $TMP_FOLDER/../${PACKAGE}_${SVERSION}.orig.tar.gz
# Build Debian package
cd $TMP_FOLDER
$BUILD_DEB $DISTRIB $BRANCH .
# Restore changelog
info "Restoring previous changelog"
cd $GIT_REPOS/$PACKAGE
cp debian/changelog.old debian/changelog
rm debian/changelog.old
}
[[ "$1" =~ ^-h|--help$ ]] && (usage; exit 0) || main