* [PATCH 1/2] neard: upgrade to 0.16
@ 2016-07-07 15:13 Maxin B. John
2016-07-07 15:13 ` [PATCH 2/2] graph-tool: convert to python3 Maxin B. John
0 siblings, 1 reply; 2+ messages in thread
From: Maxin B. John @ 2016-07-07 15:13 UTC (permalink / raw)
To: openembedded-core
0.15 -> 0.16
Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
meta/recipes-connectivity/neard/{neard_0.15.bb => neard_0.16.bb} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-connectivity/neard/{neard_0.15.bb => neard_0.16.bb} (93%)
diff --git a/meta/recipes-connectivity/neard/neard_0.15.bb b/meta/recipes-connectivity/neard/neard_0.16.bb
similarity index 93%
rename from meta/recipes-connectivity/neard/neard_0.15.bb
rename to meta/recipes-connectivity/neard/neard_0.16.bb
index 93bddb3..b7126f6 100644
--- a/meta/recipes-connectivity/neard/neard_0.15.bb
+++ b/meta/recipes-connectivity/neard/neard_0.16.bb
@@ -10,8 +10,8 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/network/nfc/${BP}.tar.xz \
file://Makefile.am-fix-parallel-issue.patch \
file://Makefile.am-do-not-ship-version.h.patch \
"
-SRC_URI[md5sum] = "b746ce62eeef88e8de90765e00a75a1c"
-SRC_URI[sha256sum] = "651f6513d32cdaf8a426255d03aff38a6620a89b0567ec2b36606c6330a93353"
+SRC_URI[md5sum] = "5c691fb7872856dc0d909c298bc8cb41"
+SRC_URI[sha256sum] = "eae3b11c541a988ec11ca94b7deab01080cd5b58cfef3ced6ceac9b6e6e65b36"
LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \
file://src/near.h;beginline=1;endline=20;md5=358e4deefef251a4761e1ffacc965d13 \
--
2.4.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* [PATCH 2/2] graph-tool: convert to python3
2016-07-07 15:13 [PATCH 1/2] neard: upgrade to 0.16 Maxin B. John
@ 2016-07-07 15:13 ` Maxin B. John
0 siblings, 0 replies; 2+ messages in thread
From: Maxin B. John @ 2016-07-07 15:13 UTC (permalink / raw)
To: openembedded-core
move graph-tool to python3
Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
scripts/contrib/graph-tool | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/contrib/graph-tool b/scripts/contrib/graph-tool
index 6dc7d33..0275fbd 100755
--- a/scripts/contrib/graph-tool
+++ b/scripts/contrib/graph-tool
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# Simple graph query utility
# useful for getting answers from .dot files produced by bitbake -g
@@ -56,7 +56,7 @@ def find_paths(args, usage):
paths = list(get_path_networkx(args[0], fromnode, tonode))
if paths:
for path in paths:
- print ' -> '.join(path)
+ print(" -> ".join(map(str,path)))
else:
print("ERROR: no path from %s to %s in graph" % (fromnode, tonode))
sys.exit(1)
--
2.4.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-07-07 15:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-07 15:13 [PATCH 1/2] neard: upgrade to 0.16 Maxin B. John
2016-07-07 15:13 ` [PATCH 2/2] graph-tool: convert to python3 Maxin B. John
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.