mirror of
https://github.com/vyos/vyos-build.git
synced 2025-10-01 20:28:40 +02:00
37 lines
1.2 KiB
Bash
Executable File
37 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
CWD=$(pwd)
|
|
set -e
|
|
|
|
FRR_SRC=frr
|
|
|
|
if [ ! -d ${FRR_SRC} ]; then
|
|
echo "FRR source directory does not exists, please 'git clone'"
|
|
exit 1
|
|
fi
|
|
|
|
# VyOS requires some small FRR Patches - apply them here
|
|
# It's easier to habe them here and make use of the upstream
|
|
# repository instead of maintaining a full Fork.
|
|
# Saving time/resources is essential :-)
|
|
cd ${FRR_SRC}
|
|
|
|
PATCH_DIR=${CWD}/patches
|
|
if [ -d $PATCH_DIR ]; then
|
|
echo "I: Apply FRRouting patches not in main repository:"
|
|
for patch in $(ls ${PATCH_DIR})
|
|
do
|
|
if [ -z "$(git config --list | grep -e user.name -e user.email)" ]; then
|
|
# if git user.name and user.email is not set, -c sets temorary user.name and
|
|
# user.email variables as these is not set in the build container by default.
|
|
OPTS="-c user.name=VyOS-CI -c user.email=maintainers@vyos.io"
|
|
fi
|
|
git $OPTS am --committer-date-is-author-date ${PATCH_DIR}/${patch}
|
|
done
|
|
fi
|
|
|
|
# Build Debian FRR package
|
|
echo "I: Build Debian FRR Package"
|
|
# extract "real" git commit for FRR version identifier
|
|
dch -v "$(git describe --tags | cut -c5-)" "VyOS build - FRR"
|
|
dpkg-buildpackage -us -uc -tc -b -Ppkg.frr.rtrlib
|