All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe] [PATCH] libndp: switch to github uri. libndp.org is unstable
@ 2017-05-11 12:28 Gianfranco Costamagna
  2017-05-11 12:28 ` [meta-oe][PATCH] libndp: Update patch with upstream version Gianfranco Costamagna
  2017-05-11 12:30 ` [meta-oe] [PATCH] libndp: switch to github uri. libndp.org is unstable Martin Jansa
  0 siblings, 2 replies; 4+ messages in thread
From: Gianfranco Costamagna @ 2017-05-11 12:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Gianfranco Costamagna

From: Gianfranco Costamagna <gianfranco.costamagna@abinsula.com>

Signed-off-by: Gianfranco Costamagna <gianfranco.costamagna@abinsula.com>
---
 meta-oe/recipes-connectivity/libndp/libndp_1.6.bb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-oe/recipes-connectivity/libndp/libndp_1.6.bb b/meta-oe/recipes-connectivity/libndp/libndp_1.6.bb
index a35dff8..7d53dc6 100644
--- a/meta-oe/recipes-connectivity/libndp/libndp_1.6.bb
+++ b/meta-oe/recipes-connectivity/libndp/libndp_1.6.bb
@@ -3,8 +3,8 @@ SUMMARY = "Library for IPv6 Neighbor Discovery Protocol"
 LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
 
-SRC_URI = "http://libndp.org/files/${BPN}-${PV}.tar.gz"
-SRC_URI[md5sum] = "1e54d26bcb4a4110bc3f90c5dd04f1a7"
-SRC_URI[sha256sum] = "0c7dfa84e013bd5e569ef2c6292a6f72cfaf14f4ff77a77425e52edc33ffac0e"
+SRC_URI = "https://github.com/jpirko/libndp/archive/v${PV}.tar.gz"
+SRC_URI[md5sum] = "de58352aaee0e8edb744f1aef852cdce"
+SRC_URI[sha256sum] = "565d6c4167f83ec697c762ea002f23e8f0b00828d0749b1ce928f068543e5aad"
 
 inherit autotools
-- 
2.7.4



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

* [meta-oe][PATCH] libndp: Update patch with upstream version.
  2017-05-11 12:28 [meta-oe] [PATCH] libndp: switch to github uri. libndp.org is unstable Gianfranco Costamagna
@ 2017-05-11 12:28 ` Gianfranco Costamagna
  2017-05-11 12:30 ` [meta-oe] [PATCH] libndp: switch to github uri. libndp.org is unstable Martin Jansa
  1 sibling, 0 replies; 4+ messages in thread
From: Gianfranco Costamagna @ 2017-05-11 12:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Gianfranco Costamagna

From: Gianfranco Costamagna <gianfranco.costamagna@abinsula.com>

Signed-off-by: Gianfranco Costamagna <gianfranco.costamagna@abinsula.com>
---
 ...-include-sys-select.h-for-fd_-definitions.patch | 32 +++++++++++-----------
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/meta-oe/recipes-connectivity/libndp/libndp/0001-include-sys-select.h-for-fd_-definitions.patch b/meta-oe/recipes-connectivity/libndp/libndp/0001-include-sys-select.h-for-fd_-definitions.patch
index bafd916..15aa94e 100644
--- a/meta-oe/recipes-connectivity/libndp/libndp/0001-include-sys-select.h-for-fd_-definitions.patch
+++ b/meta-oe/recipes-connectivity/libndp/libndp/0001-include-sys-select.h-for-fd_-definitions.patch
@@ -1,25 +1,25 @@
-From 33150de2d77ffb645da1a043933b12ddc0143cea Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Tue, 21 Mar 2017 18:59:03 -0700
-Subject: [PATCH] include sys/select.h for fd_* definitions
+From 94e9a082d76414f82794b0c9817d0c24e3868275 Mon Sep 17 00:00:00 2001
+From: Kylie McClain <somasis@exherbo.org>
+Date: Sat, 21 May 2016 21:24:36 -0400
+Subject: [PATCH] ndptool: Fix compilation on musl libc
 
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
+FD_ZERO, fd_set, etc are defined within sys/select.h on musl.
+
+Signed-off-by: Kylie McClain <somasis@exherbo.org>
+Signed-off-by: Jiri Pirko <jiri@mellanox.com>
 ---
  utils/ndptool.c | 1 +
  1 file changed, 1 insertion(+)
 
 diff --git a/utils/ndptool.c b/utils/ndptool.c
-index 1d96f4c..0fd4c4d 100644
+index 1d96f4c..96479fa 100644
 --- a/utils/ndptool.c
 +++ b/utils/ndptool.c
-@@ -23,6 +23,7 @@
- #include <string.h>
- #include <signal.h>
- #include <getopt.h>
-+#include <sys/select.h>
- #include <net/if.h>
- #include <netinet/in.h>
+@@ -28,6 +28,7 @@
  #include <arpa/inet.h>
--- 
-2.12.0
-
+ #include <errno.h>
+ #include <ndp.h>
++#include <sys/select.h>
+ 
+ enum verbosity_level {
+ 	VERB1,
-- 
2.7.4



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

* Re: [meta-oe] [PATCH] libndp: switch to github uri. libndp.org is unstable
  2017-05-11 12:28 [meta-oe] [PATCH] libndp: switch to github uri. libndp.org is unstable Gianfranco Costamagna
  2017-05-11 12:28 ` [meta-oe][PATCH] libndp: Update patch with upstream version Gianfranco Costamagna
@ 2017-05-11 12:30 ` Martin Jansa
  2017-05-11 12:44   ` Gianfranco Costamagna
  1 sibling, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2017-05-11 12:30 UTC (permalink / raw)
  To: Gianfranco Costamagna; +Cc: Gianfranco Costamagna, openembedded-devel

Github archives are regenerated from time to time with different checksums.

If you need to switch to github, then fetch it with git with SRCREV
matching to the tag.

On Thu, May 11, 2017 at 2:28 PM, Gianfranco Costamagna <
costamagna.gianfranco@gmail.com> wrote:

> From: Gianfranco Costamagna <gianfranco.costamagna@abinsula.com>
>
> Signed-off-by: Gianfranco Costamagna <gianfranco.costamagna@abinsula.com>
> ---
>  meta-oe/recipes-connectivity/libndp/libndp_1.6.bb | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/meta-oe/recipes-connectivity/libndp/libndp_1.6.bb
> b/meta-oe/recipes-connectivity/libndp/libndp_1.6.bb
> index a35dff8..7d53dc6 100644
> --- a/meta-oe/recipes-connectivity/libndp/libndp_1.6.bb
> +++ b/meta-oe/recipes-connectivity/libndp/libndp_1.6.bb
> @@ -3,8 +3,8 @@ SUMMARY = "Library for IPv6 Neighbor Discovery Protocol"
>  LICENSE = "LGPLv2.1"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
>
> -SRC_URI = "http://libndp.org/files/${BPN}-${PV}.tar.gz"
> -SRC_URI[md5sum] = "1e54d26bcb4a4110bc3f90c5dd04f1a7"
> -SRC_URI[sha256sum] = "0c7dfa84e013bd5e569ef2c6292a6f
> 72cfaf14f4ff77a77425e52edc33ffac0e"
> +SRC_URI = "https://github.com/jpirko/libndp/archive/v${PV}.tar.gz"
> +SRC_URI[md5sum] = "de58352aaee0e8edb744f1aef852cdce"
> +SRC_URI[sha256sum] = "565d6c4167f83ec697c762ea002f23
> e8f0b00828d0749b1ce928f068543e5aad"
>
>  inherit autotools
> --
> 2.7.4
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


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

* Re: [meta-oe] [PATCH] libndp: switch to github uri. libndp.org is unstable
  2017-05-11 12:30 ` [meta-oe] [PATCH] libndp: switch to github uri. libndp.org is unstable Martin Jansa
@ 2017-05-11 12:44   ` Gianfranco Costamagna
  0 siblings, 0 replies; 4+ messages in thread
From: Gianfranco Costamagna @ 2017-05-11 12:44 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel

Hello, actually this seems to be already covered by
http://lists.openembedded.org/pipermail/openembedded-devel/2017-May/112706.html

I'll send an updated version in a few minutes

thanks
G.

2017-05-11 14:30 GMT+02:00 Martin Jansa <martin.jansa@gmail.com>:

> Github archives are regenerated from time to time with different checksums.
>
> If you need to switch to github, then fetch it with git with SRCREV
> matching to the tag.
>
> On Thu, May 11, 2017 at 2:28 PM, Gianfranco Costamagna <
> costamagna.gianfranco@gmail.com> wrote:
>
>> From: Gianfranco Costamagna <gianfranco.costamagna@abinsula.com>
>>
>> Signed-off-by: Gianfranco Costamagna <gianfranco.costamagna@abinsula.com>
>> ---
>>  meta-oe/recipes-connectivity/libndp/libndp_1.6.bb | 6 +++---
>>  1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/meta-oe/recipes-connectivity/libndp/libndp_1.6.bb
>> b/meta-oe/recipes-connectivity/libndp/libndp_1.6.bb
>> index a35dff8..7d53dc6 100644
>> --- a/meta-oe/recipes-connectivity/libndp/libndp_1.6.bb
>> +++ b/meta-oe/recipes-connectivity/libndp/libndp_1.6.bb
>> @@ -3,8 +3,8 @@ SUMMARY = "Library for IPv6 Neighbor Discovery Protocol"
>>  LICENSE = "LGPLv2.1"
>>  LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
>>
>> -SRC_URI = "http://libndp.org/files/${BPN}-${PV}.tar.gz"
>> -SRC_URI[md5sum] = "1e54d26bcb4a4110bc3f90c5dd04f1a7"
>> -SRC_URI[sha256sum] = "0c7dfa84e013bd5e569ef2c6292a6
>> f72cfaf14f4ff77a77425e52edc33ffac0e"
>> +SRC_URI = "https://github.com/jpirko/libndp/archive/v${PV}.tar.gz"
>> +SRC_URI[md5sum] = "de58352aaee0e8edb744f1aef852cdce"
>> +SRC_URI[sha256sum] = "565d6c4167f83ec697c762ea002f2
>> 3e8f0b00828d0749b1ce928f068543e5aad"
>>
>>  inherit autotools
>> --
>> 2.7.4
>>
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>>
>
>


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

end of thread, other threads:[~2017-05-11 12:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-11 12:28 [meta-oe] [PATCH] libndp: switch to github uri. libndp.org is unstable Gianfranco Costamagna
2017-05-11 12:28 ` [meta-oe][PATCH] libndp: Update patch with upstream version Gianfranco Costamagna
2017-05-11 12:30 ` [meta-oe] [PATCH] libndp: switch to github uri. libndp.org is unstable Martin Jansa
2017-05-11 12:44   ` Gianfranco Costamagna

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.