Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/tmux/
Date: Fri, 28 Sep 2018 00:53:04
Message-Id: 1538095958.6c4bd52f95237c9ebfcc4b99346524dffbb716c5.chutzpah@gentoo
1 commit: 6c4bd52f95237c9ebfcc4b99346524dffbb716c5
2 Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 28 00:52:38 2018 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 28 00:52:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c4bd52f
7
8 app-misc/tmux: Version bump to 2.8
9
10 Package-Manager: Portage-2.3.50, Repoman-2.3.11
11
12 app-misc/tmux/Manifest | 1 +
13 app-misc/tmux/tmux-2.8.ebuild | 87 +++++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 88 insertions(+)
15
16 diff --git a/app-misc/tmux/Manifest b/app-misc/tmux/Manifest
17 index 2871890799a..1e01240cc5a 100644
18 --- a/app-misc/tmux/Manifest
19 +++ b/app-misc/tmux/Manifest
20 @@ -1,4 +1,5 @@
21 DIST tmux-2.6.tar.gz 481000 BLAKE2B adbd276261f3f4be9d67c6c0fbad28a90eabbecfa68ebbc104fe56acaa9b7bd005060b854ce0a0e669fdf41dd058bfa8450a85a78f71f7248a44d25458f7d3bc SHA512 20a1ae8b8494c5b42757902322f3877731c2cc330c9c00f097a317785d25252b7ebaa8bbab9fc17843299e80cb2914aaac0a664715a85c50f7ea489d23753832
22 DIST tmux-2.7.tar.gz 487585 BLAKE2B 9c56da03bd12b358fcbed82def9680c34e1e485f906cf9b90a501e53b109c43d1ee843972d26e677de2c34830e599edee022dc1c17e1e5c935ed232caacb2b01 SHA512 7839ef748ea55df8c02c727047f65bd235b5e3b8ab23157246071e1b9954fa269594da9fbd0fabf6a850e3b5dfda962a0a067c1507411c92a84d1db2666ecf37
23 +DIST tmux-2.8.tar.gz 637609 BLAKE2B d95fbdbc79c2c512908f82778816aa8540bf2fe26509c91f46c8c64c8c13c9ea41487e3a816cc11274d4cc2868d16622c87efe978a65b08201c9a1c48e3c8c4b SHA512 d938854994e77f7941a31db79e25706150253feeba5e655a8fa853864e3073d2ee0ea218f972e7c7b9c814d8e8c63c2d9ef9b70ed1c6f8e993a900add4b995b5
24 DIST tmux-bash-completion-678a27616b70c649c6701cae9cd8c92b58cc051b 458 BLAKE2B 04143e6d1cfbbd467f1656f949363cb7a4a3e16e9b3cf56b8b0423babe56276abee2622964cb490005fc76d1cbe12201fb1a6446a6f860c2cc1ff3c9bd5fc496 SHA512 fe0aca7d03067af87e0788a2fa902c7ef5500ba72295cb63c5a1814534a008c224256d7f890ac1af6d17f3734b45148765e1632f075e284c453185df2927b979
25 DIST tmux.vim-95f6126c187667cc7f9c573c45c3b356cf69f4ca 5626 BLAKE2B dd22713fee56e3dadd573c888ab17561879f756df369cdbe552e052842f527c5310c6cd46342ccd3e3e01835d0f616f4ecb202567674dc4809bc08253ad66bea SHA512 956b2c1ca08e3c92aa39c9df54fbe1c661d0e076c91628c4b88f81f97104241b6505412fa0e21a681adc231eb2e6e7feee850474d4277812d186548bbb05f6d1
26
27 diff --git a/app-misc/tmux/tmux-2.8.ebuild b/app-misc/tmux/tmux-2.8.ebuild
28 new file mode 100644
29 index 00000000000..7200f8e5b51
30 --- /dev/null
31 +++ b/app-misc/tmux/tmux-2.8.ebuild
32 @@ -0,0 +1,87 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit autotools flag-o-matic
39 +
40 +DESCRIPTION="Terminal multiplexer"
41 +HOMEPAGE="https://tmux.github.io/"
42 +SRC_URI="https://github.com/tmux/tmux/releases/download/$(ver_cut 1-2)/${P}.tar.gz"
43 +SRC_URI="https://github.com/tmux/tmux/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="ISC"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
48 +IUSE="debug selinux utempter vim-syntax kernel_FreeBSD kernel_linux"
49 +
50 +CDEPEND="
51 + dev-libs/libevent:0=
52 + sys-libs/ncurses:0=
53 + utempter? (
54 + kernel_linux? ( sys-libs/libutempter )
55 + kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-lib-9.0 sys-libs/libutempter ) )
56 + )
57 +"
58 +DEPEND="${CDEPEND}
59 + virtual/pkgconfig"
60 +RDEPEND="${CDEPEND}
61 + selinux? ( sec-policy/selinux-screen )
62 + vim-syntax? (
63 + || (
64 + app-editors/vim
65 + app-editors/gvim
66 + )
67 + )"
68 +
69 +DOCS=( CHANGES README TODO )
70 +
71 +S="${WORKDIR}/${P/_/-}"
72 +
73 +PATCHES=(
74 + "${FILESDIR}"/${PN}-2.4-flags.patch
75 +
76 + # usptream fixes (can be removed with next version bump)
77 +)
78 +
79 +src_prepare() {
80 + # bug 438558
81 + # 1.7 segfaults when entering copy mode if compiled with -Os
82 + replace-flags -Os -O2
83 +
84 + default
85 +
86 + eautoreconf
87 +}
88 +
89 +src_configure() {
90 + local myeconfargs=(
91 + --sysconfdir="${EPREFIX}"/etc
92 + $(use_enable debug)
93 + $(use_enable utempter)
94 + )
95 + econf "${myeconfargs[@]}"
96 +}
97 +
98 +src_install() {
99 + default
100 +
101 + einstalldocs
102 +
103 + dodoc example_tmux.conf
104 + docompress -x /usr/share/doc/${PF}/example_tmux.conf
105 +}
106 +
107 +pkg_postinst() {
108 + if ! ver_test 1.9a -ge ${REPLACING_VERSIONS:-1.9a}; then
109 + echo
110 + ewarn "Some configuration options changed in this release."
111 + ewarn "Please read the CHANGES file in /usr/share/doc/${PF}/"
112 + ewarn
113 + ewarn "WARNING: After updating to ${P} you will _not_ be able to connect to any"
114 + ewarn "older, running tmux server instances. You'll have to use an existing client to"
115 + ewarn "end your old sessions or kill the old server instances. Otherwise you'll have"
116 + ewarn "to temporarily downgrade to access them."
117 + echo
118 + fi
119 +}