Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] libglib2: bump version to 2.53.3
@ 2017-06-21 20:30 Adam Duskett
  2017-06-21 20:30 ` [Buildroot] [PATCH] strace: bump version to 4.17 Adam Duskett
                   ` (6 more replies)
  0 siblings, 7 replies; 10+ messages in thread
From: Adam Duskett @ 2017-06-21 20:30 UTC (permalink / raw)
  To: buildroot

Patches were updated to work with new version, and now pass check-package.
0003-gio-2.0.pc-include-libmount-in-Libs.private.patch was added to upstream.

Signed-off-by: Adam Duskett <aduskett@codeblue.com>
---
 .../0001-fix-compile-time-atomic-detection.patch   | 12 +++--
 package/libglib2/0002-disable-tests.patch          | 57 ++++++++++++++--------
 ...o-2.0.pc-include-libmount-in-Libs.private.patch | 32 ------------
 package/libglib2/libglib2.hash                     |  4 +-
 package/libglib2/libglib2.mk                       |  2 +-
 5 files changed, 48 insertions(+), 59 deletions(-)
 delete mode 100644 package/libglib2/0003-gio-2.0.pc-include-libmount-in-Libs.private.patch

diff --git a/package/libglib2/0001-fix-compile-time-atomic-detection.patch b/package/libglib2/0001-fix-compile-time-atomic-detection.patch
index f6d0c5d..ca55e3c 100644
--- a/package/libglib2/0001-fix-compile-time-atomic-detection.patch
+++ b/package/libglib2/0001-fix-compile-time-atomic-detection.patch
@@ -1,4 +1,7 @@
-[PATCH] Fix compilation issues on architectures with limited atomic support
+From 8d10c1c4ae9f20d4f03cbcdca6a23c5905f3df5a Mon Sep 17 00:00:00 2001
+From: Adam Duskett <aduskett@codeblue.com>
+Date: Wed, 21 Jun 2017 15:31:50 -0400
+Subject: [PATCH] Fix compilation issues on architectures with limited atomic support
 
 Improved compile-time detection of atomic support in the compiler.
 
@@ -6,15 +9,16 @@ Upstream-Status: submitted
 See : https://bugzilla.gnome.org/show_bug.cgi?id=752731
 
 Signed-off-by: Brendan Heading <brendanheading@gmail.com>
+Signed-off-by: Adam Duskett <aduskett@codeblue.com>
 ---
  glib/gthread-posix.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/glib/gthread-posix.c b/glib/gthread-posix.c
-index ae5d805..8db8557 100644
+index aa0e36e..b33e466 100644
 --- a/glib/gthread-posix.c
 +++ b/glib/gthread-posix.c
-@@ -67,7 +67,7 @@
+@@ -65,7 +65,7 @@
  #endif
  
  /* clang defines __ATOMIC_SEQ_CST but doesn't support the GCC extension */
@@ -24,5 +28,5 @@ index ae5d805..8db8557 100644
  #endif
  
 -- 
-2.4.3
+2.9.4
 
diff --git a/package/libglib2/0002-disable-tests.patch b/package/libglib2/0002-disable-tests.patch
index 1b0c535..f7b826c 100644
--- a/package/libglib2/0002-disable-tests.patch
+++ b/package/libglib2/0002-disable-tests.patch
@@ -1,12 +1,37 @@
+From 1afcc0c993b6b08cfccf0fb3cc7f0afe64e32cb5 Mon Sep 17 00:00:00 2001
+From: Adam Duskett <aduskett@codeblue.com>
+Date: Wed, 21 Jun 2017 15:33:59 -0400
+Subject: [PATCH] disable tests
+
 Disable tests, some of them need python and sometimes host-python
 gets mixed with distro python leading to build failures.
 
 Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
+Signed-off-by: Adam Duskett <aduskett@codeblue.com>
+---
+ Makefile.am      | 2 +-
+ gio/Makefile.am  | 2 +-
+ glib/Makefile.am | 4 ++--
+ 3 files changed, 4 insertions(+), 4 deletions(-)
 
-diff -Nura glib-2.46.1.orig/gio/Makefile.am glib-2.46.1/gio/Makefile.am
---- glib-2.46.1.orig/gio/Makefile.am	2015-10-20 16:59:03.042212468 -0300
-+++ glib-2.46.1/gio/Makefile.am	2015-10-20 17:32:26.763146133 -0300
-@@ -233,7 +233,7 @@
+diff --git a/Makefile.am b/Makefile.am
+index 008ad58..007332d 100644
+--- a/Makefile.am
++++ b/Makefile.am
+@@ -6,7 +6,7 @@ include $(top_srcdir)/glib.mk
+ 
+ ACLOCAL_AMFLAGS = -I m4macros ${ACLOCAL_FLAGS}
+ 
+-SUBDIRS = . m4macros glib gmodule gthread gobject gio po docs tests
++SUBDIRS = . m4macros glib gmodule gthread gobject gio po docs
+ DIST_SUBDIRS = $(SUBDIRS) build win32
+ 
+ bin_SCRIPTS = glib-gettextize
+diff --git a/gio/Makefile.am b/gio/Makefile.am
+index f07c94a..e0d0db9 100644
+--- a/gio/Makefile.am
++++ b/gio/Makefile.am
+@@ -244,7 +244,7 @@ platform_libadd += win32/libgiowin32.la
  platform_deps += win32/libgiowin32.la
  endif
  
@@ -15,10 +40,11 @@ diff -Nura glib-2.46.1.orig/gio/Makefile.am glib-2.46.1/gio/Makefile.am
  
  if HAVE_FAM
  SUBDIRS += fam
-diff -Nura glib-2.46.1.orig/glib/Makefile.am glib-2.46.1/glib/Makefile.am
---- glib-2.46.1.orig/glib/Makefile.am	2015-10-20 16:59:03.066213318 -0300
-+++ glib-2.46.1/glib/Makefile.am	2015-10-20 17:33:23.537155988 -0300
-@@ -33,8 +33,8 @@
+diff --git a/glib/Makefile.am b/glib/Makefile.am
+index d755853..61166e5 100644
+--- a/glib/Makefile.am
++++ b/glib/Makefile.am
+@@ -33,8 +33,8 @@ else
  MAYBE_PCRE = pcre 
  endif
  
@@ -29,15 +55,6 @@ diff -Nura glib-2.46.1.orig/glib/Makefile.am glib-2.46.1/glib/Makefile.am
  
  AM_CPPFLAGS = 				\
  	$(glib_INCLUDES) 		\
-diff -Nura glib-2.46.1.orig/Makefile.am glib-2.46.1/Makefile.am
---- glib-2.46.1.orig/Makefile.am	2015-10-20 16:59:03.003211087 -0300
-+++ glib-2.46.1/Makefile.am	2015-10-20 17:32:20.923939420 -0300
-@@ -6,7 +6,7 @@
- 
- ACLOCAL_AMFLAGS = -I m4macros ${ACLOCAL_FLAGS}
- 
--SUBDIRS = . m4macros glib gmodule gthread gobject gio po docs tests
-+SUBDIRS = . m4macros glib gmodule gthread gobject gio po docs
- DIST_SUBDIRS = $(SUBDIRS) build
- 
- bin_SCRIPTS = glib-gettextize
+-- 
+2.9.4
+
diff --git a/package/libglib2/0003-gio-2.0.pc-include-libmount-in-Libs.private.patch b/package/libglib2/0003-gio-2.0.pc-include-libmount-in-Libs.private.patch
deleted file mode 100644
index 364e179..0000000
--- a/package/libglib2/0003-gio-2.0.pc-include-libmount-in-Libs.private.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From ee32416dec8462ee27c3c254100cf980b0889ce0 Mon Sep 17 00:00:00 2001
-From: Rahul Bedarkar <rahul.bedarkar@imgtec.com>
-Date: Tue, 18 Oct 2016 23:04:50 +0530
-Subject: [PATCH] gio-2.0.pc: include libmount in Libs.private
-
-This helps with static linking. When application statically links with
-libgio, it needs to link against libmount explicitly. When it is
-mentioned in Libs.private, build system can figure out with which extra
-libs to link against with help of pkg-config.
-
-This build failure is detected by Buildroot autobuilder:
-http://autobuild.buildroot.net/results/fdf/fdf26abbed0014606a7788ce5d60828a0e871186
-
-Signed-off-by: Rahul Bedarkar <rahul.bedarkar@imgtec.com>
----
- gio-2.0.pc.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/gio-2.0.pc.in b/gio-2.0.pc.in
-index 899af0c..7574eb7 100644
---- a/gio-2.0.pc.in
-+++ b/gio-2.0.pc.in
-@@ -14,5 +14,5 @@ Version: @VERSION@
- Requires: glib-2.0 gobject-2.0
- Requires.private: gmodule-no-export-2.0
- Libs: -L${libdir} -lgio-2.0
--Libs.private: @ZLIB_LIBS@ @NETWORK_LIBS@ @SELINUX_LIBS@ @COCOA_LIBS@ @CARBON_LIBS@
-+Libs.private: @ZLIB_LIBS@ @NETWORK_LIBS@ @SELINUX_LIBS@ @COCOA_LIBS@ @CARBON_LIBS@ @LIBMOUNT_LIBS@
- Cflags:
--- 
-2.6.2
-
diff --git a/package/libglib2/libglib2.hash b/package/libglib2/libglib2.hash
index b31c212..1230139 100644
--- a/package/libglib2/libglib2.hash
+++ b/package/libglib2/libglib2.hash
@@ -1,2 +1,2 @@
-# https://download.gnome.org/sources/glib/2.50/glib-2.50.3.sha256sum
-sha256  82ee94bf4c01459b6b00cb9db0545c2237921e3060c0b74cff13fbc020cfd999  glib-2.50.3.tar.xz
+# https://download.gnome.org/sources/glib/2.53/glib-2.53.3.sha256sum
+sha256  ad727874057d369bf5f77f3ed32e2c50488672c99e62ee701a7f0ffdc47381a1  glib-2.53.3.tar.xz
diff --git a/package/libglib2/libglib2.mk b/package/libglib2/libglib2.mk
index 47d9f63..71ae8c8 100644
--- a/package/libglib2/libglib2.mk
+++ b/package/libglib2/libglib2.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBGLIB2_VERSION_MAJOR = 2.50
+LIBGLIB2_VERSION_MAJOR = 2.53
 LIBGLIB2_VERSION = $(LIBGLIB2_VERSION_MAJOR).3
 LIBGLIB2_SOURCE = glib-$(LIBGLIB2_VERSION).tar.xz
 LIBGLIB2_SITE = http://ftp.gnome.org/pub/gnome/sources/glib/$(LIBGLIB2_VERSION_MAJOR)
-- 
2.9.4

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

* [Buildroot] [PATCH] strace: bump version to 4.17
  2017-06-21 20:30 [Buildroot] [PATCH] libglib2: bump version to 2.53.3 Adam Duskett
@ 2017-06-21 20:30 ` Adam Duskett
  2017-06-21 20:30 ` [Buildroot] [PATCH] sqlite: bump to version 3190300 Adam Duskett
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Adam Duskett @ 2017-06-21 20:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Adam Duskett <aduskett@codeblue.com>
---
 package/strace/strace.hash | 6 +++---
 package/strace/strace.mk   | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/strace/strace.hash b/package/strace/strace.hash
index a0d4d2b..fbd9320 100644
--- a/package/strace/strace.hash
+++ b/package/strace/strace.hash
@@ -1,3 +1,3 @@
-# From https://sourceforge.net/projects/strace/files/strace/4.16/
-md5	2873366cac98770efcbed6e748d5ef23	strace-4.16.tar.xz
-sha1	b780a8cd2e60ea836cfd3468e0f81623a346d180	strace-4.16.tar.xz
+# From https://sourceforge.net/projects/strace/files/strace/4.17/
+md5	8d7eb10eba68bad83a269197e634b626	strace-4.17.tar.xz
+sha1	a60558a10757e41a39ee9e357d1d03d91d5d94d8	strace-4.17.tar.xz
diff --git a/package/strace/strace.mk b/package/strace/strace.mk
index 008dc9f..119c9f5 100644
--- a/package/strace/strace.mk
+++ b/package/strace/strace.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-STRACE_VERSION = 4.16
+STRACE_VERSION = 4.17
 STRACE_SOURCE = strace-$(STRACE_VERSION).tar.xz
 STRACE_SITE = http://downloads.sourceforge.net/project/strace/strace/$(STRACE_VERSION)
 STRACE_LICENSE = BSD-3-Clause
-- 
2.9.4

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

* [Buildroot] [PATCH] sqlite: bump to version 3190300
  2017-06-21 20:30 [Buildroot] [PATCH] libglib2: bump version to 2.53.3 Adam Duskett
  2017-06-21 20:30 ` [Buildroot] [PATCH] strace: bump version to 4.17 Adam Duskett
@ 2017-06-21 20:30 ` Adam Duskett
  2017-06-21 20:30 ` [Buildroot] [PATCH] libcurl: bump version to 7.54.1 Adam Duskett
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Adam Duskett @ 2017-06-21 20:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Adam Duskett <aduskett@codeblue.com>
---
 package/sqlite/sqlite.hash | 4 ++--
 package/sqlite/sqlite.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/sqlite/sqlite.hash b/package/sqlite/sqlite.hash
index 093ec6d..d04abf3 100644
--- a/package/sqlite/sqlite.hash
+++ b/package/sqlite/sqlite.hash
@@ -1,4 +1,4 @@
 # From http://www.sqlite.org/download.html
-sha1 597735a7039ebb105ea36366783ff0a3177f9131  sqlite-autoconf-3190200.tar.gz
+sha1 58f2cabffb3ff4761a3ac7f834d9db7b46307c1f  sqlite-autoconf-3190300.tar.gz
 # Calculated based on the hash above
-sha256 ca5361fb01cc3ad63d6fd4eb2cb0b6398e629595896d3558f7e121d37dac2ffc  sqlite-autoconf-3190200.tar.gz
+sha256 06129c03dced9f87733a8cba408871bd60673b8f93b920ba8d815efab0a06301  sqlite-autoconf-3190300.tar.gz
diff --git a/package/sqlite/sqlite.mk b/package/sqlite/sqlite.mk
index 17b4d2d..7b9c897 100644
--- a/package/sqlite/sqlite.mk
+++ b/package/sqlite/sqlite.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-SQLITE_VERSION = 3190200
+SQLITE_VERSION = 3190300
 SQLITE_SOURCE = sqlite-autoconf-$(SQLITE_VERSION).tar.gz
 SQLITE_SITE = http://www.sqlite.org/2017
 SQLITE_LICENSE = Public domain
-- 
2.9.4

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

* [Buildroot] [PATCH] libcurl: bump version to 7.54.1
  2017-06-21 20:30 [Buildroot] [PATCH] libglib2: bump version to 2.53.3 Adam Duskett
  2017-06-21 20:30 ` [Buildroot] [PATCH] strace: bump version to 4.17 Adam Duskett
  2017-06-21 20:30 ` [Buildroot] [PATCH] sqlite: bump to version 3190300 Adam Duskett
@ 2017-06-21 20:30 ` Adam Duskett
  2017-06-22  9:27   ` Peter Korsgaard
  2017-06-21 20:30 ` [Buildroot] [PATCH] mmc-utils: bump version to 37c86e60c0442fef570b75cd81aeb1db4d0cbafd Adam Duskett
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 10+ messages in thread
From: Adam Duskett @ 2017-06-21 20:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Adam Duskett <aduskett@codeblue.com>
---
 package/libcurl/libcurl.hash | 2 +-
 package/libcurl/libcurl.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/libcurl/libcurl.hash b/package/libcurl/libcurl.hash
index f8885e0..1b8d80f 100644
--- a/package/libcurl/libcurl.hash
+++ b/package/libcurl/libcurl.hash
@@ -1,2 +1,2 @@
 # Locally calculated after checking pgp signature
-sha256 f50ebaf43c507fa7cc32be4b8108fa8bbd0f5022e90794388f3c7694a302ff06  curl-7.54.0.tar.bz2
+sha256 fdfc4df2d001ee0c44ec071186e770046249263c491fcae48df0e1a3ca8f25a0  curl-7.54.1.tar.bz2
diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk
index 6f4803e..45bd080 100644
--- a/package/libcurl/libcurl.mk
+++ b/package/libcurl/libcurl.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBCURL_VERSION = 7.54.0
+LIBCURL_VERSION = 7.54.1
 LIBCURL_SOURCE = curl-$(LIBCURL_VERSION).tar.bz2
 LIBCURL_SITE = https://curl.haxx.se/download
 LIBCURL_DEPENDENCIES = host-pkgconf \
-- 
2.9.4

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

* [Buildroot] [PATCH] mmc-utils: bump version to 37c86e60c0442fef570b75cd81aeb1db4d0cbafd
  2017-06-21 20:30 [Buildroot] [PATCH] libglib2: bump version to 2.53.3 Adam Duskett
                   ` (2 preceding siblings ...)
  2017-06-21 20:30 ` [Buildroot] [PATCH] libcurl: bump version to 7.54.1 Adam Duskett
@ 2017-06-21 20:30 ` Adam Duskett
  2017-06-21 20:30 ` [Buildroot] [PATCH] syslog-ng: bump to version 3.10.1 Adam Duskett
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Adam Duskett @ 2017-06-21 20:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Adam Duskett <aduskett@codeblue.com>
---
 package/mmc-utils/mmc-utils.hash | 2 +-
 package/mmc-utils/mmc-utils.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/mmc-utils/mmc-utils.hash b/package/mmc-utils/mmc-utils.hash
index a429079..35cd580 100644
--- a/package/mmc-utils/mmc-utils.hash
+++ b/package/mmc-utils/mmc-utils.hash
@@ -1,2 +1,2 @@
 # Locally computed
-sha256 4e5018e70f134b8c7ed05c84fca4b29fdce2ef2ca5abc0b9765939e6d8c3d912  mmc-utils-2cb6695e8dec00d887bdd5309d1b57d836fcd214.tar.gz
+sha256 92ba148648688fca6e0e0e30248ebc6b432bea55584760f20a013583f20a109d  mmc-utils-37c86e60c0442fef570b75cd81aeb1db4d0cbafd.tar.gz
diff --git a/package/mmc-utils/mmc-utils.mk b/package/mmc-utils/mmc-utils.mk
index 5eb9a9a..0b9a6d1 100644
--- a/package/mmc-utils/mmc-utils.mk
+++ b/package/mmc-utils/mmc-utils.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-MMC_UTILS_VERSION = 2cb6695e8dec00d887bdd5309d1b57d836fcd214
+MMC_UTILS_VERSION = 37c86e60c0442fef570b75cd81aeb1db4d0cbafd
 MMC_UTILS_SITE = git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc-utils.git
 MMC_UTILS_LICENSE = GPL-2.0
 
-- 
2.9.4

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

* [Buildroot] [PATCH] syslog-ng: bump to version 3.10.1
  2017-06-21 20:30 [Buildroot] [PATCH] libglib2: bump version to 2.53.3 Adam Duskett
                   ` (3 preceding siblings ...)
  2017-06-21 20:30 ` [Buildroot] [PATCH] mmc-utils: bump version to 37c86e60c0442fef570b75cd81aeb1db4d0cbafd Adam Duskett
@ 2017-06-21 20:30 ` Adam Duskett
  2017-06-22  8:04   ` Chris Packham
  2017-06-21 20:30 ` [Buildroot] [PATCH] jansson: bump to version 2.10 Adam Duskett
  2017-06-21 20:30 ` [Buildroot] [PATCH] apr: bump version to 1.6.2 Adam Duskett
  6 siblings, 1 reply; 10+ messages in thread
From: Adam Duskett @ 2017-06-21 20:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Adam Duskett <aduskett@codeblue.com>
---
 package/syslog-ng/syslog-ng.hash | 2 +-
 package/syslog-ng/syslog-ng.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/syslog-ng/syslog-ng.hash b/package/syslog-ng/syslog-ng.hash
index ba066d1..d9c51e9 100644
--- a/package/syslog-ng/syslog-ng.hash
+++ b/package/syslog-ng/syslog-ng.hash
@@ -1,2 +1,2 @@
 # Locally computed
-sha256 5678856a550ae790618fabde9d1447f932ce7a9080d55dca8fc5df1202c70a17  syslog-ng-3.9.1.tar.gz
+sha256 a905fe7bad09dcf40bf03650ef1c287b511bf262d004464b8993a28ce58c9136  syslog-ng-3.10.1.tar.gz
diff --git a/package/syslog-ng/syslog-ng.mk b/package/syslog-ng/syslog-ng.mk
index 980c783..bc49fad 100644
--- a/package/syslog-ng/syslog-ng.mk
+++ b/package/syslog-ng/syslog-ng.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-SYSLOG_NG_VERSION = 3.9.1
+SYSLOG_NG_VERSION = 3.10.1
 SYSLOG_NG_SITE = https://github.com/balabit/syslog-ng/releases/download/syslog-ng-$(SYSLOG_NG_VERSION)
 SYSLOG_NG_LICENSE = LGPL-2.1+ (syslog-ng core), GPL-2.0+ (modules)
 SYSLOG_NG_LICENSE_FILES = COPYING
-- 
2.9.4

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

* [Buildroot] [PATCH] jansson: bump to version 2.10
  2017-06-21 20:30 [Buildroot] [PATCH] libglib2: bump version to 2.53.3 Adam Duskett
                   ` (4 preceding siblings ...)
  2017-06-21 20:30 ` [Buildroot] [PATCH] syslog-ng: bump to version 3.10.1 Adam Duskett
@ 2017-06-21 20:30 ` Adam Duskett
  2017-06-21 20:30 ` [Buildroot] [PATCH] apr: bump version to 1.6.2 Adam Duskett
  6 siblings, 0 replies; 10+ messages in thread
From: Adam Duskett @ 2017-06-21 20:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Adam Duskett <aduskett@codeblue.com>
---
 package/jansson/jansson.hash | 2 +-
 package/jansson/jansson.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/jansson/jansson.hash b/package/jansson/jansson.hash
index adb345d..7a04586 100644
--- a/package/jansson/jansson.hash
+++ b/package/jansson/jansson.hash
@@ -1,2 +1,2 @@
 # Locally calculated after checking pgp signature
-sha256	0ad0d074ca049a36637e7abef755d40849ad73e926b93914ce294927b97bd2a5	jansson-2.9.tar.gz
+sha256	78215ad1e277b42681404c1d66870097a50eb084be9d771b1d15576575cf6447	jansson-2.10.tar.gz
diff --git a/package/jansson/jansson.mk b/package/jansson/jansson.mk
index 5e13118..9771434 100644
--- a/package/jansson/jansson.mk
+++ b/package/jansson/jansson.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-JANSSON_VERSION = 2.9
+JANSSON_VERSION = 2.10
 JANSSON_SITE = http://www.digip.org/jansson/releases
 JANSSON_LICENSE = MIT
 JANSSON_LICENSE_FILES = LICENSE
-- 
2.9.4

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

* [Buildroot] [PATCH] apr: bump version to 1.6.2
  2017-06-21 20:30 [Buildroot] [PATCH] libglib2: bump version to 2.53.3 Adam Duskett
                   ` (5 preceding siblings ...)
  2017-06-21 20:30 ` [Buildroot] [PATCH] jansson: bump to version 2.10 Adam Duskett
@ 2017-06-21 20:30 ` Adam Duskett
  6 siblings, 0 replies; 10+ messages in thread
From: Adam Duskett @ 2017-06-21 20:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Adam Duskett <aduskett@codeblue.com>
---
 package/apr/apr.hash | 4 ++--
 package/apr/apr.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/apr/apr.hash b/package/apr/apr.hash
index 917ce56..7a5969e 100644
--- a/package/apr/apr.hash
+++ b/package/apr/apr.hash
@@ -1,2 +1,2 @@
-# From http://archive.apache.org/dist/apr/apr-1.5.2.tar.bz2.sha1
-sha1 6d757fcf7c687fc300c1066076f2e8380ff8cbc0  apr-1.5.2.tar.bz2
+# From http://archive.apache.org/dist/apr/apr-1.6.2.tar.bz2.sha1
+sha1 01b0d4faa0194825e8e525b9ac7ccfb832471d50  apr-1.6.2.tar.bz2
diff --git a/package/apr/apr.mk b/package/apr/apr.mk
index 4a97f7e..ffb3099 100644
--- a/package/apr/apr.mk
+++ b/package/apr/apr.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-APR_VERSION = 1.5.2
+APR_VERSION = 1.6.2
 APR_SOURCE = apr-$(APR_VERSION).tar.bz2
 APR_SITE = http://archive.apache.org/dist/apr
 APR_LICENSE = Apache-2.0
-- 
2.9.4

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

* [Buildroot] [PATCH] syslog-ng: bump to version 3.10.1
  2017-06-21 20:30 ` [Buildroot] [PATCH] syslog-ng: bump to version 3.10.1 Adam Duskett
@ 2017-06-22  8:04   ` Chris Packham
  0 siblings, 0 replies; 10+ messages in thread
From: Chris Packham @ 2017-06-22  8:04 UTC (permalink / raw)
  To: buildroot

On Thu, Jun 22, 2017 at 8:30 AM, Adam Duskett <aduskett@gmail.com> wrote:
> Signed-off-by: Adam Duskett <aduskett@codeblue.com>
> ---
>  package/syslog-ng/syslog-ng.hash | 2 +-
>  package/syslog-ng/syslog-ng.mk   | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Looks good thanks.

Acked-by: Chris Packham <judge.packham@gmail.com>

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

* [Buildroot] [PATCH] libcurl: bump version to 7.54.1
  2017-06-21 20:30 ` [Buildroot] [PATCH] libcurl: bump version to 7.54.1 Adam Duskett
@ 2017-06-22  9:27   ` Peter Korsgaard
  0 siblings, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2017-06-22  9:27 UTC (permalink / raw)
  To: buildroot

>>>>> "Adam" == Adam Duskett <aduskett@gmail.com> writes:

 > Signed-off-by: Adam Duskett <aduskett@codeblue.com>

It would have been good to have a more detailed commit
message. E.G. this fixes a security issue:

https://curl.haxx.se/docs/adv_20170614.html

But as this issue only applies to Windows builds it doesn't need to be
backported to 2017.02.x / 2017.05.x.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2017-06-22  9:27 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-21 20:30 [Buildroot] [PATCH] libglib2: bump version to 2.53.3 Adam Duskett
2017-06-21 20:30 ` [Buildroot] [PATCH] strace: bump version to 4.17 Adam Duskett
2017-06-21 20:30 ` [Buildroot] [PATCH] sqlite: bump to version 3190300 Adam Duskett
2017-06-21 20:30 ` [Buildroot] [PATCH] libcurl: bump version to 7.54.1 Adam Duskett
2017-06-22  9:27   ` Peter Korsgaard
2017-06-21 20:30 ` [Buildroot] [PATCH] mmc-utils: bump version to 37c86e60c0442fef570b75cd81aeb1db4d0cbafd Adam Duskett
2017-06-21 20:30 ` [Buildroot] [PATCH] syslog-ng: bump to version 3.10.1 Adam Duskett
2017-06-22  8:04   ` Chris Packham
2017-06-21 20:30 ` [Buildroot] [PATCH] jansson: bump to version 2.10 Adam Duskett
2017-06-21 20:30 ` [Buildroot] [PATCH] apr: bump version to 1.6.2 Adam Duskett

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox