From debbugs-submit-bounces@debbugs.gnu.org Thu Dec 01 21:43:34 2022 Received: (at submit) by debbugs.gnu.org; 2 Dec 2022 02:43:34 +0000 Received: from localhost ([127.0.0.1]:43425 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p0w1W-0004ui-1P for submit@debbugs.gnu.org; Thu, 01 Dec 2022 21:43:34 -0500 Received: from lists.gnu.org ([209.51.188.17]:51058) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p0w1R-0004ub-SS for submit@debbugs.gnu.org; Thu, 01 Dec 2022 21:43:33 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p0w1Q-0002L2-9W for guix-patches@gnu.org; Thu, 01 Dec 2022 21:43:28 -0500 Received: from knopi.disroot.org ([178.21.23.139]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p0w1L-0000iz-9r for guix-patches@gnu.org; Thu, 01 Dec 2022 21:43:27 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id E7FB94204D; Fri, 2 Dec 2022 03:43:17 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gSznIP_u55ft; Fri, 2 Dec 2022 03:43:16 +0100 (CET) From: kiasoc5 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1669948996; bh=qY9gPsXiTwlb+QlEsJ5Md5zLz8vt65KF1VdPR52Dds4=; h=From:To:Cc:Subject:Date:From; b=gWUzlKDv1rAF/xPx3tvyilt+TzLlL/1B3unJ3R13w6FHHtwz5OwxDaBeBj+YtBm6O tpY89bXwc00I1EwW4dEl5VtdH86Cmv+34pYzeR0+1dLECMs/f6JkWzB01lZ1LuwqUB Sj8XM4580I+KOg9UawbdNzJEq+fvr5U9RgIHqPuXNsrl/1Z0S21jereNeS7ZssobGU jNPZLLcv7U4Rs3rCXzUa6DXrCLVcleKOTTmeY5C67icY8tj2Pq4Di6B1j7v9EB1uIG Quq78A2T2j713XRa7F9+J3Ryfhp+XdNr3R4pffgei9fegUEWpYI5laWYf8l+bWuuxP CqhbHOvE4CBzw== To: guix-patches@gnu.org Subject: [PATCH] gnu: cava: Update to 0.8.3. Date: Thu, 1 Dec 2022 21:43:09 -0500 Message-Id: <20221202024309.19405-1-kiasoc5@disroot.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=kiasoc5@disroot.org; helo=knopi.disroot.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: kiasoc5 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.4 (--) * gnu/packages/audio.scm (cava): Update to 0.8.3. [source]: Delete snippet because iniparser is no longer bundled. [homepage]: Update it. --- gnu/packages/audio.scm | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index ead5ce5963..13329ca5f8 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -4828,7 +4828,7 @@ (define-public cli-visualizer (define-public cava (package (name "cava") - (version "0.7.4") + (version "0.8.3") (source (origin (method git-fetch) (uri (git-reference @@ -4837,15 +4837,7 @@ (define-public cava (file-name (git-file-name name version)) (sha256 (base32 - "1mziklmqifhnb4kg9ia2r56r8wjn6xp40bkpf484hsgqvnrccl86")) - (modules '((guix build utils))) - (snippet - #~(begin - (delete-file-recursively "iniparser") - (substitute* "configure.ac" - (("AC_CONFIG_FILES\\(iniparser/Makefile\\)") "")) - (substitute* "Makefile.am" - (("SUBDIRS = iniparser") "")))))) + "0v0l6al3ygj6lq224ddffb1f10yv4218k7l82hbba8d7dj2rc67b")))) (build-system gnu-build-system) (native-inputs (list autoconf automake libtool)) (inputs (list fftw ncurses pulseaudio iniparser)) @@ -4875,7 +4867,7 @@ (define-public cava (string-append #$output "/share/doc/examples"))) (find-files "example_files"))))))) - (home-page "https://karlstav.github.io/cava/") + (home-page "https://github.com/karlstav/cava") (synopsis "Console audio visualizer for ALSA, MPD, and PulseAudio") (description "C.A.V.A. is a bar audio spectrum visualizer for the terminal using ALSA, MPD, PulseAudio, or a FIFO buffer as its input.") base-commit: 2775bb95c7e4ecfaf81af579e8003dddedab6960 -- 2.38.1 From debbugs-submit-bounces@debbugs.gnu.org Thu Dec 08 07:05:53 2022 Received: (at 59753-done) by debbugs.gnu.org; 8 Dec 2022 12:05:53 +0000 Received: from localhost ([127.0.0.1]:56399 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p3Fez-0008Nz-7A for submit@debbugs.gnu.org; Thu, 08 Dec 2022 07:05:53 -0500 Received: from eggs.gnu.org ([209.51.188.92]:58600) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p3Fex-0008Nr-DK for 59753-done@debbugs.gnu.org; Thu, 08 Dec 2022 07:05:51 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p3Fes-0003PM-2X; Thu, 08 Dec 2022 07:05:46 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=gt5rem5UUbYseZhc10QmirBJON4GFKhALhIw2DPfezc=; b=iZCS95FYEuhcpsImusDf QH3h9kijzBFG/E4aZ1s/TL+fJpLyft+fB2pWxBzuC/KqgEfNz1JfScnYIJDWZSdc/xKk0Z7LlJd6I TwnLaSiUDxvIJPdnHUtuswEjbws5PCK/95ia9QltWAUSh8oy/1htD5wOVutJUM5Mzrc3OSkBIAhNg iSaykqzBxOt7gaMKmqhqGLHQ5vrIHhQ5i/77Jwttl33I0yiG/ZosuHedxLWqzsAVyMXZX0YBhIyso xGbQsOjP07KJkDxUwjUGLk+G5g7QEOwu2MG6y8EL6mM4+B5I+yMnFdgwsHDCiIWUO1sY6BApvCuMG mnMpuwRrsfN+ew==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201] helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p3Fer-00020J-Gb; Thu, 08 Dec 2022 07:05:45 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: kiasoc5 Subject: Re: bug#59753: [PATCH] gnu: cava: Update to 0.8.3. References: <20221202024309.19405-1-kiasoc5@disroot.org> Date: Thu, 08 Dec 2022 13:05:44 +0100 In-Reply-To: <20221202024309.19405-1-kiasoc5@disroot.org> (kiasoc5@disroot.org's message of "Thu, 1 Dec 2022 21:43:09 -0500") Message-ID: <87mt7ydrs7.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 59753-done Cc: 59753-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: -3.3 (---) Hi, kiasoc5 skribis: > * gnu/packages/audio.scm (cava): Update to 0.8.3. > [source]: Delete snippet because iniparser is no longer bundled. > [homepage]: Update it. Applied, thanks! Ludo=E2=80=99. From unknown Tue Jun 17 22:27:09 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 05 Jan 2023 12:24:06 +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