Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: blockify-3.6.3
@ 2021-01-14  1:06 DragonGhost7
  2021-01-14  6:27 ` kawaiiamber
                   ` (29 more replies)
  0 siblings, 30 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-14  1:06 UTC (permalink / raw)
  To: ml

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

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

https://github.com/DragonGhost7/void-packages blockify
https://github.com/void-linux/void-packages/pull/27909

New package: blockify-3.6.3


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-blockify-27909.patch --]
[-- Type: text/x-diff, Size: 2306 bytes --]

From 711c7e85e4421428ed621b88a2b08f482f05e889 Mon Sep 17 00:00:00 2001
From: DragonGhost7 <darkiridiumghost@gmail.com>
Date: Tue, 12 Jan 2021 21:10:21 -0500
Subject: [PATCH] New package: blockify-3.6.3

---
 srcpkgs/blockify/INSTALL.msg            |  3 +++
 srcpkgs/blockify/files/spotify_blockify | 11 +++++++++++
 srcpkgs/blockify/template               | 20 ++++++++++++++++++++
 3 files changed, 34 insertions(+)
 create mode 100644 srcpkgs/blockify/INSTALL.msg
 create mode 100755 srcpkgs/blockify/files/spotify_blockify
 create mode 100644 srcpkgs/blockify/template

diff --git a/srcpkgs/blockify/INSTALL.msg b/srcpkgs/blockify/INSTALL.msg
new file mode 100644
index 00000000000..3f72f73f1e3
--- /dev/null
+++ b/srcpkgs/blockify/INSTALL.msg
@@ -0,0 +1,3 @@
+New script `spotify_blockify` was installed in /usr/bin/
+if you want to rename it to just `spotify`, please move it to
+/usr/local/bin, or anywhere before that in your $PATH
diff --git a/srcpkgs/blockify/files/spotify_blockify b/srcpkgs/blockify/files/spotify_blockify
new file mode 100755
index 00000000000..b1ca0d372bb
--- /dev/null
+++ b/srcpkgs/blockify/files/spotify_blockify
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+spotify=/usr/bin/spotify
+
+if [[ -x $spotify && -x /bin/blockify ]] ;
+then
+  blockify &
+  block_pid=$!
+  $spotify
+  trap "kill -9 $block_pid" SIGINT SIGTERM EXIT
+fi
diff --git a/srcpkgs/blockify/template b/srcpkgs/blockify/template
new file mode 100644
index 00000000000..7b74f5cbe0e
--- /dev/null
+++ b/srcpkgs/blockify/template
@@ -0,0 +1,20 @@
+# Template file for 'blockify'
+pkgname=blockify
+version=3.6.3
+revision=1
+#archs="i686 x86_64"
+wrksrc=blockify-master
+#create_wrksrc=yes
+build_style=python3-module
+hostmakedepends="python3 python3-gobject alsa-utils python3-setuptools gtk+3 gst1-python3 python3-dbus python3-docopt"
+depends="spotify alsa-utils gtk+3 pulseaudio gstreamer1 python3-docopt wmctrl"
+short_desc="Mutes Spotify advertisements"
+maintainer="DragonGhost7 <darkiridiumghost@gmail.com>"
+license="MIT"
+homepage="https://github.com/serialoverflow/blockify"
+distfiles="https://github.com/serialoverflow/blockify/archive/master.tar.gz"
+checksum=7930017fb0e5a2651e8e425a06d46c7aa9ac68ad0c59ba59efb975037786fde6
+post_install() {
+	vlicense LICENSE.txt
+	vbin ${FILESDIR}/spotify_blockify
+}

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

* Re: New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
@ 2021-01-14  6:27 ` kawaiiamber
  2021-01-14  7:16 ` [PR PATCH] [Updated] " DragonGhost7
                   ` (28 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: kawaiiamber @ 2021-01-14  6:27 UTC (permalink / raw)
  To: ml

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

New comment by kawaiiamber on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#issuecomment-759956762

Comment:
```
ERROR: [trans] failed to download `base-files-0.141_5' signature from `http://alpha.us.repo.voidlinux.org/current/musl': Transient resolver failure
[DEBUG] [trans] failed to download binpkgs: Bad address
[DEBUG] [trans] failed to fetch and verify binpkgs: Bad address
Transaction failed! see above for errors.
```
and other one fails to fetch too. Maybe CI just failed. Try rebasing against upstream master and pushing through CI again, should fix it.

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

* Re: [PR PATCH] [Updated] New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
  2021-01-14  6:27 ` kawaiiamber
@ 2021-01-14  7:16 ` DragonGhost7
  2021-01-14  7:22 ` kawaiiamber
                   ` (27 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-14  7:16 UTC (permalink / raw)
  To: ml

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

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

https://github.com/DragonGhost7/void-packages blockify
https://github.com/void-linux/void-packages/pull/27909

New package: blockify-3.6.3
Ad blocker for spotify, 
source: https://github.com/serialoverflow/blockify

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-blockify-27909.patch --]
[-- Type: text/x-diff, Size: 2306 bytes --]

From caa7ed77ead49332315a54912a8684d1187348f3 Mon Sep 17 00:00:00 2001
From: DragonGhost7 <darkiridiumghost@gmail.com>
Date: Tue, 12 Jan 2021 21:10:21 -0500
Subject: [PATCH] New package: blockify-3.6.3

---
 srcpkgs/blockify/INSTALL.msg            |  3 +++
 srcpkgs/blockify/files/spotify_blockify | 11 +++++++++++
 srcpkgs/blockify/template               | 20 ++++++++++++++++++++
 3 files changed, 34 insertions(+)
 create mode 100644 srcpkgs/blockify/INSTALL.msg
 create mode 100755 srcpkgs/blockify/files/spotify_blockify
 create mode 100644 srcpkgs/blockify/template

diff --git a/srcpkgs/blockify/INSTALL.msg b/srcpkgs/blockify/INSTALL.msg
new file mode 100644
index 00000000000..3f72f73f1e3
--- /dev/null
+++ b/srcpkgs/blockify/INSTALL.msg
@@ -0,0 +1,3 @@
+New script `spotify_blockify` was installed in /usr/bin/
+if you want to rename it to just `spotify`, please move it to
+/usr/local/bin, or anywhere before that in your $PATH
diff --git a/srcpkgs/blockify/files/spotify_blockify b/srcpkgs/blockify/files/spotify_blockify
new file mode 100755
index 00000000000..b1ca0d372bb
--- /dev/null
+++ b/srcpkgs/blockify/files/spotify_blockify
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+spotify=/usr/bin/spotify
+
+if [[ -x $spotify && -x /bin/blockify ]] ;
+then
+  blockify &
+  block_pid=$!
+  $spotify
+  trap "kill -9 $block_pid" SIGINT SIGTERM EXIT
+fi
diff --git a/srcpkgs/blockify/template b/srcpkgs/blockify/template
new file mode 100644
index 00000000000..7b74f5cbe0e
--- /dev/null
+++ b/srcpkgs/blockify/template
@@ -0,0 +1,20 @@
+# Template file for 'blockify'
+pkgname=blockify
+version=3.6.3
+revision=1
+#archs="i686 x86_64"
+wrksrc=blockify-master
+#create_wrksrc=yes
+build_style=python3-module
+hostmakedepends="python3 python3-gobject alsa-utils python3-setuptools gtk+3 gst1-python3 python3-dbus python3-docopt"
+depends="spotify alsa-utils gtk+3 pulseaudio gstreamer1 python3-docopt wmctrl"
+short_desc="Mutes Spotify advertisements"
+maintainer="DragonGhost7 <darkiridiumghost@gmail.com>"
+license="MIT"
+homepage="https://github.com/serialoverflow/blockify"
+distfiles="https://github.com/serialoverflow/blockify/archive/master.tar.gz"
+checksum=7930017fb0e5a2651e8e425a06d46c7aa9ac68ad0c59ba59efb975037786fde6
+post_install() {
+	vlicense LICENSE.txt
+	vbin ${FILESDIR}/spotify_blockify
+}

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

* Re: New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
  2021-01-14  6:27 ` kawaiiamber
  2021-01-14  7:16 ` [PR PATCH] [Updated] " DragonGhost7
@ 2021-01-14  7:22 ` kawaiiamber
  2021-01-14  7:23 ` DragonGhost7
                   ` (26 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: kawaiiamber @ 2021-01-14  7:22 UTC (permalink / raw)
  To: ml

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

New comment by kawaiiamber on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#issuecomment-759979916

Comment:
```
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 109MB/s ETA: 00m00s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 162KB/s ETA: 42m48s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 179KB/s ETA: 16m32s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 236KB/s ETA: 10m57s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 318KB/s ETA: 07m37s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 1%] 436KB/s ETA: 05m20s
http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb: (null)
=> ERROR: spotify-1.1.42_2: failed to fetch spotify-client_1.1.42.622.gbd112320-37_amd64.deb.
Error: Process completed with exit code 1.
```
It keeps failing this transaction. Maybe something on their end? I might try repushing tomorrow or something.

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

* Re: New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (2 preceding siblings ...)
  2021-01-14  7:22 ` kawaiiamber
@ 2021-01-14  7:23 ` DragonGhost7
  2021-01-14  7:25 ` DragonGhost7
                   ` (25 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-14  7:23 UTC (permalink / raw)
  To: ml

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

New comment by DragonGhost7 on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#issuecomment-759980162

Comment:
CI failed the build because the download of spotify .deb file failed.

```
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 109MB/s ETA: 00m00s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 162KB/s ETA: 42m48s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 179KB/s ETA: 16m32s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 236KB/s ETA: 10m57s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 318KB/s ETA: 07m37s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 1%] 436KB/s ETA: 05m20s
http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb: (null)
=> ERROR: spotify-1.1.42_2: failed to fetch spotify-client_1.1.42.622.gbd112320-37_amd64.deb.
```
In the middle of the download, it does happen sometimes, didn't expect it to fail twice in a row.

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

* Re: New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (3 preceding siblings ...)
  2021-01-14  7:23 ` DragonGhost7
@ 2021-01-14  7:25 ` DragonGhost7
  2021-01-14  7:28 ` [PR REVIEW] " kawaiiamber
                   ` (24 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-14  7:25 UTC (permalink / raw)
  To: ml

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

New comment by DragonGhost7 on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#issuecomment-759980162

Comment:
CI failed the build because the download of spotify .deb file failed.

```
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 109MB/s ETA: 00m00s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 162KB/s ETA: 42m48s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 179KB/s ETA: 16m32s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 236KB/s ETA: 10m57s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 318KB/s ETA: 07m37s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 1%] 436KB/s ETA: 05m20s
http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb: (null)
=> ERROR: spotify-1.1.42_2: failed to fetch spotify-client_1.1.42.622.gbd112320-37_amd64.deb.
```
In the middle of the download, it does happen sometimes, didn't expect it to fail twice in a row.

EDIT:
didnt see your comment before, oops. But yeah sounds like a problem on their end, or bottom line, a problem with spotify package.

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

* Re: [PR REVIEW] New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (4 preceding siblings ...)
  2021-01-14  7:25 ` DragonGhost7
@ 2021-01-14  7:28 ` kawaiiamber
  2021-01-14  7:31 ` [PR PATCH] [Updated] " DragonGhost7
                   ` (23 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: kawaiiamber @ 2021-01-14  7:28 UTC (permalink / raw)
  To: ml

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

New review comment by kawaiiamber on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#discussion_r557101357

Comment:
Get rid of commented out lines

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

* Re: [PR PATCH] [Updated] New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (5 preceding siblings ...)
  2021-01-14  7:28 ` [PR REVIEW] " kawaiiamber
@ 2021-01-14  7:31 ` DragonGhost7
  2021-01-14  7:31 ` [PR REVIEW] " DragonGhost7
                   ` (22 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-14  7:31 UTC (permalink / raw)
  To: ml

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

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

https://github.com/DragonGhost7/void-packages blockify
https://github.com/void-linux/void-packages/pull/27909

New package: blockify-3.6.3
Ad blocker for spotify, 
source: https://github.com/serialoverflow/blockify

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-blockify-27909.patch --]
[-- Type: text/x-diff, Size: 2279 bytes --]

From fed1ea1acd999d5e788fb986e64e43964b1fc027 Mon Sep 17 00:00:00 2001
From: DragonGhost7 <darkiridiumghost@gmail.com>
Date: Tue, 12 Jan 2021 21:10:21 -0500
Subject: [PATCH] New package: blockify-3.6.3

---
 srcpkgs/blockify/INSTALL.msg            |  3 +++
 srcpkgs/blockify/files/spotify_blockify | 11 +++++++++++
 srcpkgs/blockify/template               | 19 +++++++++++++++++++
 3 files changed, 33 insertions(+)
 create mode 100644 srcpkgs/blockify/INSTALL.msg
 create mode 100755 srcpkgs/blockify/files/spotify_blockify
 create mode 100644 srcpkgs/blockify/template

diff --git a/srcpkgs/blockify/INSTALL.msg b/srcpkgs/blockify/INSTALL.msg
new file mode 100644
index 00000000000..3f72f73f1e3
--- /dev/null
+++ b/srcpkgs/blockify/INSTALL.msg
@@ -0,0 +1,3 @@
+New script `spotify_blockify` was installed in /usr/bin/
+if you want to rename it to just `spotify`, please move it to
+/usr/local/bin, or anywhere before that in your $PATH
diff --git a/srcpkgs/blockify/files/spotify_blockify b/srcpkgs/blockify/files/spotify_blockify
new file mode 100755
index 00000000000..b1ca0d372bb
--- /dev/null
+++ b/srcpkgs/blockify/files/spotify_blockify
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+spotify=/usr/bin/spotify
+
+if [[ -x $spotify && -x /bin/blockify ]] ;
+then
+  blockify &
+  block_pid=$!
+  $spotify
+  trap "kill -9 $block_pid" SIGINT SIGTERM EXIT
+fi
diff --git a/srcpkgs/blockify/template b/srcpkgs/blockify/template
new file mode 100644
index 00000000000..a1cf5c9e555
--- /dev/null
+++ b/srcpkgs/blockify/template
@@ -0,0 +1,19 @@
+# Template file for 'blockify'
+pkgname=blockify
+version=3.6.3
+revision=1
+archs="x86_64"
+wrksrc=blockify-master
+build_style=python3-module
+hostmakedepends="python3 python3-gobject alsa-utils python3-setuptools gtk+3 gst1-python3 python3-dbus python3-docopt"
+depends="spotify alsa-utils gtk+3 pulseaudio gstreamer1 python3-docopt wmctrl"
+short_desc="Mutes Spotify advertisements"
+maintainer="DragonGhost7 <darkiridiumghost@gmail.com>"
+license="MIT"
+homepage="https://github.com/serialoverflow/blockify"
+distfiles="https://github.com/serialoverflow/blockify/archive/master.tar.gz"
+checksum=7930017fb0e5a2651e8e425a06d46c7aa9ac68ad0c59ba59efb975037786fde6
+post_install() {
+	vlicense LICENSE.txt
+	vbin ${FILESDIR}/spotify_blockify
+}

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

* Re: [PR REVIEW] New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (6 preceding siblings ...)
  2021-01-14  7:31 ` [PR PATCH] [Updated] " DragonGhost7
@ 2021-01-14  7:31 ` DragonGhost7
  2021-01-14  7:33 ` DragonGhost7
                   ` (21 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-14  7:31 UTC (permalink / raw)
  To: ml

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

New review comment by DragonGhost7 on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#discussion_r557104643

Comment:
got it

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

* Re: New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (7 preceding siblings ...)
  2021-01-14  7:31 ` [PR REVIEW] " DragonGhost7
@ 2021-01-14  7:33 ` DragonGhost7
  2021-01-14  7:35 ` [PR REVIEW] " kawaiiamber
                   ` (20 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-14  7:33 UTC (permalink / raw)
  To: ml

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

New comment by DragonGhost7 on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#issuecomment-759984815

Comment:
(╯°□°)╯︵ ┻━┻
```
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 100MB/s ETA: 00m00s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 141KB/s ETA: 24m27s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 188KB/s ETA: 13m51s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 252KB/s ETA: 09m31s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 339KB/s ETA: 06m45s
spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 1%] 467KB/s ETA: 04m46s
http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb: (null)
=> ERROR: spotify-1.1.42_2: failed to fetch spotify-client_1.1.42.622.gbd112320-37_amd64.deb.
```

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

* Re: [PR REVIEW] New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (8 preceding siblings ...)
  2021-01-14  7:33 ` DragonGhost7
@ 2021-01-14  7:35 ` kawaiiamber
  2021-01-14  7:35 ` kawaiiamber
                   ` (19 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: kawaiiamber @ 2021-01-14  7:35 UTC (permalink / raw)
  To: ml

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

New review comment by kawaiiamber on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#discussion_r557107652

Comment:
> (╯°□°)╯︵ ┻━┻
> 
> ```
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 100MB/s ETA: 00m00s
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 141KB/s ETA: 24m27s
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 188KB/s ETA: 13m51s
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 252KB/s ETA: 09m31s
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 339KB/s ETA: 06m45s
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 1%] 467KB/s ETA: 04m46s
> http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb: (null)
> => ERROR: spotify-1.1.42_2: failed to fetch spotify-client_1.1.42.622.gbd112320-37_amd64.deb.
> ```

Oof, I'd just try rebasing and pushing tomorrow.

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

* Re: [PR REVIEW] New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (9 preceding siblings ...)
  2021-01-14  7:35 ` [PR REVIEW] " kawaiiamber
@ 2021-01-14  7:35 ` kawaiiamber
  2021-01-14  7:35 ` kawaiiamber
                   ` (18 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: kawaiiamber @ 2021-01-14  7:35 UTC (permalink / raw)
  To: ml

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

New review comment by kawaiiamber on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#discussion_r557107652

Comment:
> (╯°□°)╯︵ ┻━┻
> 
> ```
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 100MB/s ETA: 00m00s
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 141KB/s ETA: 24m27s
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 188KB/s ETA: 13m51s
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 252KB/s ETA: 09m31s
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 339KB/s ETA: 06m45s
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 1%] 467KB/s ETA: 04m46s
> http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb: (null)
> => ERROR: spotify-1.1.42_2: failed to fetch spotify-client_1.1.42.622.gbd112320-37_amd64.deb.
> ```

Oof, I'd just try rebasing and pushing tomorrow.

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

* Re: New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (10 preceding siblings ...)
  2021-01-14  7:35 ` kawaiiamber
@ 2021-01-14  7:35 ` kawaiiamber
  2021-01-14  7:38 ` [PR REVIEW] " kawaiiamber
                   ` (17 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: kawaiiamber @ 2021-01-14  7:35 UTC (permalink / raw)
  To: ml

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

New comment by kawaiiamber on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#issuecomment-759985549

Comment:
> (╯°□°)╯︵ ┻━┻
> 
> ```
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 100MB/s ETA: 00m00s
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 141KB/s ETA: 24m27s
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 188KB/s ETA: 13m51s
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 252KB/s ETA: 09m31s
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 339KB/s ETA: 06m45s
> spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 1%] 467KB/s ETA: 04m46s
> http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb: (null)
> => ERROR: spotify-1.1.42_2: failed to fetch spotify-client_1.1.42.622.gbd112320-37_amd64.deb.
> ```

Oof, I'd just try rebasing and pushing tomorrow.

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

* Re: [PR REVIEW] New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (11 preceding siblings ...)
  2021-01-14  7:35 ` kawaiiamber
@ 2021-01-14  7:38 ` kawaiiamber
  2021-01-14  7:38 ` DragonGhost7
                   ` (16 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: kawaiiamber @ 2021-01-14  7:38 UTC (permalink / raw)
  To: ml

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

New review comment by kawaiiamber on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#discussion_r557111725

Comment:
You can resolve the conversation so that it's closed now ~

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

* Re: New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (12 preceding siblings ...)
  2021-01-14  7:38 ` [PR REVIEW] " kawaiiamber
@ 2021-01-14  7:38 ` DragonGhost7
  2021-01-14  7:41 ` [PR REVIEW] " kawaiiamber
                   ` (15 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-14  7:38 UTC (permalink / raw)
  To: ml

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

New comment by DragonGhost7 on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#issuecomment-759986957

Comment:
> > (╯°□°)╯︵ ┻━┻
> > ```
> > spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 100MB/s ETA: 00m00s
> > spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 141KB/s ETA: 24m27s
> > spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 188KB/s ETA: 13m51s
> > spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 252KB/s ETA: 09m31s
> > spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 0%] 339KB/s ETA: 06m45s
> > spotify-client_1.1.42.622.gbd112320-37_amd64.deb: [120MB 1%] 467KB/s ETA: 04m46s
> > http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb: (null)
> > => ERROR: spotify-1.1.42_2: failed to fetch spotify-client_1.1.42.622.gbd112320-37_amd64.deb.
> > ```
> 
> Oof, I'd just try rebasing and pushing tomorrow.

Ayt, will do that tomorrow, hopefully spotify will let me download its files then.

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

* Re: [PR REVIEW] New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (13 preceding siblings ...)
  2021-01-14  7:38 ` DragonGhost7
@ 2021-01-14  7:41 ` kawaiiamber
  2021-01-14 18:53 ` [PR PATCH] [Updated] " DragonGhost7
                   ` (14 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: kawaiiamber @ 2021-01-14  7:41 UTC (permalink / raw)
  To: ml

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

New review comment by kawaiiamber on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#discussion_r557111725

Comment:
You can resolve the conversation so that it's closed now ~

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

* Re: [PR PATCH] [Updated] New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (14 preceding siblings ...)
  2021-01-14  7:41 ` [PR REVIEW] " kawaiiamber
@ 2021-01-14 18:53 ` DragonGhost7
  2021-01-14 19:23 ` kawaiiamber
                   ` (13 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-14 18:53 UTC (permalink / raw)
  To: ml

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

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

https://github.com/DragonGhost7/void-packages blockify
https://github.com/void-linux/void-packages/pull/27909

New package: blockify-3.6.3
Ad blocker for spotify, 
source: https://github.com/serialoverflow/blockify

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-blockify-27909.patch --]
[-- Type: text/x-diff, Size: 2279 bytes --]

From 19e6efd6554f13f19410245c7bd367a3367febdd Mon Sep 17 00:00:00 2001
From: DragonGhost7 <darkiridiumghost@gmail.com>
Date: Tue, 12 Jan 2021 21:10:21 -0500
Subject: [PATCH] New package: blockify-3.6.3

---
 srcpkgs/blockify/INSTALL.msg            |  3 +++
 srcpkgs/blockify/files/spotify_blockify | 11 +++++++++++
 srcpkgs/blockify/template               | 19 +++++++++++++++++++
 3 files changed, 33 insertions(+)
 create mode 100644 srcpkgs/blockify/INSTALL.msg
 create mode 100755 srcpkgs/blockify/files/spotify_blockify
 create mode 100644 srcpkgs/blockify/template

diff --git a/srcpkgs/blockify/INSTALL.msg b/srcpkgs/blockify/INSTALL.msg
new file mode 100644
index 00000000000..3f72f73f1e3
--- /dev/null
+++ b/srcpkgs/blockify/INSTALL.msg
@@ -0,0 +1,3 @@
+New script `spotify_blockify` was installed in /usr/bin/
+if you want to rename it to just `spotify`, please move it to
+/usr/local/bin, or anywhere before that in your $PATH
diff --git a/srcpkgs/blockify/files/spotify_blockify b/srcpkgs/blockify/files/spotify_blockify
new file mode 100755
index 00000000000..b1ca0d372bb
--- /dev/null
+++ b/srcpkgs/blockify/files/spotify_blockify
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+spotify=/usr/bin/spotify
+
+if [[ -x $spotify && -x /bin/blockify ]] ;
+then
+  blockify &
+  block_pid=$!
+  $spotify
+  trap "kill -9 $block_pid" SIGINT SIGTERM EXIT
+fi
diff --git a/srcpkgs/blockify/template b/srcpkgs/blockify/template
new file mode 100644
index 00000000000..a1cf5c9e555
--- /dev/null
+++ b/srcpkgs/blockify/template
@@ -0,0 +1,19 @@
+# Template file for 'blockify'
+pkgname=blockify
+version=3.6.3
+revision=1
+archs="x86_64"
+wrksrc=blockify-master
+build_style=python3-module
+hostmakedepends="python3 python3-gobject alsa-utils python3-setuptools gtk+3 gst1-python3 python3-dbus python3-docopt"
+depends="spotify alsa-utils gtk+3 pulseaudio gstreamer1 python3-docopt wmctrl"
+short_desc="Mutes Spotify advertisements"
+maintainer="DragonGhost7 <darkiridiumghost@gmail.com>"
+license="MIT"
+homepage="https://github.com/serialoverflow/blockify"
+distfiles="https://github.com/serialoverflow/blockify/archive/master.tar.gz"
+checksum=7930017fb0e5a2651e8e425a06d46c7aa9ac68ad0c59ba59efb975037786fde6
+post_install() {
+	vlicense LICENSE.txt
+	vbin ${FILESDIR}/spotify_blockify
+}

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

* Re: New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (15 preceding siblings ...)
  2021-01-14 18:53 ` [PR PATCH] [Updated] " DragonGhost7
@ 2021-01-14 19:23 ` kawaiiamber
  2021-01-14 19:29 ` DragonGhost7
                   ` (12 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: kawaiiamber @ 2021-01-14 19:23 UTC (permalink / raw)
  To: ml

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

New comment by kawaiiamber on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#issuecomment-760415200

Comment:
I tried getting this file locally:
```sh
[amber@otaku ~]$ wget http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb
--2021-01-14 12:20:34--  http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb
Resolving repository.spotify.com (repository.spotify.com)... 143.204.35.200, 143.204.35.177, 143.204.35.21, ...
Connecting to repository.spotify.com (repository.spotify.com)|143.204.35.200|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 126293582 (120M) [application/octet-stream]
Saving to: ‘spotify-client_1.1.42.622.gbd112320-37_amd64.deb’

spotify-client_1.1.42.622.gbd112320-37   8%[=====>                                                                     ]   9.76M  2.22MB/s    in 5.9s

2021-01-14 12:20:40 (1.66 MB/s) - Connection closed at byte 10234658. Retrying.

--2021-01-14 12:20:41--  (try: 2)  http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb
Connecting to repository.spotify.com (repository.spotify.com)|143.204.35.200|:80... connected.
HTTP request sent, awaiting response... 206 Partial Content
Length: 126293582 (120M), 116058924 (111M) remaining [application/octet-stream]
Saving to: ‘spotify-client_1.1.42.622.gbd112320-37_amd64.deb’

spotify-client_1.1.42.622.gbd112320-37 100%[++++++====================================================================>] 120.44M  3.83MB/s    in 41s

2021-01-14 12:21:23 (2.67 MB/s) - ‘spotify-client_1.1.42.622.gbd112320-37_amd64.deb’ saved [126293582/126293582]
```
No matter how many times I do it, the connection always gets closed then re-continued. What is going on?

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

* Re: New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (16 preceding siblings ...)
  2021-01-14 19:23 ` kawaiiamber
@ 2021-01-14 19:29 ` DragonGhost7
  2021-01-14 19:32 ` kawaiiamber
                   ` (11 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-14 19:29 UTC (permalink / raw)
  To: ml

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

New comment by DragonGhost7 on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#issuecomment-760420102

Comment:
> I tried getting this file locally:
> 
> ```shell
> [amber@otaku ~]$ wget http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb
> --2021-01-14 12:20:34--  http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb
> Resolving repository.spotify.com (repository.spotify.com)... 143.204.35.200, 143.204.35.177, 143.204.35.21, ...
> Connecting to repository.spotify.com (repository.spotify.com)|143.204.35.200|:80... connected.
> HTTP request sent, awaiting response... 200 OK
> Length: 126293582 (120M) [application/octet-stream]
> Saving to: ‘spotify-client_1.1.42.622.gbd112320-37_amd64.deb’
> 
> spotify-client_1.1.42.622.gbd112320-37   8%[=====>                                                                     ]   9.76M  2.22MB/s    in 5.9s
> 
> 2021-01-14 12:20:40 (1.66 MB/s) - Connection closed at byte 10234658. Retrying.
> 
> --2021-01-14 12:20:41--  (try: 2)  http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb
> Connecting to repository.spotify.com (repository.spotify.com)|143.204.35.200|:80... connected.
> HTTP request sent, awaiting response... 206 Partial Content
> Length: 126293582 (120M), 116058924 (111M) remaining [application/octet-stream]
> Saving to: ‘spotify-client_1.1.42.622.gbd112320-37_amd64.deb’
> 
> spotify-client_1.1.42.622.gbd112320-37 100%[++++++====================================================================>] 120.44M  3.83MB/s    in 41s
> 
> 2021-01-14 12:21:23 (2.67 MB/s) - ‘spotify-client_1.1.42.622.gbd112320-37_amd64.deb’ saved [126293582/126293582]
> ```
> 
> No matter how many times I do it, the connection always gets closed then re-continued. What is going on?

I get the same thing, and i have no idea. Something with spotify repos?

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

* Re: New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (17 preceding siblings ...)
  2021-01-14 19:29 ` DragonGhost7
@ 2021-01-14 19:32 ` kawaiiamber
  2021-01-14 19:45 ` [PR REVIEW] " kawaiiamber
                   ` (10 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: kawaiiamber @ 2021-01-14 19:32 UTC (permalink / raw)
  To: ml

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

New comment by kawaiiamber on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#issuecomment-760424789

Comment:
> > I tried getting this file locally:
> > ```shell
> > [amber@otaku ~]$ wget http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb
> > --2021-01-14 12:20:34--  http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb
> > Resolving repository.spotify.com (repository.spotify.com)... 143.204.35.200, 143.204.35.177, 143.204.35.21, ...
> > Connecting to repository.spotify.com (repository.spotify.com)|143.204.35.200|:80... connected.
> > HTTP request sent, awaiting response... 200 OK
> > Length: 126293582 (120M) [application/octet-stream]
> > Saving to: ‘spotify-client_1.1.42.622.gbd112320-37_amd64.deb’
> > 
> > spotify-client_1.1.42.622.gbd112320-37   8%[=====>                                                                     ]   9.76M  2.22MB/s    in 5.9s
> > 
> > 2021-01-14 12:20:40 (1.66 MB/s) - Connection closed at byte 10234658. Retrying.
> > 
> > --2021-01-14 12:20:41--  (try: 2)  http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.1.42.622.gbd112320-37_amd64.deb
> > Connecting to repository.spotify.com (repository.spotify.com)|143.204.35.200|:80... connected.
> > HTTP request sent, awaiting response... 206 Partial Content
> > Length: 126293582 (120M), 116058924 (111M) remaining [application/octet-stream]
> > Saving to: ‘spotify-client_1.1.42.622.gbd112320-37_amd64.deb’
> > 
> > spotify-client_1.1.42.622.gbd112320-37 100%[++++++====================================================================>] 120.44M  3.83MB/s    in 41s
> > 
> > 2021-01-14 12:21:23 (2.67 MB/s) - ‘spotify-client_1.1.42.622.gbd112320-37_amd64.deb’ saved [126293582/126293582]
> > ```
> > 
> > 
> > No matter how many times I do it, the connection always gets closed then re-continued. What is going on?
> 
> I get the same thing, and i have no idea. Something with spotify repos?

It seems like it. Something is down / not responding.

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

* Re: [PR REVIEW] New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (18 preceding siblings ...)
  2021-01-14 19:32 ` kawaiiamber
@ 2021-01-14 19:45 ` kawaiiamber
  2021-01-14 19:52 ` DragonGhost7
                   ` (9 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: kawaiiamber @ 2021-01-14 19:45 UTC (permalink / raw)
  To: ml

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

New review comment by kawaiiamber on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#discussion_r557651953

Comment:
Why restrict the archs? Something go wrong with crossbuild or even x86_64-musl?

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

* Re: [PR REVIEW] New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (19 preceding siblings ...)
  2021-01-14 19:45 ` [PR REVIEW] " kawaiiamber
@ 2021-01-14 19:52 ` DragonGhost7
  2021-01-14 19:55 ` kawaiiamber
                   ` (8 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-14 19:52 UTC (permalink / raw)
  To: ml

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

New review comment by DragonGhost7 on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#discussion_r557656360

Comment:
well, spotify only exists for x86_64 right now, so it is more of a redundancy really. I could remove it so if spotify becomes available in the future on these archs too i won't need to change it. 

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

* Re: [PR REVIEW] New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (20 preceding siblings ...)
  2021-01-14 19:52 ` DragonGhost7
@ 2021-01-14 19:55 ` kawaiiamber
  2021-01-14 20:02 ` DragonGhost7
                   ` (7 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: kawaiiamber @ 2021-01-14 19:55 UTC (permalink / raw)
  To: ml

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

New review comment by kawaiiamber on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#discussion_r557660141

Comment:
Ah, I see. Nothing with this, but the spotify app that it depends on. I might add a comment explaining. `archs="x86_64" # spotify only on x86_64 arch`

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

* Re: [PR REVIEW] New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (21 preceding siblings ...)
  2021-01-14 19:55 ` kawaiiamber
@ 2021-01-14 20:02 ` DragonGhost7
  2021-01-14 20:12 ` [PR PATCH] [Updated] " DragonGhost7
                   ` (6 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-14 20:02 UTC (permalink / raw)
  To: ml

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

New review comment by DragonGhost7 on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#discussion_r557665010

Comment:
okey, will do.
What to do with spotify tho. I could remove it from depends, because it is in restricted category, and just open it as issue for `spotify` package

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

* Re: [PR PATCH] [Updated] New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (22 preceding siblings ...)
  2021-01-14 20:02 ` DragonGhost7
@ 2021-01-14 20:12 ` DragonGhost7
  2021-01-14 20:48 ` DragonGhost7
                   ` (5 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-14 20:12 UTC (permalink / raw)
  To: ml

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

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

https://github.com/DragonGhost7/void-packages blockify
https://github.com/void-linux/void-packages/pull/27909

New package: blockify-3.6.3
Ad blocker for spotify, 
source: https://github.com/serialoverflow/blockify

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-blockify-27909.patch --]
[-- Type: text/x-diff, Size: 2301 bytes --]

From 43ca675a92daacc9c7382c42b52a087edd443aa8 Mon Sep 17 00:00:00 2001
From: DragonGhost7 <darkiridiumghost@gmail.com>
Date: Tue, 12 Jan 2021 21:10:21 -0500
Subject: [PATCH] New package: blockify-3.6.3

---
 srcpkgs/blockify/INSTALL.msg            |  3 +++
 srcpkgs/blockify/files/spotify_blockify | 11 +++++++++++
 srcpkgs/blockify/template               | 19 +++++++++++++++++++
 3 files changed, 33 insertions(+)
 create mode 100644 srcpkgs/blockify/INSTALL.msg
 create mode 100755 srcpkgs/blockify/files/spotify_blockify
 create mode 100644 srcpkgs/blockify/template

diff --git a/srcpkgs/blockify/INSTALL.msg b/srcpkgs/blockify/INSTALL.msg
new file mode 100644
index 00000000000..3f72f73f1e3
--- /dev/null
+++ b/srcpkgs/blockify/INSTALL.msg
@@ -0,0 +1,3 @@
+New script `spotify_blockify` was installed in /usr/bin/
+if you want to rename it to just `spotify`, please move it to
+/usr/local/bin, or anywhere before that in your $PATH
diff --git a/srcpkgs/blockify/files/spotify_blockify b/srcpkgs/blockify/files/spotify_blockify
new file mode 100755
index 00000000000..b1ca0d372bb
--- /dev/null
+++ b/srcpkgs/blockify/files/spotify_blockify
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+spotify=/usr/bin/spotify
+
+if [[ -x $spotify && -x /bin/blockify ]] ;
+then
+  blockify &
+  block_pid=$!
+  $spotify
+  trap "kill -9 $block_pid" SIGINT SIGTERM EXIT
+fi
diff --git a/srcpkgs/blockify/template b/srcpkgs/blockify/template
new file mode 100644
index 00000000000..c480f89702a
--- /dev/null
+++ b/srcpkgs/blockify/template
@@ -0,0 +1,19 @@
+# Template file for 'blockify'
+pkgname=blockify
+version=3.6.3
+revision=1
+archs="x86_64" # spotify only on x86_64 arch
+wrksrc=blockify-master
+build_style=python3-module
+hostmakedepends="python3 python3-gobject alsa-utils python3-setuptools gtk+3 gst1-python3 python3-dbus python3-docopt"
+depends="alsa-utils gtk+3 pulseaudio gstreamer1 python3-docopt wmctrl"
+short_desc="Mutes Spotify advertisements"
+maintainer="DragonGhost7 <darkiridiumghost@gmail.com>"
+license="MIT"
+homepage="https://github.com/serialoverflow/blockify"
+distfiles="https://github.com/serialoverflow/blockify/archive/master.tar.gz"
+checksum=7930017fb0e5a2651e8e425a06d46c7aa9ac68ad0c59ba59efb975037786fde6
+post_install() {
+	vlicense LICENSE.txt
+	vbin ${FILESDIR}/spotify_blockify
+}

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

* Re: New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (23 preceding siblings ...)
  2021-01-14 20:12 ` [PR PATCH] [Updated] " DragonGhost7
@ 2021-01-14 20:48 ` DragonGhost7
  2021-01-15  2:08 ` DragonGhost7
                   ` (4 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-14 20:48 UTC (permalink / raw)
  To: ml

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

New comment by DragonGhost7 on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#issuecomment-760466856

Comment:
 There are no pytests provided by blockify, and setup.py test fails with `xbps-src` because it can't reach xorg server. for dome reason. I dont know why now ill look into it.

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

* Re: New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (24 preceding siblings ...)
  2021-01-14 20:48 ` DragonGhost7
@ 2021-01-15  2:08 ` DragonGhost7
  2021-01-18 17:50 ` Chocimier
                   ` (3 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-15  2:08 UTC (permalink / raw)
  To: ml

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

New comment by DragonGhost7 on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#issuecomment-760596696

Comment:
Ok so basically, since there are no tests written for it, `python setup.py test` tries to run all executables defined, and runs into a problem since they need dbus, and subsequently an xorg server running, which they dont get in chroot nor in ci.
I am really not sure what to do in this case, might just fork and write my own pytests.

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

* Re: New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (25 preceding siblings ...)
  2021-01-15  2:08 ` DragonGhost7
@ 2021-01-18 17:50 ` Chocimier
  2021-01-18 17:56 ` ericonr
                   ` (2 subsequent siblings)
  29 siblings, 0 replies; 31+ messages in thread
From: Chocimier @ 2021-01-18 17:50 UTC (permalink / raw)
  To: ml

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

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#issuecomment-762393748

Comment:
This is unmaintained for two years, unlikely to be accepted.

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

* Re: New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (26 preceding siblings ...)
  2021-01-18 17:50 ` Chocimier
@ 2021-01-18 17:56 ` ericonr
  2021-01-20 23:11 ` DragonGhost7
  2021-01-20 23:11 ` [PR PATCH] [Closed]: " DragonGhost7
  29 siblings, 0 replies; 31+ messages in thread
From: ericonr @ 2021-01-18 17:56 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#issuecomment-762396398

Comment:
And upstream recommends against usage, even if for different reasons than it being unmaintained.

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

* Re: New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (27 preceding siblings ...)
  2021-01-18 17:56 ` ericonr
@ 2021-01-20 23:11 ` DragonGhost7
  2021-01-20 23:11 ` [PR PATCH] [Closed]: " DragonGhost7
  29 siblings, 0 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-20 23:11 UTC (permalink / raw)
  To: ml

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

New comment by DragonGhost7 on void-packages repository

https://github.com/void-linux/void-packages/pull/27909#issuecomment-764014291

Comment:
Taking everything into account, i think ill close the the pull request, no chances of working properly and low chances of being approved even if it does.

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

* Re: [PR PATCH] [Closed]: New package: blockify-3.6.3
  2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
                   ` (28 preceding siblings ...)
  2021-01-20 23:11 ` DragonGhost7
@ 2021-01-20 23:11 ` DragonGhost7
  29 siblings, 0 replies; 31+ messages in thread
From: DragonGhost7 @ 2021-01-20 23:11 UTC (permalink / raw)
  To: ml

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

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

New package: blockify-3.6.3
https://github.com/void-linux/void-packages/pull/27909

Description:
Ad blocker for spotify, 
source: https://github.com/serialoverflow/blockify

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

end of thread, other threads:[~2021-01-20 23:11 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-14  1:06 [PR PATCH] New package: blockify-3.6.3 DragonGhost7
2021-01-14  6:27 ` kawaiiamber
2021-01-14  7:16 ` [PR PATCH] [Updated] " DragonGhost7
2021-01-14  7:22 ` kawaiiamber
2021-01-14  7:23 ` DragonGhost7
2021-01-14  7:25 ` DragonGhost7
2021-01-14  7:28 ` [PR REVIEW] " kawaiiamber
2021-01-14  7:31 ` [PR PATCH] [Updated] " DragonGhost7
2021-01-14  7:31 ` [PR REVIEW] " DragonGhost7
2021-01-14  7:33 ` DragonGhost7
2021-01-14  7:35 ` [PR REVIEW] " kawaiiamber
2021-01-14  7:35 ` kawaiiamber
2021-01-14  7:35 ` kawaiiamber
2021-01-14  7:38 ` [PR REVIEW] " kawaiiamber
2021-01-14  7:38 ` DragonGhost7
2021-01-14  7:41 ` [PR REVIEW] " kawaiiamber
2021-01-14 18:53 ` [PR PATCH] [Updated] " DragonGhost7
2021-01-14 19:23 ` kawaiiamber
2021-01-14 19:29 ` DragonGhost7
2021-01-14 19:32 ` kawaiiamber
2021-01-14 19:45 ` [PR REVIEW] " kawaiiamber
2021-01-14 19:52 ` DragonGhost7
2021-01-14 19:55 ` kawaiiamber
2021-01-14 20:02 ` DragonGhost7
2021-01-14 20:12 ` [PR PATCH] [Updated] " DragonGhost7
2021-01-14 20:48 ` DragonGhost7
2021-01-15  2:08 ` DragonGhost7
2021-01-18 17:50 ` Chocimier
2021-01-18 17:56 ` ericonr
2021-01-20 23:11 ` DragonGhost7
2021-01-20 23:11 ` [PR PATCH] [Closed]: " DragonGhost7

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).