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: Wed, 01 May 2019 17:20:31
Message-Id: 1556731214.145ec779b606f28f12df03f2caa2852a54320f6f.chutzpah@gentoo
1 commit: 145ec779b606f28f12df03f2caa2852a54320f6f
2 Author: Patrick McLean <patrick.mclean <AT> sony <DOT> com>
3 AuthorDate: Wed May 1 17:19:55 2019 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Wed May 1 17:20:14 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=145ec779
7
8 app-misc/tmux: Version bump to 2.9a
9
10 Copyright: Sony Interactive Entertainment Inc.
11 Package-Manager: Portage-2.3.66, Repoman-2.3.12
12 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
13
14 app-misc/tmux/Manifest | 1 +
15 app-misc/tmux/tmux-2.9a.ebuild | 88 ++++++++++++++++++++++++++++++++++++++++++
16 2 files changed, 89 insertions(+)
17
18 diff --git a/app-misc/tmux/Manifest b/app-misc/tmux/Manifest
19 index dbd8c00437e..6d45c6d4186 100644
20 --- a/app-misc/tmux/Manifest
21 +++ b/app-misc/tmux/Manifest
22 @@ -1,4 +1,5 @@
23 DIST tmux-2.7.tar.gz 487585 BLAKE2B 9c56da03bd12b358fcbed82def9680c34e1e485f906cf9b90a501e53b109c43d1ee843972d26e677de2c34830e599edee022dc1c17e1e5c935ed232caacb2b01 SHA512 7839ef748ea55df8c02c727047f65bd235b5e3b8ab23157246071e1b9954fa269594da9fbd0fabf6a850e3b5dfda962a0a067c1507411c92a84d1db2666ecf37
24 DIST tmux-2.8.tar.gz 491195 BLAKE2B 1dde20282f84a32647ebb26cdd2346f8870670f904cb06c293218f9db389ded316449f7870805d6d9c1cbb417890ace5e3c36c533bf64818b219f3265b9d2dfd SHA512 e382aec122a10624953432b3c869b21d69390bc2e7d459440a46950802e39503eafb398178f8085191261925e4f0872bb99b19e0403e7beb56d3ceecc4c86b09
25 DIST tmux-2.9.tar.gz 510966 BLAKE2B 63d4fe671afc00792eae4358c0833854cb5202a4f9aab6deaec9f3f459b0786d2d966294478ab2015a8d8d88d1815385422e1bd311d9211f88e130762fe4b770 SHA512 a712da19ebea240bafb3e8b0bf313baec6f2e6c6e32babac1221a0fbaaf4da82cd8cad4e6cf3da1e277ddc830b5405d104ca69b278627d3db5d0e4439d4896b3
26 +DIST tmux-2.9a.tar.gz 510915 BLAKE2B 6a3dcdb66419fdd40818c18c3a16adf83fa67b3f5d4cc60953b64d62d2e3e139cad0612eef4233d3d5fa76aaae93e437c8394aa118791c87cb0670f1ddc65eae SHA512 aca6882688727c10c5647443fdd18bbd6c0f80b7a3bf9667903d1b89d523e604cd715f176f33f2e5673258f00e626a6dc273f80fe97ae4f91621814d89985713
27 DIST tmux-bash-completion-678a27616b70c649c6701cae9cd8c92b58cc051b 458 BLAKE2B 04143e6d1cfbbd467f1656f949363cb7a4a3e16e9b3cf56b8b0423babe56276abee2622964cb490005fc76d1cbe12201fb1a6446a6f860c2cc1ff3c9bd5fc496 SHA512 fe0aca7d03067af87e0788a2fa902c7ef5500ba72295cb63c5a1814534a008c224256d7f890ac1af6d17f3734b45148765e1632f075e284c453185df2927b979
28
29 diff --git a/app-misc/tmux/tmux-2.9a.ebuild b/app-misc/tmux/tmux-2.9a.ebuild
30 new file mode 100644
31 index 00000000000..dedce499ebd
32 --- /dev/null
33 +++ b/app-misc/tmux/tmux-2.9a.ebuild
34 @@ -0,0 +1,88 @@
35 +# Copyright 1999-2019 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +inherit autotools flag-o-matic
41 +
42 +DESCRIPTION="Terminal multiplexer"
43 +HOMEPAGE="https://tmux.github.io/"
44 +if [[ "${PV}" == 9999 ]] ; then
45 + inherit git-r3
46 + SRC_URI="https://raw.githubusercontent.com/przepompownia/tmux-bash-completion/678a27616b70c649c6701cae9cd8c92b58cc051b/completions/tmux -> tmux-bash-completion-678a27616b70c649c6701cae9cd8c92b58cc051b"
47 + EGIT_REPO_URI="https://github.com/tmux/tmux.git"
48 +else
49 + SRC_URI="https://github.com/tmux/tmux/releases/download/${PV}/${P/_/-}.tar.gz"
50 + [[ "${PV}" == *_rc* ]] || \
51 + 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"
52 + S="${WORKDIR}/${P/_/-}"
53 +fi
54 +
55 +LICENSE="ISC"
56 +SLOT="0"
57 +IUSE="debug selinux utempter vim-syntax kernel_FreeBSD kernel_linux"
58 +
59 +DEPEND="
60 + dev-libs/libevent:0=
61 + sys-libs/ncurses:0=
62 + utempter? (
63 + kernel_linux? ( sys-libs/libutempter )
64 + kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-lib-9.0 sys-libs/libutempter ) )
65 + )"
66 +
67 +BDEPEND="
68 + virtual/pkgconfig"
69 +
70 +RDEPEND="
71 + ${DEPEND}
72 + selinux? ( sec-policy/selinux-screen )
73 + vim-syntax? ( app-vim/vim-tmux )"
74 +
75 +DOCS=( CHANGES README TODO )
76 +
77 +PATCHES=(
78 + "${FILESDIR}/${PN}-2.4-flags.patch"
79 +
80 + # upstream fixes (can be removed with next version bump)
81 +)
82 +
83 +src_prepare() {
84 + # bug 438558
85 + # 1.7 segfaults when entering copy mode if compiled with -Os
86 + replace-flags -Os -O2
87 +
88 + default
89 + eautoreconf
90 +}
91 +
92 +src_configure() {
93 + local myeconfargs=(
94 + --sysconfdir="${EPREFIX}"/etc
95 + $(use_enable debug)
96 + $(use_enable utempter)
97 + )
98 + econf "${myeconfargs[@]}"
99 +}
100 +
101 +src_install() {
102 + default
103 +
104 + einstalldocs
105 +
106 + dodoc example_tmux.conf
107 + docompress -x /usr/share/doc/${PF}/example_tmux.conf
108 +}
109 +
110 +pkg_postinst() {
111 + if ! ver_test 1.9a -ge ${REPLACING_VERSIONS:-1.9a}; then
112 + echo
113 + ewarn "Some configuration options changed in this release."
114 + ewarn "Please read the CHANGES file in /usr/share/doc/${PF}/"
115 + ewarn
116 + ewarn "WARNING: After updating to ${P} you will _not_ be able to connect to any"
117 + ewarn "older, running tmux server instances. You'll have to use an existing client to"
118 + ewarn "end your old sessions or kill the old server instances. Otherwise you'll have"
119 + ewarn "to temporarily downgrade to access them."
120 + echo
121 + fi
122 +}