Skip to content

Commit

Permalink
Use jprochazka fork until Trixie fix is merged.
Browse files Browse the repository at this point in the history
  • Loading branch information
jprochazka committed Jul 23, 2024
1 parent 3c07466 commit 6e5727a
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion bash/feeders/piaware.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

# THE FLIGHTAWARE PIAWARE CLIENT SETUP SCRIPT

# JPROCHAZKA/PIAWARE_BUILDER REPOSITORY
# -----------------------------------------------------------------------------------
# I submitted a fix to support Debian Trixie and Ubuntu Noble Numbat to FlightAware's
# piaware_builder repository. Until the changes are merged into their Git reposiory
# the installation will be done using the fork I created along with the branch which
# contains the changes needed in order to build the package.
#
# https://github.com/flightaware/piaware_builder/pull/26

# TCLTLS-REBUILD
# -----------------------------------------------------------------------------------
# Along with PiAware, a version of tcltls maintained by FlightAware can be installed.
Expand Down Expand Up @@ -167,7 +176,16 @@ else
cd $RECEIVER_BUILD_DIRECTORY
log_message "Cloning the piaware_builder git repository locally"
echo ""
git clone https://github.com/flightaware/piaware_builder.git 2>&1 | tee -a $RECEIVER_LOG_FILE

# --- START TEMPORARY NOBLE FIX ---
if [[ "${RECEIVER_OS_CODE_NAME}" == "noble" ]]; then
git clone https://github.com/jprochazka/piaware_builder.git 2>&1 | tee -a $RECEIVER_LOG_FILE
else
git clone https://github.com/flightaware/piaware_builder.git 2>&1 | tee -a $RECEIVER_LOG_FILE
fi

#git clone https://github.com/flightaware/piaware_builder.git 2>&1 | tee -a $RECEIVER_LOG_FILE
# --- END TEMPORARY NOBLE FIX ---
fi


Expand All @@ -178,6 +196,12 @@ log_heading "Beginning the FlightAware PiAware installation process"
log_message "Entering the piaware_builder git repository directory"
cd $RECEIVER_BUILD_DIRECTORY/piaware_builder

# --- START TEMPORARY NOBLE FIX ---
if [[ "${RECEIVER_OS_CODE_NAME}" == "noble" ]]; then
git checkout trixie
fi
# --- END TEMPORARY NOBLE FIX ---

log_message "Determining which piaware_builder build strategy should be use"
distro="bookworm"
case $RECEIVER_OS_CODE_NAME in
Expand Down

0 comments on commit 6e5727a

Please sign in to comment.