Github messages for voidlinux
 help / color / mirror / Atom feed
From: jpastuszek <jpastuszek@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] volctl depends on pulsectl since v0.9.0
Date: Wed, 01 Sep 2021 18:55:52 +0200	[thread overview]
Message-ID: <20210901165552.sE9UU_yAC9quzETq4ZjZWXfjgVxFQROY_DMitCQ8CMI@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-32773@inbox.vuxu.org>

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

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

https://github.com/jpastuszek/void-packages volctl
https://github.com/void-linux/void-packages/pull/32773

volctl depends on pulsectl since v0.9.0
https://github.com/buzz/volctl/commit/ef7fa2386f9a793b65027f727cbd068e8a2d9167

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

I was getting this errors after update (for a while now):

```
2021-08-31_16:33:52.93948 ModuleNotFoundError: No module named 'pulsectl'
2021-08-31_16:33:54.25495 Traceback (most recent call last):
2021-08-31_16:33:54.25499   File "/bin/volctl", line 33, in <module>
2021-08-31_16:33:54.25513     sys.exit(load_entry_point('volctl==0.9.0', 'gui_scripts', 'volctl')())
2021-08-31_16:33:54.25515   File "/bin/volctl", line 25, in importlib_load_entry_point
2021-08-31_16:33:54.25526     return next(matches).load()
2021-08-31_16:33:54.25527   File "/usr/lib/python3.9/importlib/metadata.py", line 77, in load
2021-08-31_16:33:54.25540     module = import_module(match.group('module'))
2021-08-31_16:33:54.25542   File "/usr/lib/python3.9/importlib/__init__.py", line 127, in import_module
2021-08-31_16:33:54.25557     return _bootstrap._gcd_import(name[level:], package, level)
2021-08-31_16:33:54.25559   File "<frozen importlib._bootstrap>", line 1030, in _gcd_import
2021-08-31_16:33:54.25572   File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
2021-08-31_16:33:54.25583   File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
2021-08-31_16:33:54.25595   File "<frozen importlib._bootstrap>", line 680, in _load_unlocked
2021-08-31_16:33:54.25607   File "<frozen importlib._bootstrap_external>", line 850, in exec_module
2021-08-31_16:33:54.25619   File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
2021-08-31_16:33:54.25630   File "/usr/lib/python3.9/site-packages/volctl/__main__.py", line 12, in <module>
2021-08-31_16:33:54.25640     from volctl.app import VolctlApp
2021-08-31_16:33:54.25642   File "/usr/lib/python3.9/site-packages/volctl/app.py", line 19, in <module>
2021-08-31_16:33:54.25654     from volctl.pulsemgr import PulseManager
2021-08-31_16:33:54.25655   File "/usr/lib/python3.9/site-packages/volctl/pulsemgr.py", line 7, in <module>
2021-08-31_16:33:54.25664     from pulsectl import (
```

Installing `python3-pulsectl` fixes the issue.
Looks like for v0.9.0 the developer started depending on this Python package:

https://github.com/buzz/volctl/commit/ef7fa2386f9a793b65027f727cbd068e8a2d9167


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

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

From 75f021288c91cad53f87841d4eb6159db6021ffd Mon Sep 17 00:00:00 2001
From: Jakub Pastuszek <jpastuszek@protonmail.com>
Date: Tue, 31 Aug 2021 17:42:36 +0100
Subject: [PATCH 1/2] volctl depends on pulsectl since v0.9.0

https://github.com/buzz/volctl/commit/ef7fa2386f9a793b65027f727cbd068e8a2d9167
---
 srcpkgs/volctl/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 73e735257f72..3ea354de5f50 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -1,10 +1,10 @@
 # Template file for 'volctl'
 pkgname=volctl
 version=0.9.0
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
-depends="python3-gobject gtk+3 desktop-file-utils python3-cairo python3-yaml python3-click"
+depends="python3-gobject gtk+3 desktop-file-utils python3-cairo python3-yaml python3-click python3-pulsectl"
 short_desc="Lightweight volume control for pulseaudio in your systray"
 maintainer="teldra <teldra@rotce.de>"
 license="GPL-2.0-only"

From c7219a3854c5f23ba89379a795b7f32d22041f2c Mon Sep 17 00:00:00 2001
From: Jakub Pastuszek <jpastuszek@protonmail.com>
Date: Wed, 1 Sep 2021 17:54:58 +0100
Subject: [PATCH 2/2] Removed python3-yaml and python3-click dependencies

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

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 3ea354de5f50..43ea4491d52a 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -4,7 +4,7 @@ version=0.9.0
 revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
-depends="python3-gobject gtk+3 desktop-file-utils python3-cairo python3-yaml python3-click python3-pulsectl"
+depends="python3-gobject gtk+3 desktop-file-utils python3-cairo python3-pulsectl"
 short_desc="Lightweight volume control for pulseaudio in your systray"
 maintainer="teldra <teldra@rotce.de>"
 license="GPL-2.0-only"

  parent reply	other threads:[~2021-09-01 16:55 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-31 16:50 [PR PATCH] " jpastuszek
2021-08-31 20:32 ` [PR REVIEW] " paper42
2021-08-31 20:32 ` paper42
2021-09-01 16:55 ` jpastuszek [this message]
2021-09-01 16:56 ` jpastuszek
2021-09-01 17:17 ` paper42
2021-09-01 17:17 ` paper42
2021-09-01 17:17 ` [PR PATCH] [Merged]: " paper42
2021-09-01 17:19 ` jpastuszek
2021-09-01 17:20 ` paper42

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210901165552.sE9UU_yAC9quzETq4ZjZWXfjgVxFQROY_DMitCQ8CMI@z \
    --to=jpastuszek@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).