* [PATCH 0/6] meta: fix rdepends issues for test related packages
@ 2014-08-18 6:06 Robert Yang
2014-08-18 6:06 ` [PATCH 1/6] meta: fix RDEPNEDS for the test related pkgs Robert Yang
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Robert Yang @ 2014-08-18 6:06 UTC (permalink / raw)
To: openembedded-core
* Fix rdepends issues for test related packages
* Debash for bootchart2
// Robert
The following changes since commit d0be4b37743492fc9c178fd6f9ef73a5eb2fd9c3:
chrpath: Drop warning from darwn builds (2014-08-17 10:01:30 +0100)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib rbt/test
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/test
Robert Yang (6):
meta: fix RDEPNEDS for the test related pkgs
sed: add sed to RDEPENDS sed-ptest
lsbtest: no bashism in LSB_Test.sh
run-ptest: fix bashism
valgrind/oprofile/systemd: no need bash in run-ptest
bootchart2: no bashism in bootchartd.in
meta/recipes-core/libxml/libxml2.inc | 2 ++
meta/recipes-core/systemd/systemd/run-ptest | 2 ++
meta/recipes-core/udev/udev.inc | 2 +-
.../bootchart2/bootchartd-no-bashism.patch | 27 ++++++++++++++++++++
meta/recipes-devtools/bootchart2/bootchart2_git.bb | 6 +++--
meta/recipes-devtools/insserv/files/run-ptest | 2 +-
meta/recipes-devtools/quilt/quilt-0.63.inc | 2 +-
meta/recipes-devtools/quilt/quilt/run-ptest | 2 +-
meta/recipes-devtools/tcltk/tcl/run-ptest | 4 +--
meta/recipes-devtools/valgrind/valgrind/run-ptest | 3 ++-
meta/recipes-extended/gawk/gawk-4.1.1/run-ptest | 4 +--
meta/recipes-extended/lsb/lsbtest/LSB_Test.sh | 2 +-
meta/recipes-extended/pam/libpam_1.1.6.bb | 11 ++++++--
meta/recipes-extended/sed/sed_4.2.2.bb | 2 +-
meta/recipes-kernel/lttng/lttng-tools_2.5.0.bb | 2 +-
meta/recipes-kernel/oprofile/oprofile/run-ptest | 3 ++-
meta/recipes-support/beecrypt/beecrypt/run-ptest | 2 +-
17 files changed, 60 insertions(+), 18 deletions(-)
create mode 100644 meta/recipes-devtools/bootchart2/bootchart2/bootchartd-no-bashism.patch
--
1.7.9.5
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 1/6] meta: fix RDEPNEDS for the test related pkgs
2014-08-18 6:06 [PATCH 0/6] meta: fix rdepends issues for test related packages Robert Yang
@ 2014-08-18 6:06 ` Robert Yang
2014-08-18 6:06 ` [PATCH 2/6] sed: add sed to RDEPENDS sed-ptest Robert Yang
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Robert Yang @ 2014-08-18 6:06 UTC (permalink / raw)
To: openembedded-core
Add bash, python or perl to the ptest pkgs to fix the RDEPENDS issues.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta/recipes-core/libxml/libxml2.inc | 2 ++
meta/recipes-core/udev/udev.inc | 2 +-
meta/recipes-extended/pam/libpam_1.1.6.bb | 11 +++++++++--
meta/recipes-kernel/lttng/lttng-tools_2.5.0.bb | 2 +-
4 files changed, 13 insertions(+), 4 deletions(-)
diff --git a/meta/recipes-core/libxml/libxml2.inc b/meta/recipes-core/libxml/libxml2.inc
index 2dffc5a..10f3d34 100644
--- a/meta/recipes-core/libxml/libxml2.inc
+++ b/meta/recipes-core/libxml/libxml2.inc
@@ -27,6 +27,8 @@ BINCONFIG = "${bindir}/xml2-config"
inherit autotools pkgconfig binconfig-disabled pythonnative ptest
+RDEPENDS_${PN}-ptest += "python-core"
+
RDEPENDS_${PN}-ptest_append_libc-glibc += "eglibc-gconv-ebcdic-us eglibc-gconv-ibm1141"
# We don't DEPEND on binutils for ansidecl.h so ensure we don't use the header
diff --git a/meta/recipes-core/udev/udev.inc b/meta/recipes-core/udev/udev.inc
index 11204aa..280da10 100644
--- a/meta/recipes-core/udev/udev.inc
+++ b/meta/recipes-core/udev/udev.inc
@@ -31,7 +31,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
file://init"
inherit autotools pkgconfig update-rc.d ptest
-RDEPENDS_${PN}-ptest += "make"
+RDEPENDS_${PN}-ptest += "make perl"
libexecdir = "${base_libdir}"
EXTRA_OECONF = "--disable-introspection \
diff --git a/meta/recipes-extended/pam/libpam_1.1.6.bb b/meta/recipes-extended/pam/libpam_1.1.6.bb
index c06709f..d7033d0 100644
--- a/meta/recipes-extended/pam/libpam_1.1.6.bb
+++ b/meta/recipes-extended/pam/libpam_1.1.6.bb
@@ -72,8 +72,15 @@ libpam_suffix = "suffix${@get_multilib_bit(d)}"
RPROVIDES_${PN} += "${PN}-${libpam_suffix}"
RPROVIDES_${PN}-runtime += "${PN}-runtime-${libpam_suffix}"
-RDEPENDS_${PN}-runtime = "${PN}-${libpam_suffix} pam-plugin-deny-${libpam_suffix} pam-plugin-permit-${libpam_suffix} pam-plugin-warn-${libpam_suffix} pam-plugin-unix-${libpam_suffix}"
-RDEPENDS_${PN}-xtests = "${PN}-${libpam_suffix} pam-plugin-access-${libpam_suffix} pam-plugin-debug-${libpam_suffix} pam-plugin-cracklib-${libpam_suffix} pam-plugin-pwhistory-${libpam_suffix} pam-plugin-succeed-if-${libpam_suffix} pam-plugin-time-${libpam_suffix} coreutils"
+RDEPENDS_${PN}-runtime = "${PN}-${libpam_suffix} \
+ pam-plugin-deny-${libpam_suffix} pam-plugin-permit-${libpam_suffix} \
+ pam-plugin-warn-${libpam_suffix} pam-plugin-unix-${libpam_suffix} \
+ "
+RDEPENDS_${PN}-xtests = "${PN}-${libpam_suffix} \
+ pam-plugin-access-${libpam_suffix} pam-plugin-debug-${libpam_suffix} \
+ pam-plugin-cracklib-${libpam_suffix} pam-plugin-pwhistory-${libpam_suffix} \
+ pam-plugin-succeed-if-${libpam_suffix} pam-plugin-time-${libpam_suffix} \
+ coreutils bash"
#RRECOMMENDS_${PN} = "${PN}-runtime-${libpam_suffix}"
python populate_packages_prepend () {
diff --git a/meta/recipes-kernel/lttng/lttng-tools_2.5.0.bb b/meta/recipes-kernel/lttng/lttng-tools_2.5.0.bb
index 14e5f9e..560a243 100644
--- a/meta/recipes-kernel/lttng/lttng-tools_2.5.0.bb
+++ b/meta/recipes-kernel/lttng/lttng-tools_2.5.0.bb
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=01d7fc4496aacf37d90df90b90b0cac1 \
file://lgpl-2.1.txt;md5=0f0d71500e6a57fd24d825f33242b9ca"
DEPENDS = "liburcu popt lttng-ust libxml2"
-RDEPENDS_${PN}-ptest += "make"
+RDEPENDS_${PN}-ptest += "make perl bash"
SRCREV = "8b27cacb277c2cdab791139b08da8eb87ab14a88"
PV = "v2.5.0"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/6] sed: add sed to RDEPENDS sed-ptest
2014-08-18 6:06 [PATCH 0/6] meta: fix rdepends issues for test related packages Robert Yang
2014-08-18 6:06 ` [PATCH 1/6] meta: fix RDEPNEDS for the test related pkgs Robert Yang
@ 2014-08-18 6:06 ` Robert Yang
2014-08-18 6:06 ` [PATCH 3/6] lsbtest: no bashism in LSB_Test.sh Robert Yang
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Robert Yang @ 2014-08-18 6:06 UTC (permalink / raw)
To: openembedded-core
Its test scripts require /bin/sed.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta/recipes-extended/sed/sed_4.2.2.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-extended/sed/sed_4.2.2.bb b/meta/recipes-extended/sed/sed_4.2.2.bb
index 74ac16b..ea39dae 100644
--- a/meta/recipes-extended/sed/sed_4.2.2.bb
+++ b/meta/recipes-extended/sed/sed_4.2.2.bb
@@ -14,7 +14,7 @@ SRC_URI[md5sum] = "4111de4faa3b9848a0686b2f260c5056"
SRC_URI[sha256sum] = "fea0a94d4b605894f3e2d5572e3f96e4413bcad3a085aae7367c2cf07908b2ff"
inherit autotools texinfo update-alternatives gettext ptest
-RDEPENDS_${PN}-ptest += "make locale-base-ru-ru"
+RDEPENDS_${PN}-ptest += "make locale-base-ru-ru ${PN}"
EXTRA_OECONF = "--disable-acl \
${@bb.utils.contains('PTEST_ENABLED', '1', '--enable-regex-tests', '', d)}"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 3/6] lsbtest: no bashism in LSB_Test.sh
2014-08-18 6:06 [PATCH 0/6] meta: fix rdepends issues for test related packages Robert Yang
2014-08-18 6:06 ` [PATCH 1/6] meta: fix RDEPNEDS for the test related pkgs Robert Yang
2014-08-18 6:06 ` [PATCH 2/6] sed: add sed to RDEPENDS sed-ptest Robert Yang
@ 2014-08-18 6:06 ` Robert Yang
2014-08-18 6:06 ` [PATCH 4/6] run-ptest: fix bashism Robert Yang
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Robert Yang @ 2014-08-18 6:06 UTC (permalink / raw)
To: openembedded-core
So use /bin/sh
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta/recipes-extended/lsb/lsbtest/LSB_Test.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-extended/lsb/lsbtest/LSB_Test.sh b/meta/recipes-extended/lsb/lsbtest/LSB_Test.sh
index ab79985..b9971a1 100644
--- a/meta/recipes-extended/lsb/lsbtest/LSB_Test.sh
+++ b/meta/recipes-extended/lsb/lsbtest/LSB_Test.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
# Copyright (C) 2012 Wind River Systems, Inc.
#
--
1.7.9.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 4/6] run-ptest: fix bashism
2014-08-18 6:06 [PATCH 0/6] meta: fix rdepends issues for test related packages Robert Yang
` (2 preceding siblings ...)
2014-08-18 6:06 ` [PATCH 3/6] lsbtest: no bashism in LSB_Test.sh Robert Yang
@ 2014-08-18 6:06 ` Robert Yang
2014-08-18 6:06 ` [PATCH 5/6] valgrind/oprofile/systemd: no need bash in run-ptest Robert Yang
2014-08-18 6:06 ` [PATCH 6/6] bootchart2: no bashism in bootchartd.in Robert Yang
5 siblings, 0 replies; 7+ messages in thread
From: Robert Yang @ 2014-08-18 6:06 UTC (permalink / raw)
To: openembedded-core
These script use /bin/sh as the interpreter, but contains bashism:
recipes-devtools/insserv/files/run-ptest
recipes-devtools/quilt/quilt/run-ptest
recipes-devtools/tcltk/tcl/run-ptest
recipes-extended/gawk/gawk-4.1.1/run-ptest
recipes-support/beecrypt/beecrypt/run-ptest
Fixed:
"==" -> "=" (should be -eq when integer)
"&>log" -> ">log 2>&1"
And quilt's test scripts requires bash, add bash to RDEPENDS_quilt-ptest
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta/recipes-devtools/insserv/files/run-ptest | 2 +-
meta/recipes-devtools/quilt/quilt-0.63.inc | 2 +-
meta/recipes-devtools/quilt/quilt/run-ptest | 2 +-
meta/recipes-devtools/tcltk/tcl/run-ptest | 4 ++--
meta/recipes-extended/gawk/gawk-4.1.1/run-ptest | 4 ++--
meta/recipes-support/beecrypt/beecrypt/run-ptest | 2 +-
6 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/meta/recipes-devtools/insserv/files/run-ptest b/meta/recipes-devtools/insserv/files/run-ptest
index 495d155..4a6da30 100644
--- a/meta/recipes-devtools/insserv/files/run-ptest
+++ b/meta/recipes-devtools/insserv/files/run-ptest
@@ -11,7 +11,7 @@ output() {
}
for i in test_simple_sequence test_undetected_loop; \
- do $i &>/dev/null ; output; \
+ do $i >/dev/null 2>&1; output; \
done
rm -rf ${tmpdir}
diff --git a/meta/recipes-devtools/quilt/quilt-0.63.inc b/meta/recipes-devtools/quilt/quilt-0.63.inc
index f375785..433d6b4 100644
--- a/meta/recipes-devtools/quilt/quilt-0.63.inc
+++ b/meta/recipes-devtools/quilt/quilt-0.63.inc
@@ -55,5 +55,5 @@ do_install_ptest() {
RDEPENDS_${PN}-ptest = "make file sed gawk diffutils findutils ed perl \
perl-module-filehandle perl-module-getopt-std \
perl-module-posix perl-module-file-temp \
- perl-module-text-parsewords \
+ perl-module-text-parsewords bash \
"
diff --git a/meta/recipes-devtools/quilt/quilt/run-ptest b/meta/recipes-devtools/quilt/quilt/run-ptest
index 1ea0dae..958a9df 100755
--- a/meta/recipes-devtools/quilt/quilt/run-ptest
+++ b/meta/recipes-devtools/quilt/quilt/run-ptest
@@ -1,5 +1,5 @@
#!/bin/sh
ln -sf /bin/ed /usr/bin/ed
-for i in `ls test/*.test |awk -F. '{print $1}' |awk -F/ '{print $2}'`; do make check-$i; if [ $? == 0 ]; then echo PASS: $i.test; else echo FAIL: $i.test; fi; done
+for i in `ls test/*.test |awk -F. '{print $1}' |awk -F/ '{print $2}'`; do make check-$i; if [ $? -eq 0 ]; then echo PASS: $i.test; else echo FAIL: $i.test; fi; done
rm -f /usr/bin/ed
diff --git a/meta/recipes-devtools/tcltk/tcl/run-ptest b/meta/recipes-devtools/tcltk/tcl/run-ptest
index a5d6548..dadba65 100644
--- a/meta/recipes-devtools/tcltk/tcl/run-ptest
+++ b/meta/recipes-devtools/tcltk/tcl/run-ptest
@@ -1,8 +1,8 @@
#!/bin/sh
for i in `ls tests/*.test |awk -F/ '{print $2}'`; \
- do TCL_LIBRARY=library ./tcltest tests/all.tcl -file $i &>$i.tmp; \
+ do TCL_LIBRARY=library ./tcltest tests/all.tcl -file $i >$i.tmp 2>&1; \
grep -q "^Files with failing tests:" $i.tmp; \
- if [ $? == 0 ]; then echo "FAIL: $i"; \
+ if [ $? -eq 0 ]; then echo "FAIL: $i"; \
else echo "PASS: $i"; rm -f $i.tmp; fi; \
done
diff --git a/meta/recipes-extended/gawk/gawk-4.1.1/run-ptest b/meta/recipes-extended/gawk/gawk-4.1.1/run-ptest
index 7d214ea..d23f0bf 100644
--- a/meta/recipes-extended/gawk/gawk-4.1.1/run-ptest
+++ b/meta/recipes-extended/gawk/gawk-4.1.1/run-ptest
@@ -3,8 +3,8 @@
cd test
for i in `grep -vE "@|^$|#|Gt-dummy" Maketests |awk -F: '{print $1}'`; \
do LC_ALL=${GAWKLOCALE:-C} LANG=${GAWKLOCALE:-C} srcdir=`pwd` AWK=gawk CMP=cmp \
- make -f Maketests $i &>$i.tmp; \
+ make -f Maketests $i >$i.tmp 2>&1; \
grep -q "Error" $i.tmp; \
- if [ $? == 0 ]; then echo "FAIL: $i"; \
+ if [ $? -eq 0 ]; then echo "FAIL: $i"; \
else echo "PASS: $i"; rm -f $i.tmp; fi; \
done
diff --git a/meta/recipes-support/beecrypt/beecrypt/run-ptest b/meta/recipes-support/beecrypt/beecrypt/run-ptest
index 5bc7460..2ee294d 100644
--- a/meta/recipes-support/beecrypt/beecrypt/run-ptest
+++ b/meta/recipes-support/beecrypt/beecrypt/run-ptest
@@ -1,5 +1,5 @@
#!/bin/sh
cd tests
-for i in `ls`; do ./$i; if [ $? == 0 ]; then echo "PASS: $i"; \
+for i in `ls`; do ./$i; if [ $? -eq 0 ]; then echo "PASS: $i"; \
else echo "FAIL: $i"; fi; done
--
1.7.9.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 5/6] valgrind/oprofile/systemd: no need bash in run-ptest
2014-08-18 6:06 [PATCH 0/6] meta: fix rdepends issues for test related packages Robert Yang
` (3 preceding siblings ...)
2014-08-18 6:06 ` [PATCH 4/6] run-ptest: fix bashism Robert Yang
@ 2014-08-18 6:06 ` Robert Yang
2014-08-18 6:06 ` [PATCH 6/6] bootchart2: no bashism in bootchartd.in Robert Yang
5 siblings, 0 replies; 7+ messages in thread
From: Robert Yang @ 2014-08-18 6:06 UTC (permalink / raw)
To: openembedded-core
There is no bashism in the scripts, so use /bin/sh.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta/recipes-core/systemd/systemd/run-ptest | 2 ++
meta/recipes-devtools/valgrind/valgrind/run-ptest | 3 ++-
meta/recipes-kernel/oprofile/oprofile/run-ptest | 3 ++-
3 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-core/systemd/systemd/run-ptest b/meta/recipes-core/systemd/systemd/run-ptest
index 2f6bd93..a2d61c2 100644
--- a/meta/recipes-core/systemd/systemd/run-ptest
+++ b/meta/recipes-core/systemd/systemd/run-ptest
@@ -1,3 +1,5 @@
+#!/bin/sh
+
tar -C test -xJf test/sys.tar.xz
make test/rules-test.sh.log
make test/udev-test.pl.log
diff --git a/meta/recipes-devtools/valgrind/valgrind/run-ptest b/meta/recipes-devtools/valgrind/valgrind/run-ptest
index 7d0584a..f9a72ec 100755
--- a/meta/recipes-devtools/valgrind/valgrind/run-ptest
+++ b/meta/recipes-devtools/valgrind/valgrind/run-ptest
@@ -1,4 +1,5 @@
-#!/bin/bash
+#!/bin/sh
+
# run-ptest - 'ptest' test infrastructure shell script that
# wraps the valgrind regression script vg_regtest.
# Must be run in the /usr/lib/valgrind/ptest directory.
diff --git a/meta/recipes-kernel/oprofile/oprofile/run-ptest b/meta/recipes-kernel/oprofile/oprofile/run-ptest
index 583ee1b..4814be6 100644
--- a/meta/recipes-kernel/oprofile/oprofile/run-ptest
+++ b/meta/recipes-kernel/oprofile/oprofile/run-ptest
@@ -1,4 +1,5 @@
-#!/bin/bash
+#!/bin/sh
+
saved_dir=$PWD
for dir in */tests ; do
cd $dir
--
1.7.9.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 6/6] bootchart2: no bashism in bootchartd.in
2014-08-18 6:06 [PATCH 0/6] meta: fix rdepends issues for test related packages Robert Yang
` (4 preceding siblings ...)
2014-08-18 6:06 ` [PATCH 5/6] valgrind/oprofile/systemd: no need bash in run-ptest Robert Yang
@ 2014-08-18 6:06 ` Robert Yang
5 siblings, 0 replies; 7+ messages in thread
From: Robert Yang @ 2014-08-18 6:06 UTC (permalink / raw)
To: openembedded-core
So use /bin/sh.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
.../bootchart2/bootchartd-no-bashism.patch | 27 ++++++++++++++++++++
meta/recipes-devtools/bootchart2/bootchart2_git.bb | 6 +++--
2 files changed, 31 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-devtools/bootchart2/bootchart2/bootchartd-no-bashism.patch
diff --git a/meta/recipes-devtools/bootchart2/bootchart2/bootchartd-no-bashism.patch b/meta/recipes-devtools/bootchart2/bootchart2/bootchartd-no-bashism.patch
new file mode 100644
index 0000000..b013995
--- /dev/null
+++ b/meta/recipes-devtools/bootchart2/bootchart2/bootchartd-no-bashism.patch
@@ -0,0 +1,27 @@
+From ffb5bae5d588aaea6325623462a8070a04767196 Mon Sep 17 00:00:00 2001
+From: Robert Yang <liezhi.yang@windriver.com>
+Date: Thu, 14 Aug 2014 08:33:28 -0700
+Subject: [PATCH] bootchartd.in: no bashism
+
+No bashism in bootchartd.in, so use /bin/sh.
+
+Upstream-Status: Pending
+
+Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
+---
+ bootchartd.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/bootchartd.in b/bootchartd.in
+index a408bab..064f6a4 100755
+--- a/bootchartd.in
++++ b/bootchartd.in
+@@ -1,4 +1,4 @@
+-#!/bin/bash
++#!/bin/sh
+ #
+ # Bootchart logger script
+ # Ziga Mahkovec <ziga.mahkovec@klika.si>
+--
+1.7.9.5
+
diff --git a/meta/recipes-devtools/bootchart2/bootchart2_git.bb b/meta/recipes-devtools/bootchart2/bootchart2_git.bb
index 4116304..04fb901 100644
--- a/meta/recipes-devtools/bootchart2/bootchart2_git.bb
+++ b/meta/recipes-devtools/bootchart2/bootchart2_git.bb
@@ -91,8 +91,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=44ac4678311254db62edf8fd39cb8124"
# one commit beyond 1.14.6 for a systemd-related bugfix
PV = "0.14.6+git${SRCPV}"
-SRC_URI = "git://github.com/mmeeks/bootchart.git"
-SRC_URI += "file://bootchartd_stop.sh"
+SRC_URI = "git://github.com/mmeeks/bootchart.git \
+ file://bootchartd_stop.sh \
+ file://bootchartd-no-bashism.patch \
+ "
SRCREV = "b65ed43b0ae832080fb728245de9ef1a4b48d8b5"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2014-08-18 6:06 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-18 6:06 [PATCH 0/6] meta: fix rdepends issues for test related packages Robert Yang
2014-08-18 6:06 ` [PATCH 1/6] meta: fix RDEPNEDS for the test related pkgs Robert Yang
2014-08-18 6:06 ` [PATCH 2/6] sed: add sed to RDEPENDS sed-ptest Robert Yang
2014-08-18 6:06 ` [PATCH 3/6] lsbtest: no bashism in LSB_Test.sh Robert Yang
2014-08-18 6:06 ` [PATCH 4/6] run-ptest: fix bashism Robert Yang
2014-08-18 6:06 ` [PATCH 5/6] valgrind/oprofile/systemd: no need bash in run-ptest Robert Yang
2014-08-18 6:06 ` [PATCH 6/6] bootchart2: no bashism in bootchartd.in Robert Yang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox