All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] rrdtool: bump version to 1.6.0
@ 2016-05-09 20:10 Roland Franke
  2016-05-09 21:21 ` Thomas Petazzoni
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Roland Franke @ 2016-05-09 20:10 UTC (permalink / raw)
  To: buildroot

delete patch 0001-Add-configure-option-to-disable-documentation.patch
as this is now include in the new version.

Signed-off-by: Roland Franke <fli4l@franke-prem.de>
---
 ...configure-option-to-disable-documentation.patch | 71 ----------------------
 package/rrdtool/rrdtool.hash                       |  2 +-
 package/rrdtool/rrdtool.mk                         |  3 +-
 3 files changed, 2 insertions(+), 74 deletions(-)
 delete mode 100644 package/rrdtool/0001-Add-configure-option-to-disable-documentation.patch

diff --git a/package/rrdtool/0001-Add-configure-option-to-disable-documentation.patch b/package/rrdtool/0001-Add-configure-option-to-disable-documentation.patch
deleted file mode 100644
index afb6292..0000000
--- a/package/rrdtool/0001-Add-configure-option-to-disable-documentation.patch
+++ /dev/null
@@ -1,71 +0,0 @@
-From deaef0790f3cbbce826275d3564551fc9568b628 Mon Sep 17 00:00:00 2001
-From: Gustavo Zacarias <gustavo@zacarias.com.ar>
-Date: Wed, 2 Dec 2015 14:31:52 -0300
-Subject: [PATCH] Add configure option to disable documentation
-
-Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
----
- Makefile.am  | 6 +++++-
- configure.ac | 8 ++++++++
- 2 files changed, 13 insertions(+), 1 deletion(-)
-
-diff --git a/Makefile.am b/Makefile.am
-index f45975c..1f46a9b 100644
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -5,7 +5,11 @@ RSYNC = rsync --rsh=ssh
- 
- # build the following subdirectories
- 
--SUBDIRS = po src doc bindings tests
-+SUBDIRS = po src bindings tests
-+
-+if BUILD_DOCS
-+SUBDIRS += doc
-+endif
- 
- if BUILD_EXAMPLES
- SUBDIRS += examples
-diff --git a/configure.ac b/configure.ac
-index dc70e7d..7460c67 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -100,6 +100,9 @@ AC_ARG_VAR(RRDGRAPH_YLEGEND_ANGLE,
- AC_DEFINE_UNQUOTED(RRDGRAPH_YLEGEND_ANGLE,${RRDGRAPH_YLEGEND_ANGLE:-90.0},
-  [Vertical label angle: -90.0 (default) or 90.0])
- 
-+AC_ARG_ENABLE(docs,AS_HELP_STRING([--disable-docs],[disable building documentation]),
-+[],[enable_docs=yes])
-+
- AC_ARG_ENABLE(examples,AS_HELP_STRING([--disable-examples],[disable building of examples]),
- [],[enable_examples=yes])
- 
-@@ -115,6 +118,7 @@ AC_ARG_ENABLE(rrd_graph,AS_HELP_STRING([--disable-rrd_graph],[disable all rrd_gr
- AC_ARG_ENABLE(rrd_restore,AS_HELP_STRING([--disable-rrd_restore],[disable rrd_restore XML import functions]),
- [],[enable_rrd_restore=yes])
- 
-+AM_CONDITIONAL(BUILD_DOCS,[test $enable_docs != no])
- AM_CONDITIONAL(BUILD_EXAMPLES,[test $enable_examples != no])
- AM_CONDITIONAL(BUILD_RRDCGI,[test $enable_rrdcgi != no])
- AM_CONDITIONAL(BUILD_RRDCACHED,[test $enable_rrdcached != no])
-@@ -945,6 +949,8 @@ fi
- 
- AC_SUBST(COMP_PYTHON)
- 
-+if test $enable_docs != no; then
-+
- dnl Check for nroff
- AC_ARG_VAR(NROFF, [path to the local nroff version])
- AC_PATH_PROGS(NROFF, [gnroff nroff])
-@@ -961,6 +967,8 @@ AC_ARG_VAR(RRDDOCDIR, [[DATADIR/doc/PACKAGE-VERSION] Documentation directory])
- if test -z "$RRDDOCDIR"; then
-    RRDDOCDIR='${datadir}/doc/${PACKAGE}-${VERSION}'; fi
- 
-+fi
-+
- # systemd check
- PKG_PROG_PKG_CONFIG
- AC_ARG_WITH([systemdsystemunitdir],
--- 
-2.4.10
-
diff --git a/package/rrdtool/rrdtool.hash b/package/rrdtool/rrdtool.hash
index 97741c9..3422ad7 100644
--- a/package/rrdtool/rrdtool.hash
+++ b/package/rrdtool/rrdtool.hash
@@ -1,2 +1,2 @@
 # Locally calculated
-sha256	9832775479684b8f94767201ee0440a1cacdbbbb7dd6736eb96b9a0750644ce8	rrdtool-1.5.6.tar.gz
+sha256	cd948e89cd2d8825fab4a6fb0323f810948d934af7d92c9ee8b5e9e1350e52d7  rrdtool-1.6.0.tar.gz
diff --git a/package/rrdtool/rrdtool.mk b/package/rrdtool/rrdtool.mk
index 6d6ab0c..f3c7451 100644
--- a/package/rrdtool/rrdtool.mk
+++ b/package/rrdtool/rrdtool.mk
@@ -4,12 +4,11 @@
 #
 ################################################################################
 
-RRDTOOL_VERSION = 1.5.6
+RRDTOOL_VERSION = 1.6.0
 RRDTOOL_SITE = http://oss.oetiker.ch/rrdtool/pub
 RRDTOOL_LICENSE = GPLv2+ with FLOSS license exceptions as explained in COPYRIGHT
 RRDTOOL_LICENSE_FILES = COPYRIGHT LICENSE
 RRDTOOL_DEPENDENCIES = host-pkgconf libglib2
-# For 0001-Add-configure-option-to-disable-documentation.patch
 RRDTOOL_AUTORECONF = YES
 RRDTOOL_GETTEXTIZE = YES
 RRDTOOL_INSTALL_STAGING = YES
-- 
1.9.1

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

* [Buildroot] [PATCH 1/1] rrdtool: bump version to 1.6.0
  2016-05-09 20:10 [Buildroot] [PATCH 1/1] rrdtool: bump version to 1.6.0 Roland Franke
@ 2016-05-09 21:21 ` Thomas Petazzoni
  2016-05-10 10:33   ` Gustavo Zacarias
  2016-05-12  6:36 ` Alexander Dahl
  2016-07-18 12:12 ` Roland Franke
  2 siblings, 1 reply; 11+ messages in thread
From: Thomas Petazzoni @ 2016-05-09 21:21 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon,  9 May 2016 22:10:35 +0200, Roland Franke wrote:
> delete patch 0001-Add-configure-option-to-disable-documentation.patch
> as this is now include in the new version.
> 
> Signed-off-by: Roland Franke <fli4l@franke-prem.de>

Thanks for your patch. One question below, though.

> -# For 0001-Add-configure-option-to-disable-documentation.patch
>  RRDTOOL_AUTORECONF = YES
>  RRDTOOL_GETTEXTIZE = YES

Enabling autoreconf and gettextize was added when
0001-Add-configure-option-to-disable-documentation.patch was added by
Gustavo. So I would assume that they could now be removed.

However, it turns out that rrdtool 1.6.0 doesn't build without
autoreconf+gettextize, I'm not sure why. In any case, the comment
should be updated and not removed.

I'm Cc'ing Gustavo who originally added the patch.

Thanks,

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

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

* [Buildroot] [PATCH 1/1] rrdtool: bump version to 1.6.0
  2016-05-09 21:21 ` Thomas Petazzoni
@ 2016-05-10 10:33   ` Gustavo Zacarias
  2016-05-10 17:22     ` Roland Franke
  2016-05-11 21:11     ` Thomas Petazzoni
  0 siblings, 2 replies; 11+ messages in thread
From: Gustavo Zacarias @ 2016-05-10 10:33 UTC (permalink / raw)
  To: buildroot

On 09/05/16 18:21, Thomas Petazzoni wrote:

> Enabling autoreconf and gettextize was added when
> 0001-Add-configure-option-to-disable-documentation.patch was added by
> Gustavo. So I would assume that they could now be removed.
>
> However, it turns out that rrdtool 1.6.0 doesn't build without
> autoreconf+gettextize, I'm not sure why. In any case, the comment
> should be updated and not removed.
>
> I'm Cc'ing Gustavo who originally added the patch.
>
> Thanks,
>
> Thomas

Hi all.
What's the failure you're seeing by dropping autoreconf/gettextize?
On my end it seems to build just fine.
Regards.

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

* [Buildroot] [PATCH 1/1] rrdtool: bump version to 1.6.0
  2016-05-10 10:33   ` Gustavo Zacarias
@ 2016-05-10 17:22     ` Roland Franke
  2016-05-10 19:47       ` Peter Korsgaard
  2016-05-11 21:11     ` Thomas Petazzoni
  1 sibling, 1 reply; 11+ messages in thread
From: Roland Franke @ 2016-05-10 17:22 UTC (permalink / raw)
  To: buildroot

Hello,

On 09/05/16 18:21, Thomas Petazzoni wrote:

>> Enabling autoreconf and gettextize was added when
>> 0001-Add-configure-option-to-disable-documentation.patch was added by
>> Gustavo. So I would assume that they could now be removed.
>>
>> However, it turns out that rrdtool 1.6.0 doesn't build without
>> autoreconf+gettextize, I'm not sure why. In any case, the comment
>> should be updated and not removed.

> Hi all.
> What's the failure you're seeing by dropping autoreconf/gettextize?
> On my end it seems to build just fine.

my fault. was not testing without autoreconf+gettextize first.
Now made localy on my system and build was working fine.

Best regards,
Roland 

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

* [Buildroot] [PATCH 1/1] rrdtool: bump version to 1.6.0
  2016-05-10 17:22     ` Roland Franke
@ 2016-05-10 19:47       ` Peter Korsgaard
  0 siblings, 0 replies; 11+ messages in thread
From: Peter Korsgaard @ 2016-05-10 19:47 UTC (permalink / raw)
  To: buildroot

>>>>> "Roland" == Roland Franke <fli4l@franke-prem.de> writes:

 > Hello,
 > On 09/05/16 18:21, Thomas Petazzoni wrote:

 >>> Enabling autoreconf and gettextize was added when
 >>> 0001-Add-configure-option-to-disable-documentation.patch was added by
 >>> Gustavo. So I would assume that they could now be removed.
 >>> 
 >>> However, it turns out that rrdtool 1.6.0 doesn't build without
 >>> autoreconf+gettextize, I'm not sure why. In any case, the comment
 >>> should be updated and not removed.

 >> Hi all.
 >> What's the failure you're seeing by dropping autoreconf/gettextize?
 >> On my end it seems to build just fine.

 > my fault. was not testing without autoreconf+gettextize first.
 > Now made localy on my system and build was working fine.

Ok, great. Will you send an updated patch removing
autoreconf/gettextize?

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 1/1] rrdtool: bump version to 1.6.0
  2016-05-10 10:33   ` Gustavo Zacarias
  2016-05-10 17:22     ` Roland Franke
@ 2016-05-11 21:11     ` Thomas Petazzoni
  1 sibling, 0 replies; 11+ messages in thread
From: Thomas Petazzoni @ 2016-05-11 21:11 UTC (permalink / raw)
  To: buildroot

Hello,

On Tue, 10 May 2016 07:33:32 -0300, Gustavo Zacarias wrote:

> What's the failure you're seeing by dropping autoreconf/gettextize?
> On my end it seems to build just fine.

I get:

  CCLD     rrdcached
/home/test/outputs/rrdtool/host/opt/ext-toolchain/bin/../lib/gcc/arm-buildroot-linux-uclibcgnueabi/4.7.4/../../../../arm-buildroot-linux-uclibcgnueabi/bin/ld: rrd_tool.o: undefined reference to symbol 'libintl_gettext'
/home/test/outputs/rrdtool/host/usr/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/lib/libintl.so.8: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status

When building rrdtool 1.6.0 with autoreconf/gettextize disabled, using
the following defconfig:

BR2_arm=y
BR2_TOOLCHAIN_EXTERNAL=y
BR2_TOOLCHAIN_EXTERNAL_CUSTOM=y
BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD=y
BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/br-arm-full-2016.02-3-g762b7c9.tar.bz2"
BR2_TOOLCHAIN_EXTERNAL_GCC_4_7=y
BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_10=y
BR2_TOOLCHAIN_EXTERNAL_LOCALE=y
# BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS_DEBUG is not set
BR2_TOOLCHAIN_EXTERNAL_INET_RPC=y
BR2_TOOLCHAIN_EXTERNAL_CXX=y
BR2_INIT_NONE=y
BR2_SYSTEM_BIN_SH_NONE=y
# BR2_PACKAGE_BUSYBOX is not set
BR2_PACKAGE_RRDTOOL=y
# BR2_TARGET_ROOTFS_TAR is not set

built in the chroot that I use to run the autobuilder testing.

Re-adding autoreconf/gettextize fixes the problem.

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

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

* [Buildroot] [PATCH 1/1] rrdtool: bump version to 1.6.0
  2016-05-09 20:10 [Buildroot] [PATCH 1/1] rrdtool: bump version to 1.6.0 Roland Franke
  2016-05-09 21:21 ` Thomas Petazzoni
@ 2016-05-12  6:36 ` Alexander Dahl
  2016-07-18 12:12 ` Roland Franke
  2 siblings, 0 replies; 11+ messages in thread
From: Alexander Dahl @ 2016-05-12  6:36 UTC (permalink / raw)
  To: buildroot

Hello,

Am 2016-05-09 22:10, schrieb Roland Franke:
> delete patch 0001-Add-configure-option-to-disable-documentation.patch
> as this is now include in the new version.
> 
> Signed-off-by: Roland Franke <fli4l@franke-prem.de>

Reviewed-by: Alexander Dahl <post@lespocky.de>

I checked the removed patch has gone upstream (it has, see [1]) and
successfully built it with beaglebone_defconfig. 

If the removed autoreconf and gettextize options break the build, we can
just use the v1 of the patch, can't we?

Greets
Alex

[1] https://github.com/oetiker/rrdtool-1.x/pull/690

-- 
?With the first link, the chain is forged. The first speech censured,
the first thought forbidden, the first freedom denied, chains us all
irrevocably.? (Jean-Luc Picard, quoting Judge Aaron Satie)
*** GnuPG-FP: C28E E6B9 0263 95CF 8FAF  08FA 34AD CD00 7221 5CC6 ***

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

* [Buildroot] [PATCH 1/1] rrdtool: bump version to 1.6.0
  2016-05-09 20:10 [Buildroot] [PATCH 1/1] rrdtool: bump version to 1.6.0 Roland Franke
  2016-05-09 21:21 ` Thomas Petazzoni
  2016-05-12  6:36 ` Alexander Dahl
@ 2016-07-18 12:12 ` Roland Franke
  2016-07-18 21:07   ` Thomas Petazzoni
  2 siblings, 1 reply; 11+ messages in thread
From: Roland Franke @ 2016-07-18 12:12 UTC (permalink / raw)
  To: buildroot

As the second version of this patch with deleted function
RRDTOOL_AUTORECONF = YES
RRDTOOL_GETTEXTIZE = YES

will not work in all situations, my question is if this first version
can be used for the update of RRDTool to version 1.6.0

Best regards,
Roland

-----Urspr?ngliche Nachricht----- 
From: Roland Franke
Sent: Monday, May 9, 2016 10:10 PM
To: buildroot at buildroot.org
Cc: Roland Franke
Subject: [PATCH 1/1] rrdtool: bump version to 1.6.0

delete patch 0001-Add-configure-option-to-disable-documentation.patch
as this is now include in the new version.

Signed-off-by: Roland Franke <fli4l@franke-prem.de>
---
...configure-option-to-disable-documentation.patch | 
71 ----------------------
package/rrdtool/rrdtool.hash                       |  2 +-
package/rrdtool/rrdtool.mk                         |  3 +-
3 files changed, 2 insertions(+), 74 deletions(-)
delete mode 100644 
package/rrdtool/0001-Add-configure-option-to-disable-documentation.patch

diff --git 
a/package/rrdtool/0001-Add-configure-option-to-disable-documentation.patch 
b/package/rrdtool/0001-Add-configure-option-to-disable-documentation.patch
deleted file mode 100644
index afb6292..0000000
---  
a/package/rrdtool/0001-Add-configure-option-to-disable-documentation.patch
+++ /dev/null
@@ -1,71 +0,0 @@
-From deaef0790f3cbbce826275d3564551fc9568b628 Mon Sep 17 00:00:00 2001
-From: Gustavo Zacarias <gustavo@zacarias.com.ar>
-Date: Wed, 2 Dec 2015 14:31:52 -0300
-Subject: [PATCH] Add configure option to disable documentation
-
-Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
----
- Makefile.am  | 6 +++++-
- configure.ac | 8 ++++++++
- 2 files changed, 13 insertions(+), 1 deletion(-)
-
-diff --git a/Makefile.am b/Makefile.am
-index f45975c..1f46a9b 100644
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -5,7 +5,11 @@ RSYNC = rsync --rsh=ssh
-
- # build the following subdirectories
-
--SUBDIRS = po src doc bindings tests
-+SUBDIRS = po src bindings tests
-+
-+if BUILD_DOCS
-+SUBDIRS += doc
-+endif
-
- if BUILD_EXAMPLES
- SUBDIRS += examples
-diff --git a/configure.ac b/configure.ac
-index dc70e7d..7460c67 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -100,6 +100,9 @@ AC_ARG_VAR(RRDGRAPH_YLEGEND_ANGLE,
- AC_DEFINE_UNQUOTED(RRDGRAPH_YLEGEND_ANGLE,${RRDGRAPH_YLEGEND_ANGLE:-90.0},
-  [Vertical label angle: -90.0 (default) or 90.0])
-
-+AC_ARG_ENABLE(docs,AS_HELP_STRING([--disable-docs],[disable building 
documentation]),
-+[],[enable_docs=yes])
-+
- AC_ARG_ENABLE(examples,AS_HELP_STRING([--disable-examples],[disable 
building of examples]),
- [],[enable_examples=yes])
-
-@@ -115,6 +118,7 @@ 
AC_ARG_ENABLE(rrd_graph,AS_HELP_STRING([--disable-rrd_graph],[disable all 
rrd_gr
- AC_ARG_ENABLE(rrd_restore,AS_HELP_STRING([--disable-rrd_restore],[disable 
rrd_restore XML import functions]),
- [],[enable_rrd_restore=yes])
-
-+AM_CONDITIONAL(BUILD_DOCS,[test $enable_docs != no])
- AM_CONDITIONAL(BUILD_EXAMPLES,[test $enable_examples != no])
- AM_CONDITIONAL(BUILD_RRDCGI,[test $enable_rrdcgi != no])
- AM_CONDITIONAL(BUILD_RRDCACHED,[test $enable_rrdcached != no])
-@@ -945,6 +949,8 @@ fi
-
- AC_SUBST(COMP_PYTHON)
-
-+if test $enable_docs != no; then
-+
- dnl Check for nroff
- AC_ARG_VAR(NROFF, [path to the local nroff version])
- AC_PATH_PROGS(NROFF, [gnroff nroff])
-@@ -961,6 +967,8 @@ AC_ARG_VAR(RRDDOCDIR, [[DATADIR/doc/PACKAGE-VERSION] 
Documentation directory])
- if test -z "$RRDDOCDIR"; then
-    RRDDOCDIR='${datadir}/doc/${PACKAGE}-${VERSION}'; fi
-
-+fi
-+
- # systemd check
- PKG_PROG_PKG_CONFIG
- AC_ARG_WITH([systemdsystemunitdir],
--- 
-2.4.10
-
diff --git a/package/rrdtool/rrdtool.hash b/package/rrdtool/rrdtool.hash
index 97741c9..3422ad7 100644
--- a/package/rrdtool/rrdtool.hash
+++ b/package/rrdtool/rrdtool.hash
@@ -1,2 +1,2 @@
# Locally calculated
-sha256 9832775479684b8f94767201ee0440a1cacdbbbb7dd6736eb96b9a0750644ce8 
rrdtool-1.5.6.tar.gz
+sha256 cd948e89cd2d8825fab4a6fb0323f810948d934af7d92c9ee8b5e9e1350e52d7 
rrdtool-1.6.0.tar.gz
diff --git a/package/rrdtool/rrdtool.mk b/package/rrdtool/rrdtool.mk
index 6d6ab0c..f3c7451 100644
--- a/package/rrdtool/rrdtool.mk
+++ b/package/rrdtool/rrdtool.mk
@@ -4,12 +4,11 @@
#
################################################################################

-RRDTOOL_VERSION = 1.5.6
+RRDTOOL_VERSION = 1.6.0
RRDTOOL_SITE = http://oss.oetiker.ch/rrdtool/pub
RRDTOOL_LICENSE = GPLv2+ with FLOSS license exceptions as explained in 
COPYRIGHT
RRDTOOL_LICENSE_FILES = COPYRIGHT LICENSE
RRDTOOL_DEPENDENCIES = host-pkgconf libglib2
-# For 0001-Add-configure-option-to-disable-documentation.patch
RRDTOOL_AUTORECONF = YES
RRDTOOL_GETTEXTIZE = YES
RRDTOOL_INSTALL_STAGING = YES
-- 
1.9.1 

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

* [Buildroot] [PATCH 1/1] rrdtool: bump version to 1.6.0
  2016-07-18 12:12 ` Roland Franke
@ 2016-07-18 21:07   ` Thomas Petazzoni
  2016-07-19  8:06     ` Roland Franke
  0 siblings, 1 reply; 11+ messages in thread
From: Thomas Petazzoni @ 2016-07-18 21:07 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon, 18 Jul 2016 14:12:22 +0200, Roland Franke wrote:
> As the second version of this patch with deleted function
> RRDTOOL_AUTORECONF = YES
> RRDTOOL_GETTEXTIZE = YES
> 
> will not work in all situations, my question is if this first version
> can be used for the update of RRDTool to version 1.6.0
> 
> Best regards,
> Roland

I've applied your patch, after doing some fixes:

    [Thomas:
     - add dependency on gettext when needed
     - add comment about why autoreconf/gettextize are kept
     - cleanup commit log.]

Thanks!

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

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

* [Buildroot] [PATCH 1/1] rrdtool: bump version to 1.6.0
  2016-07-18 21:07   ` Thomas Petazzoni
@ 2016-07-19  8:06     ` Roland Franke
  2016-07-19  8:34       ` Thomas Petazzoni
  0 siblings, 1 reply; 11+ messages in thread
From: Roland Franke @ 2016-07-19  8:06 UTC (permalink / raw)
  To: buildroot

Hello,

> On Mon, 18 Jul 2016 14:12:22 +0200, Roland Franke wrote:
>> As the second version of this patch with deleted function
>> RRDTOOL_AUTORECONF = YES
>> RRDTOOL_GETTEXTIZE = YES
>> 
>> will not work in all situations, my question is if this first version
>> can be used for the update of RRDTool to version 1.6.0

> I've applied your patch, after doing some fixes:

>     [Thomas:
>      - add dependency on gettext when needed
>      - add comment about why autoreconf/gettextize are kept
>      - cleanup commit log.]

As i have made an mistake by me local, my checkout is complete
down and i will not be able to come back to an point for bring 
up an clean patch in the system (Sorry).
So anyone feel free to do that instead of me.

Best regards,
Roland 

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

* [Buildroot] [PATCH 1/1] rrdtool: bump version to 1.6.0
  2016-07-19  8:06     ` Roland Franke
@ 2016-07-19  8:34       ` Thomas Petazzoni
  0 siblings, 0 replies; 11+ messages in thread
From: Thomas Petazzoni @ 2016-07-19  8:34 UTC (permalink / raw)
  To: buildroot

Hello,

On Tue, 19 Jul 2016 10:06:06 +0200, Roland Franke wrote:

> As i have made an mistake by me local, my checkout is complete
> down and i will not be able to come back to an point for bring 
> up an clean patch in the system (Sorry).
> So anyone feel free to do that instead of me.

I already cleaned up your patch, and applied it, see:

	https://git.buildroot.org/buildroot/commit/?id=856c407976d5095c13b243b9ab2be6a4dcf8deb5

Thanks,

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

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

end of thread, other threads:[~2016-07-19  8:34 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-09 20:10 [Buildroot] [PATCH 1/1] rrdtool: bump version to 1.6.0 Roland Franke
2016-05-09 21:21 ` Thomas Petazzoni
2016-05-10 10:33   ` Gustavo Zacarias
2016-05-10 17:22     ` Roland Franke
2016-05-10 19:47       ` Peter Korsgaard
2016-05-11 21:11     ` Thomas Petazzoni
2016-05-12  6:36 ` Alexander Dahl
2016-07-18 12:12 ` Roland Franke
2016-07-18 21:07   ` Thomas Petazzoni
2016-07-19  8:06     ` Roland Franke
2016-07-19  8:34       ` Thomas Petazzoni

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.