summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-07-18 15:14:24 +0200
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-07-18 15:14:24 +0200
commit235965a65bf91574ce3b469061cad2a9c4de694e (patch)
tree0d73937393009682d8aa30de5fdbf520964dd735 /packages
parent4b7b78644ab9d0f3726550ff92ec3476fbcd25b9 (diff)
downloadembtoolkit-235965a65bf91574ce3b469061cad2a9c4de694e.tar.gz
embtoolkit-235965a65bf91574ce3b469061cad2a9c4de694e.tar.bz2
embtoolkit-235965a65bf91574ce3b469061cad2a9c4de694e.tar.xz
Packages/develoment: New kyua-atf-compat v0.2
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'packages')
-rw-r--r--packages/development/development.kconfig5
-rw-r--r--packages/development/development.mk3
-rw-r--r--packages/development/kyua-atf-compat/kyua-atf-compat.kconfig52
-rw-r--r--packages/development/kyua-atf-compat/kyua-atf-compat.mk37
4 files changed, 96 insertions, 1 deletions
diff --git a/packages/development/development.kconfig b/packages/development/development.kconfig
index bff5fa2..c87b958 100644
--- a/packages/development/development.kconfig
+++ b/packages/development/development.kconfig
@@ -44,9 +44,12 @@ source packages/development/gtest/gtest.kconfig
# icu
source packages/development/icu/icu.kconfig
-# icu
+# kyua-testers
source packages/development/kyua-testers/kyua-testers.kconfig
+# kyua-atf-compat
+source packages/development/kyua-atf-compat/kyua-atf-compat.kconfig
+
# libbsd
source packages/development/libbsd/libbsd.kconfig
diff --git a/packages/development/development.mk b/packages/development/development.mk
index 44557d9..1334086 100644
--- a/packages/development/development.mk
+++ b/packages/development/development.mk
@@ -50,6 +50,9 @@ $(call embtk_include_hostpkg,icu_host)
# kyua-testers
$(call embtk_include_pkg,kyua-testers)
+# kyua-atf-compat
+$(call embtk_include_pkg,kyua-atf-compat)
+
# libbsd
$(call embtk_include_pkg,libbsd)
diff --git a/packages/development/kyua-atf-compat/kyua-atf-compat.kconfig b/packages/development/kyua-atf-compat/kyua-atf-compat.kconfig
new file mode 100644
index 0000000..57db00e
--- /dev/null
+++ b/packages/development/kyua-atf-compat/kyua-atf-compat.kconfig
@@ -0,0 +1,52 @@
+################################################################################
+# Embtoolkit
+# Copyright(C) 2014 Abdoulaye Walsimou GAYE.
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+################################################################################
+#
+# \file kyua-atf-compat.kconfig
+# \brief kyua-atf-compat.kconfig of Embtoolkit
+# \author Abdoulaye Walsimou GAYE <awg@embtoolkit.org>
+# \date July 2014
+################################################################################
+
+config EMBTK_HAVE_KYUA-ATF-COMPAT
+ bool "Have kyua-atf-compat"
+ select EMBTK_HAVE_KYUA-TESTERS
+ help
+ kyua-atf-compat, provides tools to ease the transition from ATF to Kyua.
+ In particular, this includes is a tool to convert Atffile files to
+ Kyuafile files in an automated manner, and drop-in replacement wrappers
+ for atf-run and atf-report.
+
+choice
+ prompt "kyua-atf-compat version you wish"
+ depends on EMBTK_HAVE_KYUA-ATF-COMPAT
+ help
+ Here you can choose which version of kyua-atf-compat you want to use.
+
+ config EMBTK_KYUA-ATF-COMPAT_VERSION_0_2
+ bool "kyua-atf-compat-0.2"
+endchoice
+
+config EMBTK_KYUA-ATF-COMPAT_VERSION_STRING
+ string
+ default "0.2" if EMBTK_KYUA-ATF-COMPAT_VERSION_0_2
+
+config EMBTK_KYUA-ATF-COMPAT_NEED_PATCH
+ bool
+config EMBTK_KYUA-ATF-COMPAT_NEED_AUTORECONF
+ bool
diff --git a/packages/development/kyua-atf-compat/kyua-atf-compat.mk b/packages/development/kyua-atf-compat/kyua-atf-compat.mk
new file mode 100644
index 0000000..3508525
--- /dev/null
+++ b/packages/development/kyua-atf-compat/kyua-atf-compat.mk
@@ -0,0 +1,37 @@
+################################################################################
+# Embtoolkit
+# Copyright(C) 2009-2012 Abdoulaye Walsimou GAYE.
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+################################################################################
+#
+# \file kyua-atf-compat.mk
+# \brief kyua-atf-compat.mk of Embtoolkit
+# \author Abdoulaye Walsimou GAYE <awg@embtoolkit.org>
+# \date July 2014
+################################################################################
+
+KYUA-ATF-COMPAT_NAME := kyua-atf-compat
+KYUA-ATF-COMPAT_VERSION := $(call embtk_get_pkgversion,kyua-atf-compat)
+KYUA-ATF-COMPAT_SITE := https://github.com/jmmv/kyua/releases/download/kyua-atf-compat-$(KYUA-ATF-COMPAT_VERSION)
+KYUA-ATF-COMPAT_PACKAGE := kyua-atf-compat-$(KYUA-ATF-COMPAT_VERSION).tar.gz
+KYUA-ATF-COMPAT_SRC_DIR := $(embtk_pkgb)/kyua-atf-compat-$(KYUA-ATF-COMPAT_VERSION)
+KYUA-ATF-COMPAT_BUILD_DIR := $(embtk_pkgb)/kyua-atf-compat-$(KYUA-ATF-COMPAT_VERSION)-build
+
+KYUA-ATF-COMPAT_BINS := atf2kyua atf-report atf-run
+KYUA-ATF-COMPAT_SHARES := doc/kyua-atf-compat kyua-atf-compat
+KYUA-ATF-COMPAT_SHARES += man/man1/atf2kyua.1
+
+KYUA-ATF-COMPAT_DEPS := kyua-testers_install