From unknown Mon Jun 23 11:25:10 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#49923 <49923@debbugs.gnu.org> To: bug#49923 <49923@debbugs.gnu.org> Subject: Status: [PATCH staging] gnu: pulseaudio: Update to 15.0. Reply-To: bug#49923 <49923@debbugs.gnu.org> Date: Mon, 23 Jun 2025 18:25:10 +0000 retitle 49923 [PATCH staging] gnu: pulseaudio: Update to 15.0. reassign 49923 guix-patches submitter 49923 Brice Waegeneire severity 49923 normal tag 49923 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Aug 07 04:35:49 2021 Received: (at submit) by debbugs.gnu.org; 7 Aug 2021 08:35:49 +0000 Received: from localhost ([127.0.0.1]:51926 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mCHo5-0005Vr-5T for submit@debbugs.gnu.org; Sat, 07 Aug 2021 04:35:49 -0400 Received: from lists.gnu.org ([209.51.188.17]:59156) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mCHo3-0005Vj-TK for submit@debbugs.gnu.org; Sat, 07 Aug 2021 04:35:48 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:52396) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mCHo3-0000ZJ-Jj for guix-patches@gnu.org; Sat, 07 Aug 2021 04:35:47 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:33461) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mCHo1-0007j5-H4 for guix-patches@gnu.org; Sat, 07 Aug 2021 04:35:47 -0400 Received: (Authenticated sender: brice@waegenei.re) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id C11791C0006 for ; Sat, 7 Aug 2021 08:35:40 +0000 (UTC) From: Brice Waegeneire To: guix-patches@gnu.org Subject: [PATCH staging] gnu: pulseaudio: Update to 15.0. Date: Sat, 7 Aug 2021 10:35:34 +0200 Message-Id: <20210807083534.8571-1-brice@waegenei.re> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=217.70.183.197; envelope-from=brice@waegenei.re; helo=relay5-d.mail.gandi.net X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit 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: -2.6 (--) The 'bluez5' configuration options is drooped to ease transformation of the package by users. It is auto enabled by meson based on the inputs available, so it's still enabled in this package. * gnu/packages/pulseaudio.scm (pulseaudio): Update to 15.0. [arguments]: Fix 'oss-output' value and remove 'bluez5' option. [inputs]: Add 'elogind'. --- gnu/packages/pulseaudio.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/pulseaudio.scm b/gnu/packages/pulseaudio.scm index 5ae30033e0..b864af059f 100644 --- a/gnu/packages/pulseaudio.scm +++ b/gnu/packages/pulseaudio.scm @@ -51,6 +51,7 @@ #:use-module (gnu packages boost) #:use-module (gnu packages check) #:use-module (gnu packages databases) + #:use-module (gnu packages freedesktop) #:use-module (gnu packages glib) #:use-module (gnu packages gettext) #:use-module (gnu packages gnome) @@ -181,7 +182,7 @@ rates.") (define-public pulseaudio (package (name "pulseaudio") - (version "14.2") + (version "15.0") (source (origin (method url-fetch) (uri (string-append @@ -189,7 +190,7 @@ rates.") name "-" version ".tar.xz")) (sha256 (base32 - "1wb6zyln49ca93rl9id8r873b2sb8l79122ck824kr0s5isgglvm")) + "1851rg4h6sjwanvd294hn52z321rc6vbs4gbfrlw53597dx8h2x4")) (modules '((guix build utils))) (snippet ;; Disable console-kit support by default since it's deprecated @@ -206,8 +207,7 @@ rates.") (arguments `(#:configure-flags (let ((out (assoc-ref %outputs "out"))) - (list "-Doss-output=disable" - "-Dbluez5=true" + (list "-Doss-output=disabled" "-Dlocalstatedir=/var" (string-append "-Dudevrulesdir=" out "/lib/udev/rules.d") @@ -245,6 +245,7 @@ rates.") ("libxcb" ,libxcb) ("libxtst" ,libxtst) + ("elogind" ,elogind) ("eudev" ,eudev))) ;for the detection of hardware audio devices (native-inputs `(("check" ,check) base-commit: e0e572df5adbbd6333c8ce7b19926a27354867b5 -- 2.32.0 From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 10 00:58:48 2021 Received: (at 49923-done) by debbugs.gnu.org; 10 Oct 2021 04:58:48 +0000 Received: from localhost ([127.0.0.1]:54336 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mZQvA-0001Mn-KH for submit@debbugs.gnu.org; Sun, 10 Oct 2021 00:58:48 -0400 Received: from mail-qt1-f169.google.com ([209.85.160.169]:38686) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mZQv9-0001Mb-PI for 49923-done@debbugs.gnu.org; Sun, 10 Oct 2021 00:58:48 -0400 Received: by mail-qt1-f169.google.com with SMTP id t16so1277123qto.5 for <49923-done@debbugs.gnu.org>; Sat, 09 Oct 2021 21:58:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=TkFi9vKQIiQ7RO1c1xe8qvD5JvotJu5lLzJ2k15j97Y=; b=CZ8uoRPxCqIkYiBNPHystabkbamh7a1Kgpbv8sP58FaXH5ycMfkaPxTDamdYEejGr7 hHzZcJpre8KfDdGTd6XH0lCusePQk/OPREQfPJ8MlI5Y9AnQaMv++gxiNVtNrAfYxDXx JYEGG2zsW8zdtcJ+P4C5SZmGSGn7mjBAq2Gl5wcyzuMyq7+9t/CjtjweOARkdR8I0hvO Pb7kan6rze3MiZZ2cj9KZqg35Qd5SZXEApHtWjUveMXEXG8TKlf8klkDPDJjplAELS0t LL4HZ7T6eru+EhoPvt4EMXjKAnsOZ49NKLYKPC6uL5dg27Pp/FXKa8mDkrb2sasLB2kY Pgag== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=TkFi9vKQIiQ7RO1c1xe8qvD5JvotJu5lLzJ2k15j97Y=; b=N/acn0BAGgM2TKaJ1qd8BB9dpnG4h10ZHp/UuWjxIIRbEETZhBtK3xk1cpwyfxHD6q bZMdtfs7wY9De2FZnDmRVzEB4pIM89GRVny1t1Y3qV6JEEQDfhc0GuESKk6OevJnu3lY +XsstPo/9iw6bUExGs5FA5rZZjgut1new+zzr4yn3ZqD4iRd4NhYc044NjfjyaEAlxTb hEB6XRqDtxGVYh2HNjv81WGVCmtQD7HohoGKub283B7eANktq/MIzJRECk1ss5jGo8Cb 0MejGneOJz17WWrNU2ghFikkpAqdAz7DrDhICVPFSn6qUmhzNhZgEj8VfcZKiVDL3Uks 0vqQ== X-Gm-Message-State: AOAM5316IF9zlu2pC58kcM4iDgvfTSs0a9CyEG0p+3P4SPceidw/rYi6 qZxrZ4mYS7vaQcZPd7Ff3noPpBjonRc= X-Google-Smtp-Source: ABdhPJz46bn+QgTDQ3V8zuQn0xNGg4UPyrxfuMCbjP1Sd2uZ7/+wRI4eqLICve3EyfabWA7i1wmVqw== X-Received: by 2002:ac8:5707:: with SMTP id 7mr7341917qtw.79.1633841922145; Sat, 09 Oct 2021 21:58:42 -0700 (PDT) Received: from hurd (dsl-10-136-160.b2b2c.ca. [72.10.136.160]) by smtp.gmail.com with ESMTPSA id z186sm2364869qke.59.2021.10.09.21.58.41 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 09 Oct 2021 21:58:41 -0700 (PDT) From: Maxim Cournoyer To: Brice Waegeneire Subject: Re: bug#49923: [PATCH staging] gnu: pulseaudio: Update to 15.0. References: <20210807083534.8571-1-brice@waegenei.re> Date: Sun, 10 Oct 2021 00:58:41 -0400 In-Reply-To: <20210807083534.8571-1-brice@waegenei.re> (Brice Waegeneire's message of "Sat, 7 Aug 2021 10:35:34 +0200") Message-ID: <87sfx91nni.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 49923-done Cc: 49923-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.0 (-) Hello Brice, Brice Waegeneire writes: > The 'bluez5' configuration options is drooped to ease transformation of > the package by users. It is auto enabled by meson based on the inputs > available, so it's still enabled in this package. > * gnu/packages/pulseaudio.scm (pulseaudio): Update to 15.0. > [arguments]: Fix 'oss-output' value and remove 'bluez5' option. > [inputs]: Add 'elogind'. I've fixed a typo and normalize the commit message a bit, and pushed as 431e641b83. Thank you! Closing, Maxim From unknown Mon Jun 23 11:25:10 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 07 Nov 2021 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