From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 01 07:30:01 2024 Received: (at submit) by debbugs.gnu.org; 1 Sep 2024 11:30:01 +0000 Received: from localhost ([127.0.0.1]:34067 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1skimN-0004I5-7j for submit@debbugs.gnu.org; Sun, 01 Sep 2024 07:30:00 -0400 Received: from lists.gnu.org ([209.51.188.17]:55120) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1skiaI-0003wA-3E for submit@debbugs.gnu.org; Sun, 01 Sep 2024 07:17:32 -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 1skiXD-00031F-NI for guix-patches@gnu.org; Sun, 01 Sep 2024 07:14:19 -0400 Received: from latitanza.investici.org ([82.94.249.234]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1skiXA-0006XU-Ly for guix-patches@gnu.org; Sun, 01 Sep 2024 07:14:19 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=privacyrequired.com; s=stigmate; t=1725189245; bh=JNzljCsdd8lArtLemjAVt2MQ67DvpL3uXm3NV2Ru29I=; h=From:To:Cc:Subject:Date:From; b=aEWz29Ud8bpKmRr75+56R+ZzgUlGgdOpYb6URP3Kj2crjQJQHHvw71PAj8OrTM5OY IjEoA9MgFCj5GO6PUvjQEvVhLE2XMR4mH8wHr08L/OtvXEOagqYQPW4slDA4Dw8vuc 0HYCX9L5Lt682i4RhTRhzNAdFO2G3waqeSvbmxac= Received: from mx3.investici.org (unknown [127.0.0.1]) by latitanza.investici.org (Postfix) with ESMTP id 4WxTmF0mhWzGp55; Sun, 1 Sep 2024 11:14:05 +0000 (UTC) Received: from [82.94.249.234] (mx3.investici.org [82.94.249.234]) (Authenticated sender: lightpug@krutt.org) by localhost (Postfix) with ESMTPSA id 4WxTmD6kCmzGp52; Sun, 1 Sep 2024 11:14:04 +0000 (UTC) From: "Daniel [REDACTED]" To: guix-patches@gnu.org Subject: [PATCH] gnu: Add Hare toolchain and ecostuff. Date: Sun, 1 Sep 2024 14:13:58 +0300 Message-ID: <20240901111400.27130-1-pjals@privacyrequired.com> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=82.94.249.234; envelope-from=pjals@privacyrequired.com; helo=latitanza.investici.org X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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_LOW=-0.7, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sun, 01 Sep 2024 07:29:58 -0400 Cc: "Daniel \[REDACTED\]" 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/hare.scm: New file. * gnu/packages/hare-xyz.scm: New file. * gnu/local.mk: Add these. * gnu/packages/hare.scm (%hare-build-arguments): New variable. (%hare-toolchain-build-arguments): New varible. (%hare-toolchain-version): New variable. (hare): New variable. (harec): New variable. * gnu/packages/hare-xyz.scm (hare-json): New variable. (hare-ssh): New variable. Change-Id: I3a9b3f9ca8e174b98b17319f383e63a267d64e27 --- gnu/local.mk | 3 + gnu/packages/hare-xyz.scm | 86 ++++++++++++++++++++++++++ gnu/packages/hare.scm | 127 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 216 insertions(+) create mode 100644 gnu/packages/hare-xyz.scm create mode 100644 gnu/packages/hare.scm diff --git a/gnu/local.mk b/gnu/local.mk index 8f0ff23251..286740d5fa 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -67,6 +67,7 @@ # Copyright © 2024 David Elsing # Copyright © 2024 Ashish SHUKLA # Copyright © 2024 Fabio Natali +# Copyright © 2024 Daniel [REDACTED] # # This file is part of GNU Guix. # @@ -351,6 +352,8 @@ GNU_SYSTEM_MODULES = \ %D%/packages/haskell-crypto.scm \ %D%/packages/haskell-web.scm \ %D%/packages/haskell-xyz.scm \ + %D%/packages/hare.scm \ + %D%/packages/hare-xyz.scm \ %D%/packages/haxe.scm \ %D%/packages/heads.scm \ %D%/packages/hexedit.scm \ diff --git a/gnu/packages/hare-xyz.scm b/gnu/packages/hare-xyz.scm new file mode 100644 index 0000000000..aaac6f5ead --- /dev/null +++ b/gnu/packages/hare-xyz.scm @@ -0,0 +1,86 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2024 Daniel [REDACTED] +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (gnu packages hare-xyz) + #:use-module (gnu packages) + #:use-module (gnu packages hare) + + #:use-module (guix build-system gnu) + #:use-module (guix gexp) + #:use-module (guix git-download) + #:use-module (guix packages) + #:use-module ((guix licenses) #:prefix l:)) + +(define-public hare-json + (package + (name "hare-json") + + ;; This most probably isn't a coincidence. ddevault versions his libraries + ;; alongside the rest of Hare. Don't ask me why! + (version %hare-toolchain-version) + + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~sircmpwn/hare-json") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sni7j4x5s727cv1x3n40q310dbljswrz55skdb9fs6vclf361cs")))) + + (build-system gnu-build-system) + (arguments + %hare-build-arguments) + + (native-inputs (list hare)) + + (synopsis "JSON support for Hare") + (description "hare-ssh is a library providing JSON support for Hare.") + (home-page "https://git.sr.ht/~sircmpwn/hare-json") + + (license l:mpl2.0))) + + +(define-public hare-ssh + (package + (name "hare-ssh") + + (version %hare-toolchain-version) + + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~sircmpwn/hare-ssh") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mnlwwi3vl2hw0v7srkh5j08hdgvfwqzbdi3yps3rjikf8rzz0cj")))) + + (build-system gnu-build-system) + (arguments + %hare-build-arguments) + + (native-inputs (list hare)) + + (synopsis "SSH library for Hare") + (description "hare-ssh is a SSH library for Hare.") + (home-page "https://git.sr.ht/~sircmpwn/hare-ssh") + + (license l:mpl2.0))) diff --git a/gnu/packages/hare.scm b/gnu/packages/hare.scm new file mode 100644 index 0000000000..b31f0c4777 --- /dev/null +++ b/gnu/packages/hare.scm @@ -0,0 +1,127 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2024 Daniel [REDACTED] +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (gnu packages hare) + #:use-module (gnu packages) + #:use-module (gnu packages base) + #:use-module (gnu packages c) + #:use-module (gnu packages commencement) + #:use-module (gnu packages man) + + #:use-module (guix build-system gnu) + #:use-module (guix gexp) + #:use-module (guix git-download) + #:use-module (guix packages) + #:use-module (guix utils) + #:use-module ((guix licenses) #:prefix l:)) + +;;; Might want to make a hare-build-system, but this mess works well enough. +(define-public %hare-toolchain-version "0.24.2") +(define %hare-phases + `(modify-phases %standard-phases + (delete 'configure) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (invoke "make" "install"))))) + +(define %hare-common-build-arguments + `(#:make-flags (list (string-append "CC=" ,(cc-for-target)) + "XDG_CACHE_HOME=/tmp/"))) +(define-public %hare-build-arguments + (append %hare-common-build-arguments + `(#:phases (modify-phases %standard-phases + (add-before 'configure 'set-prefix + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (substitute* "Makefile" (("/usr/local") out))))) + (delete 'configure) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (invoke "make" "install"))))))) +(define-public %hare-toolchain-build-arguments + (append %hare-common-build-arguments + `(#:phases (modify-phases %standard-phases + (add-before 'configure 'set-platform + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (rename-file "./configs/linux.mk" "./config.mk") + (substitute* "./config.mk" (("/usr/local") out))))) + (delete 'configure) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (invoke "make" "install"))))))) + +(define-public harec + (package + (name "harec") + (version %hare-toolchain-version) + + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~sircmpwn/harec") + (commit "0.24.2"))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1alqc6ycfq8saijb4l5sv294sj2h522ffr3gnln8xzrbyrs029b0")))) + + (build-system gnu-build-system) + (arguments + %hare-toolchain-build-arguments) + + (inputs (list qbe)) + (native-inputs (list qbe gcc-toolchain)) + + (synopsis "The Hare compiler") + (description "harec is a bootstrap compiler for Hare written in C11 for +POSIX-compatible systems.") + (home-page "https://git.sr.ht/~sircmpwn/harec") + + (license l:gpl3))) + +(define-public hare + (package + (name "hare") + (version %hare-toolchain-version) + + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~sircmpwn/hare") + (commit "0.24.2"))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15zac3h9bi9hjmgzslw4zx1vniabxnkq7z0z5pwlry05in85qngb")))) + + (build-system gnu-build-system) + (arguments + (append %hare-toolchain-build-arguments + '(#:tests? #f))) + + (propagated-inputs (list qbe harec binutils)) + (native-inputs (list harec qbe scdoc)) + + (synopsis "The Hare compiler frontend") + (description + "Hare is a systems programming language. This is the frontend for the +harec Hare compiler.") + (home-page "https://git.sr.ht/~sircmpwn/hare") + + (license l:gpl3))) base-commit: df14cacca9b95d69fdd3b6191e42df36af266bcd -- 2.45.2 From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 01 17:47:09 2024 Received: (at submit) by debbugs.gnu.org; 1 Sep 2024 21:47:09 +0000 Received: from localhost ([127.0.0.1]:40854 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sksPZ-0008DX-TE for submit@debbugs.gnu.org; Sun, 01 Sep 2024 17:47:09 -0400 Received: from lists.gnu.org ([209.51.188.17]:43760) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sklpy-00025A-3t for submit@debbugs.gnu.org; Sun, 01 Sep 2024 10:45:54 -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 1skloz-0005Lw-1l for guix-patches@gnu.org; Sun, 01 Sep 2024 10:44:54 -0400 Received: from latitanza.investici.org ([2001:888:2000:56::19]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sklow-0006Xy-Jo for guix-patches@gnu.org; Sun, 01 Sep 2024 10:44:52 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=privacyrequired.com; s=stigmate; t=1725201874; bh=5C86UGpqZb8KwSPaa6JwwyvcLSuwtQSC02mDELBACwk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=u2RoRNtrvM70mObskyHyJgkJEaHGp8SRJxH/wu6r0gA0yY3EfN8sbYXSB3w7c09rY TGSl+QoHpr9FSyNWocLnE1TA17TK7IS8tBG0zBgX8h69gMmF8gHoNDmqDhKyPTZkx3 pv1tXefojNtiUniRxSQ9WdtL4uVH4I1H0cFtcOpc= Received: from mx3.investici.org (unknown [127.0.0.1]) by latitanza.investici.org (Postfix) with ESMTP id 4WxZR66zbjzGp4d; Sun, 1 Sep 2024 14:44:34 +0000 (UTC) Received: from [82.94.249.234] (mx3.investici.org [82.94.249.234]) (Authenticated sender: lightpug@krutt.org) by localhost (Postfix) with ESMTPSA id 4WxZR65RcPzGp3S; Sun, 1 Sep 2024 14:44:34 +0000 (UTC) From: "Daniel [REDACTED]" To: guix-patches@gnu.org Subject: [PATCH] gnu: Fix Hare license. Date: Sun, 1 Sep 2024 17:44:27 +0300 Message-ID: <20240901144428.11520-1-pjals@privacyrequired.com> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240901111400.27130-1-pjals@privacyrequired.com> References: <20240901111400.27130-1-pjals@privacyrequired.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2001:888:2000:56::19; envelope-from=pjals@privacyrequired.com; helo=latitanza.investici.org X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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_LOW=-0.7, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sun, 01 Sep 2024 17:47:03 -0400 Cc: "Daniel \[REDACTED\]" 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/hare.scm (hare): Fix license. Change-Id: Icd3a21909588faf5e29386e652c5757009bbbf62 --- gnu/packages/hare.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/hare.scm b/gnu/packages/hare.scm index b31f0c4777..baecd7ca6b 100644 --- a/gnu/packages/hare.scm +++ b/gnu/packages/hare.scm @@ -124,4 +124,5 @@ (define-public hare harec Hare compiler.") (home-page "https://git.sr.ht/~sircmpwn/hare") - (license l:gpl3))) + (license (list l:mpl2.0 ; stdlib + l:gpl3)))) ; everything else base-commit: df14cacca9b95d69fdd3b6191e42df36af266bcd prerequisite-patch-id: 4d650567dcfdf4ddb01b3f57da37ef05af8f15d6 -- 2.45.2 From debbugs-submit-bounces@debbugs.gnu.org Sat Nov 23 11:48:18 2024 Received: (at 72926) by debbugs.gnu.org; 23 Nov 2024 16:48:19 +0000 Received: from localhost ([127.0.0.1]:58828 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tEtIw-0000CP-MX for submit@debbugs.gnu.org; Sat, 23 Nov 2024 11:48:18 -0500 Received: from mx1.dismail.de ([78.46.223.134]:20315) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tEtIu-0000C0-1A for 72926@debbugs.gnu.org; Sat, 23 Nov 2024 11:48:16 -0500 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id bae11349; Sat, 23 Nov 2024 17:48:09 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h= mime-version:date:content-type:content-transfer-encoding:from :message-id:subject:to; s=20190914; bh=XB1zgrxT+qXvG9arJO+/TWhzP 68ZwsIGokCwmmvP6vs=; b=G8cmHshU4+qqBsE95uTgGiwDoRyK0L61Ooh6avDzr dSUS4KYTIsFzeyuejKgS0LS4ecMxLQTFTM1X22eI7n22t44Gp4WuDsV7IJsyUX+/ oiT88u+Yd6k2d0aCDw+mmWhnM0+vyJYEHCp8NQcpOWPm+ZfE7gIJttTbKaZMkmWO ufoXF+LacPxYsCSu5ukU5owj8Tz3lHKAhWoeBQOZzctSjktgc/uEKJ3OCBGEr8ZC qPQcpr5Fc07NIyCSEHpfF5HQJ5EKIW+zxvZvtFMB8YQx+aAn8Us3A2Bp9sWByfgq DhHLwgVWJmdPGzU+iGjTBjqZJt1CYSsh5z9HLPQGp+1sQ== Received: from smtp2.dismail.de ( [10.240.26.12]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 0004dae3; Sat, 23 Nov 2024 17:48:09 +0100 (CET) Received: from smtp2.dismail.de (localhost [127.0.0.1]) by smtp2.dismail.de (OpenSMTPD) with ESMTP id c30d3a75; Sat, 23 Nov 2024 17:48:09 +0100 (CET) Received: by dismail.de (OpenSMTPD) with ESMTPSA id 95894c42 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Sat, 23 Nov 2024 17:48:08 +0100 (CET) MIME-Version: 1.0 Date: Sat, 23 Nov 2024 16:48:08 +0000 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: "jgart" Message-ID: TLS-Required: No Subject: Re: [PATCH 2/2] gnu: Add hare. To: 72926@debbugs.gnu.org, pjals@privacyrequired.com X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 72926 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.7 (-) Hi Daniel, I saw that you listed these patches as being redacted. Could you give the Guix reviewers some more information and context aroun= d that? Thanks, jgart From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 03 19:59:01 2025 Received: (at 72926-done) by debbugs.gnu.org; 4 Jan 2025 00:59:01 +0000 Received: from localhost ([127.0.0.1]:52719 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tTsVJ-0006jR-9w for submit@debbugs.gnu.org; Fri, 03 Jan 2025 19:59:01 -0500 Received: from mx2.dismail.de ([2a01:4f8:1c17:7be2::2]:39970) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tTsVG-0006j3-HN for 72926-done@debbugs.gnu.org; Fri, 03 Jan 2025 19:58:59 -0500 Received: from mx2.dismail.de (localhost [127.0.0.1]) by mx2.dismail.de (OpenSMTPD) with ESMTP id 6c4e2f59 for <72926-done@debbugs.gnu.org>; Sat, 4 Jan 2025 01:58:46 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h= mime-version:date:content-type:content-transfer-encoding:from :message-id:subject:to; s=20190914; bh=SVOiD7d2iiqyYnqdrQg0PiUhD KBwEj+sF2nmjHmzyfQ=; b=Q5AfcTI7HJQV79csvHCwhhtZxqeP0JIfQiN2yravY CtH5pW4aSF3nEwSpiuT5x2KJvfQNptRQ5VCmoI7HL+df7xFzpd+3C0I3eLFa1e4n Dq0jQ8omksGvlQ4j0eRh5rTpL0cxMOFmhK+d+6tv1tg3FybbzoJ/EEXwpGEzWBY+ g1C7wTYuO5LfFiPOYhUzeGhy+JjQfcYLoDq2TsW4ltzxUYGZSZGHopwpTRvZFLMm CDnuggBKxkAdxvpY80Taf0SDg3Yaw2y3Ya3e3+dEh1IiMfte5qPR4WC8CJkDVjGa xwnQ0wVfw0AXnsVM1amPpFMaGaya1XD9yYFTRrGGa+nwA== Received: from smtp1.dismail.de ( [10.240.26.11]) by mx2.dismail.de (OpenSMTPD) with ESMTP id bc79ad3f for <72926-done@debbugs.gnu.org>; Sat, 4 Jan 2025 01:58:45 +0100 (CET) Received: from smtp1.dismail.de (localhost [127.0.0.1]) by smtp1.dismail.de (OpenSMTPD) with ESMTP id 397607e1 for <72926-done@debbugs.gnu.org>; Sat, 4 Jan 2025 01:58:45 +0100 (CET) Received: by dismail.de (OpenSMTPD) with ESMTPSA id ee4a3314 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO) for <72926-done@debbugs.gnu.org>; Sat, 4 Jan 2025 01:58:45 +0100 (CET) MIME-Version: 1.0 Date: Sat, 04 Jan 2025 00:58:44 +0000 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: "jgart" Message-ID: TLS-Required: No Subject: To: 72926-done@debbugs.gnu.org X-Spam-Score: -0.3 (/) X-Debbugs-Envelope-To: 72926-done 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.3 (-) Hi, Closing since redacted. Feel free to reopen if interested in working more= on hare. all best, jgart From unknown Sat Jun 21 03:08:30 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 01 Feb 2025 12:24:09 +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