From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 18 03:21:41 2023 Received: (at submit) by debbugs.gnu.org; 18 Feb 2023 08:21:41 +0000 Received: from localhost ([127.0.0.1]:42393 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pTITV-0003nO-6v for submit@debbugs.gnu.org; Sat, 18 Feb 2023 03:21:41 -0500 Received: from lists.gnu.org ([209.51.188.17]:51574) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pTITS-0003nE-Vk for submit@debbugs.gnu.org; Sat, 18 Feb 2023 03:21:39 -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 1pTITS-00007n-MI for guix-patches@gnu.org; Sat, 18 Feb 2023 03:21:38 -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 1pTITQ-00064X-7L for guix-patches@gnu.org; Sat, 18 Feb 2023 03:21:38 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id D1E4344541; Sat, 18 Feb 2023 09:21:33 +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 JP9Y903At-6O; Sat, 18 Feb 2023 09:21:32 +0100 (CET) From: kiasoc5 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1676708492; bh=b55xMM9EQAPVFC5kiLCPdsNviYbvrDbwMtnpXprs23s=; h=From:To:Cc:Subject:Date; b=SitJivxiwEMgY6GkBhZ8P74jl6fnvJtlIRlTY5yAn18BZLmaSn/3MZ8wTZCnpvB+4 4IX2hqXOeqJOTux2Vp9qDG0Ag2rnuc9qwIqc7Q7XB+N90SdFVvbM2/dSX4hAenREh5 ya3YqPoznus/2vMkPnUSuUacsg4qucKbs55xRBnYPvXam/+5kjjYUxka/323nczjeZ 4PdkA0x8P1ROCbQRnQM8AisF/RkeQZ0zm16VT+Uj/Pvh+6GnSh0JBNpLN751sG1J9F GOby6ziBTaVGZa9wbNf6ycn4Z5jgUjueVuFu6b6Bb4QcBXeYSKO1WULgZd9Sk+PXYL 7v8XZYYwtd4Fw== To: guix-patches@gnu.org Subject: [PATCH] gnu: cwm: Update to 7.1. Date: Sat, 18 Feb 2023 03:21:29 -0500 Message-Id: <20230218082129.18783-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/wm.scm (cwm): Update to 7.1. [arguments]: Remove trailing #t. --- gnu/packages/wm.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index f2149b5be5..5de525a401 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -1400,14 +1400,14 @@ (define-public spectrwm (define-public cwm (package (name "cwm") - (version "6.7") + (version "7.1") (source (origin (method url-fetch) (uri (string-append "https://leahneukirchen.org/releases/cwm-" version ".tar.gz")) (sha256 - (base32 "022zld29qawd8gl700g4m24qa89il3aks397zkhh66wvzssdblzx")))) + (base32 "145xjwam11194w2irsvs4z0xgn0jdijxfmx67gqd1n0j8g5wan2a")))) (build-system gnu-build-system) (arguments `(#:make-flags (list (string-append "CC=" ,(cc-for-target)) @@ -1433,8 +1433,7 @@ (define-public cwm TryExec=~@*~a/bin/cwm~@ Icon=~@ Type=Application~%" - output))) - #t)))))) + output))))))))) (inputs (list libxft libxrandr libxinerama)) (native-inputs base-commit: b04ee227a47419291391a2b6e857e41ed1c32155 -- 2.39.2 From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 20 08:04:43 2023 Received: (at submit) by debbugs.gnu.org; 20 Feb 2023 13:04:43 +0000 Received: from localhost ([127.0.0.1]:50904 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pU5qU-00025F-R6 for submit@debbugs.gnu.org; Mon, 20 Feb 2023 08:04:43 -0500 Received: from lists.gnu.org ([209.51.188.17]:59530) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pU5qT-000257-Bm for submit@debbugs.gnu.org; Mon, 20 Feb 2023 08:04:41 -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 1pU5qT-00076O-6h for guix-patches@gnu.org; Mon, 20 Feb 2023 08:04:41 -0500 Received: from relay2-d.mail.gandi.net ([217.70.183.194]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pU5qR-0003hf-Hc for guix-patches@gnu.org; Mon, 20 Feb 2023 08:04:40 -0500 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id 629D440003; Mon, 20 Feb 2023 13:04:36 +0000 (UTC) From: Nicolas Goaziou To: kiasoc5 via Guix-patches via Subject: Re: [bug#61597] [PATCH] gnu: cwm: Update to 7.1. References: <20230218082129.18783-1-kiasoc5@disroot.org> Date: Mon, 20 Feb 2023 14:04:29 +0100 In-Reply-To: <20230218082129.18783-1-kiasoc5@disroot.org> (kiasoc's message of "Sat, 18 Feb 2023 03:21:29 -0500") Message-ID: <87wn4cqyhu.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=217.70.183.194; envelope-from=mail@nicolasgoaziou.fr; helo=relay2-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_H3=0.001, RCVD_IN_MSPIKE_WL=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 Cc: kiasoc5 , 61597-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: -2.6 (--) Hello, kiasoc5 via Guix-patches via writes: > * gnu/packages/wm.scm (cwm): Update to 7.1. > [arguments]: Remove trailing #t. Applied. Thank you. Regards, -- Nicolas Goaziou From unknown Sun Jun 22 11:36:41 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 21 Mar 2023 11:24:10 +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