diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2019-05-17 21:49:19 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-05-20 09:49:00 -0700 |
commit | d776e6e353ba2f34b2fef6b83a887735e85b9f1f (patch) | |
tree | b405e2b94747a815c929e51aa07f9edc3f3dc191 /meta-oe/recipes-extended | |
parent | e7eacaecbd581ca2cc98f3e21667f4b3448f67d4 (diff) | |
download | meta-openembedded-d776e6e353ba2f34b2fef6b83a887735e85b9f1f.tar.gz |
triggerhappy: fix issues
* using PN instead of BPN in S causes all tasks to fail:
make: *** No targets specified and no makefile found. Stop.
* using github archives is bad, because they are regenerated from time to time
with different checksums
* set PV, because this isn't exactly 0.5.0, because of the debian changes
mostly the systemd support
* fix indentation
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended')
-rw-r--r-- | meta-oe/recipes-extended/triggerhappy/triggerhappy_git.bb (renamed from meta-oe/recipes-extended/triggerhappy/triggerhappy_0.5.0.bb) | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/meta-oe/recipes-extended/triggerhappy/triggerhappy_0.5.0.bb b/meta-oe/recipes-extended/triggerhappy/triggerhappy_git.bb index 037ce063e..24df750e0 100644 --- a/meta-oe/recipes-extended/triggerhappy/triggerhappy_0.5.0.bb +++ b/meta-oe/recipes-extended/triggerhappy/triggerhappy_git.bb | |||
@@ -4,12 +4,12 @@ HOMEPAGE = "https://github.com/wertarbyte/triggerhappy" | |||
4 | LICENSE = "GPLv3" | 4 | LICENSE = "GPLv3" |
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" |
6 | 6 | ||
7 | SRC_URI = "https://github.com/wertarbyte/triggerhappy/archive/debian/0.5.0-1.tar.gz" | 7 | # matches debian/0.5.0-1 tag |
8 | SRCREV = "44a173195986d0d853316cb02a58785ded66c12b" | ||
9 | PV = "0.5.0+git${SRCPV}" | ||
10 | SRC_URI = "git://github.com/wertarbyte/${BPN}.git;branch=debian" | ||
8 | 11 | ||
9 | SRC_URI[md5sum] = "77f90a18c775e47c4c5e9e08987ca32f" | 12 | S = "${WORKDIR}/git" |
10 | SRC_URI[sha256sum] = "9150bafbf7f2de7d57e6cc154676c33da98dc11ac6442e1ca57e5dce82bd4292" | ||
11 | |||
12 | S = "${WORKDIR}/${PN}-debian-${PV}-1" | ||
13 | 13 | ||
14 | inherit autotools-brokensep pkgconfig update-rc.d systemd | 14 | inherit autotools-brokensep pkgconfig update-rc.d systemd |
15 | 15 | ||
@@ -21,12 +21,12 @@ INITSCRIPT_PARAMS = "defaults" | |||
21 | SYSTEMD_SERVICE_${PN} = "triggerhappy.service triggerhappy.socket" | 21 | SYSTEMD_SERVICE_${PN} = "triggerhappy.service triggerhappy.socket" |
22 | 22 | ||
23 | FILES_${PN} = "\ | 23 | FILES_${PN} = "\ |
24 | ${sbindir}/thd \ | 24 | ${sbindir}/thd \ |
25 | ${sbindir}/th-cmd \ | 25 | ${sbindir}/th-cmd \ |
26 | ${sysconfdir}/triggerhappy/triggers.d \ | 26 | ${sysconfdir}/triggerhappy/triggers.d \ |
27 | ${nonarch_base_libdir}/udev/rules.d/80-triggerhappy.rules \ | 27 | ${nonarch_base_libdir}/udev/rules.d/80-triggerhappy.rules \ |
28 | ${sysconfdir}/init.d/triggerhappy \ | 28 | ${sysconfdir}/init.d/triggerhappy \ |
29 | ${systemd_unitdir}/system \ | 29 | ${systemd_unitdir}/system \ |
30 | " | 30 | " |
31 | CONFFILES_${PN} = "${sysconfdir}/udev/rules.d/80-triggerhappy.rules" | 31 | CONFFILES_${PN} = "${sysconfdir}/udev/rules.d/80-triggerhappy.rules" |
32 | 32 | ||