* [PATCH] nano: Add version 2.2.4
@ 2010-04-17 5:17 Scott Garman
2010-04-18 10:04 ` Paul Menzel
2010-05-02 12:22 ` Roman I Khimov
0 siblings, 2 replies; 6+ messages in thread
From: Scott Garman @ 2010-04-17 5:17 UTC (permalink / raw)
To: openembedded-devel; +Cc: Scott Garman
Signed-off-by: Scott Garman <sgarman@zenlinux.com>
---
recipes/nano/nano_2.2.4.bb | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
create mode 100644 recipes/nano/nano_2.2.4.bb
diff --git a/recipes/nano/nano_2.2.4.bb b/recipes/nano/nano_2.2.4.bb
new file mode 100644
index 0000000..b4973f8
--- /dev/null
+++ b/recipes/nano/nano_2.2.4.bb
@@ -0,0 +1,15 @@
+DESCRIPTION = "GNU nano (Nano's ANOther editor, or \
+Not ANOther editor) is an enhanced clone of the \
+Pico text editor."
+HOMEPAGE = "http://www.nano-editor.org/"
+LICENSE = "GPLv2"
+SECTION = "console/utils"
+DEPENDS = "ncurses"
+
+SRC_URI = "http://www.nano-editor.org/dist/v2.2/nano-${PV}.tar.gz"
+SRC_URI[md5sum] = "6304308afb1f7ef4a5e93eb99206632a"
+SRC_URI[sha256sum] = "971b8547be157de5a814cb26c804dc2515b686d7188f4dc016269312965d4da5"
+
+inherit autotools
+
+EXTRA_OECONF = "--enable-all"
--
1.6.3.3
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] nano: Add version 2.2.4
2010-04-17 5:17 [PATCH] nano: Add version 2.2.4 Scott Garman
@ 2010-04-18 10:04 ` Paul Menzel
2010-05-02 12:22 ` Roman I Khimov
1 sibling, 0 replies; 6+ messages in thread
From: Paul Menzel @ 2010-04-18 10:04 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1273 bytes --]
Am Freitag, den 16.04.2010, 22:17 -0700 schrieb Scott Garman:
> Signed-off-by: Scott Garman <sgarman@zenlinux.com>
> ---
> recipes/nano/nano_2.2.4.bb | 15 +++++++++++++++
> 1 files changed, 15 insertions(+), 0 deletions(-)
> create mode 100644 recipes/nano/nano_2.2.4.bb
>
> diff --git a/recipes/nano/nano_2.2.4.bb b/recipes/nano/nano_2.2.4.bb
> new file mode 100644
> index 0000000..b4973f8
> --- /dev/null
> +++ b/recipes/nano/nano_2.2.4.bb
> @@ -0,0 +1,15 @@
> +DESCRIPTION = "GNU nano (Nano's ANOther editor, or \
> +Not ANOther editor) is an enhanced clone of the \
> +Pico text editor."
> +HOMEPAGE = "http://www.nano-editor.org/"
> +LICENSE = "GPLv2"
> +SECTION = "console/utils"
> +DEPENDS = "ncurses"
> +
> +SRC_URI = "http://www.nano-editor.org/dist/v2.2/nano-${PV}.tar.gz"
> +SRC_URI[md5sum] = "6304308afb1f7ef4a5e93eb99206632a"
> +SRC_URI[sha256sum] = "971b8547be157de5a814cb26c804dc2515b686d7188f4dc016269312965d4da5"
> +
> +inherit autotools
> +
> +EXTRA_OECONF = "--enable-all"
It build fine for me.
Acked-by: Paul Menzel <paulepanter@users.sourceforge.net>
I do not have commit rights though.
Do you have time to create an include file for all recipes and send a
patch on top of this one?
Thanks,
Paul
[-- Attachment #2: Dies ist ein digital signierter Nachrichtenteil --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] nano: Add version 2.2.4.
@ 2010-04-29 14:01 Eric Benard
2010-05-02 12:25 ` Roman I Khimov
0 siblings, 1 reply; 6+ messages in thread
From: Eric Benard @ 2010-04-29 14:01 UTC (permalink / raw)
To: openembedded-devel
* give access to the latest stable release available
* Tested on x86
Signed-off-by: Eric Benard <eric@eukrea.com>
---
recipes/nano/nano_2.2.4.bb | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
create mode 100644 recipes/nano/nano_2.2.4.bb
diff --git a/recipes/nano/nano_2.2.4.bb b/recipes/nano/nano_2.2.4.bb
new file mode 100644
index 0000000..561b64e
--- /dev/null
+++ b/recipes/nano/nano_2.2.4.bb
@@ -0,0 +1,22 @@
+DESCRIPTION = "GNU nano (Nano's ANOther editor, or \
+Not ANOther editor) is an enhanced clone of the \
+Pico text editor."
+HOMEPAGE = "http://www.nano-editor.org/"
+LICENSE = "GPLv2"
+SECTION = "console/utils"
+DEPENDS = "ncurses"
+
+SRC_URI = "http://www.nano-editor.org/dist/v2.2/nano-${PV}.tar.gz \
+ file://glib.m4"
+
+inherit autotools
+
+# only 16K more to get everything but the kitchen sink
+EXTRA_OECONF = "--enable-all"
+
+do_configure_prepend () {
+ install -m 0644 ${WORKDIR}/glib.m4 m4/
+}
+
+SRC_URI[md5sum] = "6304308afb1f7ef4a5e93eb99206632a"
+SRC_URI[sha256sum] = "971b8547be157de5a814cb26c804dc2515b686d7188f4dc016269312965d4da5"
--
1.6.3.3
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] nano: Add version 2.2.4
2010-04-17 5:17 [PATCH] nano: Add version 2.2.4 Scott Garman
2010-04-18 10:04 ` Paul Menzel
@ 2010-05-02 12:22 ` Roman I Khimov
2010-05-02 21:24 ` Scott Garman
1 sibling, 1 reply; 6+ messages in thread
From: Roman I Khimov @ 2010-05-02 12:22 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: Text/Plain, Size: 571 bytes --]
В сообщении от Суббота 17 апреля 2010 09:17:36 автор Scott Garman написал:
> Signed-off-by: Scott Garman <sgarman@zenlinux.com>
> ---
> recipes/nano/nano_2.2.4.bb | 15 +++++++++++++++
> 1 files changed, 15 insertions(+), 0 deletions(-)
> create mode 100644 recipes/nano/nano_2.2.4.bb
Acked-by: Roman I Khimov <khimov@altell.ru>
Builds, pushed, thanks.
I've also unified versions with .inc file.
--
http://roman.khimov.ru
mailto: roman@khimov.ru
gpg --keyserver hkp://subkeys.pgp.net --recv-keys 0xE5E055C3
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] nano: Add version 2.2.4.
2010-04-29 14:01 Eric Benard
@ 2010-05-02 12:25 ` Roman I Khimov
0 siblings, 0 replies; 6+ messages in thread
From: Roman I Khimov @ 2010-05-02 12:25 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: Text/Plain, Size: 830 bytes --]
В сообщении от Четверг 29 апреля 2010 18:01:34 автор Eric Benard написал:
> * give access to the latest stable release available
> * Tested on x86
>
> Signed-off-by: Eric Benard <eric@eukrea.com>
> ---
> recipes/nano/nano_2.2.4.bb | 22 ++++++++++++++++++++++
> 1 files changed, 22 insertions(+), 0 deletions(-)
> create mode 100644 recipes/nano/nano_2.2.4.bb
Scott Garman submitted 2.2.4 version a bit earlier (see
http://patchwork.openembedded.org/patch/1952/) and
> +do_configure_prepend () {
> + install -m 0644 ${WORKDIR}/glib.m4 m4/
> +}
this actually is not needed for 2.2.4 version. So I've submitted his patch for
that. Thanks, anyway.
--
http://roman.khimov.ru
mailto: roman@khimov.ru
gpg --keyserver hkp://subkeys.pgp.net --recv-keys 0xE5E055C3
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] nano: Add version 2.2.4
2010-05-02 12:22 ` Roman I Khimov
@ 2010-05-02 21:24 ` Scott Garman
0 siblings, 0 replies; 6+ messages in thread
From: Scott Garman @ 2010-05-02 21:24 UTC (permalink / raw)
To: openembedded-devel
On 05/02/2010 05:22 AM, Roman I Khimov wrote:
> В сообщении от Суббота 17 апреля 2010 09:17:36 автор Scott Garman написал:
>> Signed-off-by: Scott Garman<sgarman@zenlinux.com>
>> ---
>> recipes/nano/nano_2.2.4.bb | 15 +++++++++++++++
>> 1 files changed, 15 insertions(+), 0 deletions(-)
>> create mode 100644 recipes/nano/nano_2.2.4.bb
>
> Acked-by: Roman I Khimov<khimov@altell.ru>
>
> Builds, pushed, thanks.
>
> I've also unified versions with .inc file.
Thanks Roman,
I started a new job two weeks ago and have been way too swamped to
follow-up with the .inc unification task.
Scott
--
Scott Garman
sgarman at zenlinux dot com
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-05-02 21:27 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-17 5:17 [PATCH] nano: Add version 2.2.4 Scott Garman
2010-04-18 10:04 ` Paul Menzel
2010-05-02 12:22 ` Roman I Khimov
2010-05-02 21:24 ` Scott Garman
-- strict thread matches above, loose matches on Subject: below --
2010-04-29 14:01 Eric Benard
2010-05-02 12:25 ` Roman I Khimov
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.