From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 17 05:18:51 2023 Received: (at submit) by debbugs.gnu.org; 17 Oct 2023 09:18:51 +0000 Received: from localhost ([127.0.0.1]:58583 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qsgDz-0006vu-6P for submit@debbugs.gnu.org; Tue, 17 Oct 2023 05:18:51 -0400 Received: from lists.gnu.org ([2001:470:142::17]:59184) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qsgDv-0006vf-AI for submit@debbugs.gnu.org; Tue, 17 Oct 2023 05:18:49 -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 1qsgDQ-0002VG-9x for guix-patches@gnu.org; Tue, 17 Oct 2023 05:18:16 -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 1qsgDN-0006vj-Pp for guix-patches@gnu.org; Tue, 17 Oct 2023 05:18:16 -0400 Received: from mx2.investici.org (unknown [127.0.0.1]) by devianza.investici.org (Postfix) with ESMTP id 4S8pL33Ptqz6vHp; Tue, 17 Oct 2023 09:18:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1697534283; bh=IWOW3AHjB2Ivd6qN1N4h9JOogqdiiY0it5Cq6zDucxI=; h=From:To:Cc:Subject:Date:From; b=SSFiTVrk71yPgwSJEkPCNuEGWFcunnlnYs8ff11bBnIq3sngkAYKHGJrTghyVy7/u o5aR2oGWT3QwG2iEBRPwgMA084BpTWEyo134UiEx8UQzhK48js7sCLX3WobUVqLV2D ast3ipmMcGvTuqov/8HjupKsk61JwzFNfXE7u0m0= 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 4S8pL32Ffzz6vHk; Tue, 17 Oct 2023 09:18:03 +0000 (UTC) From: Cayetano Santos To: guix-patches@gnu.org Subject: [PATCH] gnu: emacs-disk-usage: Update to 1.3.3-0.b0d803f. Date: Tue, 17 Oct 2023 11:17:29 +0200 Message-ID: X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 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-disk-usage): Update to 1.3.3-0.b0d803f. --- gnu/packages/emacs-xyz.scm | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index bb8c25f9b5..ea46a3bdd2 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -29607,26 +29607,28 @@ (define-public emacs-redshank (license license:gpl1+)))) (define-public emacs-disk-usage - (package - (name "emacs-disk-usage") - (version "1.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gitlab.com/Ambrevar/emacs-disk-usage") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0hv2gsd8k5fbjgckgiyisq4rn1i7y4rchbjy8kmixjv6mx563bll")))) - (build-system emacs-build-system) - (home-page "https://gitlab.com/Ambrevar/emacs-disk-usage") - (synopsis "Sort and browse disk usage listings with Emacs") - (description "Disk Usage is a file system analyzer: it offers a tabulated + (let ((commit "b0d803f2cec3afc2937840f9ba66e3f903d6c415") + (revision "0")) + (package + (name "emacs-disk-usage") + (version (git-version "1.3.3" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/Ambrevar/emacs-disk-usage") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0vl79knb2snp2gzmcdasncgcc44rq99kmfnvwhfpm0wk21nxhc1m")))) + (build-system emacs-build-system) + (home-page "https://gitlab.com/Ambrevar/emacs-disk-usage") + (synopsis "Sort and browse disk usage listings with Emacs") + (description "Disk Usage is a file system analyzer: it offers a tabulated view of file listings sorted by size. Directory sizes are computed recursively. The results are cached for speed.") - (license license:gpl3+))) + (license license:gpl3+)))) (define-public emacs-orgit (package base-commit: 0e467b7b0bc02860f2819e4eaf74f5cdae7e2cd1 -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 20 07:58:55 2023 Received: (at submit) by debbugs.gnu.org; 20 Oct 2023 11:58:55 +0000 Received: from localhost ([127.0.0.1]:38880 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qto9X-00028G-7r for submit@debbugs.gnu.org; Fri, 20 Oct 2023 07:58:55 -0400 Received: from lists.gnu.org ([2001:470:142::17]:60574) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qto9T-00027v-Gx for submit@debbugs.gnu.org; Fri, 20 Oct 2023 07:58:53 -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 1qto8w-0006qX-Qg for guix-patches@gnu.org; Fri, 20 Oct 2023 07:58:18 -0400 Received: from mira.cbaines.net ([212.71.252.8]) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qto8v-00017q-Bd for guix-patches@gnu.org; Fri, 20 Oct 2023 07:58:18 -0400 Received: from localhost (unknown [217.155.61.229]) by mira.cbaines.net (Postfix) with ESMTPSA id 2E31827BBE2; Fri, 20 Oct 2023 12:58:16 +0100 (BST) Received: from felis (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 33d9b602; Fri, 20 Oct 2023 11:58:15 +0000 (UTC) References: User-agent: mu4e 1.10.5; emacs 28.2 From: Christopher Baines To: Cayetano Santos Subject: Re: [bug#66587] [PATCH] gnu: emacs-disk-usage: Update to 1.3.3-0.b0d803f. Date: Fri, 20 Oct 2023 12:56:36 +0100 In-reply-to: Message-ID: <87cyx94iay.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Received-SPF: pass client-ip=212.71.252.8; envelope-from=mail@cbaines.net; helo=mira.cbaines.net X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, 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: 66587-done@debbugs.gnu.org, guix-patches@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: -0.1 (/) --=-=-= Content-Type: text/plain Cayetano Santos via Guix-patches via writes: > * gnu/packages/emacs-xyz.scm (emacs-disk-usage): Update to 1.3.3-0.b0d803f. > --- > gnu/packages/emacs-xyz.scm | 38 ++++++++++++++++++++------------------ > 1 file changed, 20 insertions(+), 18 deletions(-) Thanks for the patch. Usually we would use the upstream release, however it seems that in this case, the changes since 2020 haven't been released yet, so I don't see a problem in using the latest commit. I've added a comment to say this. Pushed to master as 746298e54fddcd4f2f9b7a65355dd6b692f67a71. Chris --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmUya1VfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9XePQxAArY+8pTzsHMHt50R1sU4xQQVb/fGKvfki wvAx03vbaPZ8Q3shzJ4CCoiVLMNJ7BK3Du6X+s0zeW6HlpVYlBGf8SO8U3xIC+Uk 3JbSs3c1NNNR4mnQNQ1YYMYL8T2K+U8cfkDTSNMSHJkFsHhViorRZT259zuxqnre L5Eciq+e5EnMv3jk9NYvEFJVY32NddPfGkaFLMqVj+DLtJsSi6u1u0q0OIyM4O62 wAQHKWigh57BNZSRsIeMv48vf/Qzo+EHaBODbV0eiFtONjuWH81Mq6e9FZj6ddPe ZuIR7BQqGgLwmleNXYTsdfECdvkJi8BabNaVEBSchpaSt+gxPjwkhMucLtHvundl pkMRLYi3yEGOk5bme0A579a+ARamtYuKn7QmobSZ9NJNSDFqv6vgR7hjknkjjl1O uhbg9Zp9NTKcDPMUx86GYpqvlWYCB4av4Y/IP2zQAPmIL9J0safzPF5BxgqMONGH vfPGWHuPjq/JL24vg4g5k0IFOQRN+3QE0l9d/Jeo3Z0tur7RlOenTxa2ZW7FUS3B ilYTzGrl4zjPjfhLykmt+dvYMjXIqrScuYPcoU+Bo0mdwnySS8Fbefbc3Q5PZ/b6 8BKshhPAK1d2EmRGd1p4VH37fIfPskOcu9zVqftzbzmgf8klr4qJ20yASwLci49u AhnUd1pjCNc= =hTZc -----END PGP SIGNATURE----- --=-=-=-- From unknown Sat Jun 21 10:25:29 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 17 Nov 2023 12:24:12 +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