diff options
author | Maxin B. John <maxin.john@intel.com> | 2016-01-20 17:58:47 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-25 12:44:13 +0000 |
commit | 6df607bfd330111bf86e34e2fe9f16984267844d (patch) | |
tree | ed0113b0835957a2edaa7edbc8e83cc10ab43bd7 /meta | |
parent | 7a52f67e59c023e6397e124d972ac8c34627f9af (diff) | |
download | poky-6df607bfd330111bf86e34e2fe9f16984267844d.tar.gz |
acpid: upgrade to 2.0.26
2.0.25 -> 2.0.26
a) Fixed an out of tree build error with musl
b) Updated HOMEPAGE and BUGTRACKER info
(From OE-Core rev: 9590dd6c89d6d99419cc0f0619ac4fe854150c9b)
Signed-off-by: Maxin B. John <maxin.john@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-bsp/acpid/acpid.inc | 4 | ||||
-rw-r--r-- | meta/recipes-bsp/acpid/acpid/0001-Fix-out-of-source-build.patch | 46 | ||||
-rw-r--r-- | meta/recipes-bsp/acpid/acpid_2.0.25.bb | 7 | ||||
-rw-r--r-- | meta/recipes-bsp/acpid/acpid_2.0.26.bb | 9 |
4 files changed, 57 insertions, 9 deletions
diff --git a/meta/recipes-bsp/acpid/acpid.inc b/meta/recipes-bsp/acpid/acpid.inc index e0156192a0..12ec19bbb0 100644 --- a/meta/recipes-bsp/acpid/acpid.inc +++ b/meta/recipes-bsp/acpid/acpid.inc | |||
@@ -1,6 +1,6 @@ | |||
1 | SUMMARY = "A daemon for delivering ACPI events" | 1 | SUMMARY = "A daemon for delivering ACPI events" |
2 | HOMEPAGE = "http://sourceforge.net/projects/acpid/" | 2 | HOMEPAGE = "http://sourceforge.net/projects/acpid2" |
3 | BUGTRACKER = "http://sourceforge.net/tracker/?group_id=33140&atid=407341" | 3 | BUGTRACKER = "http://sourceforge.net/p/acpid2/tickets/?source=navbar" |
4 | SECTION = "base" | 4 | SECTION = "base" |
5 | LICENSE = "GPLv2+" | 5 | LICENSE = "GPLv2+" |
6 | 6 | ||
diff --git a/meta/recipes-bsp/acpid/acpid/0001-Fix-out-of-source-build.patch b/meta/recipes-bsp/acpid/acpid/0001-Fix-out-of-source-build.patch new file mode 100644 index 0000000000..d1aa3aa173 --- /dev/null +++ b/meta/recipes-bsp/acpid/acpid/0001-Fix-out-of-source-build.patch | |||
@@ -0,0 +1,46 @@ | |||
1 | From 5d32b65af750e2007730f3d55a552a186aed81a6 Mon Sep 17 00:00:00 2001 | ||
2 | From: "Maxin B. John" <maxin.john@intel.com> | ||
3 | Date: Wed, 20 Jan 2016 14:08:29 +0200 | ||
4 | Subject: [PATCH] Fix out of source build | ||
5 | |||
6 | Since the source directory contains another config.h, the build | ||
7 | directory should be searched first. | ||
8 | |||
9 | Upstream-Status: Submitted | ||
10 | [https://sourceforge.net/p/acpid2/tickets/10/] | ||
11 | |||
12 | Signed-off-by: Maxin B. John <maxin.john@intel.com> | ||
13 | --- | ||
14 | sock.c | 2 +- | ||
15 | ud_socket.c | 2 +- | ||
16 | 2 files changed, 2 insertions(+), 2 deletions(-) | ||
17 | |||
18 | diff --git a/sock.c b/sock.c | ||
19 | index 644d460..9e04501 100644 | ||
20 | --- a/sock.c | ||
21 | +++ b/sock.c | ||
22 | @@ -21,7 +21,7 @@ | ||
23 | */ | ||
24 | |||
25 | #ifdef HAVE_CONFIG_H | ||
26 | -#include "config.h" | ||
27 | +#include <config.h> | ||
28 | #endif | ||
29 | |||
30 | #include <unistd.h> | ||
31 | diff --git a/ud_socket.c b/ud_socket.c | ||
32 | index 1790917..83b2aa9 100644 | ||
33 | --- a/ud_socket.c | ||
34 | +++ b/ud_socket.c | ||
35 | @@ -4,7 +4,7 @@ | ||
36 | */ | ||
37 | |||
38 | #ifdef HAVE_CONFIG_H | ||
39 | -#include "config.h" | ||
40 | +#include <config.h> | ||
41 | #endif | ||
42 | |||
43 | #include <stdio.h> | ||
44 | -- | ||
45 | 2.4.0 | ||
46 | |||
diff --git a/meta/recipes-bsp/acpid/acpid_2.0.25.bb b/meta/recipes-bsp/acpid/acpid_2.0.25.bb deleted file mode 100644 index f00d25af5e..0000000000 --- a/meta/recipes-bsp/acpid/acpid_2.0.25.bb +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | require acpid.inc | ||
2 | |||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b \ | ||
4 | file://acpid.h;endline=24;md5=324a9cf225ae69ddaad1bf9d942115b5" | ||
5 | |||
6 | SRC_URI[md5sum] = "69bb0cc4a0a89eb2dfecc4851087f568" | ||
7 | SRC_URI[sha256sum] = "0b700a8072bec162c512f72cbe419195601ab3e0ffd2138f9bd95ed3097a5c68" | ||
diff --git a/meta/recipes-bsp/acpid/acpid_2.0.26.bb b/meta/recipes-bsp/acpid/acpid_2.0.26.bb new file mode 100644 index 0000000000..c3bd51f7d6 --- /dev/null +++ b/meta/recipes-bsp/acpid/acpid_2.0.26.bb | |||
@@ -0,0 +1,9 @@ | |||
1 | require acpid.inc | ||
2 | |||
3 | SRC_URI += "file://0001-Fix-out-of-source-build.patch" | ||
4 | |||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b \ | ||
6 | file://acpid.h;endline=24;md5=324a9cf225ae69ddaad1bf9d942115b5" | ||
7 | |||
8 | SRC_URI[md5sum] = "f6d772e35ed907f1cc14ad1a546fd473" | ||
9 | SRC_URI[sha256sum] = "8384f37e4f260f50183e2e20039823d8f06aed9db56924fe92097b7e0b2e0343" | ||