All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/libconfuse: switch to the new upstream
@ 2014-07-16 22:32 Yann E. MORIN
  2014-07-16 22:34 ` Yann E. MORIN
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Yann E. MORIN @ 2014-07-16 22:32 UTC (permalink / raw)
  To: buildroot

From: Alvaro Gamez <alvaro.gamez@hazent.com>

libconfuse is being migrated to github (see http://www.nongnu.org/confuse/)
So, just follow suite.

Needs a bit of a hack so gettextize + autoreconf does not step on each
other's toes. See comment in the patch.

Based on a patch by: Alvaro Gamez <alvaro.gamez@hazent.com>

[me: fix gettextizing, write commit log]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Arnout Vandecappelle <arnout@mind.be>
---
 .../libconfuse-0000-fix-configure-ac.patch         | 27 ++++++++++++++++++++++
 package/libconfuse/libconfuse.mk                   |  9 +++++---
 2 files changed, 33 insertions(+), 3 deletions(-)
 create mode 100644 package/libconfuse/libconfuse-0000-fix-configure-ac.patch

diff --git a/package/libconfuse/libconfuse-0000-fix-configure-ac.patch b/package/libconfuse/libconfuse-0000-fix-configure-ac.patch
new file mode 100644
index 0000000..6d61b48
--- /dev/null
+++ b/package/libconfuse/libconfuse-0000-fix-configure-ac.patch
@@ -0,0 +1,27 @@
+configure: remove po/Makefile.in from AC_CONFIG_FILES
+
+Since we are gettextizing the package, gettextize updates configure.ac
+to add po/Makefile.in to AC_CONFIG_FILES>
+
+Unfortunately, it's already present, and gettextize does not detect it,
+and insists on adding its own. Later on, autoreconf barfs on the double
+occurences.
+
+As suggested by Arnout, just patch configure.ac to remove the
+po/Makefile.in occurence, so gettextize can safely add its own
+
+Reported-by: Arnout Vandecappelle <arnout@mind.be>
+Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
+Cc: Alvaro Gamez <alvaro.gamez@hazent.com>
+
+diff -durN libconfuse-V2_7.orig/configure.ac libconfuse-V2_7/configure.ac
+--- libconfuse-V2_7.orig/configure.ac	2010-02-20 10:14:10.000000000 +0100
++++ libconfuse-V2_7/configure.ac	2014-07-17 00:19:18.816785340 +0200
+@@ -49,7 +49,6 @@
+ AC_CONFIG_FILES([Makefile \
+ 		 src/Makefile \
+ 		 examples/Makefile \
+-                 po/Makefile.in \
+ 		 m4/Makefile \
+ 		 tests/Makefile \
+ 		 doc/Makefile \
diff --git a/package/libconfuse/libconfuse.mk b/package/libconfuse/libconfuse.mk
index 8a0d80f..e9a1114 100644
--- a/package/libconfuse/libconfuse.mk
+++ b/package/libconfuse/libconfuse.mk
@@ -4,13 +4,16 @@
 #
 ################################################################################
 
-LIBCONFUSE_VERSION = 2.7
-LIBCONFUSE_SOURCE = confuse-$(LIBCONFUSE_VERSION).tar.gz
-LIBCONFUSE_SITE = http://savannah.nongnu.org/download/confuse/
+LIBCONFUSE_VERSION = V2_7
+LIBCONFUSE_SITE = $(call github,martinh,libconfuse,$(LIBCONFUSE_VERSION))
 LIBCONFUSE_INSTALL_STAGING = YES
 LIBCONFUSE_CONF_OPT = --disable-rpath
 LIBCONFUSE_LICENSE = ISC
 LIBCONFUSE_LICENSE_FILES = src/confuse.c
 
+# Fresh from the repository, no configure et al.
+LIBCONFUSE_AUTORECONF = YES
+LIBCONFUSE_GETTEXTIZE = YES
+
 $(eval $(autotools-package))
 $(eval $(host-autotools-package))
-- 
1.9.1

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

* [Buildroot] [PATCH] package/libconfuse: switch to the new upstream
  2014-07-16 22:32 [Buildroot] [PATCH] package/libconfuse: switch to the new upstream Yann E. MORIN
@ 2014-07-16 22:34 ` Yann E. MORIN
  2014-07-16 22:40 ` Arnout Vandecappelle
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Yann E. MORIN @ 2014-07-16 22:34 UTC (permalink / raw)
  To: buildroot

All,

On 2014-07-17 00:32 +0200, Yann E. MORIN spake thusly:
> From: Alvaro Gamez <alvaro.gamez@hazent.com>
> 
> libconfuse is being migrated to github (see http://www.nongnu.org/confuse/)
> So, just follow suite.
> 
> Needs a bit of a hack so gettextize + autoreconf does not step on each
> other's toes. See comment in the patch.

I forgot to say that this patch should go in after the gettextize series
I posted earlier, since it relies on the nes GETTEXTIZ variable.

Regards,
Yann E. MORIN.

> Based on a patch by: Alvaro Gamez <alvaro.gamez@hazent.com>
> 
> [me: fix gettextizing, write commit log]
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> Cc: Arnout Vandecappelle <arnout@mind.be>
> ---
>  .../libconfuse-0000-fix-configure-ac.patch         | 27 ++++++++++++++++++++++
>  package/libconfuse/libconfuse.mk                   |  9 +++++---
>  2 files changed, 33 insertions(+), 3 deletions(-)
>  create mode 100644 package/libconfuse/libconfuse-0000-fix-configure-ac.patch
> 
> diff --git a/package/libconfuse/libconfuse-0000-fix-configure-ac.patch b/package/libconfuse/libconfuse-0000-fix-configure-ac.patch
> new file mode 100644
> index 0000000..6d61b48
> --- /dev/null
> +++ b/package/libconfuse/libconfuse-0000-fix-configure-ac.patch
> @@ -0,0 +1,27 @@
> +configure: remove po/Makefile.in from AC_CONFIG_FILES
> +
> +Since we are gettextizing the package, gettextize updates configure.ac
> +to add po/Makefile.in to AC_CONFIG_FILES>
> +
> +Unfortunately, it's already present, and gettextize does not detect it,
> +and insists on adding its own. Later on, autoreconf barfs on the double
> +occurences.
> +
> +As suggested by Arnout, just patch configure.ac to remove the
> +po/Makefile.in occurence, so gettextize can safely add its own
> +
> +Reported-by: Arnout Vandecappelle <arnout@mind.be>
> +Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> +Cc: Alvaro Gamez <alvaro.gamez@hazent.com>
> +
> +diff -durN libconfuse-V2_7.orig/configure.ac libconfuse-V2_7/configure.ac
> +--- libconfuse-V2_7.orig/configure.ac	2010-02-20 10:14:10.000000000 +0100
> ++++ libconfuse-V2_7/configure.ac	2014-07-17 00:19:18.816785340 +0200
> +@@ -49,7 +49,6 @@
> + AC_CONFIG_FILES([Makefile \
> + 		 src/Makefile \
> + 		 examples/Makefile \
> +-                 po/Makefile.in \
> + 		 m4/Makefile \
> + 		 tests/Makefile \
> + 		 doc/Makefile \
> diff --git a/package/libconfuse/libconfuse.mk b/package/libconfuse/libconfuse.mk
> index 8a0d80f..e9a1114 100644
> --- a/package/libconfuse/libconfuse.mk
> +++ b/package/libconfuse/libconfuse.mk
> @@ -4,13 +4,16 @@
>  #
>  ################################################################################
>  
> -LIBCONFUSE_VERSION = 2.7
> -LIBCONFUSE_SOURCE = confuse-$(LIBCONFUSE_VERSION).tar.gz
> -LIBCONFUSE_SITE = http://savannah.nongnu.org/download/confuse/
> +LIBCONFUSE_VERSION = V2_7
> +LIBCONFUSE_SITE = $(call github,martinh,libconfuse,$(LIBCONFUSE_VERSION))
>  LIBCONFUSE_INSTALL_STAGING = YES
>  LIBCONFUSE_CONF_OPT = --disable-rpath
>  LIBCONFUSE_LICENSE = ISC
>  LIBCONFUSE_LICENSE_FILES = src/confuse.c
>  
> +# Fresh from the repository, no configure et al.
> +LIBCONFUSE_AUTORECONF = YES
> +LIBCONFUSE_GETTEXTIZE = YES
> +
>  $(eval $(autotools-package))
>  $(eval $(host-autotools-package))
> -- 
> 1.9.1
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH] package/libconfuse: switch to the new upstream
  2014-07-16 22:32 [Buildroot] [PATCH] package/libconfuse: switch to the new upstream Yann E. MORIN
  2014-07-16 22:34 ` Yann E. MORIN
@ 2014-07-16 22:40 ` Arnout Vandecappelle
  2014-07-17  6:38   ` Alvaro Gamez
  2014-07-17  7:58 ` Thomas Petazzoni
  2014-07-17 22:46 ` Yann E. MORIN
  3 siblings, 1 reply; 6+ messages in thread
From: Arnout Vandecappelle @ 2014-07-16 22:40 UTC (permalink / raw)
  To: buildroot

On 17/07/14 00:32, Yann E. MORIN wrote:
> From: Alvaro Gamez <alvaro.gamez@hazent.com>
> 
> libconfuse is being migrated to github (see http://www.nongnu.org/confuse/)
> So, just follow suite.

 suit (pronounced [set]), not suite (pronounced [swi.t]).

> 
> Needs a bit of a hack so gettextize + autoreconf does not step on each
> other's toes. See comment in the patch.
> 
> Based on a patch by: Alvaro Gamez <alvaro.gamez@hazent.com>

 Kind of unnecessary since you kept him as author.

> 
> [me: fix gettextizing, write commit log]

 Once it's committed, it won't be clear anymore who the 'me' is.


> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

 You should keep Alvaro's SoB. Well, except that he didn't sign it off :-)
Alvaro, can you provide your SoB?


 But it basically looks good to me :-)

Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

 Regards,
 Arnout

> Cc: Arnout Vandecappelle <arnout@mind.be>
> ---
>  .../libconfuse-0000-fix-configure-ac.patch         | 27 ++++++++++++++++++++++
>  package/libconfuse/libconfuse.mk                   |  9 +++++---
>  2 files changed, 33 insertions(+), 3 deletions(-)
>  create mode 100644 package/libconfuse/libconfuse-0000-fix-configure-ac.patch
> 
> diff --git a/package/libconfuse/libconfuse-0000-fix-configure-ac.patch b/package/libconfuse/libconfuse-0000-fix-configure-ac.patch
> new file mode 100644
> index 0000000..6d61b48
> --- /dev/null
> +++ b/package/libconfuse/libconfuse-0000-fix-configure-ac.patch
> @@ -0,0 +1,27 @@
> +configure: remove po/Makefile.in from AC_CONFIG_FILES
> +
> +Since we are gettextizing the package, gettextize updates configure.ac
> +to add po/Makefile.in to AC_CONFIG_FILES>
> +
> +Unfortunately, it's already present, and gettextize does not detect it,
> +and insists on adding its own. Later on, autoreconf barfs on the double
> +occurences.
> +
> +As suggested by Arnout, just patch configure.ac to remove the
> +po/Makefile.in occurence, so gettextize can safely add its own
> +
> +Reported-by: Arnout Vandecappelle <arnout@mind.be>
> +Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> +Cc: Alvaro Gamez <alvaro.gamez@hazent.com>
> +
> +diff -durN libconfuse-V2_7.orig/configure.ac libconfuse-V2_7/configure.ac
> +--- libconfuse-V2_7.orig/configure.ac	2010-02-20 10:14:10.000000000 +0100
> ++++ libconfuse-V2_7/configure.ac	2014-07-17 00:19:18.816785340 +0200
> +@@ -49,7 +49,6 @@
> + AC_CONFIG_FILES([Makefile \
> + 		 src/Makefile \
> + 		 examples/Makefile \
> +-                 po/Makefile.in \
> + 		 m4/Makefile \
> + 		 tests/Makefile \
> + 		 doc/Makefile \
> diff --git a/package/libconfuse/libconfuse.mk b/package/libconfuse/libconfuse.mk
> index 8a0d80f..e9a1114 100644
> --- a/package/libconfuse/libconfuse.mk
> +++ b/package/libconfuse/libconfuse.mk
> @@ -4,13 +4,16 @@
>  #
>  ################################################################################
>  
> -LIBCONFUSE_VERSION = 2.7
> -LIBCONFUSE_SOURCE = confuse-$(LIBCONFUSE_VERSION).tar.gz
> -LIBCONFUSE_SITE = http://savannah.nongnu.org/download/confuse/
> +LIBCONFUSE_VERSION = V2_7
> +LIBCONFUSE_SITE = $(call github,martinh,libconfuse,$(LIBCONFUSE_VERSION))
>  LIBCONFUSE_INSTALL_STAGING = YES
>  LIBCONFUSE_CONF_OPT = --disable-rpath
>  LIBCONFUSE_LICENSE = ISC
>  LIBCONFUSE_LICENSE_FILES = src/confuse.c
>  
> +# Fresh from the repository, no configure et al.
> +LIBCONFUSE_AUTORECONF = YES
> +LIBCONFUSE_GETTEXTIZE = YES
> +
>  $(eval $(autotools-package))
>  $(eval $(host-autotools-package))
> 


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

* [Buildroot] [PATCH] package/libconfuse: switch to the new upstream
  2014-07-16 22:40 ` Arnout Vandecappelle
@ 2014-07-17  6:38   ` Alvaro Gamez
  0 siblings, 0 replies; 6+ messages in thread
From: Alvaro Gamez @ 2014-07-17  6:38 UTC (permalink / raw)
  To: buildroot

Hi, Arnout, Yann

You can change main authorship if you feel it's better, my patch was
in fact trivial and non-working :)
The commit message would also match with the 'me', that is, you.

Signed-off-by: Alvaro G. M <alvaro.gamez@hazent.com>

Regards

2014-07-17 0:40 GMT+02:00 Arnout Vandecappelle <arnout@mind.be>:
> On 17/07/14 00:32, Yann E. MORIN wrote:
>> From: Alvaro Gamez <alvaro.gamez@hazent.com>
>>
>> libconfuse is being migrated to github (see http://www.nongnu.org/confuse/)
>> So, just follow suite.
>
>  suit (pronounced [set]), not suite (pronounced [swi.t]).
>
>>
>> Needs a bit of a hack so gettextize + autoreconf does not step on each
>> other's toes. See comment in the patch.
>>
>> Based on a patch by: Alvaro Gamez <alvaro.gamez@hazent.com>
>
>  Kind of unnecessary since you kept him as author.
>
>>
>> [me: fix gettextizing, write commit log]
>
>  Once it's committed, it won't be clear anymore who the 'me' is.
>
>
>> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
>
>  You should keep Alvaro's SoB. Well, except that he didn't sign it off :-)
> Alvaro, can you provide your SoB?
>
>
>  But it basically looks good to me :-)
>
> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
>
>  Regards,
>  Arnout
>
>> Cc: Arnout Vandecappelle <arnout@mind.be>
>> ---
>>  .../libconfuse-0000-fix-configure-ac.patch         | 27 ++++++++++++++++++++++
>>  package/libconfuse/libconfuse.mk                   |  9 +++++---
>>  2 files changed, 33 insertions(+), 3 deletions(-)
>>  create mode 100644 package/libconfuse/libconfuse-0000-fix-configure-ac.patch
>>
>> diff --git a/package/libconfuse/libconfuse-0000-fix-configure-ac.patch b/package/libconfuse/libconfuse-0000-fix-configure-ac.patch
>> new file mode 100644
>> index 0000000..6d61b48
>> --- /dev/null
>> +++ b/package/libconfuse/libconfuse-0000-fix-configure-ac.patch
>> @@ -0,0 +1,27 @@
>> +configure: remove po/Makefile.in from AC_CONFIG_FILES
>> +
>> +Since we are gettextizing the package, gettextize updates configure.ac
>> +to add po/Makefile.in to AC_CONFIG_FILES>
>> +
>> +Unfortunately, it's already present, and gettextize does not detect it,
>> +and insists on adding its own. Later on, autoreconf barfs on the double
>> +occurences.
>> +
>> +As suggested by Arnout, just patch configure.ac to remove the
>> +po/Makefile.in occurence, so gettextize can safely add its own
>> +
>> +Reported-by: Arnout Vandecappelle <arnout@mind.be>
>> +Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
>> +Cc: Alvaro Gamez <alvaro.gamez@hazent.com>
>> +
>> +diff -durN libconfuse-V2_7.orig/configure.ac libconfuse-V2_7/configure.ac
>> +--- libconfuse-V2_7.orig/configure.ac        2010-02-20 10:14:10.000000000 +0100
>> ++++ libconfuse-V2_7/configure.ac     2014-07-17 00:19:18.816785340 +0200
>> +@@ -49,7 +49,6 @@
>> + AC_CONFIG_FILES([Makefile \
>> +              src/Makefile \
>> +              examples/Makefile \
>> +-                 po/Makefile.in \
>> +              m4/Makefile \
>> +              tests/Makefile \
>> +              doc/Makefile \
>> diff --git a/package/libconfuse/libconfuse.mk b/package/libconfuse/libconfuse.mk
>> index 8a0d80f..e9a1114 100644
>> --- a/package/libconfuse/libconfuse.mk
>> +++ b/package/libconfuse/libconfuse.mk
>> @@ -4,13 +4,16 @@
>>  #
>>  ################################################################################
>>
>> -LIBCONFUSE_VERSION = 2.7
>> -LIBCONFUSE_SOURCE = confuse-$(LIBCONFUSE_VERSION).tar.gz
>> -LIBCONFUSE_SITE = http://savannah.nongnu.org/download/confuse/
>> +LIBCONFUSE_VERSION = V2_7
>> +LIBCONFUSE_SITE = $(call github,martinh,libconfuse,$(LIBCONFUSE_VERSION))
>>  LIBCONFUSE_INSTALL_STAGING = YES
>>  LIBCONFUSE_CONF_OPT = --disable-rpath
>>  LIBCONFUSE_LICENSE = ISC
>>  LIBCONFUSE_LICENSE_FILES = src/confuse.c
>>
>> +# Fresh from the repository, no configure et al.
>> +LIBCONFUSE_AUTORECONF = YES
>> +LIBCONFUSE_GETTEXTIZE = YES
>> +
>>  $(eval $(autotools-package))
>>  $(eval $(host-autotools-package))
>>
>
>
> --
> Arnout Vandecappelle                          arnout at mind be
> Senior Embedded Software Architect            +32-16-286500
> Essensium/Mind                                http://www.mind.be
> G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
> LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
> GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F



-- 
?lvaro G?mez Machado

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

* [Buildroot] [PATCH] package/libconfuse: switch to the new upstream
  2014-07-16 22:32 [Buildroot] [PATCH] package/libconfuse: switch to the new upstream Yann E. MORIN
  2014-07-16 22:34 ` Yann E. MORIN
  2014-07-16 22:40 ` Arnout Vandecappelle
@ 2014-07-17  7:58 ` Thomas Petazzoni
  2014-07-17 22:46 ` Yann E. MORIN
  3 siblings, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2014-07-17  7:58 UTC (permalink / raw)
  To: buildroot

Dear Yann E. MORIN,

On Thu, 17 Jul 2014 00:32:45 +0200, Yann E. MORIN wrote:
> From: Alvaro Gamez <alvaro.gamez@hazent.com>
> 
> libconfuse is being migrated to github (see http://www.nongnu.org/confuse/)
> So, just follow suite.
> 
> Needs a bit of a hack so gettextize + autoreconf does not step on each
> other's toes. See comment in the patch.
> 
> Based on a patch by: Alvaro Gamez <alvaro.gamez@hazent.com>
> 
> [me: fix gettextizing, write commit log]
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> Cc: Arnout Vandecappelle <arnout@mind.be>
> ---
>  .../libconfuse-0000-fix-configure-ac.patch         | 27 ++++++++++++++++++++++
>  package/libconfuse/libconfuse.mk                   |  9 +++++---
>  2 files changed, 33 insertions(+), 3 deletions(-)
>  create mode 100644 package/libconfuse/libconfuse-0000-fix-configure-ac.patch

Applied, with Arnout fixes made in the commit log.

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH] package/libconfuse: switch to the new upstream
  2014-07-16 22:32 [Buildroot] [PATCH] package/libconfuse: switch to the new upstream Yann E. MORIN
                   ` (2 preceding siblings ...)
  2014-07-17  7:58 ` Thomas Petazzoni
@ 2014-07-17 22:46 ` Yann E. MORIN
  3 siblings, 0 replies; 6+ messages in thread
From: Yann E. MORIN @ 2014-07-17 22:46 UTC (permalink / raw)
  To: buildroot

Thomas, All,

On 2014-07-17 00:32 +0200, Yann E. MORIN spake thusly:
> libconfuse is being migrated to github (see http://www.nongnu.org/confuse/)
> So, just follow suite.
> 
> Needs a bit of a hack so gettextize + autoreconf does not step on each
> other's toes. See comment in the patch.
[--SNIP--]

OK, so this bump is causing a bunch of autobuild failures:
    http://autobuild.buildroot.org/?reason=libconfuse-V2_7

Some of them are due to a problem while either gettextizing or
autoreconfiguring the package.

Thomas was able to reproduce this build failure:
    http://autobuild.buildroot.org/results/f60/f6089c90d4f0ba579725ac834d8ac43b839bbc3b/

However, I was not able to reproduce it; it builds fine for me, in a
Debian Squeeze 32-bit chroot.

I'm lost.

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

end of thread, other threads:[~2014-07-17 22:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-16 22:32 [Buildroot] [PATCH] package/libconfuse: switch to the new upstream Yann E. MORIN
2014-07-16 22:34 ` Yann E. MORIN
2014-07-16 22:40 ` Arnout Vandecappelle
2014-07-17  6:38   ` Alvaro Gamez
2014-07-17  7:58 ` Thomas Petazzoni
2014-07-17 22:46 ` Yann E. MORIN

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.