Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/byobu/
Date: Sun, 09 Feb 2020 16:11:16
Message-Id: 1581264648.9f58830f7d854891e3aa42439669149b02cdac34.mgorny@gentoo
1 commit: 9f58830f7d854891e3aa42439669149b02cdac34
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 7 09:40:42 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 9 16:10:48 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f58830f
7
8 app-misc/byobu: Switch to PYTHON_MULTI_USEDEP API
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-misc/byobu/{byobu-5.123.ebuild => byobu-5.123-r1.ebuild} | 6 ++++--
13 app-misc/byobu/byobu-5.124.ebuild | 6 ++++--
14 app-misc/byobu/byobu-5.125.ebuild | 6 ++++--
15 app-misc/byobu/byobu-5.129.ebuild | 6 ++++--
16 app-misc/byobu/{byobu-5.130.ebuild => byobu-5.130-r1.ebuild} | 4 +++-
17 5 files changed, 19 insertions(+), 9 deletions(-)
18
19 diff --git a/app-misc/byobu/byobu-5.123.ebuild b/app-misc/byobu/byobu-5.123-r1.ebuild
20 similarity index 89%
21 rename from app-misc/byobu/byobu-5.123.ebuild
22 rename to app-misc/byobu/byobu-5.123-r1.ebuild
23 index 33c36ce0cdc..058f7590d89 100644
24 --- a/app-misc/byobu/byobu-5.123.ebuild
25 +++ b/app-misc/byobu/byobu-5.123-r1.ebuild
26 @@ -1,4 +1,4 @@
27 -# Copyright 1999-2017 Gentoo Foundation
28 +# Copyright 1999-2020 Gentoo Authors
29 # Distributed under the terms of the GNU General Public License v2
30
31 EAPI=6
32 @@ -17,7 +17,9 @@ IUSE="screen"
33 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
34
35 RDEPEND="${PYTHON_DEPS}
36 - dev-libs/newt[${PYTHON_USEDEP}]
37 + $(python_gen_cond_dep '
38 + dev-libs/newt[${PYTHON_MULTI_USEDEP}]
39 + ')
40 screen? ( app-misc/screen )
41 !screen? ( app-misc/tmux )"
42
43
44 diff --git a/app-misc/byobu/byobu-5.124.ebuild b/app-misc/byobu/byobu-5.124.ebuild
45 index f67cbf99d55..b8e2216b67c 100644
46 --- a/app-misc/byobu/byobu-5.124.ebuild
47 +++ b/app-misc/byobu/byobu-5.124.ebuild
48 @@ -1,4 +1,4 @@
49 -# Copyright 1999-2017 Gentoo Foundation
50 +# Copyright 1999-2020 Gentoo Authors
51 # Distributed under the terms of the GNU General Public License v2
52
53 EAPI=6
54 @@ -17,7 +17,9 @@ IUSE="screen"
55 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
56
57 RDEPEND="${PYTHON_DEPS}
58 - dev-libs/newt[${PYTHON_USEDEP}]
59 + $(python_gen_cond_dep '
60 + dev-libs/newt[${PYTHON_MULTI_USEDEP}]
61 + ')
62 screen? ( app-misc/screen )
63 !screen? ( app-misc/tmux )"
64
65
66 diff --git a/app-misc/byobu/byobu-5.125.ebuild b/app-misc/byobu/byobu-5.125.ebuild
67 index d3b11ec6f89..b8e2216b67c 100644
68 --- a/app-misc/byobu/byobu-5.125.ebuild
69 +++ b/app-misc/byobu/byobu-5.125.ebuild
70 @@ -1,4 +1,4 @@
71 -# Copyright 1999-2018 Gentoo Foundation
72 +# Copyright 1999-2020 Gentoo Authors
73 # Distributed under the terms of the GNU General Public License v2
74
75 EAPI=6
76 @@ -17,7 +17,9 @@ IUSE="screen"
77 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
78
79 RDEPEND="${PYTHON_DEPS}
80 - dev-libs/newt[${PYTHON_USEDEP}]
81 + $(python_gen_cond_dep '
82 + dev-libs/newt[${PYTHON_MULTI_USEDEP}]
83 + ')
84 screen? ( app-misc/screen )
85 !screen? ( app-misc/tmux )"
86
87
88 diff --git a/app-misc/byobu/byobu-5.129.ebuild b/app-misc/byobu/byobu-5.129.ebuild
89 index ccb44bcb818..2719fbfec1c 100644
90 --- a/app-misc/byobu/byobu-5.129.ebuild
91 +++ b/app-misc/byobu/byobu-5.129.ebuild
92 @@ -1,4 +1,4 @@
93 -# Copyright 1999-2019 Gentoo Authors
94 +# Copyright 1999-2020 Gentoo Authors
95 # Distributed under the terms of the GNU General Public License v2
96
97 EAPI=7
98 @@ -17,7 +17,9 @@ IUSE="screen"
99 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
100
101 RDEPEND="${PYTHON_DEPS}
102 - dev-libs/newt[${PYTHON_USEDEP}]
103 + $(python_gen_cond_dep '
104 + dev-libs/newt[${PYTHON_MULTI_USEDEP}]
105 + ')
106 screen? ( app-misc/screen )
107 !screen? ( app-misc/tmux )"
108
109
110 diff --git a/app-misc/byobu/byobu-5.130.ebuild b/app-misc/byobu/byobu-5.130-r1.ebuild
111 similarity index 92%
112 rename from app-misc/byobu/byobu-5.130.ebuild
113 rename to app-misc/byobu/byobu-5.130-r1.ebuild
114 index 9a6ddebbb40..59b72cc7ec6 100644
115 --- a/app-misc/byobu/byobu-5.130.ebuild
116 +++ b/app-misc/byobu/byobu-5.130-r1.ebuild
117 @@ -17,7 +17,9 @@ IUSE="screen"
118 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
119
120 RDEPEND="${PYTHON_DEPS}
121 - dev-libs/newt[${PYTHON_USEDEP}]
122 + $(python_gen_cond_dep '
123 + dev-libs/newt[${PYTHON_MULTI_USEDEP}]
124 + ')
125 screen? ( app-misc/screen )
126 !screen? ( app-misc/tmux )"