From unknown Tue Jun 17 20:18:52 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#66535 <66535@debbugs.gnu.org> To: bug#66535 <66535@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add emacs-pacfiles-mode. Reply-To: bug#66535 <66535@debbugs.gnu.org> Date: Wed, 18 Jun 2025 03:18:52 +0000 retitle 66535 [PATCH] gnu: Add emacs-pacfiles-mode. reassign 66535 guix-patches submitter 66535 Cayetano Santos severity 66535 normal tag 66535 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 14 05:00:36 2023 Received: (at submit) by debbugs.gnu.org; 14 Oct 2023 09:00:36 +0000 Received: from localhost ([127.0.0.1]:47867 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qraVg-0008IA-Bj for submit@debbugs.gnu.org; Sat, 14 Oct 2023 05:00:36 -0400 Received: from lists.gnu.org ([2001:470:142::17]:59624) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qraVd-0008Hg-PS for submit@debbugs.gnu.org; Sat, 14 Oct 2023 05:00:35 -0400 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 1qraVA-00048b-WC for guix-patches@gnu.org; Sat, 14 Oct 2023 05:00:05 -0400 Received: from devianza.investici.org ([198.167.222.108]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qraV7-0001Ad-Kl for guix-patches@gnu.org; Sat, 14 Oct 2023 05:00:04 -0400 Received: from mx2.investici.org (unknown [127.0.0.1]) by devianza.investici.org (Postfix) with ESMTP id 4S6y4Q3KVdz6vHN; Sat, 14 Oct 2023 08:59:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1697273990; bh=F+cceeeRKKirxQk9uZFnPPWi6wsP/m20nd7sLoYEMmI=; h=From:To:Cc:Subject:Date:From; b=B4vLJgIzDcgLQPfQvBFog5glJTqxf2H6J21qG1ImiyGPBZ4mIldhuCNn1fuQ9V234 NKLJAKdFB2f0larHFpr31G07l7QlwA8J5a5NvnMfh9eL/UQffgNn2BMbaE2IdZk7pO g0Xxjq7tbfOry80m+CyBliukAa463N6TuAe5I12Q= Received: from [198.167.222.108] (mx2.investici.org [198.167.222.108]) (Authenticated sender: cayetano.santos@inventati.org) by localhost (Postfix) with ESMTPSA id 4S6y4Q0x4nz6vHL; Sat, 14 Oct 2023 08:59:50 +0000 (UTC) From: Cayetano Santos To: guix-patches@gnu.org Subject: [PATCH] gnu: Add emacs-pacfiles-mode. Date: Sat, 14 Oct 2023 10:59:17 +0200 Message-ID: <69fa1a5f61ed09d75479413a451779dd2ebb8f74.1697273957.git.csantosb@inventati.org> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=198.167.222.108; envelope-from=csantosb@inventati.org; helo=devianza.investici.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, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: Cayetano Santos 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.1 (/) * gnu/packages/emacs-xyz.scm (emacs-pacfiles-mode): New variable. --- gnu/packages/emacs-xyz.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index bb8c25f9b5..2758b7ce3f 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1729,6 +1729,26 @@ (define-public emacs-fzf purpose finder.") (license license:gpl3+)))) +(define-public emacs-pacfiles-mode + (package + (name "emacs-pacfiles-mode") + (version "1.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/UndeadKernel/pacfiles-mode.git") + (commit (string-append "v" version)))) + (sha256 + (base32 + "1d61s846r9ncmyx97f44r8i3p1ikgi4bab8k7xk868lja96y2ij7")))) + (build-system emacs-build-system) + (home-page "https://github.com/UndeadKernel/pacfiles-mode") + (synopsis "Archlinux’s pacnew and pacsave merging tool") + (description + "Emacs major mode to manage .pacnew and .pacsave files left by + ArchLinux's pacman") + (license license:expat))) + (define-public emacs-minions (package (name "emacs-minions") base-commit: 8e8d20b6b35d3ab529f9045cc8a779cdcec9c471 -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 24 12:06:16 2023 Received: (at 66535-done) by debbugs.gnu.org; 24 Oct 2023 16:06:16 +0000 Received: from localhost ([127.0.0.1]:56496 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qvJv6-0004rf-2K for submit@debbugs.gnu.org; Tue, 24 Oct 2023 12:06:16 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:60510) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qvJv3-0004rO-1w for 66535-done@debbugs.gnu.org; Tue, 24 Oct 2023 12:06:14 -0400 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 1qvJuT-0005H5-SO; Tue, 24 Oct 2023 12:05:37 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=D082FPBaYimd93YTIa9UqJJUUs4f6TbYySLXN3Bs/fo=; b=mkbyn/6uPMsI64i/iFZ1 pzZhAc47ROrFJ02CDYK8/08elWPbTh5s/25OKkls6n62oKbZiRC5ispHY0HP5VIhkzgtg0rE+YDIh 9KdIlWO0IyWks6Y79ATmHpR0JCqjz5hNvXMbtCXN4GhoBtM0LWMJ4AzG9pR+AlIcV/bTTUrzDhg4F t/LuzcJ927Sh55QUO2IxTSbZC1qzmP414tg+gMTo/3BIjsSEvUT4/ccsvPcFrmIQYToL4lAXz0I7l GjC7QDrpzOQaSPlGfBwkJ7M7vmD9hvPt+B/7SM+QC9nzKRpM0MJ9heIIxVL4zGASMWw6cmHn/aMX4 2iXarF0oyQnLJQ==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Cayetano Santos Subject: Re: [bug#66535] [PATCH] gnu: Add emacs-pacfiles-mode. In-Reply-To: <69fa1a5f61ed09d75479413a451779dd2ebb8f74.1697273957.git.csantosb@inventati.org> (Cayetano Santos's message of "Sat, 14 Oct 2023 10:59:17 +0200") References: <69fa1a5f61ed09d75479413a451779dd2ebb8f74.1697273957.git.csantosb@inventati.org> Date: Tue, 24 Oct 2023 18:05:35 +0200 Message-ID: <87v8aw57lc.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 66535-done Cc: 66535-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 (---) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, Cayetano Santos skribis: > * gnu/packages/emacs-xyz.scm (emacs-pacfiles-mode): New variable. Applied with the changes below, thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 497efbea58..2784ae2ef2 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1737,17 +1737,18 @@ (define-public emacs-pacfiles-mode (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/UndeadKernel/pacfiles-mode.gi= t") + (url "https://github.com/UndeadKernel/pacfiles-mode") (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 "1d61s846r9ncmyx97f44r8i3p1ikgi4bab8k7xk868lja96y2ij7")))) (build-system emacs-build-system) (home-page "https://github.com/UndeadKernel/pacfiles-mode") - (synopsis "Archlinux=E2=80=99s pacnew and pacsave merging tool") + (synopsis "ArchLinux's pacnew and pacsave merging tool") (description - "Emacs major mode to manage .pacnew and .pacsave files left by - ArchLinux's pacman") + "This Emacs major mode helps manage @file{.pacnew} and @file{.pacsave} +files left by ArchLinux's pacman.") (license license:expat))) =20 (define-public emacs-minions --=-=-=-- From unknown Tue Jun 17 20:18:52 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 22 Nov 2023 12:24:08 +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