From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 04 10:32:01 2020 Received: (at submit) by debbugs.gnu.org; 4 Feb 2020 15:32:01 +0000 Received: from localhost ([127.0.0.1]:44583 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iz0B8-0002Zb-Ji for submit@debbugs.gnu.org; Tue, 04 Feb 2020 10:32:01 -0500 Received: from lists.gnu.org ([209.51.188.17]:44536) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iz0B2-0002ZQ-TJ for submit@debbugs.gnu.org; Tue, 04 Feb 2020 10:31:52 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:45512) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iz0B1-0005bI-GL for guix-patches@gnu.org; Tue, 04 Feb 2020 10:31:48 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:470:142:3::e]:60337) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iz0B1-00037R-CE for guix-patches@gnu.org; Tue, 04 Feb 2020 10:31:47 -0500 Received: from cpe00fc8d518353-cm00fc8d518350.cpe.net.cable.rogers.com ([99.228.8.225]:44524 helo=chaman.hitronhub.home) by fencepost.gnu.org with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iz0B0-0002SO-CH; Tue, 04 Feb 2020 10:31:46 -0500 From: Amin Bandali To: guix-patches@gnu.org Subject: [PATCH] gnu: Add pasystray. Date: Tue, 4 Feb 2020 10:31:23 -0500 Message-Id: <20200204153123.17099-1-mab@gnu.org> X-Mailer: git-send-email 2.25.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: 1.5 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * gnu/packages/gtk.scm (pasystray): New variable. --- gnu/packages/gtk.scm | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index f934eabe27..0dc83cf473 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -22,6 +22,7 @@ ;;; Copyright © 2018 Pierre Neidha [...] Content analysis details: (1.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: autistici.org] -0.0 SPF_PASS SPF: sender matches SPF record 1.5 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record X-Debbugs-Envelope-To: submit Cc: Amin Bandali X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.5 (/) * gnu/packages/gtk.scm (pasystray): New variable. --- gnu/packages/gtk.scm | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index f934eabe27..0dc83cf473 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -22,6 +22,7 @@ ;;; Copyright © 2018 Pierre Neidhardt ;;; Copyright © 2019 Meiyo Peng ;;; Copyright © 2019 Giacomo Leidi +;;; Copyright © 2020 Amin Bandali ;;; ;;; This file is part of GNU Guix. ;;; @@ -53,6 +54,7 @@ #:use-module (gnu packages) #:use-module (gnu packages algebra) #:use-module (gnu packages autotools) + #:use-module (gnu packages avahi) #:use-module (gnu packages base) #:use-module (gnu packages texinfo) #:use-module (gnu packages check) @@ -75,6 +77,7 @@ #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages pretty-print) + #:use-module (gnu packages pulseaudio) #:use-module (gnu packages python) #:use-module (gnu packages python-xyz) #:use-module (gnu packages guile) @@ -1892,3 +1895,41 @@ displayed on the other side of the bus.") ;; Dual-licensed under either LGPLv2.1 or LGPLv3. (license (list license:lgpl2.1 license:lgpl3)))) + +(define-public pasystray + (package + (name "pasystray") + (version "0.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/christophgysin/pasystray.git") + (commit (string-append name "-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xx1bm9kimgq11a359ikabdndqg5q54pn1d1dyyjnrj0s41168fk")))) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'bootstrap 'remove-bootstrap.sh + (lambda _ + (delete-file "bootstrap.sh") ; not useful in the context of Guix + #t))))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) ; for aclocal + ("pkg-config" ,pkg-config))) + (inputs + `(("pulseaudio" ,pulseaudio) + ("avahi" ,avahi) + ("gtk+" ,gtk+) + ("libx11" ,libx11) + ("libnotify" ,libnotify))) + (home-page "https://github.com/christophgysin/pasystray") + (synopsis "PulseAudio controller for the system tray") + (description "@command{pasystray} enables control of various +PulseAudio server settings from the X11 system tray. See the project +README.md for a detailed list of features.") + (license license:lgpl2.1+))) -- 2.25.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 04 19:31:53 2020 Received: (at 39422) by debbugs.gnu.org; 5 Feb 2020 00:31:54 +0000 Received: from localhost ([127.0.0.1]:44968 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iz8bh-0000Qm-Nm for submit@debbugs.gnu.org; Tue, 04 Feb 2020 19:31:53 -0500 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:57177) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iz8bg-0000QX-4Q for 39422@debbugs.gnu.org; Tue, 04 Feb 2020 19:31:52 -0500 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 05B5322033; Tue, 4 Feb 2020 19:31:47 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute4.internal (MEProxy); Tue, 04 Feb 2020 19:31:47 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=mesmtp; bh=N3vJBFsGNL1Nh1oJh27VO9fy TnaXL3LybBHrGD/UN20=; b=KV588MC1CN9KeYjHNGe2yZJXHFCpc00PPIvyVmyO 4nNNcXZATsmsZ3V2Z44eyHUYDS47JV5m8Ru3sRIpX8/1OX2ZRruvFZG1B1Vdxek4 Z45W1jIV0rpiTSK4vtzOLZQsOagm1MXNXnPJUn8Iwq8oQFlTJCQm+IA3BdX9Di8/ c0I= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=N3vJBF sGNL1Nh1oJh27VO9fyTnaXL3LybBHrGD/UN20=; b=ZAXAQ0PcYzjqHFWhyajZ4k aTh+vC93QgiBGiURAGiSaXpiEv0RvUoUbv5KmunnMC77RSXJJb3p6Qqq6AiHIw3E lTulYjQp6yv3x5oReiO2ZBQppgnZzq8ucqTHkCtB+SVmdy2I+awaeg9qHaTckTpv W9SrTwTUwkm/LkBCNesXeJ7JLod7Utd7gbxnt+IXl1w8YqznqdSY9iyXkf2sFuuK UnktvGNnnQWdNIZpLTXFteV2F0gDCvD9vGuHW9eFfBjxhVPNtyZQvRV65I+eN+hA rzMScTgeAgrtMNEHwEN0HNMPskTFoWDKgG3P9FvgRPaI1868beMatDIcHQKRF9xw == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedugedrhedtgddvgecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhepfffhvffukfhfgggtuggjsehttdertd dttddvnecuhfhrohhmpefnvghoucfhrghmuhhlrghrihcuoehlvghosehfrghmuhhlrghr ihdrnhgrmhgvqeenucfkphepjeeirdduvdegrddufeekrdeifeenucevlhhushhtvghruf hiiigvpedtnecurfgrrhgrmhepmhgrihhlfhhrohhmpehlvghosehfrghmuhhlrghrihdr nhgrmhgv X-ME-Proxy: Received: from localhost (c-76-124-138-63.hsd1.pa.comcast.net [76.124.138.63]) by mail.messagingengine.com (Postfix) with ESMTPA id C16E730600DC; Tue, 4 Feb 2020 19:31:46 -0500 (EST) Date: Tue, 4 Feb 2020 19:31:40 -0500 From: Leo Famulari To: Amin Bandali Subject: Re: [bug#39422] [PATCH] gnu: Add pasystray. Message-ID: <20200205003140.GB30681@jasmine.lan> References: <20200204153123.17099-1-mab@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200204153123.17099-1-mab@gnu.org> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 39422 Cc: 39422@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) On Tue, Feb 04, 2020 at 10:31:23AM -0500, Amin Bandali wrote: > * gnu/packages/gtk.scm (pasystray): New variable. Thanks! Can we put it in the pulseaudio module? > + (add-before 'bootstrap 'remove-bootstrap.sh > + (lambda _ > + (delete-file "bootstrap.sh") ; not useful in the context of Guix > + #t))))) Also, can you clarify this comment? Like, does it interfere with building? From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 04 20:36:25 2020 Received: (at 39422) by debbugs.gnu.org; 5 Feb 2020 01:36:25 +0000 Received: from localhost ([127.0.0.1]:45005 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iz9c4-00022b-Ub for submit@debbugs.gnu.org; Tue, 04 Feb 2020 20:36:25 -0500 Received: from eggs.gnu.org ([209.51.188.92]:47773) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iz9c2-00022O-QM for 39422@debbugs.gnu.org; Tue, 04 Feb 2020 20:36:19 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:45713) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iz9bx-0000A1-GD; Tue, 04 Feb 2020 20:36:13 -0500 Received: from cpe00fc8d518353-cm00fc8d518350.cpe.net.cable.rogers.com ([99.228.8.225]:46100 helo=localhost) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iz9bv-0008MP-CB; Tue, 04 Feb 2020 20:36:12 -0500 From: Amin Bandali To: Leo Famulari Subject: Re: [bug#39422] [PATCH] gnu: Add pasystray. Organization: GNU References: <20200204153123.17099-1-mab@gnu.org> <20200205003140.GB30681@jasmine.lan> Date: Tue, 04 Feb 2020 20:36:05 -0500 In-Reply-To: <20200205003140.GB30681@jasmine.lan> Message-ID: <87imklvmre.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 39422 Cc: 39422@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain Leo Famulari writes: > On Tue, Feb 04, 2020 at 10:31:23AM -0500, Amin Bandali wrote: >> * gnu/packages/gtk.scm (pasystray): New variable. > > Thanks! Can we put it in the pulseaudio module? > Sure! Noting that now there's a circular import between the pulseaudio module and the gnome module because of dependency of pasystray on libnotify, defined in the gnome module. > >> + (add-before 'bootstrap 'remove-bootstrap.sh >> + (lambda _ >> + (delete-file "bootstrap.sh") ; not useful in the context of Guix >> + #t))))) > > Also, can you clarify this comment? Like, does it interfere with > building? > Yeah, exactly: --8<---------------cut here---------------start------------->8--- ... starting phase `bootstrap' running './bootstrap.sh' patch-shebang: ./bootstrap.sh: changing `/usr/bin/env bash' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash' configure.ac:27: installing './compile' configure.ac:26: installing './install-sh' configure.ac:26: installing './missing' src/Makefile.am: installing './depcomp' ./bootstrap.sh: ./configure: /bin/sh: bad interpreter: No such file or directory command "./bootstrap.sh" failed with status 126 --8<---------------cut here---------------end--------------->8--- PATCH v2 below mentions that bootstrap.sh interferes with build. Is that better? Or were you thinking of a longer explanation? * * * --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Add-pasystray.patch Content-Transfer-Encoding: quoted-printable From=20025f5eea0fb0508d0306d3c476b3c47c4fc9273c Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Tue, 4 Feb 2020 20:31:49 -0500 Subject: [PATCH v2] gnu: Add pasystray. * gnu/packages/pulseaudio.scm (pasystray): New variable. =2D-- gnu/packages/pulseaudio.scm | 40 +++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/pulseaudio.scm b/gnu/packages/pulseaudio.scm index 2bbe6c5bdd..0e37fe4f48 100644 =2D-- a/gnu/packages/pulseaudio.scm +++ b/gnu/packages/pulseaudio.scm @@ -42,6 +42,7 @@ #:use-module (gnu packages check) #:use-module (gnu packages dbm) #:use-module (gnu packages glib) + #:use-module (gnu packages gnome) ; for libnotify #:use-module (gnu packages gtk) #:use-module (gnu packages libcanberra) #:use-module (gnu packages web) @@ -402,3 +403,42 @@ install one or more of the following packages alongsid= e pulseaudio-dlna: "pamixer is like amixer but for PulseAudio, allowing easy control of = the volume levels of the sinks (get, set, decrease, increase, toggle mute, etc= ).") (license l:gpl3+))) + +(define-public pasystray + (package + (name "pasystray") + (version "0.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/christophgysin/pasystray.git") + (commit (string-append name "-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xx1bm9kimgq11a359ikabdndqg5q54pn1d1dyyjnrj0s41168fk")))) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'bootstrap 'remove-bootstrap.sh + (lambda _ + (delete-file "bootstrap.sh") ; not useful in the context of G= uix, + ; and interferes with build + #t))))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) ; for aclocal + ("pkg-config" ,pkg-config))) + (inputs + `(("avahi" ,avahi) + ("gtk+" ,gtk+) + ("libnotify" ,libnotify) + ("libx11" ,libx11) + ("pulseaudio" ,pulseaudio))) + (home-page "https://github.com/christophgysin/pasystray") + (synopsis "PulseAudio controller for the system tray") + (description "@command{pasystray} enables control of various +PulseAudio server settings from the X11 system tray. See the project +README.md for a detailed list of features.") + (license l:lgpl2.1+))) =2D-=20 2.25.0 --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEObM8jZRIDS3cwqSYi0Sgzce5VvIFAl46HAUACgkQi0Sgzce5 VvJ8TA//RcrNJD61lZ41SCf5CIc7obeE5jkW88z/LbAsoXMVUg2Yy98BAJn5vsvE uOUHqxdQ0DTUHffoEVYdSyaiJ7MWUqjalDugd0b8U2b850b4nzCmbCk+01+v1SOD FsXMiBFPMywdlAgJ59JT5pZ0EHdWdidL/jYui/IPgD3CsKCsft1obtMlrw2fQUhc hX4zO0lrMimdT1+XN+5C6hrNh88OX/hIKqqfuL02r5SnFMdN0pydxsUW/x/SvBI2 DyIf7vujTWH9CQWqip3Izw/f0Z1hq9y7xb0JCEq7jXtWKx/8uJ4XSsPM7d2vrj0b B42qRokZ34bgoB1iNUezi5wN0wDC28BOPdaUEFc2meiZZqmeeZnXvMLATfalW6Q0 P6UARp81zxgHyzeWT2yAhF9/7xJ5ap5KZjM5jKjfx6ApeNdhDHZbxXfNAZQ3NKQ9 i6vKh+JN3a4F2nEFCdM4SRbJbKiXXDBIm+Nw5FlD/ROYXw4FNmEnIBVqv4ejGyDD 9Pj3pC6DWbyawiQMKByxZ/ZO8CuzlrUzfr4VlKdfA6XGhIrNSWANIui3L2lqEsMk SVUKmqqqRDNwMEaJvcsk+gwk9P/U0NHG+ladWEcRHH+/NILv0RKKm3JNObEVE2mn CL+ga24NP8OdyqQkM/UBzxx7Q7JcLEzbPUVIGd0omTCIe6JodUU= =AUCV -----END PGP SIGNATURE----- --==-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Feb 07 18:42:19 2020 Received: (at 39422-done) by debbugs.gnu.org; 7 Feb 2020 23:42:19 +0000 Received: from localhost ([127.0.0.1]:50437 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j0DGN-0005z9-5O for submit@debbugs.gnu.org; Fri, 07 Feb 2020 18:42:19 -0500 Received: from wout1-smtp.messagingengine.com ([64.147.123.24]:53355) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j0DGL-0005yv-5N for 39422-done@debbugs.gnu.org; Fri, 07 Feb 2020 18:42:17 -0500 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.west.internal (Postfix) with ESMTP id 552A7475; Fri, 7 Feb 2020 18:42:11 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute4.internal (MEProxy); Fri, 07 Feb 2020 18:42:11 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=mesmtp; bh=C1mYjHjC9l0rsriJESgX7QhH 7bfFJnsuGzE01fCOOdM=; b=Wh9r757Z/wED+zO/InCIVkbSiEsNehXaPTn4ZUrx dTox4TnFB1ZyrTRXTQ4Q00PYnBBfOJqxug3E42g1iE7M07vPDl/uAeiO2ap+6s/O WlI3BDbu3sLnrnqxLNWDjXzBqzCS0upC4PBnVB3lqL+QIvuUbWeifiJxCd84DrqE D0M= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=C1mYjH jC9l0rsriJESgX7QhH7bfFJnsuGzE01fCOOdM=; b=TmMQXYM1zW7B5lRUVVhI3y i0z+HfA2htdjwV52ZlZhmnzkT947y09Zq8XDGv8GdTGqCTZYOsYHzLF2/Dn/P0f5 BguHvsVNnrSnW9WekZUWijBoZrAkWNKPMdawfL4w9wAcCzOzkrqaGvW6QeZOPjI+ YSvJGuPIFcVnbuLqFic5MsKHN5rpapMA4/CqA/XJUW4EbYxa0s5/Uy8oyfW3uvLY dcpEdb/VkjN0hwaUcrkPY/ISr7RthiEYQU1vo1k2wEeAVBCRuVAJTiNfGfeeC+wF DiRewxUUpPjE1XwdYyBUWR2hIxwBm8FYGk+EiyqWzOw4ej5Xic43cSYThRPMAr8Q == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedugedrheeigddugecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhepfffhvffukfhfgggtuggjsehgtderre dttddvnecuhfhrohhmpefnvghoucfhrghmuhhlrghrihcuoehlvghosehfrghmuhhlrghr ihdrnhgrmhgvqeenucfkphepudejvddrheekrddvtdefrdduieeknecuvehluhhsthgvrh fuihiivgeptdenucfrrghrrghmpehmrghilhhfrhhomheplhgvohesfhgrmhhulhgrrhhi rdhnrghmvg X-ME-Proxy: Received: from localhost (unknown [172.58.203.168]) by mail.messagingengine.com (Postfix) with ESMTPA id 57AFF30600DC; Fri, 7 Feb 2020 18:42:10 -0500 (EST) Date: Fri, 7 Feb 2020 18:42:09 -0500 From: Leo Famulari To: Amin Bandali Subject: Re: [bug#39422] [PATCH] gnu: Add pasystray. Message-ID: <20200207234209.GA12307@jasmine.lan> References: <20200204153123.17099-1-mab@gnu.org> <20200205003140.GB30681@jasmine.lan> <87imklvmre.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="AqsLC8rIMeq19msA" Content-Disposition: inline In-Reply-To: <87imklvmre.fsf@gnu.org> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 39422-done Cc: 39422-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --AqsLC8rIMeq19msA Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Feb 04, 2020 at 08:36:05PM -0500, Amin Bandali wrote: > From 025f5eea0fb0508d0306d3c476b3c47c4fc9273c Mon Sep 17 00:00:00 2001 > From: Amin Bandali > Date: Tue, 4 Feb 2020 20:31:49 -0500 > Subject: [PATCH v2] gnu: Add pasystray. >=20 > * gnu/packages/pulseaudio.scm (pasystray): New variable. Thanks! Pushed as d9e2f7b284f124b48b9fee150a3c06b5e0170049 --AqsLC8rIMeq19msA Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAl499dEACgkQJkb6MLrK fwiJIxAA7nu47MVGfZBQ0vNh6KoiRrYBjVuzczuiV57ikFWbzeM1JAFcQgDrxXsh J83mhUAWXExWhJEK1arUHgPgFwU6XWkJlsZIvAVxAJxS84nNUSswS5t6NtzmSpbd r6dnzVzeWraWyjMJ58H+pew3ABZnsJEGM5rj/u5iM1HNgEjOzuRF/hoitQZp1Qfc JWiP2nbUbEn5sxlR+2BedXV06k0YngcgXihWn7Wj4lH/Ju5TC5XsPKBmM0EtIhZV 4bxaT1UviLAXe++eliZG4sK0RAfckXWsZ7eFBP91KtEgO7TV4C+1mSh5oJUZwkcM v+7l6wJCgWN9Ekq7gvQ7qE4Xyc3SNN640FxyfSIiZ72rTY2robUHwovQUc6iRBE9 TRacOmhdeieUx1drIhSP1R/g8WznTrjgEL/01lTAjrJ2G4PsQq6UsjmhCX1JkfEV CfAAKEvlNCMm8qkoAN5vTrW23XHxDMfGAkd+oXLoaJHCpSKosTg4QsA8IwERrv8X 1uaB2CjOVgg+JQsJODkD+crPcFiyFLNDXq73R7r2jH/m8hW5KEanJm9B5c+mRFzQ +u8K5GfuLF53gaRYA1HP4agpwzqnSveQffg6u5gHjz1hMbxqWiiju4ZxCE92Z4cD 98JLHoiz71oxrdUsiV3Q1sM5UxXvh2TIECDKNyHGKLflhzQo7q8= =zvJF -----END PGP SIGNATURE----- --AqsLC8rIMeq19msA-- From unknown Sat Sep 20 12:00:32 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 07 Mar 2020 12:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator