All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] linaro-pm-qa-utils: remove, this was upstreamed to meta-oe as pm-qa
@ 2015-03-11 17:42 Denys Dmytriyenko
  0 siblings, 0 replies; only message in thread
From: Denys Dmytriyenko @ 2015-03-11 17:42 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 .../linaro-pm-qa/linaro-pm-qa-utils_git.bb         | 65 ----------------------
 1 file changed, 65 deletions(-)
 delete mode 100644 meta-arago-extras/recipes-devtools/linaro-pm-qa/linaro-pm-qa-utils_git.bb

diff --git a/meta-arago-extras/recipes-devtools/linaro-pm-qa/linaro-pm-qa-utils_git.bb b/meta-arago-extras/recipes-devtools/linaro-pm-qa/linaro-pm-qa-utils_git.bb
deleted file mode 100644
index 9768a46..0000000
--- a/meta-arago-extras/recipes-devtools/linaro-pm-qa/linaro-pm-qa-utils_git.bb
+++ /dev/null
@@ -1,65 +0,0 @@
-DESCRIPTION = "Utilities from Linaro for testing Power Management"
-HOMEPAGE = "https://wiki.linaro.org/WorkingGroups/PowerManagement/Resources/TestSuite/PmQa"
-
-LICENSE = "GPLv2"
-LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
-
-PV = "0.4.4"
-PR = "r3"
-
-BRANCH ?= "master"
-SRCREV = "bdd94ec9204151ba845e9c057de92360c63bbffb"
-
-SRC_URI = "git://git.linaro.org/tools/pm-qa.git;protocol=git;branch=${BRANCH}"
-
-S = "${WORKDIR}/git"
-
-CFLAGS += "-pthread"
-
-do_compile () {
-    # Find all the .c files in this project and build them.  Save the names
-    # of these files so we know which to install in the installation step.
-    for x in `find . -name "*.c"`
-    do
-        util=`echo ${x} | sed s/.c$//`
-        oe_runmake ${util}
-    done
-}
-
-do_install () {
-    install -d ${D}${bindir}
-    install -d ${D}${bindir}/linaro-pm-qa-include
-
-    # Install the compiled binaries
-    for x in `find . -name "*.c"`
-    do
-        util=`echo ${x} | sed s/.c$//`
-        util_basename=`basename ${util}`
-        install -m 0755 ${util} ${D}${bindir}/${util_basename}
-    done
-
-    # Install the helper scripts in the include directory
-    for script in `find . -name "*.sh" | grep include`
-    do
-        # Remove hardcoded relative paths
-        sed -i -e 's#..\/utils\/##' ${script}
-
-        script_basename=`basename ${script}`
-        install -m 0755 $script ${D}${bindir}/linaro-pm-qa-include/${script_basename}
-    done
-
-    # Install the shell scripts NOT in the include directory since those
-    # will be installed elsewhere
-    for script in `find . -name "*.sh" | grep -v include`
-    do
-        # if the script includes any helper scripts from the include
-        # directory then change the include path to the absolute path
-        # and to reflect the install location of the helper scripts.
-        sed -i -e "s#source ../include#source ${bindir}/linaro-pm-qa-include#g" ${script}
-        # Remove hardcoded relative paths
-        sed -i -e 's#..\/utils\/##' ${script}
-
-        script_basename=`basename ${script}`
-        install -m 0755 $script ${D}${bindir}/${script_basename}
-    done
-}
-- 
2.2.0



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-03-11 17:42 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-11 17:42 [PATCH] linaro-pm-qa-utils: remove, this was upstreamed to meta-oe as pm-qa Denys Dmytriyenko

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.