Add python3-packaging dependency

This commit is contained in:
Micah Lee 2020-10-06 16:50:20 -07:00
parent aa94672255
commit 775effeb10
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73
3 changed files with 5 additions and 5 deletions

View File

@ -12,7 +12,7 @@ Then install dependencies, build a package, and install:
### Debian, Ubuntu, Linux Mint, etc. ### Debian, Ubuntu, Linux Mint, etc.
```sh ```sh
sudo apt install build-essential dh-python python3-all python3-stdeb python3-pyqt5 python3-gpg python3-requests python3-socks gnupg2 tor sudo apt install build-essential dh-python python3-all python3-stdeb python3-pyqt5 python3-gpg python3-requests python3-socks python3-packaging gnupg2 tor
./build_deb.sh ./build_deb.sh
sudo dpkg -i deb_dist/torbrowser-launcher_*.deb sudo dpkg -i deb_dist/torbrowser-launcher_*.deb
``` ```
@ -20,7 +20,7 @@ sudo dpkg -i deb_dist/torbrowser-launcher_*.deb
### Red Hat, Fedora, CentOS, etc. ### Red Hat, Fedora, CentOS, etc.
```sh ```sh
sudo dnf install rpm-build python3-qt5 python3-gpg python3-requests python3-pysocks gnupg2 tor sudo dnf install rpm-build python3-qt5 python3-gpg python3-requests python3-pysocks python3-packaging gnupg2 tor
./build_rpm.sh ./build_rpm.sh
sudo yum install dist/torbrowser-launcher-*.rpm sudo yum install dist/torbrowser-launcher-*.rpm
``` ```

View File

@ -6,7 +6,7 @@ VERSION=`cat share/torbrowser-launcher/version`
rm -r build dist rm -r build dist
# build binary package # build binary package
python3 setup.py bdist_rpm --requires="python3-qt5, python3-gpg, python3-requests, python3-pysocks, gnupg2" python3 setup.py bdist_rpm --requires="python3-qt5, python3-gpg, python3-requests, python3-pysocks, python3-packaging, gnupg2"
# install it # install it
echo "" echo ""

View File

@ -1,6 +1,6 @@
[DEFAULT] [DEFAULT]
Package3: torbrowser-launcher Package3: torbrowser-launcher
Depends3: python3-pyqt5, python3-gpg, python3-requests, python3-socks, gnupg2 Depends3: python3-pyqt5, python3-gpg, python3-requests, python3-socks, python3-packaging, gnupg2
Build-Depends: dh-python, python3-pyqt5, python3-gpg, python3-requests, python3-socks, gnupg2 Build-Depends: dh-python, python3-pyqt5, python3-gpg, python3-requests, python3-socks, python3-packaging, gnupg2
Recommends: tor Recommends: tor
Suite: bionic Suite: bionic