Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Add dbus-glib to the list of dependencies
@ 2020-07-06  9:37 sG4ZvHrf
  2020-07-06  9:51 ` [PR PATCH] [Updated] torbrowser-launcher: add dbus-glib dependency sG4ZvHrf
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: sG4ZvHrf @ 2020-07-06  9:37 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 414 bytes --]

There is a new pull request by sG4ZvHrf against master on the void-packages repository

https://github.com/sG4ZvHrf/void-packages tb-dbus-glib
https://github.com/void-linux/void-packages/pull/23411

Add dbus-glib to the list of dependencies
Without `dbus-glib`, Tor Browser Launcher gets stuck after a message saying:
```

A patch file from https://github.com/void-linux/void-packages/pull/23411.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tb-dbus-glib-23411.patch --]
[-- Type: text/x-diff, Size: 970 bytes --]

From 7ee6cf5e514406dc74211f278e184e5a07811036 Mon Sep 17 00:00:00 2001
From: plumeus <oXPT62V7@disroot.org>
Date: Mon, 6 Jul 2020 18:34:18 +0900
Subject: [PATCH] Add dbus-glib to the list of dependencies

---
 srcpkgs/torbrowser-launcher/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a80991b7aed..0b80f868840 100644
--- a/srcpkgs/torbrowser-launcher/template
+++ b/srcpkgs/torbrowser-launcher/template
@@ -5,7 +5,7 @@ revision=3
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
-depends="python3-PyQt5 python3-gpg python3-requests python3-pysocks gnupg2 tor"
+depends="python3-PyQt5 python3-gpg python3-requests python3-pysocks gnupg2 tor dbus-glib"
 short_desc="Securely download, verify and run Tor Browser"
 maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
 license="MIT"

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Updated] torbrowser-launcher: add dbus-glib dependency
  2020-07-06  9:37 [PR PATCH] Add dbus-glib to the list of dependencies sG4ZvHrf
@ 2020-07-06  9:51 ` sG4ZvHrf
  2020-07-06 10:29 ` sG4ZvHrf
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: sG4ZvHrf @ 2020-07-06  9:51 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 504 bytes --]

There is an updated pull request by sG4ZvHrf against master on the void-packages repository

https://github.com/sG4ZvHrf/void-packages tb-dbus-glib
https://github.com/void-linux/void-packages/pull/23411

torbrowser-launcher: add dbus-glib dependency
Without `dbus-glib`, Tor Browser Launcher gets stuck after a message saying:
```
Launching './Browser/start-tor-browser --detatch'...
```
Tested on `i3-gaps`.

A patch file from https://github.com/void-linux/void-packages/pull/23411.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tb-dbus-glib-23411.patch --]
[-- Type: text/x-diff, Size: 1739 bytes --]

From 7ee6cf5e514406dc74211f278e184e5a07811036 Mon Sep 17 00:00:00 2001
From: plumeus <oXPT62V7@disroot.org>
Date: Mon, 6 Jul 2020 18:34:18 +0900
Subject: [PATCH 1/2] Add dbus-glib to the list of dependencies

---
 srcpkgs/torbrowser-launcher/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a80991b7aed..0b80f868840 100644
--- a/srcpkgs/torbrowser-launcher/template
+++ b/srcpkgs/torbrowser-launcher/template
@@ -5,7 +5,7 @@ revision=3
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
-depends="python3-PyQt5 python3-gpg python3-requests python3-pysocks gnupg2 tor"
+depends="python3-PyQt5 python3-gpg python3-requests python3-pysocks gnupg2 tor dbus-glib"
 short_desc="Securely download, verify and run Tor Browser"
 maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
 license="MIT"

From 0eb2dbe730c09715cdb61e385f81196c09b8b4c9 Mon Sep 17 00:00:00 2001
From: plumeus <oXPT62V7@disroot.org>
Date: Mon, 6 Jul 2020 18:50:37 +0900
Subject: [PATCH 2/2] Forgot to change revision number

---
 srcpkgs/torbrowser-launcher/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index 0b80f868840..6079956091f 100644
--- a/srcpkgs/torbrowser-launcher/template
+++ b/srcpkgs/torbrowser-launcher/template
@@ -1,7 +1,7 @@
 # Template file for 'torbrowser-launcher'
 pkgname=torbrowser-launcher
 version=0.3.2
-revision=3
+revision=4
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Updated] torbrowser-launcher: add dbus-glib dependency
  2020-07-06  9:37 [PR PATCH] Add dbus-glib to the list of dependencies sG4ZvHrf
  2020-07-06  9:51 ` [PR PATCH] [Updated] torbrowser-launcher: add dbus-glib dependency sG4ZvHrf
@ 2020-07-06 10:29 ` sG4ZvHrf
  2020-07-06 10:32 ` sG4ZvHrf
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: sG4ZvHrf @ 2020-07-06 10:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 504 bytes --]

There is an updated pull request by sG4ZvHrf against master on the void-packages repository

https://github.com/sG4ZvHrf/void-packages tb-dbus-glib
https://github.com/void-linux/void-packages/pull/23411

torbrowser-launcher: add dbus-glib dependency
Without `dbus-glib`, Tor Browser Launcher gets stuck after a message saying:
```
Launching './Browser/start-tor-browser --detatch'...
```
Tested on `i3-gaps`.

A patch file from https://github.com/void-linux/void-packages/pull/23411.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tb-dbus-glib-23411.patch --]
[-- Type: text/x-diff, Size: 1016 bytes --]

From 5523a2dfa2e301f6a4b3f2d705a65a4f29edba58 Mon Sep 17 00:00:00 2001
From: plumeus <oXPT62V7@disroot.org>
Date: Mon, 6 Jul 2020 18:34:18 +0900
Subject: [PATCH] Add dbus-glib to the list of dependencies

torbrowser-launcher: add dbus-glib dependency
---
 srcpkgs/torbrowser-launcher/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a80991b7aed..0b80f868840 100644
--- a/srcpkgs/torbrowser-launcher/template
+++ b/srcpkgs/torbrowser-launcher/template
@@ -5,7 +5,7 @@ revision=3
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
-depends="python3-PyQt5 python3-gpg python3-requests python3-pysocks gnupg2 tor"
+depends="python3-PyQt5 python3-gpg python3-requests python3-pysocks gnupg2 tor dbus-glib"
 short_desc="Securely download, verify and run Tor Browser"
 maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
 license="MIT"

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Updated] torbrowser-launcher: add dbus-glib dependency
  2020-07-06  9:37 [PR PATCH] Add dbus-glib to the list of dependencies sG4ZvHrf
  2020-07-06  9:51 ` [PR PATCH] [Updated] torbrowser-launcher: add dbus-glib dependency sG4ZvHrf
  2020-07-06 10:29 ` sG4ZvHrf
@ 2020-07-06 10:32 ` sG4ZvHrf
  2020-07-06 21:26 ` Chocimier
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: sG4ZvHrf @ 2020-07-06 10:32 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 504 bytes --]

There is an updated pull request by sG4ZvHrf against master on the void-packages repository

https://github.com/sG4ZvHrf/void-packages tb-dbus-glib
https://github.com/void-linux/void-packages/pull/23411

torbrowser-launcher: add dbus-glib dependency
Without `dbus-glib`, Tor Browser Launcher gets stuck after a message saying:
```
Launching './Browser/start-tor-browser --detatch'...
```
Tested on `i3-gaps`.

A patch file from https://github.com/void-linux/void-packages/pull/23411.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tb-dbus-glib-23411.patch --]
[-- Type: text/x-diff, Size: 1169 bytes --]

From 6d0f9839afc5aefa9cd05efe2f0925fef89c0c81 Mon Sep 17 00:00:00 2001
From: plumeus <oXPT62V7@disroot.org>
Date: Mon, 6 Jul 2020 18:34:18 +0900
Subject: [PATCH] Add dbus-glib to the list of dependencies

torbrowser-launcher: add dbus-glib dependency

torbrowser-launcher: add dbus-glib dependency
---
 srcpkgs/torbrowser-launcher/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a80991b7aed..6079956091f 100644
--- a/srcpkgs/torbrowser-launcher/template
+++ b/srcpkgs/torbrowser-launcher/template
@@ -1,11 +1,11 @@
 # Template file for 'torbrowser-launcher'
 pkgname=torbrowser-launcher
 version=0.3.2
-revision=3
+revision=4
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
-depends="python3-PyQt5 python3-gpg python3-requests python3-pysocks gnupg2 tor"
+depends="python3-PyQt5 python3-gpg python3-requests python3-pysocks gnupg2 tor dbus-glib"
 short_desc="Securely download, verify and run Tor Browser"
 maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
 license="MIT"

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: torbrowser-launcher: add dbus-glib dependency
  2020-07-06  9:37 [PR PATCH] Add dbus-glib to the list of dependencies sG4ZvHrf
                   ` (2 preceding siblings ...)
  2020-07-06 10:32 ` sG4ZvHrf
@ 2020-07-06 21:26 ` Chocimier
  2020-07-07  4:01 ` [PR PATCH] [Updated] " sG4ZvHrf
  2020-07-07 15:55 ` [PR PATCH] [Merged]: " Chocimier
  5 siblings, 0 replies; 7+ messages in thread
From: Chocimier @ 2020-07-06 21:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 205 bytes --]

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/23411#issuecomment-654473868

Comment:
Looks good, but please use commit title as per CONTRIBUTING.md

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Updated] torbrowser-launcher: add dbus-glib dependency
  2020-07-06  9:37 [PR PATCH] Add dbus-glib to the list of dependencies sG4ZvHrf
                   ` (3 preceding siblings ...)
  2020-07-06 21:26 ` Chocimier
@ 2020-07-07  4:01 ` sG4ZvHrf
  2020-07-07 15:55 ` [PR PATCH] [Merged]: " Chocimier
  5 siblings, 0 replies; 7+ messages in thread
From: sG4ZvHrf @ 2020-07-07  4:01 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 504 bytes --]

There is an updated pull request by sG4ZvHrf against master on the void-packages repository

https://github.com/sG4ZvHrf/void-packages tb-dbus-glib
https://github.com/void-linux/void-packages/pull/23411

torbrowser-launcher: add dbus-glib dependency
Without `dbus-glib`, Tor Browser Launcher gets stuck after a message saying:
```
Launching './Browser/start-tor-browser --detatch'...
```
Tested on `i3-gaps`.

A patch file from https://github.com/void-linux/void-packages/pull/23411.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tb-dbus-glib-23411.patch --]
[-- Type: text/x-diff, Size: 1080 bytes --]

From 5ff041f1eb6d0132988d3906e6e0a0582a42f369 Mon Sep 17 00:00:00 2001
From: plumeus <oXPT62V7@disroot.org>
Date: Mon, 6 Jul 2020 18:34:18 +0900
Subject: [PATCH] torbrowser-launcher: add dbus-glib dependency

---
 srcpkgs/torbrowser-launcher/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a80991b7aed..6079956091f 100644
--- a/srcpkgs/torbrowser-launcher/template
+++ b/srcpkgs/torbrowser-launcher/template
@@ -1,11 +1,11 @@
 # Template file for 'torbrowser-launcher'
 pkgname=torbrowser-launcher
 version=0.3.2
-revision=3
+revision=4
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
-depends="python3-PyQt5 python3-gpg python3-requests python3-pysocks gnupg2 tor"
+depends="python3-PyQt5 python3-gpg python3-requests python3-pysocks gnupg2 tor dbus-glib"
 short_desc="Securely download, verify and run Tor Browser"
 maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
 license="MIT"

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Merged]: torbrowser-launcher: add dbus-glib dependency
  2020-07-06  9:37 [PR PATCH] Add dbus-glib to the list of dependencies sG4ZvHrf
                   ` (4 preceding siblings ...)
  2020-07-07  4:01 ` [PR PATCH] [Updated] " sG4ZvHrf
@ 2020-07-07 15:55 ` Chocimier
  5 siblings, 0 replies; 7+ messages in thread
From: Chocimier @ 2020-07-07 15:55 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 341 bytes --]

There's a merged pull request on the void-packages repository

torbrowser-launcher: add dbus-glib dependency
https://github.com/void-linux/void-packages/pull/23411

Description:
Without `dbus-glib`, Tor Browser Launcher gets stuck after a message saying:
```
Launching './Browser/start-tor-browser --detatch'...
```
Tested on `i3-gaps`.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-07-07 15:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-06  9:37 [PR PATCH] Add dbus-glib to the list of dependencies sG4ZvHrf
2020-07-06  9:51 ` [PR PATCH] [Updated] torbrowser-launcher: add dbus-glib dependency sG4ZvHrf
2020-07-06 10:29 ` sG4ZvHrf
2020-07-06 10:32 ` sG4ZvHrf
2020-07-06 21:26 ` Chocimier
2020-07-07  4:01 ` [PR PATCH] [Updated] " sG4ZvHrf
2020-07-07 15:55 ` [PR PATCH] [Merged]: " Chocimier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).