From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49718) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d96Ks-0008MO-Sx for guix-patches@gnu.org; Fri, 12 May 2017 04:54:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d96Ko-0003rg-Ij for guix-patches@gnu.org; Fri, 12 May 2017 04:54:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:37029) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d96Ko-0003rN-F4 for guix-patches@gnu.org; Fri, 12 May 2017 04:54:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d96Ko-00011m-6H for guix-patches@gnu.org; Fri, 12 May 2017 04:54:02 -0400 Subject: bug#26895: Add the micro editor 'e3' Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49549) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d96KF-0007r8-H6 for guix-patches@gnu.org; Fri, 12 May 2017 04:53:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d96KB-0003P0-DL for guix-patches@gnu.org; Fri, 12 May 2017 04:53:27 -0400 Received: from 93-95-228-241.1984.is ([93.95.228.241]:47066 helo=sharknado9001.pragmatique.xyz) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d96KA-0003Lk-Ut for guix-patches@gnu.org; Fri, 12 May 2017 04:53:23 -0400 Received: by sharknado9001.pragmatique.xyz (OpenSMTPD) with ESMTPSA id 6a3d2e0e (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Fri, 12 May 2017 08:53:07 +0000 (UTC) Date: Fri, 12 May 2017 08:53:15 +0000 From: ng0 Message-ID: <20170512085315.uoazek2qtbbubhfg@abyayala> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="anguyayvlxjxqppf" Content-Disposition: inline List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26895@debbugs.gnu.org --anguyayvlxjxqppf Content-Type: text/plain; charset=utf-8 Content-Disposition: inline This patch adds the microeditor e3 written in asm. This message was written using e3, if the package definition has a mistake it happened while transfering it from my guix_package_path. -- https://pragmatique.xyz PGP: https://people.pragmatique.xyz/ng0/ --anguyayvlxjxqppf Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0001-gnu-Add-e3.patch" Content-Transfer-Encoding: quoted-printable =46rom 0d11757fb9fc22aa2928e61b5ad29cce8eb1ec8c Mon Sep 17 00:00:00 2001 =46rom: ng0 Date: Thu, 11 May 2017 21:51:54 +0000 Subject: [PATCH] gnu: Add e3. * gnu/packages/text-editors.scm (e3): New variable. --- gnu/packages/text-editors.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index 920868b52..e02a2e024 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -3,6 +3,7 @@ ;;; Copyright =C2=A9 2016 Carlo Zancanaro ;;; Copyright =C2=A9 2017 Eric Bavier ;;; Copyright =C2=A9 2017 Feng Shu +;;; Copyright =C2=A9 2017 ng0 ;;; ;;; This file is part of GNU Guix. ;;; @@ -27,6 +28,7 @@ #:use-module (guix build-system gnu) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages) + #:use-module (gnu packages assembly) #:use-module (gnu packages boost) #:use-module (gnu packages documentation) #:use-module (gnu packages gcc) @@ -189,3 +191,36 @@ development focuses on keeping weight down to a minimu= m, only the most essential features are implemented in the editor. Leafpad is simple to use, is easi= ly compiled, requires few libraries, and starts up quickly. ") (license license:gpl2+))) + +(define-public e3 + (package + (name "e3") + (version "2.82") + (source + (origin + (method url-fetch) + (uri (string-append "https://sites.google.com/site/e3editor/Home/" + "e3-" version ".tgz")) + (sha256 + (base32 + "0919kadkas020maqq37852isnzp053q2fnws2zh3mz81d1jiviak")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f + #:make-flags (list (string-append "PREFIX=3D" + (assoc-ref %outputs "out"))) + #:phases + (modify-phases %standard-phases + (delete 'configure)))) + (inputs + `(("nasm" ,nasm))) + (home-page "https://sites.google.com/site/e3editor/") + (synopsis "Very tiny editor in ASM") + (description + "e3 is a micro text editor with an executable code size between +3800 and 35000 bytes. Except for 'syntax highlighting', the e3 binary +supports all of the basic functions one expects plus built in arithmetic +calculations. UTF-8 coding of unicode characters is supported aswell. +e3 can use Wordstar-, EMACS-, Pico, Nedit or vi-like key bindings. +e3 can be used on 16,32, and 64 bit CPUs.") + (license license:gpl2+))) \ No newline at end of file --=20 2.12.2 --anguyayvlxjxqppf--