summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/numactl
diff options
context:
space:
mode:
authorLi xin <lixin.fnst@cn.fujitsu.com>2015-07-24 15:43:05 +0800
committerMartin Jansa <Martin.Jansa@gmail.com>2015-07-30 21:22:24 +0200
commit1d645a437a5c44759963922e6843abab81dc3e04 (patch)
tree80d6e31d798fb4b71fa9063865830f8e8bb656dc /meta-oe/recipes-support/numactl
parent2b79d6b4ee364f7dba2a025c89cd51b24bb92bb7 (diff)
downloadmeta-openembedded-1d645a437a5c44759963922e6843abab81dc3e04.tar.gz
numactl: upgrade 2.0.9 -> 2.0.10
1) Update Fix-the-test-output-format.patch,since the contents has been changed. 2) Update the checksum, beginline and endline of LICENSE file, but the LICENSE has not been changed. 3) Remove "libdir=${D}/${libdir}" to avoid build Warning: QA Issue: numactl: Files/directories were installed but not shipped in any package Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/numactl')
-rw-r--r--meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-format.patch41
-rw-r--r--meta-oe/recipes-support/numactl/numactl_2.0.10.bb (renamed from meta-oe/recipes-support/numactl/numactl_2.0.9.bb)8
2 files changed, 27 insertions, 22 deletions
diff --git a/meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-format.patch b/meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-format.patch
index 8c309a4b5..9812ecc8b 100644
--- a/meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-format.patch
+++ b/meta-oe/recipes-support/numactl/numactl/Fix-the-test-output-format.patch
@@ -1,26 +1,30 @@
1[PATCH] Fix the test output format 1From 59fd750a84bbe5874dec936d2bee9ef11a1b6505 Mon Sep 17 00:00:00 2001
2From: Li xin <lixin.fnst@cn.fujitsu.com>
3Date: Tue, 21 Jul 2015 02:01:22 +0900
4Subject: [PATCH] Fix the test output format
2 5
3Upstream-Status: Pending 6Upstream-Status: Pending
4 7
5Signed-off-by: Roy Li <rongqing.li@windriver.com> 8Signed-off-by: Roy Li <rongqing.li@windriver.com>
9Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
6--- 10---
7 test/regress | 6 +++--- 11 test/regress | 6 +++---
8 test/regress2 | 9 ++++----- 12 test/regress2 | 11 +++++------
9 2 files changed, 7 insertions(+), 8 deletions(-) 13 2 files changed, 8 insertions(+), 9 deletions(-)
10 14
11diff --git a/test/regress b/test/regress 15diff --git a/test/regress b/test/regress
12index 05eff5b..10d72f7 100755 16index 2ce1705..d086a47 100755
13--- a/test/regress 17--- a/test/regress
14+++ b/test/regress 18+++ b/test/regress
15@@ -73,6 +73,7 @@ probe_hardware() 19@@ -74,6 +74,7 @@ probe_hardware()
16 if [ $numnodes -lt 2 ] ; then 20 if [ $numnodes -lt 2 ] ; then
17 echo "need at least two nodes with at least $NEEDPAGES each of" 21 echo "need at least two nodes with at least $NEEDPAGES each of"
18 echo "free memory for mempolicy regression tests" 22 echo "free memory for mempolicy regression tests"
19+ echo "FAIL: numa regress" 23+ echo "FAIL: numa regress"
20 exit 1 24 exit 77 # Skip test
21 fi 25 fi
22 } 26 }
23@@ -206,10 +207,9 @@ main() 27@@ -207,10 +208,9 @@ main()
24 rm A B 28 rm A B
25 29
26 if [ "$EXIT" = 0 ] ; then 30 if [ "$EXIT" = 0 ] ; then
@@ -34,26 +38,27 @@ index 05eff5b..10d72f7 100755
34 } 38 }
35 39
36diff --git a/test/regress2 b/test/regress2 40diff --git a/test/regress2 b/test/regress2
37index 6a254fa..9c97943 100755 41index aa6ea41..450c510 100755
38--- a/test/regress2 42--- a/test/regress2
39+++ b/test/regress2 43+++ b/test/regress2
40@@ -6,12 +6,11 @@ VALGRIND=${VALGRIND:-} 44@@ -9,12 +9,11 @@ testdir=`dirname "$0"`
41 export LD_LIBRARY_PATH=`pwd`/.. 45 export PATH=${builddir}:$PATH
42 46
43 T() { 47 T() {
44- echo "$@" 48- echo "$@"
45- if ! $VALGRIND "$@" ; then 49- if ! $VALGRIND "$@" ; then
46- echo $1 FAILED!!!! 50- echo $1 FAILED!!!!
47- exit 1 51- exit 1
48+ if ! $VALGRIND "$@" 2>&1 1>/dev/null; then 52- fi
49+ echo "FAIL: $1"
50+ else
51+ echo "PASS: $1"
52 fi
53- echo 53- echo
54+ if ! $VALGRIND "$@" 2>&1 1>/dev/null; then
55+ echo "FAIL: $1"
56+ else
57+ echo "PASS: $1"
58+ fi
54 } 59 }
55 60
56 # various tests 61 # still broken
57-- 62--
581.7.10.4 631.8.4.2
59 64
diff --git a/meta-oe/recipes-support/numactl/numactl_2.0.9.bb b/meta-oe/recipes-support/numactl/numactl_2.0.10.bb
index 29e57d9c7..3a10ebbee 100644
--- a/meta-oe/recipes-support/numactl/numactl_2.0.9.bb
+++ b/meta-oe/recipes-support/numactl/numactl_2.0.10.bb
@@ -8,9 +8,7 @@ RDEPENDS_${PN} = "perl"
8 8
9inherit autotools-brokensep ptest 9inherit autotools-brokensep ptest
10 10
11LIC_FILES_CHKSUM = "file://README;beginline=19;endline=32;md5=5644cc3851cb2499f6c48e52fe198bd9" 11LIC_FILES_CHKSUM = "file://README;beginline=19;endline=32;md5=00b9fb4504ff2afcb7fb2a518780f412"
12SRC_URI[md5sum] = "136685c8eaf9d6569c351fe1d453b30c"
13SRC_URI[sha256sum] = "9ca033e6c14c0f26c20379b0cf9299429fd5a354a79c3c7880fd41ef69f7751c"
14 12
15SRC_URI = "ftp://oss.sgi.com/www/projects/libnuma/download/${BPN}-${PV}.tar.gz \ 13SRC_URI = "ftp://oss.sgi.com/www/projects/libnuma/download/${BPN}-${PV}.tar.gz \
16 file://fix-null-pointer.patch \ 14 file://fix-null-pointer.patch \
@@ -18,12 +16,14 @@ SRC_URI = "ftp://oss.sgi.com/www/projects/libnuma/download/${BPN}-${PV}.tar.gz \
18 file://Makefile \ 16 file://Makefile \
19 file://run-ptest \ 17 file://run-ptest \
20 " 18 "
19SRC_URI[md5sum] = "682c38305b2596967881f3d77bc3fc9c"
20SRC_URI[sha256sum] = "dbdac8fe74f13b2e2864bba352f1597ab1d3345c8c485d7805f58d66f414db61"
21 21
22# ARM does not currently support NUMA 22# ARM does not currently support NUMA
23COMPATIBLE_HOST = "^((?!arm).*)$" 23COMPATIBLE_HOST = "^((?!arm).*)$"
24 24
25do_install() { 25do_install() {
26 oe_runmake DESTDIR=${D} prefix=${D}/usr libdir=${D}/${libdir} install 26 oe_runmake DESTDIR=${D} prefix=${D}/usr install
27 #remove the empty man2 directory 27 #remove the empty man2 directory
28 rm -r ${D}${mandir}/man2 28 rm -r ${D}${mandir}/man2
29} 29}