Skip to content

Commit

Permalink
soapyrtlsdr: remove python as it is not needed (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
wiedehopf authored Sep 13, 2024
1 parent 013afbb commit 036158c
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions Dockerfile.soapyrtlsdr
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,12 @@ RUN set -x && \
TEMP_PACKAGES+=(cmake) && \
TEMP_PACKAGES+=(pkg-config) && \
# dependencies for SoapySDR
KEPT_PACKAGES+=(python3) && \
KEPT_PACKAGES+=(python3-pip) && \
KEPT_PACKAGES+=(python3-setuptools) && \
KEPT_PACKAGES+=(python3-wheel) && \
TEMP_PACKAGES+=(libpython3-dev) && \
KEPT_PACKAGES+=(libpython3.11) && \
KEPT_PACKAGES+=(python3-numpy) && \
KEPT_PACKAGES+=(swig) && \
# install packages
apt-get update && \
apt-get install -y --no-install-recommends \
"${KEPT_PACKAGES[@]}" \
"${TEMP_PACKAGES[@]}" \
&& \
# symlink for default python interpreter
ln -s /usr/bin/python3 /usr/bin/python && \
# SoapySDR: get latest tag
BRANCH_SOAPYSDR=$(git -c 'versionsort.suffix=-' ls-remote --tags --sort='v:refname' 'https://github.com/pothosware/SoapySDR.git' | grep -v '\^' | cut -d '/' -f 3 | grep '^soapy-sdr-.*' | tail -1) && \
# SoapySDR: clone latest tag
Expand Down

0 comments on commit 036158c

Please sign in to comment.