All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH] tmux: Add initial recipe for vesion 1.6.
@ 2012-02-01 21:38 Peter Tworek
  2012-02-02  8:27 ` Paul Menzel
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Peter Tworek @ 2012-02-01 21:38 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Peter Tworek <tworaz666@gmail.com>
---
 meta-oe/recipes-extended/tmux/tmux_1.6.bb |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)
 create mode 100644 meta-oe/recipes-extended/tmux/tmux_1.6.bb

diff --git a/meta-oe/recipes-extended/tmux/tmux_1.6.bb b/meta-oe/recipes-extended/tmux/tmux_1.6.bb
new file mode 100644
index 0000000..eb6f7df
--- /dev/null
+++ b/meta-oe/recipes-extended/tmux/tmux_1.6.bb
@@ -0,0 +1,18 @@
+DESCRIPTION = "Terminal multiplexer"
+HOMEPAGE = "http://tmux.sourceforge.net"
+SECTION = "console/utils"
+
+LICENSE = "ISC"
+LIC_FILES_CHKSUM = "file://tmux.c;startline=3;endline=17;md5=f36d9c9e6c1c24996a88891fdf783d04"
+
+DEPENDS = "ncurses libevent"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/tmux/${P}.tar.gz"
+SRC_URI[md5sum] = "3e37db24aa596bf108a0442a81c845b3"
+SRC_URI[sha256sum] = "faee08ba1bd8c22537cd5b7458881d1bdb4985df88ed6bc5967c56881a7efbd6"
+
+inherit autotools
+
+do_configure_prepend () {
+	sed -i -e 's:-I/usr/local/include::' Makefile.am || bb_fatal "sed failed"
+}
-- 
1.7.3.4




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

* Re: [meta-oe][PATCH] tmux: Add initial recipe for vesion 1.6.
  2012-02-01 21:38 [meta-oe][PATCH] tmux: Add initial recipe for vesion 1.6 Peter Tworek
@ 2012-02-02  8:27 ` Paul Menzel
  2012-02-02 19:19   ` Peter Tworek
  2012-02-02 19:22 ` [meta-oe][PATCH v2] " Peter Tworek
  2012-02-03 23:10 ` [meta-oe][PATCH v3] tmux: Add initial recipe for version 1.6 Peter Tworek
  2 siblings, 1 reply; 10+ messages in thread
From: Paul Menzel @ 2012-02-02  8:27 UTC (permalink / raw)
  To: openembedded-devel

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

Dear Peter,


thank you for your latest work. It is much appreciated.

Am Mittwoch, den 01.02.2012, 22:38 +0100 schrieb Peter Tworek:

This is just an optional request from me. I would like to see in the
commit message what build configuration you used for testing.

> Signed-off-by: Peter Tworek <tworaz666@gmail.com>
> ---
>  meta-oe/recipes-extended/tmux/tmux_1.6.bb |   18 ++++++++++++++++++
>  1 files changed, 18 insertions(+), 0 deletions(-)
>  create mode 100644 meta-oe/recipes-extended/tmux/tmux_1.6.bb
> 
> diff --git a/meta-oe/recipes-extended/tmux/tmux_1.6.bb b/meta-oe/recipes-extended/tmux/tmux_1.6.bb
> new file mode 100644
> index 0000000..eb6f7df
> --- /dev/null
> +++ b/meta-oe/recipes-extended/tmux/tmux_1.6.bb
> @@ -0,0 +1,18 @@
> +DESCRIPTION = "Terminal multiplexer"
> +HOMEPAGE = "http://tmux.sourceforge.net"
> +SECTION = "console/utils"
> +
> +LICENSE = "ISC"
> +LIC_FILES_CHKSUM = "file://tmux.c;startline=3;endline=17;md5=f36d9c9e6c1c24996a88891fdf783d04"
> +
> +DEPENDS = "ncurses libevent"
> +
> +SRC_URI = "${SOURCEFORGE_MIRROR}/tmux/${P}.tar.gz"
> +SRC_URI[md5sum] = "3e37db24aa596bf108a0442a81c845b3"
> +SRC_URI[sha256sum] = "faee08ba1bd8c22537cd5b7458881d1bdb4985df88ed6bc5967c56881a7efbd6"
> +
> +inherit autotools
> +
> +do_configure_prepend () {
> +	sed -i -e 's:-I/usr/local/include::' Makefile.am || bb_fatal "sed failed"

You can ensure that `sed` is available by depending on `sed-native` I
think. At least in OE-Classic this was available.

Additionally it would be great if you could contact upstream and make
them aware of this problem and maybe even provide a patch. So that in
the feature no adaptations are needed and other distributions/framework
can profit too.

> +}


Thanks,

Paul

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [meta-oe][PATCH] tmux: Add initial recipe for vesion 1.6.
  2012-02-02  8:27 ` Paul Menzel
@ 2012-02-02 19:19   ` Peter Tworek
  0 siblings, 0 replies; 10+ messages in thread
From: Peter Tworek @ 2012-02-02 19:19 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Paul Menzel

On 02/02/2012 09:27 AM, Paul Menzel wrote:
> Dear Peter,
>
>
> thank you for your latest work. It is much appreciated.
You're welcome. Thanks for taking your time to review my patches.
>
> Am Mittwoch, den 01.02.2012, 22:38 +0100 schrieb Peter Tworek:
>
> This is just an optional request from me. I would like to see in the
> commit message what build configuration you used for testing.
No problem. Currently my main target is netbook pro.

>
>> Signed-off-by: Peter Tworek<tworaz666@gmail.com>
>> ---
>>   meta-oe/recipes-extended/tmux/tmux_1.6.bb |   18 ++++++++++++++++++
>>   1 files changed, 18 insertions(+), 0 deletions(-)
>>   create mode 100644 meta-oe/recipes-extended/tmux/tmux_1.6.bb
>>
>> diff --git a/meta-oe/recipes-extended/tmux/tmux_1.6.bb b/meta-oe/recipes-extended/tmux/tmux_1.6.bb
>> new file mode 100644
>> index 0000000..eb6f7df
>> --- /dev/null
>> +++ b/meta-oe/recipes-extended/tmux/tmux_1.6.bb
>> @@ -0,0 +1,18 @@
>> +DESCRIPTION = "Terminal multiplexer"
>> +HOMEPAGE = "http://tmux.sourceforge.net"
>> +SECTION = "console/utils"
>> +
>> +LICENSE = "ISC"
>> +LIC_FILES_CHKSUM = "file://tmux.c;startline=3;endline=17;md5=f36d9c9e6c1c24996a88891fdf783d04"
>> +
>> +DEPENDS = "ncurses libevent"
>> +
>> +SRC_URI = "${SOURCEFORGE_MIRROR}/tmux/${P}.tar.gz"
>> +SRC_URI[md5sum] = "3e37db24aa596bf108a0442a81c845b3"
>> +SRC_URI[sha256sum] = "faee08ba1bd8c22537cd5b7458881d1bdb4985df88ed6bc5967c56881a7efbd6"
>> +
>> +inherit autotools
>> +
>> +do_configure_prepend () {
>> +	sed -i -e 's:-I/usr/local/include::' Makefile.am || bb_fatal "sed failed"
> You can ensure that `sed` is available by depending on `sed-native` I
> think. At least in OE-Classic this was available.
I'll add it in v2. Thanks for pointing that one out.
>
> Additionally it would be great if you could contact upstream and make
> them aware of this problem and maybe even provide a patch. So that in
> the feature no adaptations are needed and other distributions/framework
> can profit too.
Sure, I'll do that. The fix itself is just for QA warning about 
including host headers.

>> +}
>
> Thanks,
>
> Paul
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel



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

* [meta-oe][PATCH v2] tmux: Add initial recipe for vesion 1.6.
  2012-02-01 21:38 [meta-oe][PATCH] tmux: Add initial recipe for vesion 1.6 Peter Tworek
  2012-02-02  8:27 ` Paul Menzel
@ 2012-02-02 19:22 ` Peter Tworek
  2012-02-03 17:53   ` Paul Menzel
  2012-02-03 23:10 ` [meta-oe][PATCH v3] tmux: Add initial recipe for version 1.6 Peter Tworek
  2 siblings, 1 reply; 10+ messages in thread
From: Peter Tworek @ 2012-02-02 19:22 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Piotr Tworek

From: Piotr Tworek <ptworek@opera.com>

Run tested on netbook pro.

Signed-off-by: Peter Tworek <tworaz666@gmail.com>
---
 meta-oe/recipes-extended/tmux/tmux_1.6.bb |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)
 create mode 100644 meta-oe/recipes-extended/tmux/tmux_1.6.bb

diff --git a/meta-oe/recipes-extended/tmux/tmux_1.6.bb b/meta-oe/recipes-extended/tmux/tmux_1.6.bb
new file mode 100644
index 0000000..fa58065
--- /dev/null
+++ b/meta-oe/recipes-extended/tmux/tmux_1.6.bb
@@ -0,0 +1,18 @@
+DESCRIPTION = "Terminal multiplexer"
+HOMEPAGE = "http://tmux.sourceforge.net"
+SECTION = "console/utils"
+
+LICENSE = "ISC"
+LIC_FILES_CHKSUM = "file://tmux.c;startline=3;endline=17;md5=f36d9c9e6c1c24996a88891fdf783d04"
+
+DEPENDS = "ncurses libevent sed-native"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/tmux/${P}.tar.gz"
+SRC_URI[md5sum] = "3e37db24aa596bf108a0442a81c845b3"
+SRC_URI[sha256sum] = "faee08ba1bd8c22537cd5b7458881d1bdb4985df88ed6bc5967c56881a7efbd6"
+
+inherit autotools
+
+do_configure_prepend () {
+	sed -i -e 's:-I/usr/local/include::' Makefile.am || bb_fatal "sed failed"
+}
-- 
1.7.3.4




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

* Re: [meta-oe][PATCH v2] tmux: Add initial recipe for vesion 1.6.
  2012-02-02 19:22 ` [meta-oe][PATCH v2] " Peter Tworek
@ 2012-02-03 17:53   ` Paul Menzel
  2012-02-03 23:09     ` Peter Tworek
  0 siblings, 1 reply; 10+ messages in thread
From: Paul Menzel @ 2012-02-03 17:53 UTC (permalink / raw)
  To: openembedded-devel

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

Am Donnerstag, den 02.02.2012, 20:22 +0100 schrieb Peter Tworek:
> From: Piotr Tworek <ptworek@opera.com>

Some configuration changed in your setup. Please try to avoid that so
that so that changelog statistics can be more meaningful.

There is the typo ve*r*sion in the summary.

> Run tested on netbook pro.
> 
> Signed-off-by: Peter Tworek <tworaz666@gmail.com>

Should you resend patches you can add the following.

Acked-by: Paul Menzel <paulepanter@users.sourceforge.net>

> ---
>  meta-oe/recipes-extended/tmux/tmux_1.6.bb |   18 ++++++++++++++++++
>  1 files changed, 18 insertions(+), 0 deletions(-)
>  create mode 100644 meta-oe/recipes-extended/tmux/tmux_1.6.bb

[…]


Thanks,

Paul

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [meta-oe][PATCH v2] tmux: Add initial recipe for vesion 1.6.
  2012-02-03 17:53   ` Paul Menzel
@ 2012-02-03 23:09     ` Peter Tworek
  0 siblings, 0 replies; 10+ messages in thread
From: Peter Tworek @ 2012-02-03 23:09 UTC (permalink / raw)
  To: Paul Menzel; +Cc: openembedded-devel

On 02/03/2012 06:53 PM, Paul Menzel wrote:
> Am Donnerstag, den 02.02.2012, 20:22 +0100 schrieb Peter Tworek:
>> From: Piotr Tworek<ptworek@opera.com>
> Some configuration changed in your setup. Please try to avoid that so
> that so that changelog statistics can be more meaningful.
>
> There is the typo ve*r*sion in the summary.
>
Thanks, both issues fixed in v3.
>> Run tested on netbook pro.
>>
>> Signed-off-by: Peter Tworek<tworaz666@gmail.com>
> Should you resend patches you can add the following.
>
> Acked-by: Paul Menzel<paulepanter@users.sourceforge.net>
>
>> ---
>>   meta-oe/recipes-extended/tmux/tmux_1.6.bb |   18 ++++++++++++++++++
>>   1 files changed, 18 insertions(+), 0 deletions(-)
>>   create mode 100644 meta-oe/recipes-extended/tmux/tmux_1.6.bb
> […]
>
>
> Thanks,
>
> Paul




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

* [meta-oe][PATCH v3] tmux: Add initial recipe for version 1.6.
  2012-02-01 21:38 [meta-oe][PATCH] tmux: Add initial recipe for vesion 1.6 Peter Tworek
  2012-02-02  8:27 ` Paul Menzel
  2012-02-02 19:22 ` [meta-oe][PATCH v2] " Peter Tworek
@ 2012-02-03 23:10 ` Peter Tworek
  2012-02-04  2:14   ` Khem Raj
  2 siblings, 1 reply; 10+ messages in thread
From: Peter Tworek @ 2012-02-03 23:10 UTC (permalink / raw)
  To: openembedded-devel

Run tested on netbook pro.

Signed-off-by: Peter Tworek <tworaz666@gmail.com>
Acked-by: Paul Menzel <paulepanter@users.sourceforge.net>
---
 meta-oe/recipes-extended/tmux/tmux_1.6.bb |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)
 create mode 100644 meta-oe/recipes-extended/tmux/tmux_1.6.bb

diff --git a/meta-oe/recipes-extended/tmux/tmux_1.6.bb b/meta-oe/recipes-extended/tmux/tmux_1.6.bb
new file mode 100644
index 0000000..fa58065
--- /dev/null
+++ b/meta-oe/recipes-extended/tmux/tmux_1.6.bb
@@ -0,0 +1,18 @@
+DESCRIPTION = "Terminal multiplexer"
+HOMEPAGE = "http://tmux.sourceforge.net"
+SECTION = "console/utils"
+
+LICENSE = "ISC"
+LIC_FILES_CHKSUM = "file://tmux.c;startline=3;endline=17;md5=f36d9c9e6c1c24996a88891fdf783d04"
+
+DEPENDS = "ncurses libevent sed-native"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/tmux/${P}.tar.gz"
+SRC_URI[md5sum] = "3e37db24aa596bf108a0442a81c845b3"
+SRC_URI[sha256sum] = "faee08ba1bd8c22537cd5b7458881d1bdb4985df88ed6bc5967c56881a7efbd6"
+
+inherit autotools
+
+do_configure_prepend () {
+	sed -i -e 's:-I/usr/local/include::' Makefile.am || bb_fatal "sed failed"
+}
-- 
1.7.3.4




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

* Re: [meta-oe][PATCH v3] tmux: Add initial recipe for version 1.6.
  2012-02-03 23:10 ` [meta-oe][PATCH v3] tmux: Add initial recipe for version 1.6 Peter Tworek
@ 2012-02-04  2:14   ` Khem Raj
  2012-02-04  9:55     ` Peter Tworek
  0 siblings, 1 reply; 10+ messages in thread
From: Khem Raj @ 2012-02-04  2:14 UTC (permalink / raw)
  To: openembedded-devel

On (04/02/12 00:10), Peter Tworek wrote:
> Run tested on netbook pro.
> 
> Signed-off-by: Peter Tworek <tworaz666@gmail.com>
> Acked-by: Paul Menzel <paulepanter@users.sourceforge.net>
> ---
>  meta-oe/recipes-extended/tmux/tmux_1.6.bb |   18 ++++++++++++++++++
>  1 files changed, 18 insertions(+), 0 deletions(-)
>  create mode 100644 meta-oe/recipes-extended/tmux/tmux_1.6.bb
> 
> diff --git a/meta-oe/recipes-extended/tmux/tmux_1.6.bb b/meta-oe/recipes-extended/tmux/tmux_1.6.bb
> new file mode 100644
> index 0000000..fa58065
> --- /dev/null
> +++ b/meta-oe/recipes-extended/tmux/tmux_1.6.bb
> @@ -0,0 +1,18 @@
> +DESCRIPTION = "Terminal multiplexer"
> +HOMEPAGE = "http://tmux.sourceforge.net"
> +SECTION = "console/utils"
> +
> +LICENSE = "ISC"

what is ISC license ? I thought tmux is more like BSD license here is
what I read in NOTES files

tmux is intended to be a simple, modern, BSD-licensed alternative....



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

* Re: [meta-oe][PATCH v3] tmux: Add initial recipe for version 1.6.
  2012-02-04  2:14   ` Khem Raj
@ 2012-02-04  9:55     ` Peter Tworek
  2012-02-04 16:41       ` Khem Raj
  0 siblings, 1 reply; 10+ messages in thread
From: Peter Tworek @ 2012-02-04  9:55 UTC (permalink / raw)
  To: openembedded-devel

On 02/04/2012 03:14 AM, Khem Raj wrote:
> On (04/02/12 00:10), Peter Tworek wrote:
>> Run tested on netbook pro.
>>
>> Signed-off-by: Peter Tworek<tworaz666@gmail.com>
>> Acked-by: Paul Menzel<paulepanter@users.sourceforge.net>
>> ---
>>   meta-oe/recipes-extended/tmux/tmux_1.6.bb |   18 ++++++++++++++++++
>>   1 files changed, 18 insertions(+), 0 deletions(-)
>>   create mode 100644 meta-oe/recipes-extended/tmux/tmux_1.6.bb
>>
>> diff --git a/meta-oe/recipes-extended/tmux/tmux_1.6.bb b/meta-oe/recipes-extended/tmux/tmux_1.6.bb
>> new file mode 100644
>> index 0000000..fa58065
>> --- /dev/null
>> +++ b/meta-oe/recipes-extended/tmux/tmux_1.6.bb
>> @@ -0,0 +1,18 @@
>> +DESCRIPTION = "Terminal multiplexer"
>> +HOMEPAGE = "http://tmux.sourceforge.net"
>> +SECTION = "console/utils"
>> +
>> +LICENSE = "ISC"
> what is ISC license ? I thought tmux is more like BSD license here is
> what I read in NOTES files
>
> tmux is intended to be a simple, modern, BSD-licensed alternative....

Technically ISC is a BSD license [1]. Looking at the actual license text 
in tmux [2] it seems that it uses exactly this license. OE-core seems to 
also distinguish between BSD and ISC (meta/files/common-licenses/ISC), 
so I decided to use it.

[1] http://en.wikipedia.org/wiki/ISC_license
[2] 
http://tmux.svn.sourceforge.net/viewvc/tmux/trunk/tmux.c?revision=2697&view=markup

/ptw



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

* Re: [meta-oe][PATCH v3] tmux: Add initial recipe for version 1.6.
  2012-02-04  9:55     ` Peter Tworek
@ 2012-02-04 16:41       ` Khem Raj
  0 siblings, 0 replies; 10+ messages in thread
From: Khem Raj @ 2012-02-04 16:41 UTC (permalink / raw)
  To: openembedded-devel

On Sat, Feb 4, 2012 at 1:55 AM, Peter Tworek <tworaz666@gmail.com> wrote:
> On 02/04/2012 03:14 AM, Khem Raj wrote:
>>
>> On (04/02/12 00:10), Peter Tworek wrote:
>>>
>>> Run tested on netbook pro.
>>>
>>> Signed-off-by: Peter Tworek<tworaz666@gmail.com>
>>> Acked-by: Paul Menzel<paulepanter@users.sourceforge.net>
>>> ---
>>>  meta-oe/recipes-extended/tmux/tmux_1.6.bb |   18 ++++++++++++++++++
>>>  1 files changed, 18 insertions(+), 0 deletions(-)
>>>  create mode 100644 meta-oe/recipes-extended/tmux/tmux_1.6.bb
>>>
>>> diff --git a/meta-oe/recipes-extended/tmux/tmux_1.6.bb
>>> b/meta-oe/recipes-extended/tmux/tmux_1.6.bb
>>> new file mode 100644
>>> index 0000000..fa58065
>>> --- /dev/null
>>> +++ b/meta-oe/recipes-extended/tmux/tmux_1.6.bb
>>> @@ -0,0 +1,18 @@
>>> +DESCRIPTION = "Terminal multiplexer"
>>> +HOMEPAGE = "http://tmux.sourceforge.net"
>>> +SECTION = "console/utils"
>>> +
>>> +LICENSE = "ISC"
>>
>> what is ISC license ? I thought tmux is more like BSD license here is
>> what I read in NOTES files
>>
>> tmux is intended to be a simple, modern, BSD-licensed alternative....
>
>
> Technically ISC is a BSD license [1]. Looking at the actual license text in
> tmux [2] it seems that it uses exactly this license. OE-core seems to also
> distinguish between BSD and ISC (meta/files/common-licenses/ISC), so I
> decided to use it.
>
> [1] http://en.wikipedia.org/wiki/ISC_license
> [2]
> http://tmux.svn.sourceforge.net/viewvc/tmux/trunk/tmux.c?revision=2697&view=markup

thanks looks fine
>
> /ptw
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel



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

end of thread, other threads:[~2012-02-04 16:49 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-01 21:38 [meta-oe][PATCH] tmux: Add initial recipe for vesion 1.6 Peter Tworek
2012-02-02  8:27 ` Paul Menzel
2012-02-02 19:19   ` Peter Tworek
2012-02-02 19:22 ` [meta-oe][PATCH v2] " Peter Tworek
2012-02-03 17:53   ` Paul Menzel
2012-02-03 23:09     ` Peter Tworek
2012-02-03 23:10 ` [meta-oe][PATCH v3] tmux: Add initial recipe for version 1.6 Peter Tworek
2012-02-04  2:14   ` Khem Raj
2012-02-04  9:55     ` Peter Tworek
2012-02-04 16:41       ` Khem Raj

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.