Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/sen/
Date: Thu, 10 Sep 2020 05:14:58
Message-Id: 1599714888.35f46741a6ce045a46b3761ecdd4525252ef5c3d.polynomial-c@gentoo
1 commit: 35f46741a6ce045a46b3761ecdd4525252ef5c3d
2 Author: Nelo-T. Wallus <nelo <AT> wallus <DOT> de>
3 AuthorDate: Sat Sep 5 09:56:47 2020 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 10 05:14:48 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35f46741
7
8 app-emulation/sen: Patch bump to 0.6.1_p20200903
9
10 Bug: https://bugs.gentoo.org/718214
11 Package-Manager: Portage-3.0.5, Repoman-2.3.23
12 Signed-off-by: Nelo-T. Wallus <nelo <AT> wallus.de>
13 Closes: https://github.com/gentoo/gentoo/pull/17423
14 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
15
16 app-emulation/sen/Manifest | 1 +
17 app-emulation/sen/sen-0.6.1_p20200905.ebuild | 41 ++++++++++++++++++++++++++++
18 2 files changed, 42 insertions(+)
19
20 diff --git a/app-emulation/sen/Manifest b/app-emulation/sen/Manifest
21 index df3d6785fdc..7618cbd5460 100644
22 --- a/app-emulation/sen/Manifest
23 +++ b/app-emulation/sen/Manifest
24 @@ -1,2 +1,3 @@
25 DIST sen-0.6.0.tar.gz 55113 BLAKE2B 5f6affbea94005c0adc9ac544d40d94cd9a9eca930b979c19174d21d73fdd887d21802a5241c02ba212a45c4a7873f22c7372aeb69955e1f97e444ef74d91929 SHA512 5573a0d6da5ae395e947bf34c54313e4e3a0251dc1868c52bbfe9ad11463397da83a0c9ac3f1912da2e6f49341c84d40dcab900d41b4a32ebac44d1dde3ac82b
26 DIST sen-0.6.1.tar.gz 55357 BLAKE2B 0d58f0ea11eeff29161925018425c918b3260c754d1b658e2ebd3c88e0c371feb0f1815af61979206bee529c369a90ace895d25e645ef0d76c563abd8b74c943 SHA512 2f1cadf745ca7e12d3e92534e76984072b9678055b9911f76b1a6d3cbd43266ad1eeb4d5e7bb8742db91c4da4aef684fa644c33de6fa2494c37688e9747e0efa
27 +DIST sen-0.6.1_p20200905.tar.gz 1913978 BLAKE2B 189bff583770265de29ca3e54cad1283051c05eccab4fc98160801e50b31376188c52e49b43972292fe231b376ba42879fb34d7b1ae70c2246d676a6e25f670b SHA512 cd1899c1b4c5c7cf7f1f2f5e557bd609a7d7619dbc3fc6457f5ef5ce5c9ab43d92a6fbfa228c43d543d4f46c7928d74dbed9ab8346cabc772c8e7c63a7c07bfe
28
29 diff --git a/app-emulation/sen/sen-0.6.1_p20200905.ebuild b/app-emulation/sen/sen-0.6.1_p20200905.ebuild
30 new file mode 100644
31 index 00000000000..785fd0d41f7
32 --- /dev/null
33 +++ b/app-emulation/sen/sen-0.6.1_p20200905.ebuild
34 @@ -0,0 +1,41 @@
35 +# Copyright 1999-2020 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +PYTHON_COMPAT=( python3_{7,8} )
41 +
42 +inherit distutils-r1
43 +
44 +COMMIT="02e5872ee2905861e1da06ab5174e1a3f41f0e0b"
45 +
46 +DESCRIPTION="Terminal User Interface for docker engine"
47 +HOMEPAGE="https://github.com/TomasTomecek/sen"
48 +SRC_URI="https://github.com/TomasTomecek/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
49 +S="${WORKDIR}/${PN}-${COMMIT}"
50 +
51 +LICENSE="MIT"
52 +SLOT="0"
53 +KEYWORDS="~amd64"
54 +IUSE="test"
55 +RESTRICT="!test? ( test )"
56 +
57 +RDEPEND="dev-python/urwid[${PYTHON_USEDEP}]
58 + dev-python/urwidtrees[${PYTHON_USEDEP}]
59 + dev-python/docker-py[${PYTHON_USEDEP}]
60 + "
61 +DEPEND="${RDEPEND}
62 + test? (
63 + dev-python/pytest[${PYTHON_USEDEP}]
64 + dev-python/flexmock[${PYTHON_USEDEP}]
65 + )
66 + "
67 +
68 +python_install_all() {
69 + distutils-r1_python_install_all
70 + dodoc -r docs
71 +}
72 +
73 +python_test() {
74 + pytest -vv tests || die "pytest failed"
75 +}