From unknown Thu Jun 19 14:21:36 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#61023] [PATCH] package the jed editor Resent-From: Ethan Blanton Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 23 Jan 2023 05:53:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 61023 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 61023@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16744531461591 (code B ref -1); Mon, 23 Jan 2023 05:53:03 +0000 Received: (at submit) by debbugs.gnu.org; 23 Jan 2023 05:52:26 +0000 Received: from localhost ([127.0.0.1]:53065 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pJpkn-0000PU-O0 for submit@debbugs.gnu.org; Mon, 23 Jan 2023 00:52:26 -0500 Received: from lists.gnu.org ([209.51.188.17]:60506) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pJmDs-0002sX-Ev for submit@debbugs.gnu.org; Sun, 22 Jan 2023 21:06:14 -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 1pJmDs-0002fi-4C for guix-patches@gnu.org; Sun, 22 Jan 2023 21:06:12 -0500 Received: from cathode.kb8ojh.net ([162.243.72.198]) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pJmDo-0000PR-JU for guix-patches@gnu.org; Sun, 22 Jan 2023 21:06:11 -0500 Received: from anode.kb8ojh.net (pool-68-133-30-163.bflony.fios.verizon.net [68.133.30.163]) by cathode.kb8ojh.net (Postfix) with ESMTPSA id EB8D540752 for ; Mon, 23 Jan 2023 02:06:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=kb8ojh.net; s=cathode; t=1674439566; bh=Pi5AbjUE702dX4kXNdr4qpJ79rAZ097NigyW5dBo9nc=; h=Date:From:To:Subject:From; b=MYJHS0CV+cOGKS4vkeujkhhaTPEJJPkP/1nKkwL1U3Hwl+rgChFV7YpaITWXP4b88 B3b0SWepYpK4Pd2gVqCsSIDRblU8FsGNaIFKx/KGVU+nQoeFlWmxBCQyxitfEef9VY 0WygWzXa5gxMisYRSXPAmVd4KCp9qMHUjksSnd6Y= Received: by anode.kb8ojh.net (Postfix, from userid 1000) id 982A1400D9; Sun, 22 Jan 2023 21:06:06 -0500 (EST) Date: Sun, 22 Jan 2023 21:06:06 -0500 From: Ethan Blanton Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-GnuPG-Fingerprint: 2A9A 7752 8B91 6586 6289 FD3D 6CA9 2AC6 A1A8 AD0E Received-SPF: pass client-ip=162.243.72.198; envelope-from=elb@kb8ojh.net; helo=cathode.kb8ojh.net 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_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Mailman-Approved-At: Mon, 23 Jan 2023 00:52:20 -0500 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.3 (--) diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index 9dd5d7793f..133b52438c 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -89,6 +89,7 @@ #:use-module (gnu packages regex) #:use-module (gnu packages ruby) #:use-module (gnu packages sdl) + #:use-module (gnu packages slang) #:use-module (gnu packages sqlite) #:use-module (gnu packages terminals) #:use-module (gnu packages texinfo) @@ -1391,3 +1392,36 @@ easy to modify and extend, or to use without doing either. The aim of Lite XL compared to lite is to be more user-friendly, improve the quality of font rendering, and reduce CPU usage.") (license license:expat))) + +(define-public jed + (package + (name "jed") + (version "0.99-19") + (source + (origin + (method url-fetch) + (uri (string-append "https://www.jedsoft.org/releases/jed/jed-" + version ".tar.bz2")) + (sha256 + (base32 "0qspdc6wss43wh1a8fddvf62xyhld5p7hl75grv4d95h5z73k8wp")) + (modules '((guix build utils))) + (snippet + #~(begin + (substitute* "src/Makefile.in" + (("/bin/cp") "cp")) + (substitute* "configure" + (("TERMCAP=-ltermcap") "TERMCAP=")))))) + (build-system gnu-build-system) + (arguments (list #:configure-flags + #~(list (string-append "--with-slang=" + #$(this-package-input "slang"))) + #:tests? #f)) + (inputs (list slang)) + (home-page "https://www.jedsoft.org/jed/") + (synopsis "Programmer's editor using S-Lang scripting for configuration") + (description + "Jed is a powerful programmer's editor using the S-Lang scripting language +for configuration and extensibility. It provides emulation modes for the +key bindings of many editors (including Emacs and WordStar), and has syntax +highlighting for dozens of languages. Jed is very small and fast.") + (license license:gpl2+))) From unknown Thu Jun 19 14:21:36 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#61023] [PATCH] package the jed editor Resent-From: Bruno Victal Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 23 Jan 2023 14:20:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61023 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Ethan Blanton Cc: 61023@debbugs.gnu.org Received: via spool by 61023-submit@debbugs.gnu.org id=B61023.16744835908072 (code B ref 61023); Mon, 23 Jan 2023 14:20:02 +0000 Received: (at 61023) by debbugs.gnu.org; 23 Jan 2023 14:19:50 +0000 Received: from localhost ([127.0.0.1]:53738 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pJxfp-000266-Uk for submit@debbugs.gnu.org; Mon, 23 Jan 2023 09:19:50 -0500 Received: from smtpm4.myservices.hosting ([185.26.105.235]:44190) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pJxfo-00025y-7b for 61023@debbugs.gnu.org; Mon, 23 Jan 2023 09:19:48 -0500 Received: from mail1.netim.hosting (unknown [185.26.106.172]) by smtpm4.myservices.hosting (Postfix) with ESMTP id 1D21120C19; Mon, 23 Jan 2023 15:19:45 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id B719F80096; Mon, 23 Jan 2023 15:19:45 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-1.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id MEcXRcWlxgR9; Mon, 23 Jan 2023 15:19:44 +0100 (CET) Received: from [192.168.1.239] (unknown [10.192.1.83]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 80CA380093; Mon, 23 Jan 2023 15:19:44 +0100 (CET) Message-ID: <01a75079-fa31-ab16-1dbf-9211082026c3@makinata.eu> Date: Mon, 23 Jan 2023 14:19:44 +0000 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Content-Language: en-US References: From: Bruno Victal In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Score: -1.1 (-) 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.1 (--) Hi, On 2023-01-23 02:06, Ethan Blanton via Guix-patches via wrote: > + (build-system gnu-build-system) > + (arguments (list #:configure-flags > + #~(list (string-append "--with-slang=" > + #$(this-package-input "slang"))) > + #:tests? #f)) You should comment the reason for disabling the tests. Additionally, the commit should be in ChangeLog format [1], you can look at the Guix commit logs to see what they look like. [1]: https://www.gnu.org/prep/standards/standards.html#Change-Logs Cheers, Bruno From unknown Thu Jun 19 14:21:36 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#61023] [PATCH] gnu: Add the jed editor. Resent-From: Ethan Blanton Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 23 Jan 2023 15:08:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61023 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 61023@debbugs.gnu.org Received: via spool by 61023-submit@debbugs.gnu.org id=B61023.167448647214260 (code B ref 61023); Mon, 23 Jan 2023 15:08:01 +0000 Received: (at 61023) by debbugs.gnu.org; 23 Jan 2023 15:07:52 +0000 Received: from localhost ([127.0.0.1]:55053 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pJyQJ-0003hw-K6 for submit@debbugs.gnu.org; Mon, 23 Jan 2023 10:07:51 -0500 Received: from cathode.kb8ojh.net ([162.243.72.198]:53298) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pJyQH-0003hq-RN for 61023@debbugs.gnu.org; Mon, 23 Jan 2023 10:07:50 -0500 Received: from anode.kb8ojh.net (pool-68-133-30-163.bflony.fios.verizon.net [68.133.30.163]) by cathode.kb8ojh.net (Postfix) with ESMTPSA id 40B6C407F6 for <61023@debbugs.gnu.org>; Mon, 23 Jan 2023 15:07:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=kb8ojh.net; s=cathode; t=1674486469; bh=oU5zjJmwf/h/Z/0BKr00icjc4rYdy4yT3MavwIV7lXk=; h=Date:From:To:Subject:References:In-Reply-To:From; b=XETcDiAcpM99saReO3KoKBMPHCnA9JxMVeXjuTV3N4T7JE/bBk9sHUlO5Hjpae3d3 EiFTRTORDHYOZaTTIISkt68DRGle/4JjCp+/wn5+V4HbC8XTLXvzGEJ8P5SLC+8AFN ZofFGP3A+INcORFrFu3E1YmplsO2Fdip4SLHa5ZU= Received: by anode.kb8ojh.net (Postfix, from userid 1000) id D2085400E1; Mon, 23 Jan 2023 10:07:48 -0500 (EST) Date: Mon, 23 Jan 2023 10:07:48 -0500 From: Ethan Blanton Message-ID: References: <01a75079-fa31-ab16-1dbf-9211082026c3@makinata.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <01a75079-fa31-ab16-1dbf-9211082026c3@makinata.eu> X-GnuPG-Fingerprint: 2A9A 7752 8B91 6586 6289 FD3D 6CA9 2AC6 A1A8 AD0E X-Spam-Score: -0.0 (/) 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.0 (-) * gnu/packages/text-editors.scm (jed): package for jed 0.99-19 --- gnu/packages/text-editors.scm | 36 +++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index 9dd5d7793f..3f570b3831 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -89,6 +89,7 @@ #:use-module (gnu packages regex) #:use-module (gnu packages ruby) #:use-module (gnu packages sdl) + #:use-module (gnu packages slang) #:use-module (gnu packages sqlite) #:use-module (gnu packages terminals) #:use-module (gnu packages texinfo) @@ -1391,3 +1392,38 @@ easy to modify and extend, or to use without doing either. The aim of Lite XL compared to lite is to be more user-friendly, improve the quality of font rendering, and reduce CPU usage.") (license license:expat))) + +(define-public jed + (package + (name "jed") + (version "0.99-19") + (source + (origin + (method url-fetch) + (uri (string-append "https://www.jedsoft.org/releases/jed/jed-" + version ".tar.bz2")) + (sha256 + (base32 "0qspdc6wss43wh1a8fddvf62xyhld5p7hl75grv4d95h5z73k8wp")) + (modules '((guix build utils))) + (snippet + #~(begin + (substitute* "src/Makefile.in" + (("/bin/cp") "cp")) + ;; jed links termcap by default but does not require it + (substitute* "configure" + (("TERMCAP=-ltermcap") "TERMCAP=")))))) + (build-system gnu-build-system) + (arguments (list #:configure-flags + #~(list (string-append "--with-slang=" + #$(this-package-input "slang"))) + ;; jed provides no tests + #:tests? #f)) + (inputs (list slang)) + (home-page "https://www.jedsoft.org/jed/") + (synopsis "Programmer's editor using S-Lang scripting for configuration") + (description + "Jed is a powerful programmer's editor using the S-Lang scripting language +for configuration and extensibility. It provides emulation modes for the +key bindings of many editors (including Emacs and WordStar), and has syntax +highlighting for dozens of languages. Jed is very small and fast.") + (license license:gpl2+))) -- 2.30.2 From unknown Thu Jun 19 14:21:36 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Ethan Blanton Subject: bug#61023: closed (Re: bug#61023: [PATCH] package the jed editor) Message-ID: References: <87357w5652.fsf_-_@gnu.org> X-Gnu-PR-Message: they-closed 61023 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 61023@debbugs.gnu.org Date: Fri, 27 Jan 2023 15:51:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1674834662-27791-1" This is a multi-part message in MIME format... ------------=_1674834662-27791-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #61023: [PATCH] package the jed editor which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 61023@debbugs.gnu.org. --=20 61023: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D61023 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1674834662-27791-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 61023-done) by debbugs.gnu.org; 27 Jan 2023 15:50:13 +0000 Received: from localhost ([127.0.0.1]:38303 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pLQzV-0007D5-He for submit@debbugs.gnu.org; Fri, 27 Jan 2023 10:50:13 -0500 Received: from eggs.gnu.org ([209.51.188.92]:35978) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pLQzR-0007Cn-Ki for 61023-done@debbugs.gnu.org; Fri, 27 Jan 2023 10:50:12 -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 1pLQzM-00081S-0Z; Fri, 27 Jan 2023 10:50:04 -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=QrAALPMWK0khAJiK5DHusNzRIh6g9PKRZZOq9OVhpIc=; b=rRCAc//l9pZvH86ZNbIA XWjq+plAZBqI1KxQrSt6kf/zLAET/gSMMAyDKAY+Os8Xh1wCcSn4sgCqNDa2/wyVR0o9wOVErE2Yi 1QYTSYs8kaH9RsaAntUJ8H32Fd0v3HYPz+v2wphFBqgkiP6vx0d0zCYyxVzoWAx+k8MKJDpuDc4d3 MxslgLUXJsUqATMmopNSgOWscH61VIprJwVX9b9jrAX+egoAOGAQPCFqjLOQxdok7SIi6bJSdOilb MBHqOw2tAdUlreeMJtw4lj3h8DVgD5mGfs0dq0nw95cKFXTkApYEp1qyBBsoc3RoWVoxr6VaeUu/B S6AAYeniB9p06g==; Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pLQzL-0007TA-Iy; Fri, 27 Jan 2023 10:50:03 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Ethan Blanton Subject: Re: bug#61023: [PATCH] package the jed editor References: <01a75079-fa31-ab16-1dbf-9211082026c3@makinata.eu> Date: Fri, 27 Jan 2023 16:50:01 +0100 In-Reply-To: (Ethan Blanton's message of "Mon, 23 Jan 2023 10:07:48 -0500") Message-ID: <87357w5652.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: 61023-done Cc: 61023-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, Ethan Blanton skribis: > * gnu/packages/text-editors.scm (jed): package for jed 0.99-19 Applied after passing it through =E2=80=98guix style=E2=80=99. I followed = up with a patch to remove .exe files from the tarball. Thanks! Ludo=E2=80=99. ------------=_1674834662-27791-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 23 Jan 2023 05:52:26 +0000 Received: from localhost ([127.0.0.1]:53065 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pJpkn-0000PU-O0 for submit@debbugs.gnu.org; Mon, 23 Jan 2023 00:52:26 -0500 Received: from lists.gnu.org ([209.51.188.17]:60506) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pJmDs-0002sX-Ev for submit@debbugs.gnu.org; Sun, 22 Jan 2023 21:06:14 -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 1pJmDs-0002fi-4C for guix-patches@gnu.org; Sun, 22 Jan 2023 21:06:12 -0500 Received: from cathode.kb8ojh.net ([162.243.72.198]) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pJmDo-0000PR-JU for guix-patches@gnu.org; Sun, 22 Jan 2023 21:06:11 -0500 Received: from anode.kb8ojh.net (pool-68-133-30-163.bflony.fios.verizon.net [68.133.30.163]) by cathode.kb8ojh.net (Postfix) with ESMTPSA id EB8D540752 for ; Mon, 23 Jan 2023 02:06:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=kb8ojh.net; s=cathode; t=1674439566; bh=Pi5AbjUE702dX4kXNdr4qpJ79rAZ097NigyW5dBo9nc=; h=Date:From:To:Subject:From; b=MYJHS0CV+cOGKS4vkeujkhhaTPEJJPkP/1nKkwL1U3Hwl+rgChFV7YpaITWXP4b88 B3b0SWepYpK4Pd2gVqCsSIDRblU8FsGNaIFKx/KGVU+nQoeFlWmxBCQyxitfEef9VY 0WygWzXa5gxMisYRSXPAmVd4KCp9qMHUjksSnd6Y= Received: by anode.kb8ojh.net (Postfix, from userid 1000) id 982A1400D9; Sun, 22 Jan 2023 21:06:06 -0500 (EST) Date: Sun, 22 Jan 2023 21:06:06 -0500 From: Ethan Blanton To: guix-patches@gnu.org Subject: [PATCH] package the jed editor Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-GnuPG-Fingerprint: 2A9A 7752 8B91 6586 6289 FD3D 6CA9 2AC6 A1A8 AD0E Received-SPF: pass client-ip=162.243.72.198; envelope-from=elb@kb8ojh.net; helo=cathode.kb8ojh.net 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_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Mon, 23 Jan 2023 00:52:20 -0500 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.3 (--) diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index 9dd5d7793f..133b52438c 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -89,6 +89,7 @@ #:use-module (gnu packages regex) #:use-module (gnu packages ruby) #:use-module (gnu packages sdl) + #:use-module (gnu packages slang) #:use-module (gnu packages sqlite) #:use-module (gnu packages terminals) #:use-module (gnu packages texinfo) @@ -1391,3 +1392,36 @@ easy to modify and extend, or to use without doing either. The aim of Lite XL compared to lite is to be more user-friendly, improve the quality of font rendering, and reduce CPU usage.") (license license:expat))) + +(define-public jed + (package + (name "jed") + (version "0.99-19") + (source + (origin + (method url-fetch) + (uri (string-append "https://www.jedsoft.org/releases/jed/jed-" + version ".tar.bz2")) + (sha256 + (base32 "0qspdc6wss43wh1a8fddvf62xyhld5p7hl75grv4d95h5z73k8wp")) + (modules '((guix build utils))) + (snippet + #~(begin + (substitute* "src/Makefile.in" + (("/bin/cp") "cp")) + (substitute* "configure" + (("TERMCAP=-ltermcap") "TERMCAP=")))))) + (build-system gnu-build-system) + (arguments (list #:configure-flags + #~(list (string-append "--with-slang=" + #$(this-package-input "slang"))) + #:tests? #f)) + (inputs (list slang)) + (home-page "https://www.jedsoft.org/jed/") + (synopsis "Programmer's editor using S-Lang scripting for configuration") + (description + "Jed is a powerful programmer's editor using the S-Lang scripting language +for configuration and extensibility. It provides emulation modes for the +key bindings of many editors (including Emacs and WordStar), and has syntax +highlighting for dozens of languages. Jed is very small and fast.") + (license license:gpl2+))) ------------=_1674834662-27791-1--