Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
Date: Sat, 19 Jan 2019 03:35:24
Message-Id: 1547868893.5d169df189e914e1c63cd9ef28df531fc2a0b024.whissi@gentoo
1 commit: 5d169df189e914e1c63cd9ef28df531fc2a0b024
2 Author: Andrew Attali <me <AT> aphypnise <DOT> eu>
3 AuthorDate: Tue Jan 8 09:41:22 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 19 03:34:53 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d169df1
7
8 app-shells/thefuck: bump to 3.28
9
10 Also added python 3.7 as supported version.
11 Taked over the proxy maint as requested by the former.
12
13 Package-Manager: Portage-2.3.54, Repoman-2.3.12
14 Signed-off-by: Andrew Attali <me <AT> aphypnise.eu>
15 Closes: https://github.com/gentoo/gentoo/pull/10775
16 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
17
18 app-shells/thefuck/Manifest | 1 +
19 app-shells/thefuck/metadata.xml | 4 ++--
20 app-shells/thefuck/thefuck-3.28.ebuild | 41 ++++++++++++++++++++++++++++++++++
21 3 files changed, 44 insertions(+), 2 deletions(-)
22
23 diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
24 index 307d8b12f5b..c41029c3faa 100644
25 --- a/app-shells/thefuck/Manifest
26 +++ b/app-shells/thefuck/Manifest
27 @@ -1 +1,2 @@
28 DIST thefuck-3.27.tar.gz 1367120 BLAKE2B a840ac3e8f6807df632948e2fe2789a47bdcfececfd4a9bb0f1836bbaa641501e13c559221b9a2f25bbd93505c8b03db102636e480ece116a42c46f341d5cd35 SHA512 766c589f0e99a9773e74094e91c6a74d00e5be8b7241680ad664ecc3f549b597416bc7a4d289f399ed3a0d9ccad629ed78bb983edc809664c303c687ea1eec1a
29 +DIST thefuck-3.28.tar.gz 1369230 BLAKE2B 0825ead15eae174b08bc2608ff64e1cd5993484a8aa6cc5cd1f6dbb3a856898e7c77eb9d5f92884f01261cf5cc5b00696c6e706a6553ce661866689e3d94d746 SHA512 6c3edcfff604567a18209bf46aceb662ed4549efd0e3b0daee1abee8a93fbe3ff4dfa260eb74c3d560b3a798e3cc90f911072d694a0d986a09c8581e951421d2
30
31 diff --git a/app-shells/thefuck/metadata.xml b/app-shells/thefuck/metadata.xml
32 index e02f8f7384b..302e34ce061 100644
33 --- a/app-shells/thefuck/metadata.xml
34 +++ b/app-shells/thefuck/metadata.xml
35 @@ -2,8 +2,8 @@
36 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
37 <pkgmetadata>
38 <maintainer type="person">
39 - <email>holgersson@××××××.de</email>
40 - <name>Nils Freydank</name>
41 + <email>me@×××××××××.eu</email>
42 + <name>Andrew Attali</name>
43 </maintainer>
44 <maintainer type="project">
45 <email>proxy-maint@g.o</email>
46
47 diff --git a/app-shells/thefuck/thefuck-3.28.ebuild b/app-shells/thefuck/thefuck-3.28.ebuild
48 new file mode 100644
49 index 00000000000..4cd6c3ca4a5
50 --- /dev/null
51 +++ b/app-shells/thefuck/thefuck-3.28.ebuild
52 @@ -0,0 +1,41 @@
53 +# Copyright 1999-2019 Gentoo Authors
54 +# Distributed under the terms of the GNU General Public License v2
55 +
56 +EAPI=7
57 +
58 +PYTHON_COMPAT=( python3_{4,5,6,7} )
59 +
60 +inherit distutils-r1
61 +
62 +DESCRIPTION="Magnificent app which corrects your previous console command"
63 +HOMEPAGE="https://github.com/nvbn/thefuck"
64 +SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
65 +
66 +LICENSE="MIT"
67 +SLOT="0"
68 +KEYWORDS="~amd64 ~x86"
69 +IUSE="test"
70 +
71 +RDEPEND="
72 + dev-python/psutil[${PYTHON_USEDEP}]
73 + dev-python/six[${PYTHON_USEDEP}]
74 + dev-python/decorator[${PYTHON_USEDEP}]
75 + dev-python/colorama[${PYTHON_USEDEP}]
76 + dev-python/pyte[${PYTHON_USEDEP}]"
77 +DEPEND="
78 + dev-python/setuptools[${PYTHON_USEDEP}]
79 + test? (
80 + ${RDEPEND}
81 + dev-python/pytest[${PYTHON_USEDEP}]
82 + dev-python/pytest-mock[${PYTHON_USEDEP}]
83 + )"
84 +
85 +python_prepare_all() {
86 + sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
87 +
88 + distutils-r1_python_prepare_all
89 +}
90 +
91 +python_test() {
92 + py.test -vv || die
93 +}