* [PR PATCH] polychromatic: Add missing dependency
@ 2024-10-20 19:01 northboot
2024-10-21 11:43 ` dmarto
` (14 more replies)
0 siblings, 15 replies; 16+ messages in thread
From: northboot @ 2024-10-20 19:01 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1181 bytes --]
There is a new pull request by northboot against master on the void-packages repository
https://github.com/northboot/void-packages patch-3
https://github.com/void-linux/void-packages/pull/52708
polychromatic: Add missing dependency
Problem: `polychromatic-controller` misses a dependency:
```
Traceback (most recent call last):
File "/usr/bin/polychromatic-controller", line 36, in <module>
import polychromatic.controller as controller
File "/usr/lib/python3.12/site-packages/polychromatic/controller/__init__.py", line 1, in <module>
from . import devices, effects, menubar, preferences, shared
File "/usr/lib/python3.12/site-packages/polychromatic/controller/devices.py", line 27, in <module>
from . import shared
File "/usr/lib/python3.12/site-packages/polychromatic/controller/shared.py", line 17, in <module>
from PyQt6.QtSvg import QSvgRenderer
ModuleNotFoundError: No module named 'PyQt6.QtSvg'
```
This adds the missing dependency which is requred for `polychromatic-controller` to work.
- I tested the changes in this PR: **briefly**
A patch file from https://github.com/void-linux/void-packages/pull/52708.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-patch-3-52708.patch --]
[-- Type: text/x-diff, Size: 1165 bytes --]
From a9c68ad1a2b132431c366a2d0d5ee086434ad90e Mon Sep 17 00:00:00 2001
From: northboot <72713030+northboot@users.noreply.github.com>
Date: Sun, 20 Oct 2024 20:57:52 +0200
Subject: [PATCH] polychromatic: Add missing dependency
---
srcpkgs/polychromatic/template | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/srcpkgs/polychromatic/template b/srcpkgs/polychromatic/template
index b4d1ef45c7c68d..df53aef4085cfc 100644
--- a/srcpkgs/polychromatic/template
+++ b/srcpkgs/polychromatic/template
@@ -1,13 +1,13 @@
# Template file for 'polychromatic'
pkgname=polychromatic
version=0.9.1
-revision=1
+revision=2
build_style=meson
hostmakedepends="ninja sassc which gettext"
depends="python3-colorama python3-setproctitle python3-requests python3-colour
python3-pyqt6-gui python3-pyqt6-devel-tools python3-pyqt6-printsupport
python3-pyqt6-devel-tools python3-pyqt6-webengine python3-pyqt6-network
- python3-pyqt6-widgets python3-pyqt6-webchannel"
+ python3-pyqt6-widgets python3-pyqt6-webchannel python3-pyqt6-svg"
short_desc="RGB lighting management software"
maintainer="Martin Dimov <martin@dmarto.com>"
license="GPL-3.0-or-later"
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: polychromatic: Add missing dependency
2024-10-20 19:01 [PR PATCH] polychromatic: Add missing dependency northboot
@ 2024-10-21 11:43 ` dmarto
2024-10-21 18:16 ` [PR PATCH] [Updated] " northboot
` (13 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: dmarto @ 2024-10-21 11:43 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 305 bytes --]
New comment by dmarto on void-packages repository
https://github.com/void-linux/void-packages/pull/52708#issuecomment-2426437061
Comment:
Can you also bump it to 0.9.2, now that OpenRazer 3.9 is merged.
_(I personally still run the Qt5 version, and haven't had the time to deal with the Qt6 port)_
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PR PATCH] [Updated] polychromatic: Add missing dependency
2024-10-20 19:01 [PR PATCH] polychromatic: Add missing dependency northboot
2024-10-21 11:43 ` dmarto
@ 2024-10-21 18:16 ` northboot
2024-10-21 18:18 ` northboot
` (12 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: northboot @ 2024-10-21 18:16 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1186 bytes --]
There is an updated pull request by northboot against master on the void-packages repository
https://github.com/northboot/void-packages patch-3
https://github.com/void-linux/void-packages/pull/52708
polychromatic: Add missing dependency
Problem: `polychromatic-controller` misses a dependency:
```
Traceback (most recent call last):
File "/usr/bin/polychromatic-controller", line 36, in <module>
import polychromatic.controller as controller
File "/usr/lib/python3.12/site-packages/polychromatic/controller/__init__.py", line 1, in <module>
from . import devices, effects, menubar, preferences, shared
File "/usr/lib/python3.12/site-packages/polychromatic/controller/devices.py", line 27, in <module>
from . import shared
File "/usr/lib/python3.12/site-packages/polychromatic/controller/shared.py", line 17, in <module>
from PyQt6.QtSvg import QSvgRenderer
ModuleNotFoundError: No module named 'PyQt6.QtSvg'
```
This adds the missing dependency which is requred for `polychromatic-controller` to work.
- I tested the changes in this PR: **briefly**
A patch file from https://github.com/void-linux/void-packages/pull/52708.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-patch-3-52708.patch --]
[-- Type: text/x-diff, Size: 2361 bytes --]
From a9c68ad1a2b132431c366a2d0d5ee086434ad90e Mon Sep 17 00:00:00 2001
From: northboot <72713030+northboot@users.noreply.github.com>
Date: Sun, 20 Oct 2024 20:57:52 +0200
Subject: [PATCH 1/2] polychromatic: Add missing dependency
---
srcpkgs/polychromatic/template | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/srcpkgs/polychromatic/template b/srcpkgs/polychromatic/template
index b4d1ef45c7c68d..df53aef4085cfc 100644
--- a/srcpkgs/polychromatic/template
+++ b/srcpkgs/polychromatic/template
@@ -1,13 +1,13 @@
# Template file for 'polychromatic'
pkgname=polychromatic
version=0.9.1
-revision=1
+revision=2
build_style=meson
hostmakedepends="ninja sassc which gettext"
depends="python3-colorama python3-setproctitle python3-requests python3-colour
python3-pyqt6-gui python3-pyqt6-devel-tools python3-pyqt6-printsupport
python3-pyqt6-devel-tools python3-pyqt6-webengine python3-pyqt6-network
- python3-pyqt6-widgets python3-pyqt6-webchannel"
+ python3-pyqt6-widgets python3-pyqt6-webchannel python3-pyqt6-svg"
short_desc="RGB lighting management software"
maintainer="Martin Dimov <martin@dmarto.com>"
license="GPL-3.0-or-later"
From 506c64b5e1268857c748eaaacefc2118c05ceace Mon Sep 17 00:00:00 2001
From: northboot <72713030+northboot@users.noreply.github.com>
Date: Mon, 21 Oct 2024 20:16:54 +0200
Subject: [PATCH 2/2] polychromatic: update to 0.9.2
---
srcpkgs/polychromatic/template | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/srcpkgs/polychromatic/template b/srcpkgs/polychromatic/template
index df53aef4085cfc..43e0cd38aff45a 100644
--- a/srcpkgs/polychromatic/template
+++ b/srcpkgs/polychromatic/template
@@ -1,7 +1,7 @@
# Template file for 'polychromatic'
pkgname=polychromatic
-version=0.9.1
-revision=2
+version=0.9.2
+revision=1
build_style=meson
hostmakedepends="ninja sassc which gettext"
depends="python3-colorama python3-setproctitle python3-requests python3-colour
@@ -14,4 +14,4 @@ license="GPL-3.0-or-later"
homepage="https://polychromatic.app"
changelog="https://github.com/polychromatic/polychromatic/raw/master/CHANGELOG"
distfiles="https://github.com/polychromatic/polychromatic/archive/v${version}.tar.gz"
-checksum=651e5eebe7038356c99c4f8c3a6c04aa7d99236768c937863d8ddcebc44cfd5e
+checksum=5b7a36e5010657c9dcabbb29c850ba4269489989288eff7e3949ea7b1fe78af5
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: polychromatic: Add missing dependency
2024-10-20 19:01 [PR PATCH] polychromatic: Add missing dependency northboot
2024-10-21 11:43 ` dmarto
2024-10-21 18:16 ` [PR PATCH] [Updated] " northboot
@ 2024-10-21 18:18 ` northboot
2024-10-26 17:41 ` classabbyamp
` (11 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: northboot @ 2024-10-21 18:18 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 365 bytes --]
New comment by northboot on void-packages repository
https://github.com/void-linux/void-packages/pull/52708#issuecomment-2427410980
Comment:
> Can you also bump it to 0.9.2, now that OpenRazer 3.9 is merged.
>
> _(I personally still run the Qt5 version, and haven't had the time to deal with the Qt6 port)_
Done in 506c64b5e1268857c748eaaacefc2118c05ceace.
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: polychromatic: Add missing dependency
2024-10-20 19:01 [PR PATCH] polychromatic: Add missing dependency northboot
` (2 preceding siblings ...)
2024-10-21 18:18 ` northboot
@ 2024-10-26 17:41 ` classabbyamp
2024-10-26 19:52 ` [PR PATCH] [Updated] " northboot
` (10 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: classabbyamp @ 2024-10-26 17:41 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 172 bytes --]
New comment by classabbyamp on void-packages repository
https://github.com/void-linux/void-packages/pull/52708#issuecomment-2439669431
Comment:
squash this into 1 commit
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PR PATCH] [Updated] polychromatic: Add missing dependency
2024-10-20 19:01 [PR PATCH] polychromatic: Add missing dependency northboot
` (3 preceding siblings ...)
2024-10-26 17:41 ` classabbyamp
@ 2024-10-26 19:52 ` northboot
2024-10-26 19:59 ` northboot
` (9 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: northboot @ 2024-10-26 19:52 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1186 bytes --]
There is an updated pull request by northboot against master on the void-packages repository
https://github.com/northboot/void-packages patch-3
https://github.com/void-linux/void-packages/pull/52708
polychromatic: Add missing dependency
Problem: `polychromatic-controller` misses a dependency:
```
Traceback (most recent call last):
File "/usr/bin/polychromatic-controller", line 36, in <module>
import polychromatic.controller as controller
File "/usr/lib/python3.12/site-packages/polychromatic/controller/__init__.py", line 1, in <module>
from . import devices, effects, menubar, preferences, shared
File "/usr/lib/python3.12/site-packages/polychromatic/controller/devices.py", line 27, in <module>
from . import shared
File "/usr/lib/python3.12/site-packages/polychromatic/controller/shared.py", line 17, in <module>
from PyQt6.QtSvg import QSvgRenderer
ModuleNotFoundError: No module named 'PyQt6.QtSvg'
```
This adds the missing dependency which is requred for `polychromatic-controller` to work.
- I tested the changes in this PR: **briefly**
A patch file from https://github.com/void-linux/void-packages/pull/52708.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-patch-3-52708.patch --]
[-- Type: text/x-diff, Size: 1557 bytes --]
From a4a713bc0daac9d67f9747d2d0ff39d8d678adb6 Mon Sep 17 00:00:00 2001
From: northboot <72713030+northboot@users.noreply.github.com>
Date: Sun, 20 Oct 2024 20:57:52 +0200
Subject: [PATCH] polychromatic: Add missing dependency
polychromatic: update to 0.9.2
---
srcpkgs/polychromatic/template | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/srcpkgs/polychromatic/template b/srcpkgs/polychromatic/template
index b4d1ef45c7c68d..43e0cd38aff45a 100644
--- a/srcpkgs/polychromatic/template
+++ b/srcpkgs/polychromatic/template
@@ -1,17 +1,17 @@
# Template file for 'polychromatic'
pkgname=polychromatic
-version=0.9.1
+version=0.9.2
revision=1
build_style=meson
hostmakedepends="ninja sassc which gettext"
depends="python3-colorama python3-setproctitle python3-requests python3-colour
python3-pyqt6-gui python3-pyqt6-devel-tools python3-pyqt6-printsupport
python3-pyqt6-devel-tools python3-pyqt6-webengine python3-pyqt6-network
- python3-pyqt6-widgets python3-pyqt6-webchannel"
+ python3-pyqt6-widgets python3-pyqt6-webchannel python3-pyqt6-svg"
short_desc="RGB lighting management software"
maintainer="Martin Dimov <martin@dmarto.com>"
license="GPL-3.0-or-later"
homepage="https://polychromatic.app"
changelog="https://github.com/polychromatic/polychromatic/raw/master/CHANGELOG"
distfiles="https://github.com/polychromatic/polychromatic/archive/v${version}.tar.gz"
-checksum=651e5eebe7038356c99c4f8c3a6c04aa7d99236768c937863d8ddcebc44cfd5e
+checksum=5b7a36e5010657c9dcabbb29c850ba4269489989288eff7e3949ea7b1fe78af5
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PR PATCH] [Updated] polychromatic: Add missing dependency
2024-10-20 19:01 [PR PATCH] polychromatic: Add missing dependency northboot
` (4 preceding siblings ...)
2024-10-26 19:52 ` [PR PATCH] [Updated] " northboot
@ 2024-10-26 19:59 ` northboot
2025-01-25 1:54 ` github-actions
` (8 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: northboot @ 2024-10-26 19:59 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1186 bytes --]
There is an updated pull request by northboot against master on the void-packages repository
https://github.com/northboot/void-packages patch-3
https://github.com/void-linux/void-packages/pull/52708
polychromatic: Add missing dependency
Problem: `polychromatic-controller` misses a dependency:
```
Traceback (most recent call last):
File "/usr/bin/polychromatic-controller", line 36, in <module>
import polychromatic.controller as controller
File "/usr/lib/python3.12/site-packages/polychromatic/controller/__init__.py", line 1, in <module>
from . import devices, effects, menubar, preferences, shared
File "/usr/lib/python3.12/site-packages/polychromatic/controller/devices.py", line 27, in <module>
from . import shared
File "/usr/lib/python3.12/site-packages/polychromatic/controller/shared.py", line 17, in <module>
from PyQt6.QtSvg import QSvgRenderer
ModuleNotFoundError: No module named 'PyQt6.QtSvg'
```
This adds the missing dependency which is requred for `polychromatic-controller` to work.
- I tested the changes in this PR: **briefly**
A patch file from https://github.com/void-linux/void-packages/pull/52708.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-patch-3-52708.patch --]
[-- Type: text/x-diff, Size: 1519 bytes --]
From 999c93d0ce84680042c770cddaacbb549e356af8 Mon Sep 17 00:00:00 2001
From: northboot <72713030+northboot@users.noreply.github.com>
Date: Sun, 20 Oct 2024 20:57:52 +0200
Subject: [PATCH] polychromatic: update to 0.9.2
---
srcpkgs/polychromatic/template | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/srcpkgs/polychromatic/template b/srcpkgs/polychromatic/template
index b4d1ef45c7c68d..43e0cd38aff45a 100644
--- a/srcpkgs/polychromatic/template
+++ b/srcpkgs/polychromatic/template
@@ -1,17 +1,17 @@
# Template file for 'polychromatic'
pkgname=polychromatic
-version=0.9.1
+version=0.9.2
revision=1
build_style=meson
hostmakedepends="ninja sassc which gettext"
depends="python3-colorama python3-setproctitle python3-requests python3-colour
python3-pyqt6-gui python3-pyqt6-devel-tools python3-pyqt6-printsupport
python3-pyqt6-devel-tools python3-pyqt6-webengine python3-pyqt6-network
- python3-pyqt6-widgets python3-pyqt6-webchannel"
+ python3-pyqt6-widgets python3-pyqt6-webchannel python3-pyqt6-svg"
short_desc="RGB lighting management software"
maintainer="Martin Dimov <martin@dmarto.com>"
license="GPL-3.0-or-later"
homepage="https://polychromatic.app"
changelog="https://github.com/polychromatic/polychromatic/raw/master/CHANGELOG"
distfiles="https://github.com/polychromatic/polychromatic/archive/v${version}.tar.gz"
-checksum=651e5eebe7038356c99c4f8c3a6c04aa7d99236768c937863d8ddcebc44cfd5e
+checksum=5b7a36e5010657c9dcabbb29c850ba4269489989288eff7e3949ea7b1fe78af5
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: polychromatic: Add missing dependency
2024-10-20 19:01 [PR PATCH] polychromatic: Add missing dependency northboot
` (5 preceding siblings ...)
2024-10-26 19:59 ` northboot
@ 2025-01-25 1:54 ` github-actions
2025-02-08 1:47 ` [PR PATCH] [Updated] " northboot
` (7 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: github-actions @ 2025-01-25 1:54 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 305 bytes --]
New comment by github-actions[bot] on void-packages repository
https://github.com/void-linux/void-packages/pull/52708#issuecomment-2613717926
Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that. If this pull request is still relevant bump it or assign it.
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PR PATCH] [Updated] polychromatic: Add missing dependency
2024-10-20 19:01 [PR PATCH] polychromatic: Add missing dependency northboot
` (6 preceding siblings ...)
2025-01-25 1:54 ` github-actions
@ 2025-02-08 1:47 ` northboot
2025-02-08 1:51 ` northboot
` (6 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: northboot @ 2025-02-08 1:47 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1186 bytes --]
There is an updated pull request by northboot against master on the void-packages repository
https://github.com/northboot/void-packages patch-3
https://github.com/void-linux/void-packages/pull/52708
polychromatic: Add missing dependency
Problem: `polychromatic-controller` misses a dependency:
```
Traceback (most recent call last):
File "/usr/bin/polychromatic-controller", line 36, in <module>
import polychromatic.controller as controller
File "/usr/lib/python3.12/site-packages/polychromatic/controller/__init__.py", line 1, in <module>
from . import devices, effects, menubar, preferences, shared
File "/usr/lib/python3.12/site-packages/polychromatic/controller/devices.py", line 27, in <module>
from . import shared
File "/usr/lib/python3.12/site-packages/polychromatic/controller/shared.py", line 17, in <module>
from PyQt6.QtSvg import QSvgRenderer
ModuleNotFoundError: No module named 'PyQt6.QtSvg'
```
This adds the missing dependency which is requred for `polychromatic-controller` to work.
- I tested the changes in this PR: **briefly**
A patch file from https://github.com/void-linux/void-packages/pull/52708.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-patch-3-52708.patch --]
[-- Type: text/x-diff, Size: 1519 bytes --]
From f1877ae162e3494614999bef4350d41fd420abbc Mon Sep 17 00:00:00 2001
From: northboot <72713030+northboot@users.noreply.github.com>
Date: Sun, 20 Oct 2024 20:57:52 +0200
Subject: [PATCH] polychromatic: update to 0.9.3
---
srcpkgs/polychromatic/template | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/srcpkgs/polychromatic/template b/srcpkgs/polychromatic/template
index b4d1ef45c7c68d..dc66f3ffbc09f5 100644
--- a/srcpkgs/polychromatic/template
+++ b/srcpkgs/polychromatic/template
@@ -1,17 +1,17 @@
# Template file for 'polychromatic'
pkgname=polychromatic
-version=0.9.1
+version=0.9.3
revision=1
build_style=meson
hostmakedepends="ninja sassc which gettext"
depends="python3-colorama python3-setproctitle python3-requests python3-colour
python3-pyqt6-gui python3-pyqt6-devel-tools python3-pyqt6-printsupport
python3-pyqt6-devel-tools python3-pyqt6-webengine python3-pyqt6-network
- python3-pyqt6-widgets python3-pyqt6-webchannel"
+ python3-pyqt6-widgets python3-pyqt6-webchannel python3-pyqt6-svg"
short_desc="RGB lighting management software"
maintainer="Martin Dimov <martin@dmarto.com>"
license="GPL-3.0-or-later"
homepage="https://polychromatic.app"
changelog="https://github.com/polychromatic/polychromatic/raw/master/CHANGELOG"
distfiles="https://github.com/polychromatic/polychromatic/archive/v${version}.tar.gz"
-checksum=651e5eebe7038356c99c4f8c3a6c04aa7d99236768c937863d8ddcebc44cfd5e
+checksum=8ec601bed283ff8c188d51066f7c761a3ff82bb72b0bafd6fd9b0c68329ab002
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: polychromatic: Add missing dependency
2024-10-20 19:01 [PR PATCH] polychromatic: Add missing dependency northboot
` (7 preceding siblings ...)
2025-02-08 1:47 ` [PR PATCH] [Updated] " northboot
@ 2025-02-08 1:51 ` northboot
2025-02-08 4:13 ` classabbyamp
` (5 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: northboot @ 2025-02-08 1:51 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 185 bytes --]
New comment by northboot on void-packages repository
https://github.com/void-linux/void-packages/pull/52708#issuecomment-2644421102
Comment:
Did upgrade to a new maintenance release.
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: polychromatic: Add missing dependency
2024-10-20 19:01 [PR PATCH] polychromatic: Add missing dependency northboot
` (8 preceding siblings ...)
2025-02-08 1:51 ` northboot
@ 2025-02-08 4:13 ` classabbyamp
2025-02-08 22:08 ` [PR PATCH] [Updated] " northboot
` (4 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: classabbyamp @ 2025-02-08 4:13 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 180 bytes --]
New comment by classabbyamp on void-packages repository
https://github.com/void-linux/void-packages/pull/52708#issuecomment-2644489281
Comment:
please rebase to fix the conflict
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PR PATCH] [Updated] polychromatic: Add missing dependency
2024-10-20 19:01 [PR PATCH] polychromatic: Add missing dependency northboot
` (9 preceding siblings ...)
2025-02-08 4:13 ` classabbyamp
@ 2025-02-08 22:08 ` northboot
2025-02-08 22:40 ` classabbyamp
` (3 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: northboot @ 2025-02-08 22:08 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1186 bytes --]
There is an updated pull request by northboot against master on the void-packages repository
https://github.com/northboot/void-packages patch-3
https://github.com/void-linux/void-packages/pull/52708
polychromatic: Add missing dependency
Problem: `polychromatic-controller` misses a dependency:
```
Traceback (most recent call last):
File "/usr/bin/polychromatic-controller", line 36, in <module>
import polychromatic.controller as controller
File "/usr/lib/python3.12/site-packages/polychromatic/controller/__init__.py", line 1, in <module>
from . import devices, effects, menubar, preferences, shared
File "/usr/lib/python3.12/site-packages/polychromatic/controller/devices.py", line 27, in <module>
from . import shared
File "/usr/lib/python3.12/site-packages/polychromatic/controller/shared.py", line 17, in <module>
from PyQt6.QtSvg import QSvgRenderer
ModuleNotFoundError: No module named 'PyQt6.QtSvg'
```
This adds the missing dependency which is requred for `polychromatic-controller` to work.
- I tested the changes in this PR: **briefly**
A patch file from https://github.com/void-linux/void-packages/pull/52708.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-patch-3-52708.patch --]
[-- Type: text/x-diff, Size: 1519 bytes --]
From f1877ae162e3494614999bef4350d41fd420abbc Mon Sep 17 00:00:00 2001
From: northboot <72713030+northboot@users.noreply.github.com>
Date: Sun, 20 Oct 2024 20:57:52 +0200
Subject: [PATCH] polychromatic: update to 0.9.3
---
srcpkgs/polychromatic/template | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/srcpkgs/polychromatic/template b/srcpkgs/polychromatic/template
index b4d1ef45c7c68d..dc66f3ffbc09f5 100644
--- a/srcpkgs/polychromatic/template
+++ b/srcpkgs/polychromatic/template
@@ -1,17 +1,17 @@
# Template file for 'polychromatic'
pkgname=polychromatic
-version=0.9.1
+version=0.9.3
revision=1
build_style=meson
hostmakedepends="ninja sassc which gettext"
depends="python3-colorama python3-setproctitle python3-requests python3-colour
python3-pyqt6-gui python3-pyqt6-devel-tools python3-pyqt6-printsupport
python3-pyqt6-devel-tools python3-pyqt6-webengine python3-pyqt6-network
- python3-pyqt6-widgets python3-pyqt6-webchannel"
+ python3-pyqt6-widgets python3-pyqt6-webchannel python3-pyqt6-svg"
short_desc="RGB lighting management software"
maintainer="Martin Dimov <martin@dmarto.com>"
license="GPL-3.0-or-later"
homepage="https://polychromatic.app"
changelog="https://github.com/polychromatic/polychromatic/raw/master/CHANGELOG"
distfiles="https://github.com/polychromatic/polychromatic/archive/v${version}.tar.gz"
-checksum=651e5eebe7038356c99c4f8c3a6c04aa7d99236768c937863d8ddcebc44cfd5e
+checksum=8ec601bed283ff8c188d51066f7c761a3ff82bb72b0bafd6fd9b0c68329ab002
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: polychromatic: Add missing dependency
2024-10-20 19:01 [PR PATCH] polychromatic: Add missing dependency northboot
` (10 preceding siblings ...)
2025-02-08 22:08 ` [PR PATCH] [Updated] " northboot
@ 2025-02-08 22:40 ` classabbyamp
2025-02-08 22:49 ` [PR PATCH] [Updated] " northboot
` (2 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: classabbyamp @ 2025-02-08 22:40 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 251 bytes --]
New comment by classabbyamp on void-packages repository
https://github.com/void-linux/void-packages/pull/52708#issuecomment-2645969759
Comment:
that's a merge, not a rebase. you're not going to be able to do it on github, you need to do it locally.
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PR PATCH] [Updated] polychromatic: Add missing dependency
2024-10-20 19:01 [PR PATCH] polychromatic: Add missing dependency northboot
` (11 preceding siblings ...)
2025-02-08 22:40 ` classabbyamp
@ 2025-02-08 22:49 ` northboot
2025-02-08 22:52 ` northboot
2025-02-09 2:03 ` [PR PATCH] [Merged]: " classabbyamp
14 siblings, 0 replies; 16+ messages in thread
From: northboot @ 2025-02-08 22:49 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1186 bytes --]
There is an updated pull request by northboot against master on the void-packages repository
https://github.com/northboot/void-packages patch-3
https://github.com/void-linux/void-packages/pull/52708
polychromatic: Add missing dependency
Problem: `polychromatic-controller` misses a dependency:
```
Traceback (most recent call last):
File "/usr/bin/polychromatic-controller", line 36, in <module>
import polychromatic.controller as controller
File "/usr/lib/python3.12/site-packages/polychromatic/controller/__init__.py", line 1, in <module>
from . import devices, effects, menubar, preferences, shared
File "/usr/lib/python3.12/site-packages/polychromatic/controller/devices.py", line 27, in <module>
from . import shared
File "/usr/lib/python3.12/site-packages/polychromatic/controller/shared.py", line 17, in <module>
from PyQt6.QtSvg import QSvgRenderer
ModuleNotFoundError: No module named 'PyQt6.QtSvg'
```
This adds the missing dependency which is requred for `polychromatic-controller` to work.
- I tested the changes in this PR: **briefly**
A patch file from https://github.com/void-linux/void-packages/pull/52708.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-patch-3-52708.patch --]
[-- Type: text/x-diff, Size: 1533 bytes --]
From e72cd81b2c9ac31256fd7168a7b742582d984ba6 Mon Sep 17 00:00:00 2001
From: northboot <72713030+northboot@users.noreply.github.com>
Date: Sun, 20 Oct 2024 20:57:52 +0200
Subject: [PATCH] polychromatic: update to 0.9.3
---
srcpkgs/polychromatic/template | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/srcpkgs/polychromatic/template b/srcpkgs/polychromatic/template
index ac1146a512fdcd..dc66f3ffbc09f5 100644
--- a/srcpkgs/polychromatic/template
+++ b/srcpkgs/polychromatic/template
@@ -1,17 +1,17 @@
# Template file for 'polychromatic'
pkgname=polychromatic
-version=0.9.1
-revision=2
+version=0.9.3
+revision=1
build_style=meson
hostmakedepends="ninja sassc which gettext"
depends="python3-colorama python3-setproctitle python3-requests python3-colour
python3-pyqt6-gui python3-pyqt6-devel-tools python3-pyqt6-printsupport
python3-pyqt6-devel-tools python3-pyqt6-webengine python3-pyqt6-network
- python3-pyqt6-widgets python3-pyqt6-webchannel"
+ python3-pyqt6-widgets python3-pyqt6-webchannel python3-pyqt6-svg"
short_desc="RGB lighting management software"
maintainer="Martin Dimov <martin@dmarto.com>"
license="GPL-3.0-or-later"
homepage="https://polychromatic.app"
changelog="https://github.com/polychromatic/polychromatic/raw/master/CHANGELOG"
distfiles="https://github.com/polychromatic/polychromatic/archive/v${version}.tar.gz"
-checksum=651e5eebe7038356c99c4f8c3a6c04aa7d99236768c937863d8ddcebc44cfd5e
+checksum=8ec601bed283ff8c188d51066f7c761a3ff82bb72b0bafd6fd9b0c68329ab002
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: polychromatic: Add missing dependency
2024-10-20 19:01 [PR PATCH] polychromatic: Add missing dependency northboot
` (12 preceding siblings ...)
2025-02-08 22:49 ` [PR PATCH] [Updated] " northboot
@ 2025-02-08 22:52 ` northboot
2025-02-09 2:03 ` [PR PATCH] [Merged]: " classabbyamp
14 siblings, 0 replies; 16+ messages in thread
From: northboot @ 2025-02-08 22:52 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 240 bytes --]
New comment by northboot on void-packages repository
https://github.com/void-linux/void-packages/pull/52708#issuecomment-2645972690
Comment:
Hope it is ok now, not sure why I had to solve merge conflicts this time as opposed to last time
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PR PATCH] [Merged]: polychromatic: Add missing dependency
2024-10-20 19:01 [PR PATCH] polychromatic: Add missing dependency northboot
` (13 preceding siblings ...)
2025-02-08 22:52 ` northboot
@ 2025-02-09 2:03 ` classabbyamp
14 siblings, 0 replies; 16+ messages in thread
From: classabbyamp @ 2025-02-09 2:03 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1026 bytes --]
There's a merged pull request on the void-packages repository
polychromatic: Add missing dependency
https://github.com/void-linux/void-packages/pull/52708
Description:
Problem: `polychromatic-controller` misses a dependency:
```
Traceback (most recent call last):
File "/usr/bin/polychromatic-controller", line 36, in <module>
import polychromatic.controller as controller
File "/usr/lib/python3.12/site-packages/polychromatic/controller/__init__.py", line 1, in <module>
from . import devices, effects, menubar, preferences, shared
File "/usr/lib/python3.12/site-packages/polychromatic/controller/devices.py", line 27, in <module>
from . import shared
File "/usr/lib/python3.12/site-packages/polychromatic/controller/shared.py", line 17, in <module>
from PyQt6.QtSvg import QSvgRenderer
ModuleNotFoundError: No module named 'PyQt6.QtSvg'
```
This adds the missing dependency which is requred for `polychromatic-controller` to work.
- I tested the changes in this PR: **briefly**
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2025-02-09 2:03 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-20 19:01 [PR PATCH] polychromatic: Add missing dependency northboot
2024-10-21 11:43 ` dmarto
2024-10-21 18:16 ` [PR PATCH] [Updated] " northboot
2024-10-21 18:18 ` northboot
2024-10-26 17:41 ` classabbyamp
2024-10-26 19:52 ` [PR PATCH] [Updated] " northboot
2024-10-26 19:59 ` northboot
2025-01-25 1:54 ` github-actions
2025-02-08 1:47 ` [PR PATCH] [Updated] " northboot
2025-02-08 1:51 ` northboot
2025-02-08 4:13 ` classabbyamp
2025-02-08 22:08 ` [PR PATCH] [Updated] " northboot
2025-02-08 22:40 ` classabbyamp
2025-02-08 22:49 ` [PR PATCH] [Updated] " northboot
2025-02-08 22:52 ` northboot
2025-02-09 2:03 ` [PR PATCH] [Merged]: " classabbyamp
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).