* [Buildroot] [PATCH 06/10] postgresql: bump to version 9.4.4
@ 2015-06-18 16:46 Vicente Olivert Riera
2015-06-18 16:46 ` [Buildroot] [PATCH 07/10] tor: bump to version 0.2.6.9 Vicente Olivert Riera
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Vicente Olivert Riera @ 2015-06-18 16:46 UTC (permalink / raw)
To: buildroot
- Bump to version 9.4.4
- Update hash file
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
package/postgresql/postgresql.hash | 4 ++--
package/postgresql/postgresql.mk | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/postgresql/postgresql.hash b/package/postgresql/postgresql.hash
index d0d40a1..5f415af 100644
--- a/package/postgresql/postgresql.hash
+++ b/package/postgresql/postgresql.hash
@@ -1,2 +1,2 @@
-# From https://ftp.postgresql.org/pub/source/v9.4.3/postgresql-9.4.3.tar.bz2.sha256
-sha256 734acfd2ac352dd0cd353d226f3199c2e1a2730200998aea5b38cf685136d755 postgresql-9.4.3.tar.bz2
+# From https://ftp.postgresql.org/pub/source/v9.4.4/postgresql-9.4.4.tar.bz2.sha256
+sha256 538ed99688d6fdbec6fd166d1779cf4588bf2f16c52304e5ef29f904c43b0013 postgresql-9.4.4.tar.bz2
diff --git a/package/postgresql/postgresql.mk b/package/postgresql/postgresql.mk
index c4fa36c..382f320 100644
--- a/package/postgresql/postgresql.mk
+++ b/package/postgresql/postgresql.mk
@@ -4,7 +4,7 @@
#
################################################################################
-POSTGRESQL_VERSION = 9.4.3
+POSTGRESQL_VERSION = 9.4.4
POSTGRESQL_SOURCE = postgresql-$(POSTGRESQL_VERSION).tar.bz2
POSTGRESQL_SITE = http://ftp.postgresql.org/pub/source/v$(POSTGRESQL_VERSION)
POSTGRESQL_LICENSE = PostgreSQL
--
2.3.6
^ permalink raw reply related [flat|nested] 10+ messages in thread* [Buildroot] [PATCH 07/10] tor: bump to version 0.2.6.9 2015-06-18 16:46 [Buildroot] [PATCH 06/10] postgresql: bump to version 9.4.4 Vicente Olivert Riera @ 2015-06-18 16:46 ` Vicente Olivert Riera 2015-06-21 4:41 ` Thomas Petazzoni 2015-06-18 16:46 ` [Buildroot] [PATCH 08/10] wayland: bump to version 1.8.1 Vicente Olivert Riera ` (3 subsequent siblings) 4 siblings, 1 reply; 10+ messages in thread From: Vicente Olivert Riera @ 2015-06-18 16:46 UTC (permalink / raw) To: buildroot - Bump to version 0.2.6.9 - Update hash file - Adapt patch to new version Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> --- package/tor/0001-openssl-libz.patch | 62 +++++++++++++++++++++++-------------- package/tor/tor.hash | 2 +- package/tor/tor.mk | 2 +- 3 files changed, 41 insertions(+), 25 deletions(-) diff --git a/package/tor/0001-openssl-libz.patch b/package/tor/0001-openssl-libz.patch index 802555e..2aebbf1 100644 --- a/package/tor/0001-openssl-libz.patch +++ b/package/tor/0001-openssl-libz.patch @@ -1,12 +1,16 @@ Adjust link order of libz to solve bug with static linking and remove host paths when looking for openssl. +[Vincent: + - Adapt the patch to make it apply on the new version.] + Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> +Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> -diff -uNr tor-0.2.5.11.org/configure.ac tor-0.2.5.11/configure.ac ---- tor-0.2.5.11.org/configure.ac 2015-03-12 17:49:50.000000000 +0100 -+++ tor-0.2.5.11/configure.ac 2015-03-29 14:32:05.058142751 +0200 -@@ -559,11 +559,11 @@ +diff -uNr a/configure.ac b/configure.ac +--- a/configure.ac 2015-06-10 17:01:31.000000000 +0200 ++++ b/configure.ac 2015-06-18 16:22:27.652903761 +0200 +@@ -604,11 +604,11 @@ fi ]) @@ -20,43 +24,55 @@ diff -uNr tor-0.2.5.11.org/configure.ac tor-0.2.5.11/configure.ac dnl XXXX check for OPENSSL_VERSION_NUMBER == SSLeay() -diff -uNr tor-0.2.5.11.org/src/or/include.am tor-0.2.5.11/src/or/include.am ---- tor-0.2.5.11.org/src/or/include.am 2015-03-12 17:49:50.000000000 +0100 -+++ tor-0.2.5.11/src/or/include.am 2015-03-29 14:37:35.409997674 +0200 -@@ -115,7 +115,7 @@ +diff -uNr a/src/or/include.am b/src/or/include.am +--- a/src/or/include.am 2015-02-24 16:33:30.000000000 +0100 ++++ b/src/or/include.am 2015-06-18 16:24:10.042349070 +0200 +@@ -110,7 +110,7 @@ src_or_tor_LDADD = src/or/libtor.a src/common/libor.a \ src/common/libor-crypto.a $(LIBDONNA) \ src/common/libor-event.a \ - @TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ @TOR_OPENSSL_LIBS@ \ + @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ @TOR_OPENSSL_LIBS@ @TOR_ZLIB_LIBS@ \ - @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ + @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ @TOR_SYSTEMD_LIBS@ if COVERAGE_ENABLED -diff -uNr tor-0.2.5.11.org/src/test/include.am tor-0.2.5.11/src/test/include.am ---- tor-0.2.5.11.org/src/test/include.am 2015-03-12 17:49:50.000000000 +0100 -+++ tor-0.2.5.11/src/test/include.am 2015-03-29 14:39:53.264265077 +0200 -@@ -59,16 +59,16 @@ +diff -uNr a/src/test/include.am b/src/test/include.am +--- a/src/test/include.am 2015-03-10 15:26:37.000000000 +0100 ++++ b/src/test/include.am 2015-06-18 16:28:06.867732744 +0200 +@@ -91,8 +91,8 @@ src_test_test_LDADD = src/or/libtor-testing.a src/common/libor-testing.a \ src/common/libor-crypto-testing.a $(LIBDONNA) \ - src/common/libor-event-testing.a \ + src/common/libor-event-testing.a src/trunnel/libor-trunnel-testing.a \ - @TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ \ -- @TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ +- @TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ \ + @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ \ -+ @TOR_OPENSSL_LIBS@ @TOR_ZLIB_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ ++ @TOR_OPENSSL_LIBS@ @TOR_ZLIB_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ \ + @TOR_SYSTEMD_LIBS@ - src_test_bench_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ \ - @TOR_LDFLAGS_libevent@ + src_test_test_slow_CPPFLAGS = $(src_test_test_CPPFLAGS) +@@ -105,8 +105,8 @@ src_test_bench_LDADD = src/or/libtor.a src/common/libor.a \ src/common/libor-crypto.a $(LIBDONNA) \ src/common/libor-event.a \ - @TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ \ +- @TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ \ ++ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ \ ++ @TOR_OPENSSL_LIBS@ @TOR_ZLIB_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ \ + @TOR_SYSTEMD_LIBS@ + + src_test_test_workqueue_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ \ +@@ -115,8 +115,8 @@ + src/common/libor-testing.a \ + src/common/libor-crypto-testing.a $(LIBDONNA) \ + src/common/libor-event-testing.a \ +- @TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ \ - @TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ + @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ \ + @TOR_OPENSSL_LIBS@ @TOR_ZLIB_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ noinst_HEADERS+= \ - src/test/test.h -@@ -79,8 +79,8 @@ + src/test/fakechans.h \ +@@ -133,8 +133,8 @@ src_test_test_ntor_cl_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ src_test_test_ntor_cl_LDADD = src/or/libtor.a src/common/libor.a \ src/common/libor-crypto.a $(LIBDONNA) \ @@ -67,9 +83,9 @@ diff -uNr tor-0.2.5.11.org/src/test/include.am tor-0.2.5.11/src/test/include.am src_test_test_ntor_cl_AM_CPPFLAGS = \ -I"$(top_srcdir)/src/or" NTOR_TEST_DEPS=src/test/test-ntor-cl -diff -uNr tor-0.2.5.11.org/src/tools/include.am tor-0.2.5.11/src/tools/include.am ---- tor-0.2.5.11.org/src/tools/include.am 2014-06-18 21:11:45.000000000 +0200 -+++ tor-0.2.5.11/src/tools/include.am 2015-03-29 14:41:29.143058949 +0200 +diff -uNr a/src/tools/include.am b/src/tools/include.am +--- a/src/tools/include.am 2015-02-24 16:33:31.000000000 +0100 ++++ b/src/tools/include.am 2015-06-18 16:29:48.460515701 +0200 @@ -9,14 +9,14 @@ src_tools_tor_gencert_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ src_tools_tor_gencert_LDADD = src/common/libor.a src/common/libor-crypto.a \ diff --git a/package/tor/tor.hash b/package/tor/tor.hash index 5cd523f..341a611 100644 --- a/package/tor/tor.hash +++ b/package/tor/tor.hash @@ -1,2 +1,2 @@ # Locally computed -sha256 550fdafffeb4c1e3035bb8cc42e6e49d5af17ad79563bd118af22c1107f72b49 tor-0.2.5.12.tar.gz +sha256 4a6c29ad89a98d7832c599d9480d6d8e55355fb3b8f4b506c5df557f15942f9c tor-0.2.6.9.tar.gz diff --git a/package/tor/tor.mk b/package/tor/tor.mk index 2c671ba..9cca011 100644 --- a/package/tor/tor.mk +++ b/package/tor/tor.mk @@ -4,7 +4,7 @@ # ################################################################################ -TOR_VERSION = 0.2.5.12 +TOR_VERSION = 0.2.6.9 TOR_SITE = https://dist.torproject.org TOR_LICENSE = BSD-3c TOR_LICENSE_FILES = LICENSE -- 2.3.6 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Buildroot] [PATCH 07/10] tor: bump to version 0.2.6.9 2015-06-18 16:46 ` [Buildroot] [PATCH 07/10] tor: bump to version 0.2.6.9 Vicente Olivert Riera @ 2015-06-21 4:41 ` Thomas Petazzoni 0 siblings, 0 replies; 10+ messages in thread From: Thomas Petazzoni @ 2015-06-21 4:41 UTC (permalink / raw) To: buildroot Dear Vicente Olivert Riera, On Thu, 18 Jun 2015 18:46:07 +0200, Vicente Olivert Riera wrote: > - Bump to version 0.2.6.9 > - Update hash file > - Adapt patch to new version > > Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> > --- > package/tor/0001-openssl-libz.patch | 62 +++++++++++++++++++++++-------------- > package/tor/tor.hash | 2 +- > package/tor/tor.mk | 2 +- > 3 files changed, 41 insertions(+), 25 deletions(-) Applied, thanks. Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] [PATCH 08/10] wayland: bump to version 1.8.1 2015-06-18 16:46 [Buildroot] [PATCH 06/10] postgresql: bump to version 9.4.4 Vicente Olivert Riera 2015-06-18 16:46 ` [Buildroot] [PATCH 07/10] tor: bump to version 0.2.6.9 Vicente Olivert Riera @ 2015-06-18 16:46 ` Vicente Olivert Riera 2015-06-21 4:41 ` Thomas Petazzoni 2015-06-18 16:46 ` [Buildroot] [PATCH 09/10] weston: bump to version 1.8.0 Vicente Olivert Riera ` (2 subsequent siblings) 4 siblings, 1 reply; 10+ messages in thread From: Vicente Olivert Riera @ 2015-06-18 16:46 UTC (permalink / raw) To: buildroot - Bump to version 1.8.1 - Update hash file Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> --- package/wayland/wayland.hash | 4 ++-- package/wayland/wayland.mk | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/wayland/wayland.hash b/package/wayland/wayland.hash index aa9b15d..316d6b5 100644 --- a/package/wayland/wayland.hash +++ b/package/wayland/wayland.hash @@ -1,2 +1,2 @@ -# From: http://lists.freedesktop.org/archives/wayland-devel/2015-February/019976.html -sha256 bdea47a2db96f7e53f1ce0351559c0af5b7f7aae7e95f0a884a78af9f1057c9c wayland-1.7.0.tar.xz +# From: http://lists.freedesktop.org/archives/wayland-devel/2015-June/022630.html +sha256 f17c938d1c24fd0a10f650a623a2775d329db3168b5732e498b08388ec776fc8 wayland-1.8.1.tar.xz diff --git a/package/wayland/wayland.mk b/package/wayland/wayland.mk index 32869d8..4e44fa0 100644 --- a/package/wayland/wayland.mk +++ b/package/wayland/wayland.mk @@ -4,7 +4,7 @@ # ################################################################################ -WAYLAND_VERSION = 1.7.0 +WAYLAND_VERSION = 1.8.1 WAYLAND_SITE = http://wayland.freedesktop.org/releases WAYLAND_SOURCE = wayland-$(WAYLAND_VERSION).tar.xz WAYLAND_LICENSE = MIT -- 2.3.6 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Buildroot] [PATCH 08/10] wayland: bump to version 1.8.1 2015-06-18 16:46 ` [Buildroot] [PATCH 08/10] wayland: bump to version 1.8.1 Vicente Olivert Riera @ 2015-06-21 4:41 ` Thomas Petazzoni 0 siblings, 0 replies; 10+ messages in thread From: Thomas Petazzoni @ 2015-06-21 4:41 UTC (permalink / raw) To: buildroot Dear Vicente Olivert Riera, On Thu, 18 Jun 2015 18:46:08 +0200, Vicente Olivert Riera wrote: > - Bump to version 1.8.1 > - Update hash file > > Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> > --- > package/wayland/wayland.hash | 4 ++-- > package/wayland/wayland.mk | 2 +- > 2 files changed, 3 insertions(+), 3 deletions(-) Applied, thanks. Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] [PATCH 09/10] weston: bump to version 1.8.0 2015-06-18 16:46 [Buildroot] [PATCH 06/10] postgresql: bump to version 9.4.4 Vicente Olivert Riera 2015-06-18 16:46 ` [Buildroot] [PATCH 07/10] tor: bump to version 0.2.6.9 Vicente Olivert Riera 2015-06-18 16:46 ` [Buildroot] [PATCH 08/10] wayland: bump to version 1.8.1 Vicente Olivert Riera @ 2015-06-18 16:46 ` Vicente Olivert Riera 2015-06-21 4:41 ` Thomas Petazzoni 2015-06-18 16:46 ` [Buildroot] [PATCH 10/10] wireshark: bump to version 1.12.6 Vicente Olivert Riera 2015-06-21 4:39 ` [Buildroot] [PATCH 06/10] postgresql: bump to version 9.4.4 Thomas Petazzoni 4 siblings, 1 reply; 10+ messages in thread From: Vicente Olivert Riera @ 2015-06-18 16:46 UTC (permalink / raw) To: buildroot - Bump to version 1.8.0 - Update hash file Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> --- package/weston/weston.hash | 4 ++-- package/weston/weston.mk | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/weston/weston.hash b/package/weston/weston.hash index 8df6f07..e7bc2bb 100644 --- a/package/weston/weston.hash +++ b/package/weston/weston.hash @@ -1,2 +1,2 @@ -# From http://lists.freedesktop.org/archives/wayland-devel/2015-February/019977.html -sha256 1c4511945f3f476c24af712e82a7b500ae91a99cbc0fe2e381da1449125166cd weston-1.7.0.tar.xz +# From http://lists.freedesktop.org/archives/wayland-devel/2015-June/022416.html +sha256 8963e69f328e815cec42c58046c4af721476c7541bb7d9edc71740fada5ad312 weston-1.8.0.tar.xz diff --git a/package/weston/weston.mk b/package/weston/weston.mk index bf49436..4ad89ce 100644 --- a/package/weston/weston.mk +++ b/package/weston/weston.mk @@ -4,7 +4,7 @@ # ################################################################################ -WESTON_VERSION = 1.7.0 +WESTON_VERSION = 1.8.0 WESTON_SITE = http://wayland.freedesktop.org/releases WESTON_SOURCE = weston-$(WESTON_VERSION).tar.xz WESTON_LICENSE = MIT -- 2.3.6 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Buildroot] [PATCH 09/10] weston: bump to version 1.8.0 2015-06-18 16:46 ` [Buildroot] [PATCH 09/10] weston: bump to version 1.8.0 Vicente Olivert Riera @ 2015-06-21 4:41 ` Thomas Petazzoni 0 siblings, 0 replies; 10+ messages in thread From: Thomas Petazzoni @ 2015-06-21 4:41 UTC (permalink / raw) To: buildroot Dear Vicente Olivert Riera, On Thu, 18 Jun 2015 18:46:09 +0200, Vicente Olivert Riera wrote: > - Bump to version 1.8.0 > - Update hash file > > Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> > --- > package/weston/weston.hash | 4 ++-- > package/weston/weston.mk | 2 +- > 2 files changed, 3 insertions(+), 3 deletions(-) Applied, thanks. Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] [PATCH 10/10] wireshark: bump to version 1.12.6 2015-06-18 16:46 [Buildroot] [PATCH 06/10] postgresql: bump to version 9.4.4 Vicente Olivert Riera ` (2 preceding siblings ...) 2015-06-18 16:46 ` [Buildroot] [PATCH 09/10] weston: bump to version 1.8.0 Vicente Olivert Riera @ 2015-06-18 16:46 ` Vicente Olivert Riera 2015-06-18 18:39 ` Gustavo Zacarias 2015-06-21 4:39 ` [Buildroot] [PATCH 06/10] postgresql: bump to version 9.4.4 Thomas Petazzoni 4 siblings, 1 reply; 10+ messages in thread From: Vicente Olivert Riera @ 2015-06-18 16:46 UTC (permalink / raw) To: buildroot - Bump to version 1.12.6 - Update hash file Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> --- package/wireshark/wireshark.hash | 6 +++--- package/wireshark/wireshark.mk | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/wireshark/wireshark.hash b/package/wireshark/wireshark.hash index 35eb1a2..b8368b3 100644 --- a/package/wireshark/wireshark.hash +++ b/package/wireshark/wireshark.hash @@ -1,3 +1,3 @@ -# From https://www.wireshark.org/download/SIGNATURES-1.12.5.txt -md5 9ee199dde4f36a3d71f7b81dd6764e93 wireshark-1.12.5.tar.bz2 -sha1 379686f0b6355ae2e6b3f7055578317a07ce5590 wireshark-1.12.5.tar.bz2 +# From https://www.wireshark.org/download/SIGNATURES-1.12.6.txt +md5 25ad2bc1c2a21396827c238fcff51bf3 wireshark-1.12.6.tar.bz2 +sha1 5b592bd0389b76d3bdee6a7336e9492f8162c94d wireshark-1.12.6.tar.bz2 diff --git a/package/wireshark/wireshark.mk b/package/wireshark/wireshark.mk index eb56808..af3d67c 100644 --- a/package/wireshark/wireshark.mk +++ b/package/wireshark/wireshark.mk @@ -4,7 +4,7 @@ # ################################################################################ -WIRESHARK_VERSION = 1.12.5 +WIRESHARK_VERSION = 1.12.6 WIRESHARK_SOURCE = wireshark-$(WIRESHARK_VERSION).tar.bz2 WIRESHARK_SITE = http://www.wireshark.org/download/src/all-versions WIRESHARK_LICENSE = wireshark license -- 2.3.6 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Buildroot] [PATCH 10/10] wireshark: bump to version 1.12.6 2015-06-18 16:46 ` [Buildroot] [PATCH 10/10] wireshark: bump to version 1.12.6 Vicente Olivert Riera @ 2015-06-18 18:39 ` Gustavo Zacarias 0 siblings, 0 replies; 10+ messages in thread From: Gustavo Zacarias @ 2015-06-18 18:39 UTC (permalink / raw) To: buildroot On 18/06/15 13:46, Vicente Olivert Riera wrote: > - Bump to version 1.12.6 > - Update hash file > > Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Might be worth noting that it's a security upgrade... ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] [PATCH 06/10] postgresql: bump to version 9.4.4 2015-06-18 16:46 [Buildroot] [PATCH 06/10] postgresql: bump to version 9.4.4 Vicente Olivert Riera ` (3 preceding siblings ...) 2015-06-18 16:46 ` [Buildroot] [PATCH 10/10] wireshark: bump to version 1.12.6 Vicente Olivert Riera @ 2015-06-21 4:39 ` Thomas Petazzoni 4 siblings, 0 replies; 10+ messages in thread From: Thomas Petazzoni @ 2015-06-21 4:39 UTC (permalink / raw) To: buildroot Dear Vicente Olivert Riera, On Thu, 18 Jun 2015 18:46:06 +0200, Vicente Olivert Riera wrote: > - Bump to version 9.4.4 > - Update hash file > > Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> > --- > package/postgresql/postgresql.hash | 4 ++-- > package/postgresql/postgresql.mk | 2 +- > 2 files changed, 3 insertions(+), 3 deletions(-) Applied, thanks. Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2015-06-21 4:41 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-06-18 16:46 [Buildroot] [PATCH 06/10] postgresql: bump to version 9.4.4 Vicente Olivert Riera 2015-06-18 16:46 ` [Buildroot] [PATCH 07/10] tor: bump to version 0.2.6.9 Vicente Olivert Riera 2015-06-21 4:41 ` Thomas Petazzoni 2015-06-18 16:46 ` [Buildroot] [PATCH 08/10] wayland: bump to version 1.8.1 Vicente Olivert Riera 2015-06-21 4:41 ` Thomas Petazzoni 2015-06-18 16:46 ` [Buildroot] [PATCH 09/10] weston: bump to version 1.8.0 Vicente Olivert Riera 2015-06-21 4:41 ` Thomas Petazzoni 2015-06-18 16:46 ` [Buildroot] [PATCH 10/10] wireshark: bump to version 1.12.6 Vicente Olivert Riera 2015-06-18 18:39 ` Gustavo Zacarias 2015-06-21 4:39 ` [Buildroot] [PATCH 06/10] postgresql: bump to version 9.4.4 Thomas Petazzoni
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox