summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRandy MacLeod <randy.macleod@windriver.com>2021-03-15 11:55:28 -0400
committerKhem Raj <raj.khem@gmail.com>2021-03-18 12:43:41 -0700
commit2bf78554f563b34d423d2a4014679d7b09517197 (patch)
tree82abc281051e632a12cf996490095af07b32c90f
parent3591919feb92f7879db81a09bed11325cbad26e4 (diff)
downloadmeta-openembedded-2bf78554f563b34d423d2a4014679d7b09517197.tar.gz
tclap: upgrade 1.2.2 -> 1.4.0
Project switched from autotools to CMake so drop the Makefile.am patch. The COPYING file copyright years were updated. Add description. Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-devtools/tclap/tclap/Makefile.am-disable-docs.patch31
-rw-r--r--meta-oe/recipes-devtools/tclap/tclap_1.2.2.bb16
-rw-r--r--meta-oe/recipes-devtools/tclap/tclap_1.4.0.bb22
3 files changed, 22 insertions, 47 deletions
diff --git a/meta-oe/recipes-devtools/tclap/tclap/Makefile.am-disable-docs.patch b/meta-oe/recipes-devtools/tclap/tclap/Makefile.am-disable-docs.patch
deleted file mode 100644
index 358cbefdd..000000000
--- a/meta-oe/recipes-devtools/tclap/tclap/Makefile.am-disable-docs.patch
+++ /dev/null
@@ -1,31 +0,0 @@
1From c209ed0e7ffca32fe3714bad9cc54bdb00c286bb Mon Sep 17 00:00:00 2001
2From: Ting Liu <b28495@freescale.com>
3Date: Mon, 15 Apr 2013 16:28:37 +0800
4Subject: [PATCH] Makefile.am: disable docs
5
6Upstream-Status: Inappropriate [OE specific]
7
8docs need some generating tool (for example, doxygen) from host which may
9be not available. Disable it to avoid build issue.
10
11Signed-off-by: Ting Liu <b28495@freescale.com>
12---
13 Makefile.am | 2 +-
14 1 files changed, 1 insertions(+), 1 deletions(-)
15
16diff --git a/Makefile.am b/Makefile.am
17index 0a6ebc9..6b42f41 100644
18--- a/Makefile.am
19+++ b/Makefile.am
20@@ -1,7 +1,7 @@
21
22 ACLOCAL_AMFLAGS = -I config
23
24-SUBDIRS = include examples docs tests msc config
25+SUBDIRS = include examples tests msc config
26
27 pkgconfigdir = $(libdir)/pkgconfig
28 pkgconfig_DATA = $(PACKAGE).pc
29--
301.7.5
31
diff --git a/meta-oe/recipes-devtools/tclap/tclap_1.2.2.bb b/meta-oe/recipes-devtools/tclap/tclap_1.2.2.bb
deleted file mode 100644
index bba8d5c21..000000000
--- a/meta-oe/recipes-devtools/tclap/tclap_1.2.2.bb
+++ /dev/null
@@ -1,16 +0,0 @@
1SUMMARY = "Templatized C++ Command Line Parser"
2HOMEPAGE = "http://tclap.sourceforge.net/"
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://COPYING;md5=0ca8b9c5c5445cfa7af7e78fd27e60ed"
5
6SRCREV = "ec3ddcfe41b0544a4551a57439b6b3682fe31479"
7SRC_URI = "git://git.code.sf.net/p/tclap/code;branch=1.2 \
8 file://Makefile.am-disable-docs.patch \
9"
10
11S = "${WORKDIR}/git"
12inherit autotools
13
14ALLOW_EMPTY_${PN} = "1"
15
16BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-oe/recipes-devtools/tclap/tclap_1.4.0.bb b/meta-oe/recipes-devtools/tclap/tclap_1.4.0.bb
new file mode 100644
index 000000000..13f66e47d
--- /dev/null
+++ b/meta-oe/recipes-devtools/tclap/tclap_1.4.0.bb
@@ -0,0 +1,22 @@
1SUMMARY = "Templatized C++ Command Line Parser"
2HOMEPAGE = "http://tclap.sourceforge.net/"
3DESCRIPTION = "TCLAP is a small, flexible library that provides a simple interface \
4for defining and accessing command line arguments. It was intially inspired by the \
5user friendly CLAP libary. The difference is that this library is templatized, so \
6the argument class is type independent. Type independence avoids identical-except-for-type \
7objects, such as IntArg, FloatArg, and StringArg. While the library is not strictly \
8compliant with the GNU or POSIX standards, it is close. \
9"
10LICENSE = "MIT"
11LIC_FILES_CHKSUM = "file://COPYING;md5=5c64b2e8cc50917b2744a90950faa7cd"
12
13SRCREV = "799a8b1f99818e39fee19d0601030770af1221e1"
14SRC_URI = "git://git.code.sf.net/p/tclap/code;branch=1.4 \
15"
16
17S = "${WORKDIR}/git"
18inherit cmake
19
20ALLOW_EMPTY_${PN} = "1"
21
22BBCLASSEXTEND = "native nativesdk"