diff options
author | André Draszik <andre.draszik@jci.com> | 2018-01-12 12:29:41 +0000 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2018-01-22 19:35:47 -0800 |
commit | adca65b81641223fbbe52dfa8431d3ef97f1dbc3 (patch) | |
tree | b8d48b9620b4e44a1a67c0620392e3cd40f97b05 /meta-oe/recipes-support/uthash | |
parent | d9f335cf314b52b1cd588c4201598a64aad04915 (diff) | |
download | meta-openembedded-adca65b81641223fbbe52dfa8431d3ef97f1dbc3.tar.gz |
uthash: update to v2.0.2
- the license has changed to BSD-1-Clause
- the main package is empty (as this only provides
header files), so the -dev package must not depend
on the main package
Signed-off-by: André Draszik <andre.draszik@jci.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/uthash')
-rw-r--r-- | meta-oe/recipes-support/uthash/uthash_1.9.7.bb | 16 | ||||
-rw-r--r-- | meta-oe/recipes-support/uthash/uthash_2.0.2.bb | 30 |
2 files changed, 30 insertions, 16 deletions
diff --git a/meta-oe/recipes-support/uthash/uthash_1.9.7.bb b/meta-oe/recipes-support/uthash/uthash_1.9.7.bb deleted file mode 100644 index 82a9f2a6a..000000000 --- a/meta-oe/recipes-support/uthash/uthash_1.9.7.bb +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | SUMMARY = "Hash table for C structures" | ||
2 | SECTION = "base" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=564f9c44927f6247dc810bf557e2b240" | ||
5 | |||
6 | SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.tar.bz2" | ||
7 | |||
8 | SRC_URI[md5sum] = "1f14bbee7ee73ed0ceb3549f8cf378b4" | ||
9 | SRC_URI[sha256sum] = "956f5c99798349c413275fe4c9ff128d72e280655dadbe4365f8e9fbda91393f" | ||
10 | |||
11 | do_install () { | ||
12 | install -dm755 ${D}${includedir} | ||
13 | install -m 0644 ${S}/src/*.h ${D}${includedir} | ||
14 | } | ||
15 | |||
16 | BBCLASSEXTEND = "native" | ||
diff --git a/meta-oe/recipes-support/uthash/uthash_2.0.2.bb b/meta-oe/recipes-support/uthash/uthash_2.0.2.bb new file mode 100644 index 000000000..8a6887ef0 --- /dev/null +++ b/meta-oe/recipes-support/uthash/uthash_2.0.2.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | SUMMARY = "Hash table and linked list for C structures" | ||
2 | DESCRIPTION = " uthash-dev provides a hash table implementation using C preprocessor macros.\n\ | ||
3 | This package also includes:\n\ | ||
4 | * utlist.h provides linked list macros for C structures\n\ | ||
5 | * utarray.h implements dynamic arrays using macros\n\ | ||
6 | * utstring.h implements a basic dynamic string\n\ | ||
7 | " | ||
8 | HOMEPAGE = "https://troydhanson.github.io/uthash/" | ||
9 | SECTION = "base" | ||
10 | LICENSE = "BSD-1-Clause" | ||
11 | LIC_FILES_CHKSUM = "file://LICENSE;md5=5cc1f1e4c71f19f580458586756c02b4" | ||
12 | |||
13 | SRC_URI = "https://github.com/troydhanson/${BPN}/archive/v${PV}.tar.gz;downloadfilename=${BP}.tar.gz" | ||
14 | UPSTREAM_CHECK_URI = "https://github.com/troydhanson/${BPN}/releases" | ||
15 | |||
16 | SRC_URI[md5sum] = "d08632a58674274c9cd87e2930f5696a" | ||
17 | SRC_URI[sha256sum] = "34a31d51dd7a839819cecd6f46049b4ffe031d7f3147d9a042f5504fdb1348d1" | ||
18 | |||
19 | do_compile[noexec] = "1" | ||
20 | |||
21 | do_install () { | ||
22 | install -dm755 ${D}${includedir} | ||
23 | install -m0644 src/*.h ${D}${includedir} | ||
24 | } | ||
25 | |||
26 | # The main package is empty and non-existent, so -dev | ||
27 | # should not depend on it... | ||
28 | RDEPENDS_${PN}-dev = "" | ||
29 | |||
30 | BBCLASSEXTEND = "native" | ||