Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/byobu/
Date: Fri, 01 Jan 2021 00:00:43
Message-Id: 1609459236.8558e3c8f373126516caeeb6865a3f0bcc5c2ba2.sam@gentoo
1 commit: 8558e3c8f373126516caeeb6865a3f0bcc5c2ba2
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 31 23:25:18 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 1 00:00:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8558e3c8
7
8 app-misc/byobu: bump to 5.133
9
10 Package-Manager: Portage-3.0.9, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 app-misc/byobu/Manifest | 1 +
14 app-misc/byobu/byobu-5.133.ebuild | 48 +++++++++++++++++++++++++++++++++++++++
15 2 files changed, 49 insertions(+)
16
17 diff --git a/app-misc/byobu/Manifest b/app-misc/byobu/Manifest
18 index 19a51267e2a..a944587036d 100644
19 --- a/app-misc/byobu/Manifest
20 +++ b/app-misc/byobu/Manifest
21 @@ -1 +1,2 @@
22 DIST byobu_5.130.orig.tar.gz 761162 BLAKE2B 8ad45f3f8cba9435638aced30022e67e927288ac7f7bcea7d464d248a3fa0edddf4716bf782d790b8ea75d249e86f19acb76aa706c875f525f1b3b1ae9c47321 SHA512 dae3d0de3f1a65e5f3a647c1135ecf89261bf2518fea44bb49e00109ba5e1e5a8939206bb85d97f45fa01482438b3bfcb6f9ddd03dbaa1a8caca807f95b279cf
23 +DIST byobu_5.133.orig.tar.gz 761655 BLAKE2B 796cfe22ba60a8cfe41ca6570e4c7f265dd249e7767086341903da7862037f39b1f49434b6dae36d12d82df1ee34306b815ff3f8e703eeedab79cf02e8d86a7d SHA512 4c0ef7a3b483e48c57f3e97dae1c7c77084797016efb677b201f2b56c6b9f4b771739d9a6d9a4fb612203a22e9fa460db80fde30c837b102ad830b1b2919db6c
24
25 diff --git a/app-misc/byobu/byobu-5.133.ebuild b/app-misc/byobu/byobu-5.133.ebuild
26 new file mode 100644
27 index 00000000000..f3913e0aafd
28 --- /dev/null
29 +++ b/app-misc/byobu/byobu-5.133.ebuild
30 @@ -0,0 +1,48 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{6,7,8,9} )
37 +
38 +inherit python-single-r1
39 +
40 +DESCRIPTION="A set of profiles for the GNU Screen console window manager (app-misc/screen)"
41 +HOMEPAGE="https://byobu.org"
42 +SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P/-/_}.orig.tar.gz"
43 +
44 +LICENSE="GPL-3"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm64 ~x86"
47 +IUSE="screen"
48 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
49 +
50 +RDEPEND="${PYTHON_DEPS}
51 + $(python_gen_cond_dep 'dev-libs/newt[${PYTHON_MULTI_USEDEP}]')
52 + screen? ( app-misc/screen )
53 + !screen? ( app-misc/tmux )"
54 +
55 +src_prepare() {
56 + default
57 +
58 + python_fix_shebang .
59 +
60 + # Set default system backend to screen
61 + if use screen ; then
62 + sed -i -e 's/#\(BYOBU_BACKEND\).*/\1="screen"/' etc/byobu/backend || die
63 + fi
64 +}
65 +
66 +src_install() {
67 + default
68 +
69 + # It's easier than forcing autoconf
70 + mv "${ED}/usr/share/doc/${PN}/"* "${ED}/usr/share/doc/${PF}/" || die
71 + rmdir "${ED}/usr/share/doc/${PN}" || die
72 +
73 + # Create symlinks for backends
74 + dosym ${PN} /usr/bin/${PN}-screen
75 + dosym ${PN} /usr/bin/${PN}-tmux
76 +
77 + docompress -x /usr/share/doc/${PN}
78 +}