* [bug#37534] [PATCH] gnu: conky: Activate Pulseaudio support. @ 2019-09-27 20:32 Vasile Dumitrascu via Guix-patches via 2019-09-27 22:50 ` Tobias Geerinckx-Rice via Guix-patches via 0 siblings, 1 reply; 4+ messages in thread From: Vasile Dumitrascu via Guix-patches via @ 2019-09-27 20:32 UTC (permalink / raw) To: 37534; +Cc: Vasile Dumitrascu * gnu/packages/conky.scm (conky): [inputs] Add pulseaudio. --- gnu/packages/conky.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnu/packages/conky.scm b/gnu/packages/conky.scm index 681feb6e43..046d132a9b 100644 --- a/gnu/packages/conky.scm +++ b/gnu/packages/conky.scm @@ -2,6 +2,7 @@ ;;; Copyright ?? 2015 Sini??a Bi??in <sinisa@bidin.eu> ;;; Copyright ?? 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright ?? 2019 Pierre Neidhardt <mail@ambrevar.xyz> +;;; Copyright ?? 2019 Vasile Dumitrascu <va511e@yahoo.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -31,6 +32,7 @@ #:use-module (gnu packages lua) #:use-module (gnu packages ncurses) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages pulseaudio) #:use-module (gnu packages xorg)) (define-public conky @@ -51,7 +53,8 @@ (arguments `(#:tests? #f ; there are no tests #:configure-flags - (list "-DRELEASE=true") + (list "-DRELEASE=true" + "-DBUILD_PULSEAUDIO=ON") #:phases (modify-phases %standard-phases (add-after 'unpack 'add-freetype-to-search-path @@ -76,6 +79,7 @@ ("libxext" ,libxext) ("libxft" ,libxft) ("libxinerama" ,libxinerama) + ("pulseaudio", pulseaudio) ("lua" ,lua) ("ncurses" ,ncurses) ("curl" ,curl))) -- 2.23.0 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#37534] [PATCH] gnu: conky: Activate Pulseaudio support. 2019-09-27 20:32 [bug#37534] [PATCH] gnu: conky: Activate Pulseaudio support Vasile Dumitrascu via Guix-patches via @ 2019-09-27 22:50 ` Tobias Geerinckx-Rice via Guix-patches via 2019-09-28 9:02 ` Dumitrascu Vasile via Guix-patches via 0 siblings, 1 reply; 4+ messages in thread From: Tobias Geerinckx-Rice via Guix-patches via @ 2019-09-27 22:50 UTC (permalink / raw) To: 37534; +Cc: va511e [-- Attachment #1: Type: text/plain, Size: 906 bytes --] Vasile, Vasile Dumitrascu via Guix-patches via 写道: > --- a/gnu/packages/conky.scm > +++ b/gnu/packages/conky.scm > @@ -2,6 +2,7 @@ > ;;; Copyright ?? 2015 Sini??a Bi??in <sinisa@bidin.eu> > ;;; Copyright ?? 2018, 2019 Tobias Geerinckx-Rice > <me@tobias.gr> > ;;; Copyright ?? 2019 Pierre Neidhardt <mail@ambrevar.xyz> > +;;; Copyright ?? 2019 Vasile Dumitrascu <va511e@yahoo.com> Does this show up as corrupted in your mailbox as well? (‘??’ instead of ‘©’.) > @@ -76,6 +79,7 @@ > ("libxext" ,libxext) > ("libxft" ,libxft) > ("libxinerama" ,libxinerama) > + ("pulseaudio", pulseaudio) > ("lua" ,lua) > ("ncurses" ,ncurses) > ("curl" ,curl))) I guess any hope of alphabetical ordering was lost long ago. The change looks fine to me, but could you try fixing the text encoding? Thanks! T G-R [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 832 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#37534] [PATCH] gnu: conky: Activate Pulseaudio support. 2019-09-27 22:50 ` Tobias Geerinckx-Rice via Guix-patches via @ 2019-09-28 9:02 ` Dumitrascu Vasile via Guix-patches via 2019-10-01 16:16 ` bug#37534: " Tobias Geerinckx-Rice via Guix-patches via 0 siblings, 1 reply; 4+ messages in thread From: Dumitrascu Vasile via Guix-patches via @ 2019-09-28 9:02 UTC (permalink / raw) To: 37534, me [-- Attachment #1.1: Type: text/plain, Size: 1277 bytes --] Hi Tobias Thank you for the review and sorry to have missed the sorting. I have re-attached the original patch as a file to this email, as I guess the encoding issues were caused by git send-mail. Thank you again, Vasile On Saturday, September 28, 2019, 12:50:15 AM GMT+2, Tobias Geerinckx-Rice <me@tobias.gr> wrote: Vasile, Vasile Dumitrascu via Guix-patches via 写道: > --- a/gnu/packages/conky.scm > +++ b/gnu/packages/conky.scm > @@ -2,6 +2,7 @@ > ;;; Copyright ?? 2015 Sini??a Bi??in <sinisa@bidin.eu> > ;;; Copyright ?? 2018, 2019 Tobias Geerinckx-Rice > <me@tobias.gr> > ;;; Copyright ?? 2019 Pierre Neidhardt <mail@ambrevar.xyz> > +;;; Copyright ?? 2019 Vasile Dumitrascu <va511e@yahoo.com> Does this show up as corrupted in your mailbox as well? (‘??’ instead of ‘©’.) > @@ -76,6 +79,7 @@ > ("libxext" ,libxext) > ("libxft" ,libxft) > ("libxinerama" ,libxinerama) > + ("pulseaudio", pulseaudio) > ("lua" ,lua) > ("ncurses" ,ncurses) > ("curl" ,curl))) I guess any hope of alphabetical ordering was lost long ago. The change looks fine to me, but could you try fixing the text encoding? Thanks! T G-R [-- Attachment #1.2: Type: text/html, Size: 3234 bytes --] [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #2: 0001-gnu-conky-Activate-Pulseaudio-support.patch --] [-- Type: text/x-patch, Size: 1628 bytes --] From ddd14f92faa6298f93ded11ff1f96b34f847a549 Mon Sep 17 00:00:00 2001 From: Vasile Dumitrascu <va511e@yahoo.com> Date: Fri, 27 Sep 2019 22:32:05 +0200 Subject: [PATCH] gnu: conky: Activate Pulseaudio support. * gnu/packages/conky.scm (conky): [inputs] Add pulseaudio. --- gnu/packages/conky.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnu/packages/conky.scm b/gnu/packages/conky.scm index 681feb6e43..046d132a9b 100644 --- a/gnu/packages/conky.scm +++ b/gnu/packages/conky.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2015 Siniša Biđin <sinisa@bidin.eu> ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz> +;;; Copyright © 2019 Vasile Dumitrascu <va511e@yahoo.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -31,6 +32,7 @@ #:use-module (gnu packages lua) #:use-module (gnu packages ncurses) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages pulseaudio) #:use-module (gnu packages xorg)) (define-public conky @@ -51,7 +53,8 @@ (arguments `(#:tests? #f ; there are no tests #:configure-flags - (list "-DRELEASE=true") + (list "-DRELEASE=true" + "-DBUILD_PULSEAUDIO=ON") #:phases (modify-phases %standard-phases (add-after 'unpack 'add-freetype-to-search-path @@ -76,6 +79,7 @@ ("libxext" ,libxext) ("libxft" ,libxft) ("libxinerama" ,libxinerama) + ("pulseaudio", pulseaudio) ("lua" ,lua) ("ncurses" ,ncurses) ("curl" ,curl))) -- 2.23.0 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#37534: [PATCH] gnu: conky: Activate Pulseaudio support. 2019-09-28 9:02 ` Dumitrascu Vasile via Guix-patches via @ 2019-10-01 16:16 ` Tobias Geerinckx-Rice via Guix-patches via 0 siblings, 0 replies; 4+ messages in thread From: Tobias Geerinckx-Rice via Guix-patches via @ 2019-10-01 16:16 UTC (permalink / raw) To: 37534-done; +Cc: Dumitrascu Vasile [-- Attachment #1: Type: text/plain, Size: 800 bytes --] Vasile, Thanks for the patch! I've pushed it as 18edc9db02658c597695905121a9df68e9118ab8 with miniscule changes to the commit message. Dumitrascu Vasile 写道: > Hi Tobias > Thank you for the review and sorry to have missed the sorting. Oh, er, sorry you're sorry; no need to be. All I meant by ‘any hope lost’ was that there's no way to make the entire list sorted without moving unrelated lines around (e.g. curl). But your new compromise is a better compromise. Thank you! > I have re-attached the original patch as a file to this email, > as I guess the encoding issues were caused by git send-mail. ‘git send-email’ has one job, so it should do it really well. I send all my patches in-line and have never had trouble. Kind regards, T G-R [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 832 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-10-01 16:17 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-09-27 20:32 [bug#37534] [PATCH] gnu: conky: Activate Pulseaudio support Vasile Dumitrascu via Guix-patches via 2019-09-27 22:50 ` Tobias Geerinckx-Rice via Guix-patches via 2019-09-28 9:02 ` Dumitrascu Vasile via Guix-patches via 2019-10-01 16:16 ` bug#37534: " Tobias Geerinckx-Rice via Guix-patches via
Code repositories for project(s) associated with this external index https://git.savannah.gnu.org/cgit/guix.git This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.