From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43658) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dG5AO-0004nv-8G for guix-patches@gnu.org; Wed, 31 May 2017 11:04:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dG5AI-0003fL-KD for guix-patches@gnu.org; Wed, 31 May 2017 11:04:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44900) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dG5AI-0003fH-Gx for guix-patches@gnu.org; Wed, 31 May 2017 11:04:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dG5AI-0003Jq-9e for guix-patches@gnu.org; Wed, 31 May 2017 11:04:02 -0400 Subject: bug#27150: plan9-like text editor wily Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170530155928.ykakyqwxv5uimz3a@abyayala> Date: Wed, 31 May 2017 17:02:50 +0200 In-Reply-To: <20170530155928.ykakyqwxv5uimz3a@abyayala> (ng0@pragmatique.xyz's message of "Tue, 30 May 2017 15:59:28 +0000") Message-ID: <87h901cbmt.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 27150-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable ng0 skribis: > From 551a544eab8f4295581ace79a5c8b5b2a9c3b581 Mon Sep 17 00:00:00 2001 > From: ng0 > Date: Mon, 8 May 2017 18:08:24 +0000 > Subject: [PATCH] gnu: Add wily. > > * gnu/packages/text-editors.scm (wily): New variable. Nice. Applied with the minor changes below. Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index b87114d37..a0ba1028f 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -248,10 +248,9 @@ Wordstar-, EMACS-, Pico, Nedit or vi-like key bindings. e3 can be used on (modify-phases %standard-phases (replace 'configure (lambda* (#:key outputs #:allow-other-keys) - ;; The included configure script does not - ;; understand flags such as '--host' + ;; The included configure script does not understand flags such + ;; as '--host'. (let ((out (assoc-ref outputs "out"))) - ;; 'configure' does not understand '--host'. ,@(if (%current-target-system) `((setenv "CHOST" ,(%current-target-system))) '()) @@ -263,15 +262,16 @@ Wordstar-, EMACS-, Pico, Nedit or vi-like key bindings. e3 can be used on (add-before 'install 'mkdir (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) - (mkdir-p (string-append out "/bin")))))))) + (mkdir-p (string-append out "/bin")) + #t)))))) (inputs `(("libx11" ,libx11) ("libxt" ,libxt))) (home-page "http://www.cse.yorku.ca/~oz/wily/") - (synopsis "Implementation of ACME") + (synopsis "Text editor inspired by Acme") (description "Wily is a mouse-oriented, text-based environment for programmers. -It lets you interact with files, directories and programs through mouse and keyboard -operations on plain text. Most of Wily's design (but none of its code) comes -from Rob Pike's acme.") +It lets you interact with files, directories and programs through mouse and +keyboard operations on plain text. Most of Wily's design (but none of its +code) comes from Rob Pike's Acme.") (license license:gpl3+))) --=-=-=--