All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot]  [PATCH] libconfuse: bump to version 2.7
@ 2011-08-18 23:53 Dan Pattison
  2011-08-19  4:48 ` [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 2 Dan Pattison
  0 siblings, 1 reply; 10+ messages in thread
From: Dan Pattison @ 2011-08-18 23:53 UTC (permalink / raw)
  To: buildroot

My first patch.
Old libconfuse version 2.6 is from year 2007 so bump to version 2.7
Updated download URL
Removed libconfuse-2.6-dont-use-werror.patch
Changed := to just =


Signed-off-by: Dan Pattison <dan.pattison@ethertek.ca>
---
  .../libconfuse-2.6-dont-use-werror.patch           |   34 
--------------------
  package/libconfuse/libconfuse.mk                   |   12 +++---
  2 files changed, 6 insertions(+), 40 deletions(-)
  delete mode 100644 package/libconfuse/libconfuse-2.6-dont-use-werror.patch

diff --git a/package/libconfuse/libconfuse-2.6-dont-use-werror.patch 
b/package/libconfuse/libconfuse-2.6-dont-use-werror.patch
deleted file mode 100644
index 50d0733..0000000
--- a/package/libconfuse/libconfuse-2.6-dont-use-werror.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-confuse: don't compile with -Werror
-
-Werror isn't really a robust setting for !development.
----
- src/Makefile.am |    2 +-
- src/Makefile.in |    2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-Index: confuse-2.6/src/Makefile.am
-===================================================================
---- confuse-2.6.orig/src/Makefile.am
-+++ confuse-2.6/src/Makefile.am
-@@ -10,7 +10,7 @@
- DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
-
- if cc_is_gcc
--AM_CFLAGS=-Wall -Werror
-+AM_CFLAGS=-Wall
- endif
-
- LIBS = @LIBS@
-Index: confuse-2.6/src/Makefile.in
-===================================================================
---- confuse-2.6.orig/src/Makefile.in
-+++ confuse-2.6/src/Makefile.in
-@@ -196,7 +196,7 @@
- libconfuse_la_SOURCES = confuse.c lexer.l
- libconfuse_la_LIBADD = $(LTLIBINTL)
- include_HEADERS = confuse.h
-- at cc_is_gcc_TRUE@AM_CFLAGS = -Wall -Werror
-+ at cc_is_gcc_TRUE@AM_CFLAGS = -Wall
- CLEANFILES = *~ \#*\#
- AM_LFLAGS = -Pcfg_yy -olex.yy.c
- all: all-am
diff --git a/package/libconfuse/libconfuse.mk 
b/package/libconfuse/libconfuse.mk
index 03aa0bc..06a85e1 100644
--- a/package/libconfuse/libconfuse.mk
+++ b/package/libconfuse/libconfuse.mk
@@ -3,12 +3,12 @@
  # libconfuse
  #
  #############################################################
-LIBCONFUSE_VERSION:=2.6
-LIBCONFUSE_SOURCE:=confuse-$(LIBCONFUSE_VERSION).tar.gz
-LIBCONFUSE_SITE:=http://bzero.se/confuse/
-LIBCONFUSE_AUTORECONF:=NO
-LIBCONFUSE_INSTALL_STAGING:=YES
-LIBCONFUSE_INSTALL_TARGET:=YES
+LIBCONFUSE_VERSION = 2.7
+LIBCONFUSE_SOURCE = confuse-$(LIBCONFUSE_VERSION).tar.gz
+LIBCONFUSE_SITE = http://savannah.nongnu.org/download/confuse/
+LIBCONFUSE_AUTORECONF = NO
+LIBCONFUSE_INSTALL_STAGING = YES
+LIBCONFUSE_INSTALL_TARGET = YES

  LIBCONFUSE_CONF_OPT:=--disable-rpath

-- 
1.6.3.3

-- 
Dan Pattison
Ethertek Circuits

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

* [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 2
  2011-08-18 23:53 [Buildroot] [PATCH] libconfuse: bump to version 2.7 Dan Pattison
@ 2011-08-19  4:48 ` Dan Pattison
  2011-08-19  9:06   ` Thomas Petazzoni
  0 siblings, 1 reply; 10+ messages in thread
From: Dan Pattison @ 2011-08-19  4:48 UTC (permalink / raw)
  To: buildroot

I forgot to include the lines below to the previous patch. Shazbot!

-LIBCONFUSE_CONF_OPT:=--disable-rpath
+LIBCONFUSE_CONF_OPT = --enable-shared --disable-rpath

Here is updated patch.

Signed-off-by: Dan Pattison <dan.pattison@ethertek.ca>
---
  .../libconfuse-2.6-dont-use-werror.patch           |   34 
--------------------
  package/libconfuse/libconfuse.mk                   |   16 +++++----
  2 files changed, 9 insertions(+), 41 deletions(-)
  delete mode 100644 package/libconfuse/libconfuse-2.6-dont-use-werror.patch

diff --git a/package/libconfuse/libconfuse-2.6-dont-use-werror.patch 
b/package/libconfuse/libconfuse-2.6-dont-use-werror.patch
deleted file mode 100644
index 50d0733..0000000
--- a/package/libconfuse/libconfuse-2.6-dont-use-werror.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-confuse: don't compile with -Werror
-
-Werror isn't really a robust setting for !development.
----
- src/Makefile.am |    2 +-
- src/Makefile.in |    2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-Index: confuse-2.6/src/Makefile.am
-===================================================================
---- confuse-2.6.orig/src/Makefile.am
-+++ confuse-2.6/src/Makefile.am
-@@ -10,7 +10,7 @@
- DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
-
- if cc_is_gcc
--AM_CFLAGS=-Wall -Werror
-+AM_CFLAGS=-Wall
- endif
-
- LIBS = @LIBS@
-Index: confuse-2.6/src/Makefile.in
-===================================================================
---- confuse-2.6.orig/src/Makefile.in
-+++ confuse-2.6/src/Makefile.in
-@@ -196,7 +196,7 @@
- libconfuse_la_SOURCES = confuse.c lexer.l
- libconfuse_la_LIBADD = $(LTLIBINTL)
- include_HEADERS = confuse.h
-- at cc_is_gcc_TRUE@AM_CFLAGS = -Wall -Werror
-+ at cc_is_gcc_TRUE@AM_CFLAGS = -Wall
- CLEANFILES = *~ \#*\#
- AM_LFLAGS = -Pcfg_yy -olex.yy.c
- all: all-am
diff --git a/package/libconfuse/libconfuse.mk 
b/package/libconfuse/libconfuse.mk
index 03aa0bc..0464adc 100644
--- a/package/libconfuse/libconfuse.mk
+++ b/package/libconfuse/libconfuse.mk
@@ -3,13 +3,15 @@
  # libconfuse
  #
  #############################################################
-LIBCONFUSE_VERSION:=2.6
-LIBCONFUSE_SOURCE:=confuse-$(LIBCONFUSE_VERSION).tar.gz
-LIBCONFUSE_SITE:=http://bzero.se/confuse/
-LIBCONFUSE_AUTORECONF:=NO
-LIBCONFUSE_INSTALL_STAGING:=YES
-LIBCONFUSE_INSTALL_TARGET:=YES
+LIBCONFUSE_VERSION = 2.7
+LIBCONFUSE_SOURCE = confuse-$(LIBCONFUSE_VERSION).tar.gz
+LIBCONFUSE_SITE = http://savannah.nongnu.org/download/confuse/
+LIBCONFUSE_AUTORECONF = NO
+LIBCONFUSE_INSTALL_STAGING = YES
+LIBCONFUSE_INSTALL_TARGET = YES

-LIBCONFUSE_CONF_OPT:=--disable-rpath
+LIBCONFUSE_CONF_OPT = --enable-shared --disable-rpath
+
+LIBCONFUSE_DEPENDENCIES = uclibc

  $(eval $(call AUTOTARGETS,package,libconfuse))
-- 
1.6.3.3

Dan Pattison
Ethertek Circuits


On 8/18/2011 4:53 PM, Dan Pattison wrote:
> My first patch.
> Old libconfuse version 2.6 is from year 2007 so bump to version 2.7
> Updated download URL
> Removed libconfuse-2.6-dont-use-werror.patch
> Changed := to just =
>
>
> Signed-off-by: Dan Pattison <dan.pattison@ethertek.ca>
> ---
>  .../libconfuse-2.6-dont-use-werror.patch           |   34 
> --------------------
>  package/libconfuse/libconfuse.mk                   |   12 +++---
>  2 files changed, 6 insertions(+), 40 deletions(-)
>  delete mode 100644 
> package/libconfuse/libconfuse-2.6-dont-use-werror.patch
>
> diff --git a/package/libconfuse/libconfuse-2.6-dont-use-werror.patch 
> b/package/libconfuse/libconfuse-2.6-dont-use-werror.patch
> deleted file mode 100644
> index 50d0733..0000000
> --- a/package/libconfuse/libconfuse-2.6-dont-use-werror.patch
> +++ /dev/null
> @@ -1,34 +0,0 @@
> -confuse: don't compile with -Werror
> -
> -Werror isn't really a robust setting for !development.
> ----
> - src/Makefile.am |    2 +-
> - src/Makefile.in |    2 +-
> - 2 files changed, 2 insertions(+), 2 deletions(-)
> -
> -Index: confuse-2.6/src/Makefile.am
> -===================================================================
> ---- confuse-2.6.orig/src/Makefile.am
> -+++ confuse-2.6/src/Makefile.am
> -@@ -10,7 +10,7 @@
> - DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
> -
> - if cc_is_gcc
> --AM_CFLAGS=-Wall -Werror
> -+AM_CFLAGS=-Wall
> - endif
> -
> - LIBS = @LIBS@
> -Index: confuse-2.6/src/Makefile.in
> -===================================================================
> ---- confuse-2.6.orig/src/Makefile.in
> -+++ confuse-2.6/src/Makefile.in
> -@@ -196,7 +196,7 @@
> - libconfuse_la_SOURCES = confuse.c lexer.l
> - libconfuse_la_LIBADD = $(LTLIBINTL)
> - include_HEADERS = confuse.h
> -- at cc_is_gcc_TRUE@AM_CFLAGS = -Wall -Werror
> -+ at cc_is_gcc_TRUE@AM_CFLAGS = -Wall
> - CLEANFILES = *~ \#*\#
> - AM_LFLAGS = -Pcfg_yy -olex.yy.c
> - all: all-am
> diff --git a/package/libconfuse/libconfuse.mk 
> b/package/libconfuse/libconfuse.mk
> index 03aa0bc..06a85e1 100644
> --- a/package/libconfuse/libconfuse.mk
> +++ b/package/libconfuse/libconfuse.mk
> @@ -3,12 +3,12 @@
>  # libconfuse
>  #
>  #############################################################
> -LIBCONFUSE_VERSION:=2.6
> -LIBCONFUSE_SOURCE:=confuse-$(LIBCONFUSE_VERSION).tar.gz
> -LIBCONFUSE_SITE:=http://bzero.se/confuse/
> -LIBCONFUSE_AUTORECONF:=NO
> -LIBCONFUSE_INSTALL_STAGING:=YES
> -LIBCONFUSE_INSTALL_TARGET:=YES
> +LIBCONFUSE_VERSION = 2.7
> +LIBCONFUSE_SOURCE = confuse-$(LIBCONFUSE_VERSION).tar.gz
> +LIBCONFUSE_SITE = http://savannah.nongnu.org/download/confuse/
> +LIBCONFUSE_AUTORECONF = NO
> +LIBCONFUSE_INSTALL_STAGING = YES
> +LIBCONFUSE_INSTALL_TARGET = YES
>
>  LIBCONFUSE_CONF_OPT:=--disable-rpath
>

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

* [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 2
  2011-08-19  4:48 ` [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 2 Dan Pattison
@ 2011-08-19  9:06   ` Thomas Petazzoni
  2011-08-19 15:12     ` [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 3 Dan Pattison
  0 siblings, 1 reply; 10+ messages in thread
From: Thomas Petazzoni @ 2011-08-19  9:06 UTC (permalink / raw)
  To: buildroot

Hello,

Le Thu, 18 Aug 2011 21:48:58 -0700,
Dan Pattison <dan.pattison@ethertek.ca> a ?crit :

> I forgot to include the lines below to the previous patch. Shazbot!
> 
> -LIBCONFUSE_CONF_OPT:=--disable-rpath
> +LIBCONFUSE_CONF_OPT = --enable-shared --disable-rpath

--enable-shared is not needed, it is already passed by the AUTOTARGETS
infrastructure.

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 3
  2011-08-19  9:06   ` Thomas Petazzoni
@ 2011-08-19 15:12     ` Dan Pattison
  2011-08-22  7:39       ` [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 4 Dan Pattison
  0 siblings, 1 reply; 10+ messages in thread
From: Dan Pattison @ 2011-08-19 15:12 UTC (permalink / raw)
  To: buildroot

Hello,

Thomas says;

--enable-shared is not needed becauseit is already passed by the AUTOTARGETS infrastructure.

Below is take 3 without--enable-shared .

Old libconfuse version 2.6 is from year 2007 so bump to version 2.7
Updated download URL
Removed libconfuse-2.6-dont-use-werror.patch
Changed := to just =


Signed-off-by: Dan Pattison <dan.pattison@ethertek.ca>
---
  .../libconfuse-2.6-dont-use-werror.patch           |   34 
--------------------
  package/libconfuse/libconfuse.mk                   |   16 +++++----
  2 files changed, 9 insertions(+), 41 deletions(-)
  delete mode 100644 package/libconfuse/libconfuse-2.6-dont-use-werror.patch

diff --git a/package/libconfuse/libconfuse-2.6-dont-use-werror.patch 
b/package/libconfuse/libconfuse-2.6-dont-use-werror.patch
deleted file mode 100644
index 50d0733..0000000
--- a/package/libconfuse/libconfuse-2.6-dont-use-werror.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-confuse: don't compile with -Werror
-
-Werror isn't really a robust setting for !development.
----
- src/Makefile.am |    2 +-
- src/Makefile.in |    2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-Index: confuse-2.6/src/Makefile.am
-===================================================================
---- confuse-2.6.orig/src/Makefile.am
-+++ confuse-2.6/src/Makefile.am
-@@ -10,7 +10,7 @@
- DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
-
- if cc_is_gcc
--AM_CFLAGS=-Wall -Werror
-+AM_CFLAGS=-Wall
- endif
-
- LIBS = @LIBS@
-Index: confuse-2.6/src/Makefile.in
-===================================================================
---- confuse-2.6.orig/src/Makefile.in
-+++ confuse-2.6/src/Makefile.in
-@@ -196,7 +196,7 @@
- libconfuse_la_SOURCES = confuse.c lexer.l
- libconfuse_la_LIBADD = $(LTLIBINTL)
- include_HEADERS = confuse.h
-- at cc_is_gcc_TRUE@AM_CFLAGS = -Wall -Werror
-+ at cc_is_gcc_TRUE@AM_CFLAGS = -Wall
- CLEANFILES = *~ \#*\#
- AM_LFLAGS = -Pcfg_yy -olex.yy.c
- all: all-am
diff --git a/package/libconfuse/libconfuse.mk 
b/package/libconfuse/libconfuse.mk
index 03aa0bc..f37c76d 100644
--- a/package/libconfuse/libconfuse.mk
+++ b/package/libconfuse/libconfuse.mk
@@ -3,13 +3,15 @@
  # libconfuse
  #
  #############################################################
-LIBCONFUSE_VERSION:=2.6
-LIBCONFUSE_SOURCE:=confuse-$(LIBCONFUSE_VERSION).tar.gz
-LIBCONFUSE_SITE:=http://bzero.se/confuse/
-LIBCONFUSE_AUTORECONF:=NO
-LIBCONFUSE_INSTALL_STAGING:=YES
-LIBCONFUSE_INSTALL_TARGET:=YES
+LIBCONFUSE_VERSION = 2.7
+LIBCONFUSE_SOURCE = confuse-$(LIBCONFUSE_VERSION).tar.gz
+LIBCONFUSE_SITE = http://savannah.nongnu.org/download/confuse/
+LIBCONFUSE_AUTORECONF = NO
+LIBCONFUSE_INSTALL_STAGING = YES
+LIBCONFUSE_INSTALL_TARGET = YES

-LIBCONFUSE_CONF_OPT:=--disable-rpath
+LIBCONFUSE_CONF_OPT = --disable-rpath
+
+LIBCONFUSE_DEPENDENCIES = uclibc

  $(eval $(call AUTOTARGETS,package,libconfuse))
-- 
1.6.3.3

Dan Pattison
Ethertek Circuits

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

* [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 4
  2011-08-19 15:12     ` [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 3 Dan Pattison
@ 2011-08-22  7:39       ` Dan Pattison
  2011-09-01  7:26         ` Thomas Petazzoni
  2011-09-01 14:47         ` [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 5 Dan Pattison
  0 siblings, 2 replies; 10+ messages in thread
From: Dan Pattison @ 2011-08-22  7:39 UTC (permalink / raw)
  To: buildroot

Hello,

Sorry for multiple patch submissions. I think I got it right this time.


Old libconfuse version 2.6 is from year 2007 so bump to version 2.7
Updated download URL in libconfuse.mk
Updated download URL inConfig.in
Removed libconfuse-2.6-dont-use-werror.patch
Changed := to just =


Signed-off-by: Dan Pattison <dan.pattison@ethertek.ca>
---
  package/libconfuse/Config.in                       |    2 +-
  .../libconfuse-2.6-dont-use-werror.patch           |   34 
--------------------
  package/libconfuse/libconfuse.mk                   |   16 +++++----
  3 files changed, 10 insertions(+), 42 deletions(-)
  delete mode 100644 package/libconfuse/libconfuse-2.6-dont-use-werror.patch

diff --git a/package/libconfuse/Config.in b/package/libconfuse/Config.in
index e123dab..be18cbb 100644
--- a/package/libconfuse/Config.in
+++ b/package/libconfuse/Config.in
@@ -8,4 +8,4 @@ config BR2_PACKAGE_LIBCONFUSE
        environment variable expansion, functions and nested include
        statements.

-      http://www.nongnu.org/confuse/
+      http://savannah.nongnu.org/download/confuse/
diff --git a/package/libconfuse/libconfuse-2.6-dont-use-werror.patch 
b/package/libconfuse/libconfuse-2.6-dont-use-werror.patch
deleted file mode 100644
index 50d0733..0000000
--- a/package/libconfuse/libconfuse-2.6-dont-use-werror.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-confuse: don't compile with -Werror
-
-Werror isn't really a robust setting for !development.
----
- src/Makefile.am |    2 +-
- src/Makefile.in |    2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-Index: confuse-2.6/src/Makefile.am
-===================================================================
---- confuse-2.6.orig/src/Makefile.am
-+++ confuse-2.6/src/Makefile.am
-@@ -10,7 +10,7 @@
- DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
-
- if cc_is_gcc
--AM_CFLAGS=-Wall -Werror
-+AM_CFLAGS=-Wall
- endif
-
- LIBS = @LIBS@
-Index: confuse-2.6/src/Makefile.in
-===================================================================
---- confuse-2.6.orig/src/Makefile.in
-+++ confuse-2.6/src/Makefile.in
-@@ -196,7 +196,7 @@
- libconfuse_la_SOURCES = confuse.c lexer.l
- libconfuse_la_LIBADD = $(LTLIBINTL)
- include_HEADERS = confuse.h
-- at cc_is_gcc_TRUE@AM_CFLAGS = -Wall -Werror
-+ at cc_is_gcc_TRUE@AM_CFLAGS = -Wall
- CLEANFILES = *~ \#*\#
- AM_LFLAGS = -Pcfg_yy -olex.yy.c
- all: all-am
diff --git a/package/libconfuse/libconfuse.mk 
b/package/libconfuse/libconfuse.mk
index 03aa0bc..f37c76d 100644
--- a/package/libconfuse/libconfuse.mk
+++ b/package/libconfuse/libconfuse.mk
@@ -3,13 +3,15 @@
  # libconfuse
  #
  #############################################################
-LIBCONFUSE_VERSION:=2.6
-LIBCONFUSE_SOURCE:=confuse-$(LIBCONFUSE_VERSION).tar.gz
-LIBCONFUSE_SITE:=http://bzero.se/confuse/
-LIBCONFUSE_AUTORECONF:=NO
-LIBCONFUSE_INSTALL_STAGING:=YES
-LIBCONFUSE_INSTALL_TARGET:=YES
+LIBCONFUSE_VERSION = 2.7
+LIBCONFUSE_SOURCE = confuse-$(LIBCONFUSE_VERSION).tar.gz
+LIBCONFUSE_SITE = http://savannah.nongnu.org/download/confuse/
+LIBCONFUSE_AUTORECONF = NO
+LIBCONFUSE_INSTALL_STAGING = YES
+LIBCONFUSE_INSTALL_TARGET = YES

-LIBCONFUSE_CONF_OPT:=--disable-rpath
+LIBCONFUSE_CONF_OPT = --disable-rpath
+
+LIBCONFUSE_DEPENDENCIES = uclibc

  $(eval $(call AUTOTARGETS,package,libconfuse))
-- 
1.6.3.3

Dan Pattison
Ethertek Circuits

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

* [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 4
  2011-08-22  7:39       ` [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 4 Dan Pattison
@ 2011-09-01  7:26         ` Thomas Petazzoni
  2011-09-01 14:47         ` [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 5 Dan Pattison
  1 sibling, 0 replies; 10+ messages in thread
From: Thomas Petazzoni @ 2011-09-01  7:26 UTC (permalink / raw)
  To: buildroot

Hello Dan,

Le Mon, 22 Aug 2011 00:39:29 -0700,
Dan Pattison <dan.pattison@ethertek.ca> a ?crit :

> Sorry for multiple patch submissions. I think I got it right this time.

It is almost right, except for this sentence. Basically, in your email,
everything that is above the --- marker (just below your Signed-off-by
line) becomes the commit log that gets stored for the eternity in the
project history. Therefore, we typically don't include "personal"
messages such as this one.

If you really want to add a personal message, put it between the ---
marker and the beginning of the patch itself.

Could you repost a new version with this fixed ?

Thanks!

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 5
  2011-08-22  7:39       ` [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 4 Dan Pattison
  2011-09-01  7:26         ` Thomas Petazzoni
@ 2011-09-01 14:47         ` Dan Pattison
  2011-09-11 13:15           ` Peter Korsgaard
  1 sibling, 1 reply; 10+ messages in thread
From: Dan Pattison @ 2011-09-01 14:47 UTC (permalink / raw)
  To: buildroot

Old libconfuse version 2.6 is from year 2007 so bump to version 2.7
Updated download URL in libconfuse.mk
Updated download URL in Config.in
Removed libconfuse-2.6-dont-use-werror.patch
Changed := to just =

Signed-off-by: Dan Pattison <dan.pattison@ethertek.ca>
---
  package/libconfuse/Config.in                       |    2 +-
  .../libconfuse-2.6-dont-use-werror.patch           |   34 
--------------------
  package/libconfuse/libconfuse.mk                   |   16 +++++----
  3 files changed, 10 insertions(+), 42 deletions(-)
  delete mode 100644 
package/libconfuse/libconfuse-2.6-dont-use-werror.patch

diff --git a/package/libconfuse/Config.in b/package/libconfuse/Config.in
index e123dab..be18cbb 100644
--- a/package/libconfuse/Config.in
+++ b/package/libconfuse/Config.in
@@ -8,4 +8,4 @@ config BR2_PACKAGE_LIBCONFUSE
        environment variable expansion, functions and nested include
        statements.

- http://www.nongnu.org/confuse/
+ http://savannah.nongnu.org/download/confuse/
diff --git a/package/libconfuse/libconfuse-2.6-dont-use-werror.patch 
b/package/libconfuse/libconfuse-2.6-dont-use-werror.patch
deleted file mode 100644
index 50d0733..0000000
--- a/package/libconfuse/libconfuse-2.6-dont-use-werror.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-confuse: don't compile with -Werror
-
-Werror isn't really a robust setting for !development.
----
- src/Makefile.am |    2 +-
- src/Makefile.in |    2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-Index: confuse-2.6/src/Makefile.am
-===================================================================
---- confuse-2.6.orig/src/Makefile.am
-+++ confuse-2.6/src/Makefile.am
-@@ -10,7 +10,7 @@
- DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
-
- if cc_is_gcc
--AM_CFLAGS=-Wall -Werror
-+AM_CFLAGS=-Wall
- endif
-
- LIBS = @LIBS@
-Index: confuse-2.6/src/Makefile.in
-===================================================================
---- confuse-2.6.orig/src/Makefile.in
-+++ confuse-2.6/src/Makefile.in
-@@ -196,7 +196,7 @@
- libconfuse_la_SOURCES = confuse.c lexer.l
- libconfuse_la_LIBADD = $(LTLIBINTL)
- include_HEADERS = confuse.h
-- at cc_is_gcc_TRUE@AM_CFLAGS = -Wall -Werror
-+ at cc_is_gcc_TRUE@AM_CFLAGS = -Wall
- CLEANFILES = *~ \#*\#
- AM_LFLAGS = -Pcfg_yy -olex.yy.c
- all: all-am
diff --git a/package/libconfuse/libconfuse.mk 
b/package/libconfuse/libconfuse.mk
index 03aa0bc..f37c76d 100644
--- a/package/libconfuse/libconfuse.mk
+++ b/package/libconfuse/libconfuse.mk
@@ -3,13 +3,15 @@
  # libconfuse
  #
  #############################################################
-LIBCONFUSE_VERSION:=2.6
-LIBCONFUSE_SOURCE:=confuse-$(LIBCONFUSE_VERSION).tar.gz
-LIBCONFUSE_SITE:=http://bzero.se/confuse/
-LIBCONFUSE_AUTORECONF:=NO
-LIBCONFUSE_INSTALL_STAGING:=YES
-LIBCONFUSE_INSTALL_TARGET:=YES
+LIBCONFUSE_VERSION = 2.7
+LIBCONFUSE_SOURCE = confuse-$(LIBCONFUSE_VERSION).tar.gz
+LIBCONFUSE_SITE = http://savannah.nongnu.org/download/confuse/
+LIBCONFUSE_AUTORECONF = NO
+LIBCONFUSE_INSTALL_STAGING = YES
+LIBCONFUSE_INSTALL_TARGET = YES

-LIBCONFUSE_CONF_OPT:=--disable-rpath
+LIBCONFUSE_CONF_OPT = --disable-rpath
+
+LIBCONFUSE_DEPENDENCIES = uclibc

  $(eval $(call AUTOTARGETS,package,libconfuse))
-- 
1.6.3.3


Dan Pattison
Ethertek Circuits

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

* [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 5
  2011-09-01 14:47         ` [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 5 Dan Pattison
@ 2011-09-11 13:15           ` Peter Korsgaard
  2011-09-11 15:41             ` Dan Pattison
  0 siblings, 1 reply; 10+ messages in thread
From: Peter Korsgaard @ 2011-09-11 13:15 UTC (permalink / raw)
  To: buildroot

>>>>> "Dan" == Dan Pattison <dan.pattison@ethertek.ca> writes:

 Dan> Old libconfuse version 2.6 is from year 2007 so bump to version 2.7
 Dan> Updated download URL in libconfuse.mk
 Dan> Updated download URL in Config.in
 Dan> Removed libconfuse-2.6-dont-use-werror.patch
 Dan> Changed := to just =

Committed thanks. Your mailed had unfortunately word wrapped / mangled
whitespace so I had to fix it up by hand. Please consider using git
send-email in the future.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 5
  2011-09-11 13:15           ` Peter Korsgaard
@ 2011-09-11 15:41             ` Dan Pattison
  2011-09-11 17:55               ` Peter Korsgaard
  0 siblings, 1 reply; 10+ messages in thread
From: Dan Pattison @ 2011-09-11 15:41 UTC (permalink / raw)
  To: buildroot


On 9/11/2011 6:15 AM, Peter Korsgaard wrote:
>>>>>> "Dan" == Dan Pattison<dan.pattison@ethertek.ca>  writes:
>   Dan>  Old libconfuse version 2.6 is from year 2007 so bump to version 2.7
>   Dan>  Updated download URL in libconfuse.mk
>   Dan>  Updated download URL in Config.in
>   Dan>  Removed libconfuse-2.6-dont-use-werror.patch
>   Dan>  Changed := to just =
>
> Committed thanks. Your mailed had unfortunately word wrapped / mangled
> whitespace so I had to fix it up by hand. Please consider using git
> send-email in the future.
Hello,

I will figure out git send-email next time instead of copy-paste.

This line should be added to the patch;

+LIBCONFUSE_INSTALL_TARGET = YES

Sorry I missed that.

Best Regards,

Dan Pattison
Ethertek Circuits

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

* [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 5
  2011-09-11 15:41             ` Dan Pattison
@ 2011-09-11 17:55               ` Peter Korsgaard
  0 siblings, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2011-09-11 17:55 UTC (permalink / raw)
  To: buildroot

>>>>> "Dan" == Dan Pattison <dan.pattison@ethertek.ca> writes:

 Dan> I will figure out git send-email next time instead of copy-paste.

Great, thanks.

 Dan> This line should be added to the patch;

 Dan> +LIBCONFUSE_INSTALL_TARGET = YES

 Dan> Sorry I missed that.

No, that isn't needed as it defaults to YES (that's why I dropped it
from the patch):

make -s libconfuse 2>/dev/null |grep '>>>'
>>> libconfuse 2.7 Extracting
>>> libconfuse 2.7 Patching package/libconfuse
>>> libconfuse 2.7 Patching libtool
>>> libconfuse 2.7 Configuring
>>> libconfuse 2.7 Building
>>> libconfuse 2.7 Installing to staging directory
>>> libconfuse 2.7 Installing to target

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2011-09-11 17:55 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-18 23:53 [Buildroot] [PATCH] libconfuse: bump to version 2.7 Dan Pattison
2011-08-19  4:48 ` [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 2 Dan Pattison
2011-08-19  9:06   ` Thomas Petazzoni
2011-08-19 15:12     ` [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 3 Dan Pattison
2011-08-22  7:39       ` [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 4 Dan Pattison
2011-09-01  7:26         ` Thomas Petazzoni
2011-09-01 14:47         ` [Buildroot] [PATCH] libconfuse: bump to version 2.7 take 5 Dan Pattison
2011-09-11 13:15           ` Peter Korsgaard
2011-09-11 15:41             ` Dan Pattison
2011-09-11 17:55               ` Peter Korsgaard

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.