* [Buildroot] [PATCH 1/1] package/bird: bump version to 2.0.3
@ 2019-02-04 9:10 Adrien Gallouët
2019-02-04 9:22 ` Baruch Siach
0 siblings, 1 reply; 9+ messages in thread
From: Adrien Gallouët @ 2019-02-04 9:10 UTC (permalink / raw)
To: buildroot
Signed-off-by: Adrien Gallou?t <adrien@gallouet.fr>
---
...fix-installation-with-disable-client.patch | 41 -------------------
package/bird/bird.hash | 4 +-
package/bird/bird.mk | 5 ++-
3 files changed, 5 insertions(+), 45 deletions(-)
delete mode 100644 package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch
diff --git a/package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch b/package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch
deleted file mode 100644
index c0faec21b0..0000000000
--- a/package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 6cb15abfc00cb5e492175a9efc71bfdfd1aa457c Mon Sep 17 00:00:00 2001
-From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-Date: Tue, 9 Oct 2018 12:51:08 +0200
-Subject: [PATCH] Makefile.in: fix installation with --disable-client
-
-The configure.ac script initializes the CLIENT variable this way:
-
-CLIENT=birdcl
-if client enabled
- CLIENT=$CLIENT birdc
-fi
-
-This means that checking if @CLIENT@ is empty to decide whether birdc
-should be installed or not doesn't work, and causes a failure at
-installation time when --disable-client is passed.
-
-Instead, check if the birdc binary has been produced or not to decide
-whether it should be installed.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-Upstream-status: http://trubka.network.cz/pipermail/bird-users/2018-October/012763.html
----
- Makefile.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Makefile.in b/Makefile.in
-index c8168bbe..fea3683e 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -171,7 +171,7 @@ install: all
- $(INSTALL) -d $(DESTDIR)/$(sbindir) $(DESTDIR)/$(sysconfdir) $(DESTDIR)/@runtimedir@
- $(INSTALL_PROGRAM) $(exedir)/bird $(DESTDIR)/$(sbindir)/bird
- $(INSTALL_PROGRAM) $(exedir)/birdcl $(DESTDIR)/$(sbindir)/birdcl
-- if test -n "@CLIENT@" ; then \
-+ if test -f $(exedir)/birdc ; then \
- $(INSTALL_PROGRAM) $(exedir)/birdc $(DESTDIR)/$(sbindir)/birdc ; \
- fi
- if ! test -f $(DESTDIR)/@CONFIG_FILE@ ; then \
---
-2.14.4
-
diff --git a/package/bird/bird.hash b/package/bird/bird.hash
index 449e8afd8d..0570373ad3 100644
--- a/package/bird/bird.hash
+++ b/package/bird/bird.hash
@@ -1,2 +1,2 @@
-sha256 bd42d48fbcc2c0046d544f1183cd98193ff15b792d332ff45f386b0180b09335 bird-v2.0.2.tar.gz
-sha256 f018596a97af0108efc446320631e2fddc0c1d1f3ffab3129327ccdb4f0c29ed README
+sha256 54ec151518564f87e81de4ac19376689e5ba8dd9129f1e9a79086db3df0931f8 bird-v2.0.3.tar.gz
+sha256 94c53c84320078920ac1f0d49c81a4e9004512f534521a58bdf145acbcbc2cd2 README
diff --git a/package/bird/bird.mk b/package/bird/bird.mk
index 297e21dd95..1253137afa 100644
--- a/package/bird/bird.mk
+++ b/package/bird/bird.mk
@@ -4,8 +4,9 @@
#
################################################################################
-BIRD_VERSION = v2.0.2
-BIRD_SITE = $(call github,BIRD,bird,$(BIRD_VERSION))
+BIRD_VERSION = v2.0.3
+BIRD_SOURCE = bird-$(BIRD_VERSION).tar.gz
+BIRD_SITE = https://gitlab.labs.nic.cz/labs/bird/-/archive/$(BIRD_VERSION)
BIRD_LICENSE = GPL-2.0+
BIRD_LICENSE_FILES = README
# autoreconf is needed since the package is fetched from github
--
2.19.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH 1/1] package/bird: bump version to 2.0.3
2019-02-04 9:10 [Buildroot] [PATCH 1/1] package/bird: bump version to 2.0.3 Adrien Gallouët
@ 2019-02-04 9:22 ` Baruch Siach
2019-02-04 10:02 ` [Buildroot] [PATCH v2 " Adrien Gallouët
0 siblings, 1 reply; 9+ messages in thread
From: Baruch Siach @ 2019-02-04 9:22 UTC (permalink / raw)
To: buildroot
Hi Adrien,
On Mon, Feb 04, 2019 at 09:10:31AM +0000, Adrien Gallou?t wrote:
> Signed-off-by: Adrien Gallou?t <adrien@gallouet.fr>
> ---
> ...fix-installation-with-disable-client.patch | 41 -------------------
> package/bird/bird.hash | 4 +-
> package/bird/bird.mk | 5 ++-
> 3 files changed, 5 insertions(+), 45 deletions(-)
> delete mode 100644 package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch
Please explain in the commit log why this patch is no longer needed.
>
> diff --git a/package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch b/package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch
> deleted file mode 100644
> index c0faec21b0..0000000000
> --- a/package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch
> +++ /dev/null
> @@ -1,41 +0,0 @@
> -From 6cb15abfc00cb5e492175a9efc71bfdfd1aa457c Mon Sep 17 00:00:00 2001
> -From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> -Date: Tue, 9 Oct 2018 12:51:08 +0200
> -Subject: [PATCH] Makefile.in: fix installation with --disable-client
> -
> -The configure.ac script initializes the CLIENT variable this way:
> -
> -CLIENT=birdcl
> -if client enabled
> - CLIENT=$CLIENT birdc
> -fi
> -
> -This means that checking if @CLIENT@ is empty to decide whether birdc
> -should be installed or not doesn't work, and causes a failure at
> -installation time when --disable-client is passed.
> -
> -Instead, check if the birdc binary has been produced or not to decide
> -whether it should be installed.
> -
> -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> -Upstream-status: http://trubka.network.cz/pipermail/bird-users/2018-October/012763.html
> ----
> - Makefile.in | 2 +-
> - 1 file changed, 1 insertion(+), 1 deletion(-)
> -
> -diff --git a/Makefile.in b/Makefile.in
> -index c8168bbe..fea3683e 100644
> ---- a/Makefile.in
> -+++ b/Makefile.in
> -@@ -171,7 +171,7 @@ install: all
> - $(INSTALL) -d $(DESTDIR)/$(sbindir) $(DESTDIR)/$(sysconfdir) $(DESTDIR)/@runtimedir@
> - $(INSTALL_PROGRAM) $(exedir)/bird $(DESTDIR)/$(sbindir)/bird
> - $(INSTALL_PROGRAM) $(exedir)/birdcl $(DESTDIR)/$(sbindir)/birdcl
> -- if test -n "@CLIENT@" ; then \
> -+ if test -f $(exedir)/birdc ; then \
> - $(INSTALL_PROGRAM) $(exedir)/birdc $(DESTDIR)/$(sbindir)/birdc ; \
> - fi
> - if ! test -f $(DESTDIR)/@CONFIG_FILE@ ; then \
> ---
> -2.14.4
> -
> diff --git a/package/bird/bird.hash b/package/bird/bird.hash
> index 449e8afd8d..0570373ad3 100644
> --- a/package/bird/bird.hash
> +++ b/package/bird/bird.hash
> @@ -1,2 +1,2 @@
> -sha256 bd42d48fbcc2c0046d544f1183cd98193ff15b792d332ff45f386b0180b09335 bird-v2.0.2.tar.gz
> -sha256 f018596a97af0108efc446320631e2fddc0c1d1f3ffab3129327ccdb4f0c29ed README
> +sha256 54ec151518564f87e81de4ac19376689e5ba8dd9129f1e9a79086db3df0931f8 bird-v2.0.3.tar.gz
> +sha256 94c53c84320078920ac1f0d49c81a4e9004512f534521a58bdf145acbcbc2cd2 README
Since you update the license file hash the commit log should say whether these
changes affect the license.
> diff --git a/package/bird/bird.mk b/package/bird/bird.mk
> index 297e21dd95..1253137afa 100644
> --- a/package/bird/bird.mk
> +++ b/package/bird/bird.mk
> @@ -4,8 +4,9 @@
> #
> ################################################################################
>
> -BIRD_VERSION = v2.0.2
> -BIRD_SITE = $(call github,BIRD,bird,$(BIRD_VERSION))
> +BIRD_VERSION = v2.0.3
> +BIRD_SOURCE = bird-$(BIRD_VERSION).tar.gz
This is the value for <PKG>_SOURCE. You can drop it.
> +BIRD_SITE = https://gitlab.labs.nic.cz/labs/bird/-/archive/$(BIRD_VERSION)
> BIRD_LICENSE = GPL-2.0+
> BIRD_LICENSE_FILES = README
> # autoreconf is needed since the package is fetched from github
This comment is now outdated.
baruch
--
http://baruch.siach.name/blog/ ~. .~ Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
- baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH v2 1/1] package/bird: bump version to 2.0.3
2019-02-04 9:22 ` Baruch Siach
@ 2019-02-04 10:02 ` Adrien Gallouët
2019-02-04 13:11 ` Thomas Petazzoni
0 siblings, 1 reply; 9+ messages in thread
From: Adrien Gallouët @ 2019-02-04 10:02 UTC (permalink / raw)
To: buildroot
Patch 0001 is no longer needed as it has been ported to this version.
Also, the README changes but the licence is still GPL-2.0+
Signed-off-by: Adrien Gallou?t <adrien@gallouet.fr>
---
...fix-installation-with-disable-client.patch | 41 -------------------
package/bird/bird.hash | 4 +-
package/bird/bird.mk | 6 +--
3 files changed, 5 insertions(+), 46 deletions(-)
delete mode 100644 package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch
diff --git a/package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch b/package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch
deleted file mode 100644
index c0faec21b0..0000000000
--- a/package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 6cb15abfc00cb5e492175a9efc71bfdfd1aa457c Mon Sep 17 00:00:00 2001
-From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-Date: Tue, 9 Oct 2018 12:51:08 +0200
-Subject: [PATCH] Makefile.in: fix installation with --disable-client
-
-The configure.ac script initializes the CLIENT variable this way:
-
-CLIENT=birdcl
-if client enabled
- CLIENT=$CLIENT birdc
-fi
-
-This means that checking if @CLIENT@ is empty to decide whether birdc
-should be installed or not doesn't work, and causes a failure at
-installation time when --disable-client is passed.
-
-Instead, check if the birdc binary has been produced or not to decide
-whether it should be installed.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-Upstream-status: http://trubka.network.cz/pipermail/bird-users/2018-October/012763.html
----
- Makefile.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Makefile.in b/Makefile.in
-index c8168bbe..fea3683e 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -171,7 +171,7 @@ install: all
- $(INSTALL) -d $(DESTDIR)/$(sbindir) $(DESTDIR)/$(sysconfdir) $(DESTDIR)/@runtimedir@
- $(INSTALL_PROGRAM) $(exedir)/bird $(DESTDIR)/$(sbindir)/bird
- $(INSTALL_PROGRAM) $(exedir)/birdcl $(DESTDIR)/$(sbindir)/birdcl
-- if test -n "@CLIENT@" ; then \
-+ if test -f $(exedir)/birdc ; then \
- $(INSTALL_PROGRAM) $(exedir)/birdc $(DESTDIR)/$(sbindir)/birdc ; \
- fi
- if ! test -f $(DESTDIR)/@CONFIG_FILE@ ; then \
---
-2.14.4
-
diff --git a/package/bird/bird.hash b/package/bird/bird.hash
index 449e8afd8d..0570373ad3 100644
--- a/package/bird/bird.hash
+++ b/package/bird/bird.hash
@@ -1,2 +1,2 @@
-sha256 bd42d48fbcc2c0046d544f1183cd98193ff15b792d332ff45f386b0180b09335 bird-v2.0.2.tar.gz
-sha256 f018596a97af0108efc446320631e2fddc0c1d1f3ffab3129327ccdb4f0c29ed README
+sha256 54ec151518564f87e81de4ac19376689e5ba8dd9129f1e9a79086db3df0931f8 bird-v2.0.3.tar.gz
+sha256 94c53c84320078920ac1f0d49c81a4e9004512f534521a58bdf145acbcbc2cd2 README
diff --git a/package/bird/bird.mk b/package/bird/bird.mk
index 297e21dd95..9be0f6e17d 100644
--- a/package/bird/bird.mk
+++ b/package/bird/bird.mk
@@ -4,11 +4,11 @@
#
################################################################################
-BIRD_VERSION = v2.0.2
-BIRD_SITE = $(call github,BIRD,bird,$(BIRD_VERSION))
+BIRD_VERSION = v2.0.3
+BIRD_SITE = https://gitlab.labs.nic.cz/labs/bird/-/archive/$(BIRD_VERSION)
BIRD_LICENSE = GPL-2.0+
BIRD_LICENSE_FILES = README
-# autoreconf is needed since the package is fetched from github
+# autoreconf is needed since the package is fetched from gitlab
BIRD_AUTORECONF = YES
BIRD_DEPENDENCIES = host-flex host-bison
--
2.19.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH v2 1/1] package/bird: bump version to 2.0.3
2019-02-04 10:02 ` [Buildroot] [PATCH v2 " Adrien Gallouët
@ 2019-02-04 13:11 ` Thomas Petazzoni
[not found] ` <CAFtSRGAAkpuyg7==BY7oQ++_uWTeYaZZnA9GjrB2aNXTazQj8Q@mail.gmail.com>
0 siblings, 1 reply; 9+ messages in thread
From: Thomas Petazzoni @ 2019-02-04 13:11 UTC (permalink / raw)
To: buildroot
Hello Adrien,
Thanks for this new iteration.
On Mon, 4 Feb 2019 10:02:01 +0000
Adrien Gallou?t <adrien@gallouet.fr> wrote:
> diff --git a/package/bird/bird.mk b/package/bird/bird.mk
> index 297e21dd95..9be0f6e17d 100644
> --- a/package/bird/bird.mk
> +++ b/package/bird/bird.mk
> @@ -4,11 +4,11 @@
> #
> ################################################################################
>
> -BIRD_VERSION = v2.0.2
> -BIRD_SITE = $(call github,BIRD,bird,$(BIRD_VERSION))
> +BIRD_VERSION = v2.0.3
> +BIRD_SITE = https://gitlab.labs.nic.cz/labs/bird/-/archive/$(BIRD_VERSION)
Is the tarball auto-generated by gitlab stable over time ?
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH v2 1/1] package/bird: bump version to 2.0.3
[not found] ` <CAFtSRGAAkpuyg7==BY7oQ++_uWTeYaZZnA9GjrB2aNXTazQj8Q@mail.gmail.com>
@ 2019-02-04 14:41 ` Thomas Petazzoni
2019-02-04 15:03 ` Adrien Gallouët
0 siblings, 1 reply; 9+ messages in thread
From: Thomas Petazzoni @ 2019-02-04 14:41 UTC (permalink / raw)
To: buildroot
Hello,
Please keep the mailing list in Cc and avoid top-posting. Thanks!
On Mon, 4 Feb 2019 15:17:44 +0100
Adrien Gallou?t <adrien@gallouet.fr> wrote:
> Hi,
> Yes (I think). We can still download the first tag of BIRD released 9yrs
> ago.
Well, that it is not really the question I was asking. My question is
whether this tarball is always *exactly* identical. As you say, it's a
tarball generated automatically. Since we store a hash of the tarball
in bird.hash, if gitlab does some subtle changes in how the tarball is
generated, the hash will change, breaking the download.
We had this issue with Github in the past.
Best regards,
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH v2 1/1] package/bird: bump version to 2.0.3
2019-02-04 14:41 ` Thomas Petazzoni
@ 2019-02-04 15:03 ` Adrien Gallouët
2019-02-04 15:15 ` Thomas Petazzoni
0 siblings, 1 reply; 9+ messages in thread
From: Adrien Gallouët @ 2019-02-04 15:03 UTC (permalink / raw)
To: buildroot
On Mon, Feb 4, 2019 at 3:41 PM Thomas Petazzoni
<thomas.petazzoni@bootlin.com> wrote:
>
> Hello,
>
> Please keep the mailing list in Cc and avoid top-posting. Thanks!
Sorry, I'll double check from now :)
>
> On Mon, 4 Feb 2019 15:17:44 +0100
> Adrien Gallou?t <adrien@gallouet.fr> wrote:
>
> > Hi,
> > Yes (I think). We can still download the first tag of BIRD released 9yrs
> > ago.
>
> Well, that it is not really the question I was asking. My question is
> whether this tarball is always *exactly* identical. As you say, it's a
> tarball generated automatically. Since we store a hash of the tarball
> in bird.hash, if gitlab does some subtle changes in how the tarball is
> generated, the hash will change, breaking the download.
They moved from something like archive.tar.gz?ref=<ref> to <repo>-<ref>.tar.gz
so there is no guarantee AFAIK but they are sensible to this like github.
BIRD ppl use an ftp server: ftp://bird.network.cz/pub/bird/ for packaging
maybe it is preferable to use it ?
>
> We had this issue with Github in the past.
>
> Best regards,
>
> Thomas
> --
> Thomas Petazzoni, CTO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH v2 1/1] package/bird: bump version to 2.0.3
2019-02-04 15:03 ` Adrien Gallouët
@ 2019-02-04 15:15 ` Thomas Petazzoni
2019-02-04 15:22 ` [Buildroot] [PATCH v3 " Adrien Gallouët
0 siblings, 1 reply; 9+ messages in thread
From: Thomas Petazzoni @ 2019-02-04 15:15 UTC (permalink / raw)
To: buildroot
Hello,
On Mon, 4 Feb 2019 16:03:25 +0100
Adrien Gallou?t <adrien@gallouet.fr> wrote:
> BIRD ppl use an ftp server: ftp://bird.network.cz/pub/bird/ for packaging
> maybe it is preferable to use it ?
Yes, please use a tarball from there instead. Much better.
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH v3 1/1] package/bird: bump version to 2.0.3
2019-02-04 15:15 ` Thomas Petazzoni
@ 2019-02-04 15:22 ` Adrien Gallouët
2019-02-04 16:07 ` Thomas Petazzoni
0 siblings, 1 reply; 9+ messages in thread
From: Adrien Gallouët @ 2019-02-04 15:22 UTC (permalink / raw)
To: buildroot
Patch 0001 is no longer needed as it has been ported to this version.
Also, the README changes but the licence is still GPL-2.0+
Signed-off-by: Adrien Gallou?t <adrien@gallouet.fr>
---
...fix-installation-with-disable-client.patch | 41 -------------------
package/bird/bird.hash | 4 +-
package/bird/bird.mk | 6 +--
3 files changed, 4 insertions(+), 47 deletions(-)
delete mode 100644 package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch
diff --git a/package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch b/package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch
deleted file mode 100644
index c0faec21b0..0000000000
--- a/package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 6cb15abfc00cb5e492175a9efc71bfdfd1aa457c Mon Sep 17 00:00:00 2001
-From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-Date: Tue, 9 Oct 2018 12:51:08 +0200
-Subject: [PATCH] Makefile.in: fix installation with --disable-client
-
-The configure.ac script initializes the CLIENT variable this way:
-
-CLIENT=birdcl
-if client enabled
- CLIENT=$CLIENT birdc
-fi
-
-This means that checking if @CLIENT@ is empty to decide whether birdc
-should be installed or not doesn't work, and causes a failure at
-installation time when --disable-client is passed.
-
-Instead, check if the birdc binary has been produced or not to decide
-whether it should be installed.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-Upstream-status: http://trubka.network.cz/pipermail/bird-users/2018-October/012763.html
----
- Makefile.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Makefile.in b/Makefile.in
-index c8168bbe..fea3683e 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -171,7 +171,7 @@ install: all
- $(INSTALL) -d $(DESTDIR)/$(sbindir) $(DESTDIR)/$(sysconfdir) $(DESTDIR)/@runtimedir@
- $(INSTALL_PROGRAM) $(exedir)/bird $(DESTDIR)/$(sbindir)/bird
- $(INSTALL_PROGRAM) $(exedir)/birdcl $(DESTDIR)/$(sbindir)/birdcl
-- if test -n "@CLIENT@" ; then \
-+ if test -f $(exedir)/birdc ; then \
- $(INSTALL_PROGRAM) $(exedir)/birdc $(DESTDIR)/$(sbindir)/birdc ; \
- fi
- if ! test -f $(DESTDIR)/@CONFIG_FILE@ ; then \
---
-2.14.4
-
diff --git a/package/bird/bird.hash b/package/bird/bird.hash
index 449e8afd8d..3f3a93b964 100644
--- a/package/bird/bird.hash
+++ b/package/bird/bird.hash
@@ -1,2 +1,2 @@
-sha256 bd42d48fbcc2c0046d544f1183cd98193ff15b792d332ff45f386b0180b09335 bird-v2.0.2.tar.gz
-sha256 f018596a97af0108efc446320631e2fddc0c1d1f3ffab3129327ccdb4f0c29ed README
+sha256 0f49b38327d3109553acfa662ac0cf0377719226a03c124cd2e0ea2265ecb1de bird-2.0.3.tar.gz
+sha256 94c53c84320078920ac1f0d49c81a4e9004512f534521a58bdf145acbcbc2cd2 README
diff --git a/package/bird/bird.mk b/package/bird/bird.mk
index 297e21dd95..da2f868070 100644
--- a/package/bird/bird.mk
+++ b/package/bird/bird.mk
@@ -4,12 +4,10 @@
#
################################################################################
-BIRD_VERSION = v2.0.2
-BIRD_SITE = $(call github,BIRD,bird,$(BIRD_VERSION))
+BIRD_VERSION = 2.0.3
+BIRD_SITE = ftp://bird.network.cz/pub/bird
BIRD_LICENSE = GPL-2.0+
BIRD_LICENSE_FILES = README
-# autoreconf is needed since the package is fetched from github
-BIRD_AUTORECONF = YES
BIRD_DEPENDENCIES = host-flex host-bison
ifeq ($(BR2_PACKAGE_BIRD_CLIENT),y)
--
2.19.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH v3 1/1] package/bird: bump version to 2.0.3
2019-02-04 15:22 ` [Buildroot] [PATCH v3 " Adrien Gallouët
@ 2019-02-04 16:07 ` Thomas Petazzoni
0 siblings, 0 replies; 9+ messages in thread
From: Thomas Petazzoni @ 2019-02-04 16:07 UTC (permalink / raw)
To: buildroot
On Mon, 4 Feb 2019 15:22:51 +0000
Adrien Gallou?t <adrien@gallouet.fr> wrote:
> Patch 0001 is no longer needed as it has been ported to this version.
> Also, the README changes but the licence is still GPL-2.0+
>
> Signed-off-by: Adrien Gallou?t <adrien@gallouet.fr>
> ---
> ...fix-installation-with-disable-client.patch | 41 -------------------
> package/bird/bird.hash | 4 +-
> package/bird/bird.mk | 6 +--
> 3 files changed, 4 insertions(+), 47 deletions(-)
> delete mode 100644 package/bird/0001-Makefile.in-fix-installation-with-disable-client.patch
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2019-02-04 16:07 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-04 9:10 [Buildroot] [PATCH 1/1] package/bird: bump version to 2.0.3 Adrien Gallouët
2019-02-04 9:22 ` Baruch Siach
2019-02-04 10:02 ` [Buildroot] [PATCH v2 " Adrien Gallouët
2019-02-04 13:11 ` Thomas Petazzoni
[not found] ` <CAFtSRGAAkpuyg7==BY7oQ++_uWTeYaZZnA9GjrB2aNXTazQj8Q@mail.gmail.com>
2019-02-04 14:41 ` Thomas Petazzoni
2019-02-04 15:03 ` Adrien Gallouët
2019-02-04 15:15 ` Thomas Petazzoni
2019-02-04 15:22 ` [Buildroot] [PATCH v3 " Adrien Gallouët
2019-02-04 16:07 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox