Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
Date: Thu, 26 Apr 2018 01:08:51
Message-Id: 1524704876.4fa1af7b447d2beb81a1d6b8f2ab9b44d6b32745.mrueg@gentoo
1 commit: 4fa1af7b447d2beb81a1d6b8f2ab9b44d6b32745
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 26 01:07:56 2018 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 26 01:07:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fa1af7b
7
8 app-shells/thefuck: Version bump to 3.26
9
10 Package-Manager: Portage-2.3.31, Repoman-2.3.9
11
12 app-shells/thefuck/Manifest | 1 +
13 app-shells/thefuck/thefuck-3.26.ebuild | 41 ++++++++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
17 index ba5e4489595..9ecc9ce95de 100644
18 --- a/app-shells/thefuck/Manifest
19 +++ b/app-shells/thefuck/Manifest
20 @@ -1,2 +1,3 @@
21 DIST thefuck-3.24.tar.gz 1360450 BLAKE2B 38a4a0484220eb92e75d164958f7a1db9d3828268a352da7a99ea79487869a39c88cdb65a315a49f71cd70a8d3ce488b1b692c241dff7329fc27c16ba33ce81f SHA512 d4949ea723cf3b080f2fbe269d0cafe3d0266089fa8cc515b3b9376b2004c045be82716cd219741a60a0e99c20575adb92339a879467f709f7ca03dcc71a5c2d
22 DIST thefuck-3.25.tar.gz 1362279 BLAKE2B 52b3f1c8756b6981c0528fd77c18256957dd5d628ea37801b9c9abf6114e1cef8af53d9d1dd50fc7c88fad7bd628dc8373aa70dbc6933c07c63b7da31eb5d95a SHA512 c7b215358c09e1fa5e6aae519e7d6c3fd50027b4c72bb1c128786cd2cff707196f2b9b2a23dfed34d841874caab9463791e82c9083f6aac9c90f26d12a4d4598
23 +DIST thefuck-3.26.tar.gz 1365778 BLAKE2B 3266fc5a1e351df1ccd13bfb6def6254194a05a94c7bf2bdcafb9c75414fce23b479eb1ac866333e8aef7d51bc609fc00aad8508e4cf0f0d959632744330e734 SHA512 2dbcc7ba0adb24b3f7d80d0c575a4ed515508e0ab5bc2fc4eb9ba82ad36325af1784eb9c241794ce0e038ed8e99042eb21cc3b29eeaa273517aebc7205ab787f
24
25 diff --git a/app-shells/thefuck/thefuck-3.26.ebuild b/app-shells/thefuck/thefuck-3.26.ebuild
26 new file mode 100644
27 index 00000000000..09a7b70b6e7
28 --- /dev/null
29 +++ b/app-shells/thefuck/thefuck-3.26.ebuild
30 @@ -0,0 +1,41 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python3_{4,5,6} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Magnificent app which corrects your previous console command"
41 +HOMEPAGE="https://github.com/nvbn/thefuck"
42 +SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="test"
48 +
49 +RDEPEND="
50 + dev-python/psutil[${PYTHON_USEDEP}]
51 + dev-python/six[${PYTHON_USEDEP}]
52 + dev-python/decorator[${PYTHON_USEDEP}]
53 + dev-python/colorama[${PYTHON_USEDEP}]
54 + dev-python/pyte[${PYTHON_USEDEP}]"
55 +DEPEND="
56 + dev-python/setuptools[${PYTHON_USEDEP}]
57 + test? (
58 + ${RDEPEND}
59 + dev-python/pytest[${PYTHON_USEDEP}]
60 + dev-python/pytest-mock[${PYTHON_USEDEP}]
61 + )"
62 +
63 +python_prepare_all() {
64 + sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
65 +
66 + distutils-r1_python_prepare_all
67 +}
68 +
69 +python_test() {
70 + py.test || die
71 +}