diff mbox series

[1/1] czmq: bump to version v4.1.0

Message ID 20180224164305.6133-1-asafka7@gmail.com
State Changes Requested
Headers show
Series [1/1] czmq: bump to version v4.1.0 | expand

Commit Message

Asaf Kahlon Feb. 24, 2018, 4:43 p.m. UTC
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
---
 package/czmq/czmq.hash | 2 +-
 package/czmq/czmq.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Comments

Arnout Vandecappelle Feb. 24, 2018, 5:47 p.m. UTC | #1
Hi Asaf,

 Thank you for your contribution.

On 24-02-18 17:43, Asaf Kahlon wrote:
> Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
> ---
>  package/czmq/czmq.hash | 2 +-
>  package/czmq/czmq.mk   | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/czmq/czmq.hash b/package/czmq/czmq.hash
> index 526ea594b9..77fdda0863 100644
> --- a/package/czmq/czmq.hash
> +++ b/package/czmq/czmq.hash
> @@ -1,2 +1,2 @@
>  # Locally calculated
> -sha256 5c76de41f736f0c059e0b26174ef99200f2aba2fa38333683dbe4944b2f80555 czmq-5205ec201e97c3a652c17eb86b18b70350b54512.tar.gz
> +sha256 2e87c19988d1168b70d7ec0fdce79aba4e92a6330959c3a2576c72b319acb478 czmq-v4.1.0.tar.gz
> diff --git a/package/czmq/czmq.mk b/package/czmq/czmq.mk
> index 5305789d7a..c9a6b3c66a 100644
> --- a/package/czmq/czmq.mk
> +++ b/package/czmq/czmq.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -CZMQ_VERSION = 5205ec201e97c3a652c17eb86b18b70350b54512
> +CZMQ_VERSION = v4.1.0
>  CZMQ_SITE = $(call github,zeromq,czmq,$(CZMQ_VERSION))

 There is an uploaded tarball for this release [1]. Please use that one instead.
It contains the configure script and the config directory, so no need anymore
for CZMQ_AUTORECONF and CZMQ_CREATE_CONFIG_DIR.

 Also, there are upstream md5 and sha1 sums, so please add those (with a
reference to the URL containing them). Since we don't consider md5 and sha1
strong enough, you'll have to keep the locally calculated sha256 as well.

 Finally, please also add a hash for the license file while you're doing an
update. This will make it easier to detect changes in the license in the future.

 Regards,
 Arnout

>  # Autoreconf required as we use the git tree
> 

[1] https://github.com/zeromq/czmq/releases/download/v4.1.0/czmq-4.1.0.tar.gz
Asaf Kahlon Feb. 26, 2018, 7:20 p.m. UTC | #2
Hi Arnout, thanks for the productive comments.
I fixed all, but didn't change CZMQ_AUTORECONF because it seems all the
autotools-related files were generated and expect autotools version of 1.14
and can't be compiled with 1.15.
I uploaded a new patch here. Tell me if there's something else you want to
change.


Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
---
 package/czmq/czmq.hash |  6 +++++-
 package/czmq/czmq.mk   | 10 ++--------
 2 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/package/czmq/czmq.hash b/package/czmq/czmq.hash
index 526ea594b9..c0a7176f8d 100644
--- a/package/czmq/czmq.hash
+++ b/package/czmq/czmq.hash
@@ -1,2 +1,6 @@
+# From https://github.com/zeromq/czmq/releases
+md5 d29baef1079f19a2c6a360eb6be984f8 czmq-4.1.0.tar.gz
+sha1 1d201a87205811367f7c92cbbd36a899edda68bf czmq-4.1.0.tar.gz
 # Locally calculated
-sha256 5c76de41f736f0c059e0b26174ef99200f2aba2fa38333683dbe4944b2f80555
czmq-5205ec201e97c3a652c17eb86b18b70350b54512.tar.gz
+sha256 3befa35b4886b5298e8329b4f0aa5bb9bde0e7439bd3c5c53295cb988371fc11
czmq-4.1.0.tar.gz
+sha256 1f256ecad192880510e84ad60474eab7589218784b9a50bc7ceee34c2b91f1d5
LICENCE
diff --git a/package/czmq/czmq.mk b/package/czmq/czmq.mk
index 5305789d7a..3c07845d9c 100644
--- a/package/czmq/czmq.mk
+++ b/package/czmq/czmq.mk
@@ -4,8 +4,8 @@
 #
 ################################################################################

-CZMQ_VERSION = 5205ec201e97c3a652c17eb86b18b70350b54512
-CZMQ_SITE = $(call github,zeromq,czmq,$(CZMQ_VERSION))
+CZMQ_VERSION = 4.1.0
+CZMQ_SITE =
https://github.com/zeromq/czmq/releases/download/v$(CZMQ_VERSION)

 # Autoreconf required as we use the git tree
 CZMQ_AUTORECONF = YES
@@ -18,10 +18,4 @@ CZMQ_LICENSE_FILES = LICENSE
 # host-python, so disable asciidoc entirely.
 CZMQ_CONF_ENV = ac_cv_prog_czmq_have_asciidoc=no

-define CZMQ_CREATE_CONFIG_DIR
- mkdir -p $(@D)/config
-endef
-
-CZMQ_POST_PATCH_HOOKS += CZMQ_CREATE_CONFIG_DIR
-
 $(eval $(autotools-package))
Arnout Vandecappelle March 2, 2018, 8:38 a.m. UTC | #3
Hi Asaf,

On 26-02-18 20:20, Asaf Kahlon wrote:
> Hi Arnout, thanks for the productive comments.
> I fixed all, but didn't change CZMQ_AUTORECONF because it seems all the
> autotools-related files were generated and expect autotools version of 1.14 and
> can't be compiled with 1.15.

 This statement doesn't make sense to me. But I understand why it is needed, see
below.

> I uploaded a new patch here. Tell me if there's something else you want to change.

 Thank you for that. However, you should still submit it as a proper patch in a
separate e-mail, using git send-email (not just pasting it in a mail). If you
send it like this, it gets incorrectly line-wrapped and can't be applied.

> Signed-off-by: Asaf Kahlon <asafka7@gmail.com <mailto:asafka7@gmail.com>>

 If you want to keep me in Cc of new versions, you can add here a line:

Cc: Arnout Vandecappelle <arnout@mind.be>

and git send-email will also send it to me directly.

> ---

 The additional remarks (i.e. "I fixed all comments, but didn't change...") you
can put directly in the git commit message, here, below the --- line. That way,
they will be in the mail but will not be included in the final git history.

>  package/czmq/czmq.hash |  6 +++++-
>  package/czmq/czmq.mk <http://czmq.mk>   | 10 ++--------
>  2 files changed, 7 insertions(+), 9 deletions(-)
> 
> diff --git a/package/czmq/czmq.hash b/package/czmq/czmq.hash
> index 526ea594b9..c0a7176f8d 100644
> --- a/package/czmq/czmq.hash
> +++ b/package/czmq/czmq.hash
> @@ -1,2 +1,6 @@
> +# From https://github.com/zeromq/czmq/releases
> +md5 d29baef1079f19a2c6a360eb6be984f8 czmq-4.1.0.tar.gz
> +sha1 1d201a87205811367f7c92cbbd36a899edda68bf czmq-4.1.0.tar.gz
>  # Locally calculated
> -sha256 5c76de41f736f0c059e0b26174ef99200f2aba2fa38333683dbe4944b2f80555
> czmq-5205ec201e97c3a652c17eb86b18b70350b54512.tar.gz
> +sha256 3befa35b4886b5298e8329b4f0aa5bb9bde0e7439bd3c5c53295cb988371fc11
> czmq-4.1.0.tar.gz
> +sha256 1f256ecad192880510e84ad60474eab7589218784b9a50bc7ceee34c2b91f1d5 LICENCE
> diff --git a/package/czmq/czmq.mk <http://czmq.mk> b/package/czmq/czmq.mk
> <http://czmq.mk>
> index 5305789d7a..3c07845d9c 100644
> --- a/package/czmq/czmq.mk <http://czmq.mk>
> +++ b/package/czmq/czmq.mk <http://czmq.mk>
> @@ -4,8 +4,8 @@
>  #
>  ################################################################################
>  
> -CZMQ_VERSION = 5205ec201e97c3a652c17eb86b18b70350b54512
> -CZMQ_SITE = $(call github,zeromq,czmq,$(CZMQ_VERSION))
> +CZMQ_VERSION = 4.1.0
> +CZMQ_SITE = https://github.com/zeromq/czmq/releases/download/v$(CZMQ_VERSION)
>  
>  # Autoreconf required as we use the git tree

 If autoreconf really is required, then this comment has to change, since now we
are no longer using the git tree but we're using a tarball that does contain the
configure script. However, now I see why it is needed. So change this comment into:

# 0001-configure.ac-remove-Werror.patch touches configure.ac

 I have made this small modification and applied to next, thanks! So there is no
need to resubmit now.

 Regards,
 Arnout

>  CZMQ_AUTORECONF = YES
> @@ -18,10 +18,4 @@ CZMQ_LICENSE_FILES = LICENSE
>  # host-python, so disable asciidoc entirely.
>  CZMQ_CONF_ENV = ac_cv_prog_czmq_have_asciidoc=no
>  
> -define CZMQ_CREATE_CONFIG_DIR
> -mkdir -p $(@D)/config
> -endef
> -
> -CZMQ_POST_PATCH_HOOKS += CZMQ_CREATE_CONFIG_DIR
> -
>  $(eval $(autotools-package))
[snip]
Asaf Kahlon March 4, 2018, 8:41 p.m. UTC | #4
OK, thanks again. Though I still don't see the patch on next... DId you
apply it?

Asaf.

On Fri, Mar 2, 2018 at 10:38 AM, Arnout Vandecappelle <arnout@mind.be>
wrote:

>  Hi Asaf,
>
> On 26-02-18 20:20, Asaf Kahlon wrote:
> > Hi Arnout, thanks for the productive comments.
> > I fixed all, but didn't change CZMQ_AUTORECONF because it seems all the
> > autotools-related files were generated and expect autotools version of
> 1.14 and
> > can't be compiled with 1.15.
>
>  This statement doesn't make sense to me. But I understand why it is
> needed, see
> below.
>
> > I uploaded a new patch here. Tell me if there's something else you want
> to change.
>
>  Thank you for that. However, you should still submit it as a proper patch
> in a
> separate e-mail, using git send-email (not just pasting it in a mail). If
> you
> send it like this, it gets incorrectly line-wrapped and can't be applied.
>
> > Signed-off-by: Asaf Kahlon <asafka7@gmail.com <mailto:asafka7@gmail.com
> >>
>
>  If you want to keep me in Cc of new versions, you can add here a line:
>
> Cc: Arnout Vandecappelle <arnout@mind.be>
>
> and git send-email will also send it to me directly.
>
> > ---
>
>  The additional remarks (i.e. "I fixed all comments, but didn't
> change...") you
> can put directly in the git commit message, here, below the --- line. That
> way,
> they will be in the mail but will not be included in the final git history.
>
> >  package/czmq/czmq.hash |  6 +++++-
> >  package/czmq/czmq.mk <http://czmq.mk>   | 10 ++--------
> >  2 files changed, 7 insertions(+), 9 deletions(-)
> >
> > diff --git a/package/czmq/czmq.hash b/package/czmq/czmq.hash
> > index 526ea594b9..c0a7176f8d 100644
> > --- a/package/czmq/czmq.hash
> > +++ b/package/czmq/czmq.hash
> > @@ -1,2 +1,6 @@
> > +# From https://github.com/zeromq/czmq/releases
> > +md5 d29baef1079f19a2c6a360eb6be984f8 czmq-4.1.0.tar.gz
> > +sha1 1d201a87205811367f7c92cbbd36a899edda68bf czmq-4.1.0.tar.gz
> >  # Locally calculated
> > -sha256 5c76de41f736f0c059e0b26174ef99200f2aba2fa38333683dbe4944b2f80555
> > czmq-5205ec201e97c3a652c17eb86b18b70350b54512.tar.gz
> > +sha256 3befa35b4886b5298e8329b4f0aa5bb9bde0e7439bd3c5c53295cb988371fc11
> > czmq-4.1.0.tar.gz
> > +sha256 1f256ecad192880510e84ad60474eab7589218784b9a50bc7ceee34c2b91f1d5
> LICENCE
> > diff --git a/package/czmq/czmq.mk <http://czmq.mk> b/package/czmq/
> czmq.mk
> > <http://czmq.mk>
> > index 5305789d7a..3c07845d9c 100644
> > --- a/package/czmq/czmq.mk <http://czmq.mk>
> > +++ b/package/czmq/czmq.mk <http://czmq.mk>
> > @@ -4,8 +4,8 @@
> >  #
> >  ###########################################################
> #####################
> >
> > -CZMQ_VERSION = 5205ec201e97c3a652c17eb86b18b70350b54512
> > -CZMQ_SITE = $(call github,zeromq,czmq,$(CZMQ_VERSION))
> > +CZMQ_VERSION = 4.1.0
> > +CZMQ_SITE = https://github.com/zeromq/czmq/releases/download/v$(
> CZMQ_VERSION)
> >
> >  # Autoreconf required as we use the git tree
>
>  If autoreconf really is required, then this comment has to change, since
> now we
> are no longer using the git tree but we're using a tarball that does
> contain the
> configure script. However, now I see why it is needed. So change this
> comment into:
>
> # 0001-configure.ac-remove-Werror.patch touches configure.ac
>
>  I have made this small modification and applied to next, thanks! So there
> is no
> need to resubmit now.
>
>  Regards,
>  Arnout
>
> >  CZMQ_AUTORECONF = YES
> > @@ -18,10 +18,4 @@ CZMQ_LICENSE_FILES = LICENSE
> >  # host-python, so disable asciidoc entirely.
> >  CZMQ_CONF_ENV = ac_cv_prog_czmq_have_asciidoc=no
> >
> > -define CZMQ_CREATE_CONFIG_DIR
> > -mkdir -p $(@D)/config
> > -endef
> > -
> > -CZMQ_POST_PATCH_HOOKS += CZMQ_CREATE_CONFIG_DIR
> > -
> >  $(eval $(autotools-package))
> [snip]
>
> --
> Arnout Vandecappelle                          arnout at mind be
> Senior Embedded Software Architect            +32-16-286500
> Essensium/Mind                                http://www.mind.be
> G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
> LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
> GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF
>
<div dir="ltr">OK, thanks again. Though I still don&#39;t see the patch on next... DId you apply it?<div><br></div><div>Asaf.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Mar 2, 2018 at 10:38 AM, Arnout Vandecappelle <span dir="ltr">&lt;<a href="mailto:arnout@mind.be" target="_blank">arnout@mind.be</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"> Hi Asaf,<br>
<span class=""><br>
On 26-02-18 20:20, Asaf Kahlon wrote:<br>
&gt; Hi Arnout, thanks for the productive comments.<br>
&gt; I fixed all, but didn&#39;t change CZMQ_AUTORECONF because it seems all the<br>
&gt; autotools-related files were generated and expect autotools version of 1.14 and<br>
&gt; can&#39;t be compiled with 1.15.<br>
<br>
</span> This statement doesn&#39;t make sense to me. But I understand why it is needed, see<br>
below.<br>
<span class=""><br>
&gt; I uploaded a new patch here. Tell me if there&#39;s something else you want to change.<br>
<br>
</span> Thank you for that. However, you should still submit it as a proper patch in a<br>
separate e-mail, using git send-email (not just pasting it in a mail). If you<br>
send it like this, it gets incorrectly line-wrapped and can&#39;t be applied.<br>
<br>
&gt; Signed-off-by: Asaf Kahlon &lt;<a href="mailto:asafka7@gmail.com">asafka7@gmail.com</a> &lt;mailto:<a href="mailto:asafka7@gmail.com">asafka7@gmail.com</a>&gt;&gt;<br>
<br>
 If you want to keep me in Cc of new versions, you can add here a line:<br>
<br>
Cc: Arnout Vandecappelle &lt;<a href="mailto:arnout@mind.be">arnout@mind.be</a>&gt;<br>
<br>
and git send-email will also send it to me directly.<br>
<br>
&gt; ---<br>
<br>
 The additional remarks (i.e. &quot;I fixed all comments, but didn&#39;t change...&quot;) you<br>
can put directly in the git commit message, here, below the --- line. That way,<br>
they will be in the mail but will not be included in the final git history.<br>
<br>
&gt;  package/czmq/czmq.hash |  6 +++++-<br>
&gt;  package/czmq/<a href="http://czmq.mk" rel="noreferrer" target="_blank">czmq.mk</a> &lt;<a href="http://czmq.mk" rel="noreferrer" target="_blank">http://czmq.mk</a>&gt;   | 10 ++--------<br>
<span class="">&gt;  2 files changed, 7 insertions(+), 9 deletions(-)<br>
&gt;<br>
&gt; diff --git a/package/czmq/czmq.hash b/package/czmq/czmq.hash<br>
&gt; index 526ea594b9..c0a7176f8d 100644<br>
&gt; --- a/package/czmq/czmq.hash<br>
&gt; +++ b/package/czmq/czmq.hash<br>
&gt; @@ -1,2 +1,6 @@<br>
&gt; +# From <a href="https://github.com/zeromq/czmq/releases" rel="noreferrer" target="_blank">https://github.com/zeromq/<wbr>czmq/releases</a><br>
&gt; +md5 d29baef1079f19a2c6a360eb6be984<wbr>f8 czmq-4.1.0.tar.gz<br>
&gt; +sha1 1d201a87205811367f7c92cbbd36a8<wbr>99edda68bf czmq-4.1.0.tar.gz<br>
&gt;  # Locally calculated<br>
&gt; -sha256 5c76de41f736f0c059e0b26174ef99<wbr>200f2aba2fa38333683dbe4944b2f8<wbr>0555<br>
&gt; czmq-<wbr>5205ec201e97c3a652c17eb86b18b7<wbr>0350b54512.tar.gz<br>
&gt; +sha256 3befa35b4886b5298e8329b4f0aa5b<wbr>b9bde0e7439bd3c5c53295cb988371<wbr>fc11<br>
&gt; czmq-4.1.0.tar.gz<br>
&gt; +sha256 1f256ecad192880510e84ad60474ea<wbr>b7589218784b9a50bc7ceee34c2b91<wbr>f1d5 LICENCE<br>
</span>&gt; diff --git a/package/czmq/<a href="http://czmq.mk" rel="noreferrer" target="_blank">czmq.mk</a> &lt;<a href="http://czmq.mk" rel="noreferrer" target="_blank">http://czmq.mk</a>&gt; b/package/czmq/<a href="http://czmq.mk" rel="noreferrer" target="_blank">czmq.mk</a><br>
&gt; &lt;<a href="http://czmq.mk" rel="noreferrer" target="_blank">http://czmq.mk</a>&gt;<br>
&gt; index 5305789d7a..3c07845d9c 100644<br>
&gt; --- a/package/czmq/<a href="http://czmq.mk" rel="noreferrer" target="_blank">czmq.mk</a> &lt;<a href="http://czmq.mk" rel="noreferrer" target="_blank">http://czmq.mk</a>&gt;<br>
&gt; +++ b/package/czmq/<a href="http://czmq.mk" rel="noreferrer" target="_blank">czmq.mk</a> &lt;<a href="http://czmq.mk" rel="noreferrer" target="_blank">http://czmq.mk</a>&gt;<br>
<span class="">&gt; @@ -4,8 +4,8 @@<br>
&gt;  #<br>
&gt;  #############################<wbr>##############################<wbr>#####################<br>
&gt;  <br>
&gt; -CZMQ_VERSION = 5205ec201e97c3a652c17eb86b18b7<wbr>0350b54512<br>
&gt; -CZMQ_SITE = $(call github,zeromq,czmq,$(CZMQ_<wbr>VERSION))<br>
&gt; +CZMQ_VERSION = 4.1.0<br>
&gt; +CZMQ_SITE = <a href="https://github.com/zeromq/czmq/releases/download/v$(CZMQ_VERSION)" rel="noreferrer" target="_blank">https://github.com/zeromq/<wbr>czmq/releases/download/v$(<wbr>CZMQ_VERSION)</a><br>
&gt;  <br>
&gt;  # Autoreconf required as we use the git tree<br>
<br>
</span> If autoreconf really is required, then this comment has to change, since now we<br>
are no longer using the git tree but we&#39;re using a tarball that does contain the<br>
configure script. However, now I see why it is needed. So change this comment into:<br>
<br>
# 0001-configure.ac-remove-<wbr>Werror.patch touches <a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a><br>
<br>
 I have made this small modification and applied to next, thanks! So there is no<br>
need to resubmit now.<br>
<br>
 Regards,<br>
 Arnout<br>
<span class=""><br>
&gt;  CZMQ_AUTORECONF = YES<br>
&gt; @@ -18,10 +18,4 @@ CZMQ_LICENSE_FILES = LICENSE<br>
&gt;  # host-python, so disable asciidoc entirely.<br>
&gt;  CZMQ_CONF_ENV = ac_cv_prog_czmq_have_asciidoc=<wbr>no<br>
&gt;  <br>
&gt; -define CZMQ_CREATE_CONFIG_DIR<br>
</span>&gt; -mkdir -p $(@D)/config<br>
<span class="">&gt; -endef<br>
&gt; -<br>
&gt; -CZMQ_POST_PATCH_HOOKS += CZMQ_CREATE_CONFIG_DIR<br>
&gt; -<br>
&gt;  $(eval $(autotools-package))<br>
</span>[snip]<br>
<div class="HOEnZb"><div class="h5"><br>
--<br>
Arnout Vandecappelle                          arnout at mind be<br>
Senior Embedded Software Architect            <a href="tel:%2B32-16-286500" value="+3216286500">+32-16-286500</a><br>
Essensium/Mind                                <a href="http://www.mind.be" rel="noreferrer" target="_blank">http://www.mind.be</a><br>
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven<br>
LinkedIn profile: <a href="http://www.linkedin.com/in/arnoutvandecappelle" rel="noreferrer" target="_blank">http://www.linkedin.com/in/<wbr>arnoutvandecappelle</a><br>
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF<br>
</div></div></blockquote></div><br></div>
Arnout Vandecappelle March 5, 2018, 9:38 a.m. UTC | #5
On 04-03-18 21:41, Asaf Kahlon wrote:
> OK, thanks again. Though I still don't see the patch on next... DId you apply it?

 Sorry, I forgot to push. Thanks for the reminder, it should be there now.

 Regards,
 Arnout


[snip]
diff mbox series

Patch

diff --git a/package/czmq/czmq.hash b/package/czmq/czmq.hash
index 526ea594b9..77fdda0863 100644
--- a/package/czmq/czmq.hash
+++ b/package/czmq/czmq.hash
@@ -1,2 +1,2 @@ 
 # Locally calculated
-sha256 5c76de41f736f0c059e0b26174ef99200f2aba2fa38333683dbe4944b2f80555 czmq-5205ec201e97c3a652c17eb86b18b70350b54512.tar.gz
+sha256 2e87c19988d1168b70d7ec0fdce79aba4e92a6330959c3a2576c72b319acb478 czmq-v4.1.0.tar.gz
diff --git a/package/czmq/czmq.mk b/package/czmq/czmq.mk
index 5305789d7a..c9a6b3c66a 100644
--- a/package/czmq/czmq.mk
+++ b/package/czmq/czmq.mk
@@ -4,7 +4,7 @@ 
 #
 ################################################################################
 
-CZMQ_VERSION = 5205ec201e97c3a652c17eb86b18b70350b54512
+CZMQ_VERSION = v4.1.0
 CZMQ_SITE = $(call github,zeromq,czmq,$(CZMQ_VERSION))
 
 # Autoreconf required as we use the git tree