Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] zeromq: bump to version 4.1.5
@ 2016-07-23 17:30 Gustavo Zacarias
  2016-07-23 17:30 ` [Buildroot] [PATCH 2/2] zeromq: disable documentation Gustavo Zacarias
  2016-07-23 21:07 ` [Buildroot] [PATCH 1/2] zeromq: bump to version 4.1.5 Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2016-07-23 17:30 UTC (permalink / raw)
  To: buildroot

Switch to github download URL since upstream switched.
Drop upstream patch.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 .../zeromq/0003-allow-to-build-sparc-v8-leon.patch | 30 ----------------------
 package/zeromq/zeromq.hash                         |  6 ++---
 package/zeromq/zeromq.mk                           |  3 ++-
 3 files changed, 5 insertions(+), 34 deletions(-)
 delete mode 100644 package/zeromq/0003-allow-to-build-sparc-v8-leon.patch

diff --git a/package/zeromq/0003-allow-to-build-sparc-v8-leon.patch b/package/zeromq/0003-allow-to-build-sparc-v8-leon.patch
deleted file mode 100644
index 126a03b..0000000
--- a/package/zeromq/0003-allow-to-build-sparc-v8-leon.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From d0b22397ebbef8e250c4cad25b8686018804aa15 Mon Sep 17 00:00:00 2001
-From: Waldemar Brodkorb <wbx@uclibc-ng.org>
-Date: Sat, 4 Jun 2016 09:30:49 +0200
-Subject: [PATCH] allow to build sparc (v8,leon)
-
-Only set sparcv9 optimization for sparc64 systems.
-This allows to run for example application using zeromq
-on sparc32 systems.
-
-Signed-off-by: Waldemar Brodkorb <wbx@uclibc-ng.org>
----
- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index af8293c..cabd734 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -291,7 +291,7 @@ fi
- 
- # CPU-specific optimizations
- case "${host_cpu}" in
--    *sparc*)
-+    *sparc64*)
-         AC_LANG_PUSH([C++])
-         LIBZMQ_CHECK_LANG_FLAG_PREPEND([-mcpu=v9])
-         AC_LANG_POP([C++])
--- 
-2.7.4 (Apple Git-66)
-
diff --git a/package/zeromq/zeromq.hash b/package/zeromq/zeromq.hash
index a3eeb45..76067d9 100644
--- a/package/zeromq/zeromq.hash
+++ b/package/zeromq/zeromq.hash
@@ -1,4 +1,4 @@
-# From http://download.zeromq.org/SHA1SUMS:
-sha1	b632a4b6f8a14390dc17824e37ff7b10831ce2b4	zeromq-4.1.4.tar.gz
+# From https://github.com/zeromq/zeromq4-1/releases
+sha1	2b7490b77860be3060b1b1f92cd73184d309ca69	zeromq-4.1.5.tar.gz
 # Calculated based on the hash above
-sha256	e99f44fde25c2e4cb84ce440f87ca7d3fe3271c2b8cfbc67d55e4de25e6fe378	zeromq-4.1.4.tar.gz
+sha256	04aac57f081ffa3a2ee5ed04887be9e205df3a7ddade0027460b8042432bdbcf	zeromq-4.1.5.tar.gz
diff --git a/package/zeromq/zeromq.mk b/package/zeromq/zeromq.mk
index 871f37c..889c94a 100644
--- a/package/zeromq/zeromq.mk
+++ b/package/zeromq/zeromq.mk
@@ -4,8 +4,9 @@
 #
 ################################################################################
 
-ZEROMQ_VERSION = 4.1.4
+ZEROMQ_VERSION = 4.1.5
 ZEROMQ_SITE = http://download.zeromq.org
+ZEROMQ_SITE = https://github.com/zeromq/zeromq4-1/releases/download/v$(ZEROMQ_VERSION)
 ZEROMQ_INSTALL_STAGING = YES
 ZEROMQ_DEPENDENCIES = util-linux
 ZEROMQ_LICENSE = LGPLv3+ with exceptions
-- 
2.7.3

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

* [Buildroot] [PATCH 2/2] zeromq: disable documentation
  2016-07-23 17:30 [Buildroot] [PATCH 1/2] zeromq: bump to version 4.1.5 Gustavo Zacarias
@ 2016-07-23 17:30 ` Gustavo Zacarias
  2016-07-23 21:07   ` Thomas Petazzoni
  2016-07-23 21:07 ` [Buildroot] [PATCH 1/2] zeromq: bump to version 4.1.5 Thomas Petazzoni
  1 sibling, 1 reply; 4+ messages in thread
From: Gustavo Zacarias @ 2016-07-23 17:30 UTC (permalink / raw)
  To: buildroot

If asciidoc and xmlto are around it will automatically enable the
documentation build which is pointless.
Build time on i5-3330 with docs = 37s, without docs 25s.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/zeromq/zeromq.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/zeromq/zeromq.mk b/package/zeromq/zeromq.mk
index 889c94a..05f789c 100644
--- a/package/zeromq/zeromq.mk
+++ b/package/zeromq/zeromq.mk
@@ -9,6 +9,7 @@ ZEROMQ_SITE = http://download.zeromq.org
 ZEROMQ_SITE = https://github.com/zeromq/zeromq4-1/releases/download/v$(ZEROMQ_VERSION)
 ZEROMQ_INSTALL_STAGING = YES
 ZEROMQ_DEPENDENCIES = util-linux
+ZEROMQ_CONF_OPTS = --without-documentation
 ZEROMQ_LICENSE = LGPLv3+ with exceptions
 ZEROMQ_LICENSE_FILES = COPYING COPYING.LESSER
 # For 0001-acinclude.m4-make-kernel-specific-flags-cacheable.patch
-- 
2.7.3

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

* [Buildroot] [PATCH 1/2] zeromq: bump to version 4.1.5
  2016-07-23 17:30 [Buildroot] [PATCH 1/2] zeromq: bump to version 4.1.5 Gustavo Zacarias
  2016-07-23 17:30 ` [Buildroot] [PATCH 2/2] zeromq: disable documentation Gustavo Zacarias
@ 2016-07-23 21:07 ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2016-07-23 21:07 UTC (permalink / raw)
  To: buildroot

Hello,

On Sat, 23 Jul 2016 14:30:00 -0300, Gustavo Zacarias wrote:

> -ZEROMQ_VERSION = 4.1.4
> +ZEROMQ_VERSION = 4.1.5
>  ZEROMQ_SITE = http://download.zeromq.org
> +ZEROMQ_SITE = https://github.com/zeromq/zeromq4-1/releases/download/v$(ZEROMQ_VERSION)

Duplicate _SITE variable, so I've dropped the old one and applied.
Thanks!

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

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

* [Buildroot] [PATCH 2/2] zeromq: disable documentation
  2016-07-23 17:30 ` [Buildroot] [PATCH 2/2] zeromq: disable documentation Gustavo Zacarias
@ 2016-07-23 21:07   ` Thomas Petazzoni
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2016-07-23 21:07 UTC (permalink / raw)
  To: buildroot

Hello,

On Sat, 23 Jul 2016 14:30:01 -0300, Gustavo Zacarias wrote:
> If asciidoc and xmlto are around it will automatically enable the
> documentation build which is pointless.
> Build time on i5-3330 with docs = 37s, without docs 25s.
> 
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  package/zeromq/zeromq.mk | 1 +
>  1 file changed, 1 insertion(+)

Applied to master, thanks.

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

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

end of thread, other threads:[~2016-07-23 21:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-23 17:30 [Buildroot] [PATCH 1/2] zeromq: bump to version 4.1.5 Gustavo Zacarias
2016-07-23 17:30 ` [Buildroot] [PATCH 2/2] zeromq: disable documentation Gustavo Zacarias
2016-07-23 21:07   ` Thomas Petazzoni
2016-07-23 21:07 ` [Buildroot] [PATCH 1/2] zeromq: bump to version 4.1.5 Thomas Petazzoni

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