unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#33334] [PATCH]:gnu:add ne:the nice editor
       [not found]     ` <CAOYpmvq9s+N1yoObOFVN+mCJwWDwTSmco6fJNC3UVq9X3yJL6w@mail.gmail.com>
@ 2019-01-07  5:37       ` swedebugia
  2019-01-07  8:35         ` Guy fleury
  0 siblings, 1 reply; 4+ messages in thread
From: swedebugia @ 2019-01-07  5:37 UTC (permalink / raw)
  To: Guy fleury; +Cc: 33334


[-- Attachment #1.1: Type: text/html, Size: 1872 bytes --]

[-- Attachment #1.2: Type: text/plain, Size: 1084 bytes --]

Guy fleury <hoonandon@gmail.com> skrev: (6 januari 2019 15:48:07 CET)
>hi swedebugia,
>
>sorry for the long delay,
>
>here is the update patch.
>i follow your sugestion .
>but i don't know what others think.
>feel free to change synopsis and description.
>
>thanks,
>
>Le jeu. 3 janv. 2019 à 17:16, swedebugia <swedebugia@riseup.net> a
>écrit :
>
>> On 2018-11-10 22:32, swedebugia wrote:
>> > Additionally:
>> >
>> > On 2018-11-10 10:25, guy fleury wrote:
>> >> +    (description
>> >> +   "ne is a free text editor based on the POSIX standard,
>> >> +    it is easy to use it and fully configurable")
>> >
>> > We don't mention that it is free because in Guix all packages are
>free.
>> > What about:
>> >
>> > "ne is fast, small, powerful and simple text editor that can be
>fully
>> > configured.  It has a simple scripting language where scripts can
>be
>> > easily generated and played."
>> >
>>
>> Could you update the patch?
>>
>> --
>> Cheers Swedebugia
>>

Did you forget to attach the patch?
-- 
Sent from my p≡p for Android.

[-- Attachment #2: pEpkey.asc --]
[-- Type: application/pgp-keys, Size: 3825 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#33334] [PATCH]:gnu:add ne:the nice editor
  2019-01-07  5:37       ` [bug#33334] [PATCH]:gnu:add ne:the nice editor swedebugia
@ 2019-01-07  8:35         ` Guy fleury
  2019-01-07 19:49           ` Guy fleury
  0 siblings, 1 reply; 4+ messages in thread
From: Guy fleury @ 2019-01-07  8:35 UTC (permalink / raw)
  To: swedebugia; +Cc: 33334


[-- Attachment #1.1: Type: text/plain, Size: 1397 bytes --]

Le lun. 7 janv. 2019 à 06:37, swedebugia <swedebugia@riseup.net> a écrit :

> Guy fleury <hoonandon@gmail.com> skrev: (6 januari 2019 15:48:07 CET)
> >hi swedebugia,
> >
> >sorry for the long delay,
> >
> >here is the update patch.
> >i follow your sugestion .
> >but i don't know what others think.
> >feel free to change synopsis and description.
> >
> >thanks,
> >
> >Le jeu. 3 janv. 2019 à 17:16, swedebugia <swedebugia@riseup.net> a
> >écrit :
> >
> >> On 2018-11-10 22:32, swedebugia wrote:
> >> > Additionally:
> >> >
> >> > On 2018-11-10 10:25, guy fleury wrote:
> >> >> +    (description
> >> >> +   "ne is a free text editor based on the POSIX standard,
> >> >> +    it is easy to use it and fully configurable")
> >> >
> >> > We don't mention that it is free because in Guix all packages are
> >free.
> >> > What about:
> >> >
> >> > "ne is fast, small, powerful and simple text editor that can be
> >fully
> >> > configured.  It has a simple scripting language where scripts can
> >be
> >> > easily generated and played."
> >> >
> >>
> >> Could you update the patch?
> >>
> >> --
> >> Cheers Swedebugia
> >>
>
> Did you forget to attach the patch?
>

NO. but i resent the patch!
please try it before!!
it seems like to delete prev character with Backspace  don't work
i try to fix it.


-- 
> Sent from my p≡p for Android.
>

[-- Attachment #1.2: Type: text/html, Size: 2459 bytes --]

[-- Attachment #2: 0001-gnu-Add-ne.patch --]
[-- Type: text/x-patch, Size: 2291 bytes --]

From 6eca8e778bcba61280a67a5b4d603cf1416f77db Mon Sep 17 00:00:00 2001
From: guy fleury iteriteka <hoonandon@gmail.com>
Date: Sun, 6 Jan 2019 15:31:21 +0100
Subject: [PATCH] gnu: Add ne

---
 gnu/packages/nano.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/nano.scm b/gnu/packages/nano.scm
index 057e8c3bd..c64a3ed7e 100644
--- a/gnu/packages/nano.scm
+++ b/gnu/packages/nano.scm
@@ -22,6 +22,7 @@
 (define-module (gnu packages nano)
   #:use-module (guix licenses)
   #:use-module (gnu packages gettext)
+  #:use-module (gnu packages perl)
   #:use-module (gnu packages ncurses)
   #:use-module (guix packages)
   #:use-module (guix download)
@@ -51,3 +52,40 @@ basic editing, it supports: undo/redo, syntax highlighting, spell checking,
 justifying, auto-indentation, bracket matching, interactive search-and-replace
 (with regular expressions), and the editing of multiple files.")
     (license gpl3+))) ; some files are under GPLv2+
+
+(define-public ne
+  (package
+    (name "ne")
+    (version "3.1.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "http://ne.di.unimi.it/ne-" version
+                           ".tar.gz"))
+       (sha256
+        (base32
+         "06qk3cqxyn098i1yn686bigpgh8vrrnj0qpkrgs6zwnq42s1y0d2"))
+       (modules '((guix build utils)))
+       (snippet
+        ;; use ncurses instead of curses
+        '(begin
+           (substitute* "src/makefile"
+             (("-lcurses") "-lncurses"))
+           #t))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f ;; no tests
+       #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
+                          "CC=gcc")
+       #:phases (modify-phases %standard-phases
+                  (delete 'configure)))) ;;no configure script used
+    (inputs
+     `(("ncurses" ,ncurses)
+       ("perl" ,perl))) ;;needed by some scripts in source code
+    (synopsis "Small, fast text editor")
+    (description
+     "NE is fast, small, powerful and simple text editor that can be fully
+configured.  It has a simple scripting language where scripts can be easily
+generated and played.")
+    (home-page "http://ne.di.unimi.it/ne")
+    (license gpl3)))
-- 
2.19.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#33334] [PATCH]:gnu:add ne:the nice editor
  2019-01-07  8:35         ` Guy fleury
@ 2019-01-07 19:49           ` Guy fleury
  0 siblings, 0 replies; 4+ messages in thread
From: Guy fleury @ 2019-01-07 19:49 UTC (permalink / raw)
  To: swedebugia; +Cc: 33334

[-- Attachment #1: Type: text/plain, Size: 1716 bytes --]

Le lun. 7 janv. 2019 à 09:35, Guy fleury <hoonandon@gmail.com> a écrit :

>
>
> Le lun. 7 janv. 2019 à 06:37, swedebugia <swedebugia@riseup.net> a écrit :
>
>> Guy fleury <hoonandon@gmail.com> skrev: (6 januari 2019 15:48:07 CET)
>> >hi swedebugia,
>> >
>> >sorry for the long delay,
>> >
>> >here is the update patch.
>> >i follow your sugestion .
>> >but i don't know what others think.
>> >feel free to change synopsis and description.
>> >
>> >thanks,
>> >
>> >Le jeu. 3 janv. 2019 à 17:16, swedebugia <swedebugia@riseup.net> a
>> >écrit :
>> >
>> >> On 2018-11-10 22:32, swedebugia wrote:
>> >> > Additionally:
>> >> >
>> >> > On 2018-11-10 10:25, guy fleury wrote:
>> >> >> +    (description
>> >> >> +   "ne is a free text editor based on the POSIX standard,
>> >> >> +    it is easy to use it and fully configurable")
>> >> >
>> >> > We don't mention that it is free because in Guix all packages are
>> >free.
>> >> > What about:
>> >> >
>> >> > "ne is fast, small, powerful and simple text editor that can be
>> >fully
>> >> > configured.  It has a simple scripting language where scripts can
>> >be
>> >> > easily generated and played."
>> >> >
>> >>
>> >> Could you update the patch?
>> >>
>> >> --
>> >> Cheers Swedebugia
>> >>
>>
>> Did you forget to attach the patch?
>>
>
> NO. but i resent the patch!
> please try it before!!
> it seems like to delete prev character with Backspace  don't work
> i try to fix it.
>
the patch is correct. The problems was that Backspace and Del did the
same action for me.it is not problably  generalize to other,but if so
contact me!

thanks!

>
>

> --
>> Sent from my p≡p for Android.
>>
>

[-- Attachment #2: Type: text/html, Size: 3583 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#33334:
       [not found] <c30ac82d42e6c59dddd68858b8903f5a624e53b4.camel@gmail.com>
       [not found] ` <a3721b15-4159-e140-56af-8cc7ff4db3d3@riseup.net>
@ 2020-01-24  8:41 ` guy fleury iteriteka
  1 sibling, 0 replies; 4+ messages in thread
From: guy fleury iteriteka @ 2020-01-24  8:41 UTC (permalink / raw)
  To: 33334-done

[-- Attachment #1: Type: text/plain, Size: 6 bytes --]

close

[-- Attachment #2: Type: text/html, Size: 31 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-01-24  8:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <c30ac82d42e6c59dddd68858b8903f5a624e53b4.camel@gmail.com>
     [not found] ` <a3721b15-4159-e140-56af-8cc7ff4db3d3@riseup.net>
     [not found]   ` <f43708cd-9a20-090c-4aed-94e2ce4a3212@riseup.net>
     [not found]     ` <CAOYpmvq9s+N1yoObOFVN+mCJwWDwTSmco6fJNC3UVq9X3yJL6w@mail.gmail.com>
2019-01-07  5:37       ` [bug#33334] [PATCH]:gnu:add ne:the nice editor swedebugia
2019-01-07  8:35         ` Guy fleury
2019-01-07 19:49           ` Guy fleury
2020-01-24  8:41 ` bug#33334: guy fleury iteriteka

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).