diff options
author | Paul Barker <pbarker@toganlabs.com> | 2017-11-05 22:07:31 +0000 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2017-11-15 16:34:06 -0800 |
commit | c80401b416863e14a9122ae36e014c821e178028 (patch) | |
tree | be1374e8732a4257b89e6d53bddc24ce55d7c11e | |
parent | bcf2c8fe6e4de4324c8aaf0c27cfad2b13fd93d6 (diff) | |
download | meta-openembedded-c80401b416863e14a9122ae36e014c821e178028.tar.gz |
tmux: Update to v2.6
We can also switch to using a release archive.
The license checksum change is due to a change in the author's email address.
Signed-off-by: Paul Barker <pbarker@toganlabs.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-oe/recipes-extended/tmux/tmux_2.1.bb | 21 | ||||
-rw-r--r-- | meta-oe/recipes-extended/tmux/tmux_2.6.bb | 23 |
2 files changed, 23 insertions, 21 deletions
diff --git a/meta-oe/recipes-extended/tmux/tmux_2.1.bb b/meta-oe/recipes-extended/tmux/tmux_2.1.bb deleted file mode 100644 index bf21de5b1..000000000 --- a/meta-oe/recipes-extended/tmux/tmux_2.1.bb +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | SUMMARY = "Terminal multiplexer" | ||
2 | HOMEPAGE = "http://tmux.sourceforge.net" | ||
3 | SECTION = "console/utils" | ||
4 | |||
5 | LICENSE = "ISC" | ||
6 | LIC_FILES_CHKSUM = "file://tmux.c;beginline=3;endline=17;md5=8685b4455330a940fab1ff451aa941a0" | ||
7 | |||
8 | DEPENDS = "ncurses libevent" | ||
9 | |||
10 | |||
11 | SRC_URI = "git://github.com/tmux/tmux.git;branch=master" | ||
12 | SRCREV ?= "310f0a960ca64fa3809545badc629c0c166c6cd2" | ||
13 | |||
14 | S = "${WORKDIR}/git" | ||
15 | B = "${WORKDIR}/build" | ||
16 | |||
17 | inherit autotools pkgconfig | ||
18 | |||
19 | PACKAGECONFIG ??= "" | ||
20 | PACKAGECONFIG[utempter] = "ac_cv_header_utempter_h=yes,ac_cv_header_utempter_h=no,libutempter," | ||
21 | |||
diff --git a/meta-oe/recipes-extended/tmux/tmux_2.6.bb b/meta-oe/recipes-extended/tmux/tmux_2.6.bb new file mode 100644 index 000000000..fba5156f6 --- /dev/null +++ b/meta-oe/recipes-extended/tmux/tmux_2.6.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | SUMMARY = "Terminal multiplexer" | ||
2 | HOMEPAGE = "http://tmux.sourceforge.net" | ||
3 | SECTION = "console/utils" | ||
4 | |||
5 | LICENSE = "ISC" | ||
6 | LIC_FILES_CHKSUM = "file://tmux.c;beginline=3;endline=17;md5=f256b76d52e7b4d02bf19144bdaca107" | ||
7 | |||
8 | DEPENDS = "ncurses libevent" | ||
9 | |||
10 | SRC_URI = "https://github.com/tmux/tmux/releases/download/${PV}/tmux-${PV}.tar.gz" | ||
11 | SRC_URI[md5sum] = "d541ff392249f94c4f3635793556f827" | ||
12 | SRC_URI[sha256sum] = "b17cd170a94d7b58c0698752e1f4f263ab6dc47425230df7e53a6435cc7cd7e8" | ||
13 | |||
14 | inherit autotools pkgconfig | ||
15 | |||
16 | PACKAGECONFIG ??= "" | ||
17 | PACKAGECONFIG[utempter] = "ac_cv_header_utempter_h=yes,ac_cv_header_utempter_h=no,libutempter," | ||
18 | |||
19 | do_configure_prepend() { | ||
20 | # The 'compat' directory is needed for output during the build but it's | ||
21 | # not automatically created when building outside the source directory. | ||
22 | mkdir ${B}/compat | ||
23 | } | ||