diff options
author | B. Stack <bgstack15@gmail.com> | 2022-01-19 07:53:13 -0500 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-01-19 07:53:13 -0500 |
commit | d9379eead522d6770a62e12c597f7ef6d72753e7 (patch) | |
tree | 1618bcf3288668788e5296fef335da6748e4f9e4 /scripts | |
parent | add pip3 build-dep (diff) | |
download | librewolf-debian-d9379eead522d6770a62e12c597f7ef6d72753e7.tar.gz librewolf-debian-d9379eead522d6770a62e12c597f7ef6d72753e7.tar.bz2 librewolf-debian-d9379eead522d6770a62e12c597f7ef6d72753e7.zip |
move pip3 to initial components, not dpkg build-deps
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/prep-librewolf-dpkg.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/prep-librewolf-dpkg.sh b/scripts/prep-librewolf-dpkg.sh index 9a33e82..5c1951b 100755 --- a/scripts/prep-librewolf-dpkg.sh +++ b/scripts/prep-librewolf-dpkg.sh @@ -48,7 +48,7 @@ work_dir=${CI_PROJECT_DIR}/prepared/ ##################################### # Download initial components -test -z "${SKIP_APT}" && apt update && apt install -y git curl wget xz-utils +test -z "${SKIP_APT}" && apt update && apt install -y git curl wget xz-utils python3-pip # Download upstream distro assets, which includes # 1. orig tarball, which in Debian is not always the pristine contents from upstream source @@ -99,7 +99,7 @@ sed -i -r "${debian_dir}"/control \ -e '/^Package:.*-l10/,$d' \ -e '/^Maintainer:/{s/Maintainer:/XSBC-Original-Maintainer:/;iMaintainer: B. Stack <bgstack15@gmail.com>' -e '}' \ -e '/^Uploaders:/d' \ - -e '/libasound2-dev/s/libasound2-dev,/libasound2-dev, libjack-dev, python3-pip,/;' \ + -e '/libasound2-dev/s/libasound2-dev,/libasound2-dev, libjack-dev,/;' \ -e '/^Vcs-/d' \ -e '/Breaks:.*xul-ext-torbutton/d' \ -e '/Description:/,+8{/Description:/,/^\s*$/d}' |