qutebrowser: 1.9.0 -> 1.10.0 (#79172)

This commit is contained in:
Michele Guerini Rocco 2020-02-04 11:24:07 +01:00 committed by GitHub
parent bb769908f9
commit 96358710f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 8 deletions

View File

@ -21,12 +21,12 @@ let
in mkDerivationWith python3Packages.buildPythonApplication rec { in mkDerivationWith python3Packages.buildPythonApplication rec {
pname = "qutebrowser"; pname = "qutebrowser";
version = "1.9.0"; version = "1.10.0";
# the release tarballs are different from the git checkout! # the release tarballs are different from the git checkout!
src = fetchurl { src = fetchurl {
url = "https://github.com/qutebrowser/qutebrowser/releases/download/v${version}/${pname}-${version}.tar.gz"; url = "https://github.com/qutebrowser/qutebrowser/releases/download/v${version}/${pname}-${version}.tar.gz";
sha256 = "1y0yq1qfr6g1s7kf3w2crd0b025dv2dfknhlz3v0001ns3rgwj17"; sha256 = "1prvd3cysmcjfybn0dmr3ih0bl6lm5ml9i7wd09fn8hb7047mkby";
}; };
# Needs tox # Needs tox

View File

@ -1,8 +1,8 @@
diff --git a/qutebrowser/app.py b/qutebrowser/app.py diff --git a/quitter.py b/quitterb.py
index a47b5d2f4..f23ee23ef 100644 index a42b9d0..f544ccb 100644
--- a/qutebrowser/app.py --- a/qutebrowser/misc/quitter.py
+++ b/qutebrowser/app.py +++ b/qutebrowser/misc/quitter.py
@@ -573,13 +573,8 @@ class Quitter(QObject): @@ -112,13 +112,7 @@ class Quitter(QObject):
Return: Return:
The commandline as a list of strings. The commandline as a list of strings.
""" """
@ -14,7 +14,6 @@ index a47b5d2f4..f23ee23ef 100644
- else: - else:
- args = [sys.executable, '-m', 'qutebrowser'] - args = [sys.executable, '-m', 'qutebrowser']
+ args = ['@qutebrowser@'] + args = ['@qutebrowser@']
+ cwd = None
# Add all open pages so they get reopened. # Add all open pages so they get reopened.
page_args = [] # type: typing.MutableSequence[str] page_args = [] # type: typing.MutableSequence[str]