]> gitweb.fluxo.info Git - qutebrowser.git/commitdiff
Fix: build procedure has changed and packages are available now master
authorSilvio Rhatto <rhatto@riseup.net>
Fri, 21 Aug 2020 12:08:46 +0000 (09:08 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Fri, 21 Aug 2020 12:08:46 +0000 (09:08 -0300)
qutebrowser-from-source [moved from qutebrowser with 72% similarity]

similarity index 72%
rename from qutebrowser
rename to qutebrowser-from-source
index b4266ae725ffa41a4e720ac86dc52c96e12bb2ce..b856e0787f845b1fe5c0e19edd9f989086e7c63a 100755 (executable)
@@ -1,6 +1,9 @@
 #!/bin/bash
 #
-# Wrapper for qutebrowser
+# Wrapper for building/running qutebrowser from source
+#
+# Since it's already avaiable in most distros (like Debian), you
+# might be interested in the official builds.
 #
 
 if [ "$1" != "update" ] && [ -x "$HOME/apps/qutebrowser/dist/.venv/bin/python3" ]; then
@@ -18,12 +21,13 @@ else
   git submodule update --init
 
   # Check for tox
-  if ! which tox &> /dev/null; then
-    sudo apt install -y tox
-  fi
+  #if ! which tox &> /dev/null; then
+  #  sudo apt install -y tox
+  #fi
 
   # Build qutebrowser
-  cd dist &> /dev/null && tox -r -e mkvenv-pypi
+  #cd dist &> /dev/null && tox -r -e mkvenv-pypi
+  cd dist &> /dev/null && python3 scripts/mkvenv.py
 
   # Check for doc builder
   if ! dpkg-query -W -f='${Status}' asciidoc | grep -q '^install ok'; then