Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: app-editors/amp/
Date: Thu, 20 Jan 2022 19:21:21
Message-Id: 1642446501.365227ca42f31063ade3d4e2ea149b74eee3e877.andrewammerlaan@gentoo
1 commit: 365227ca42f31063ade3d4e2ea149b74eee3e877
2 Author: Luciano Degni <degni.public <AT> gmail <DOT> com>
3 AuthorDate: Mon Jan 17 19:08:21 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 17 19:08:21 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=365227ca
7
8 app-editors/amp: enable py3.7, py3.9 and disable py3.10
9
10 Signed-off-by: Luciano Degni <degni.public <AT> gmail.com>
11
12 app-editors/amp/amp-0.6.2.ebuild | 14 +++++++-------
13 1 file changed, 7 insertions(+), 7 deletions(-)
14
15 diff --git a/app-editors/amp/amp-0.6.2.ebuild b/app-editors/amp/amp-0.6.2.ebuild
16 index 3872f8a6a..044b19405 100644
17 --- a/app-editors/amp/amp-0.6.2.ebuild
18 +++ b/app-editors/amp/amp-0.6.2.ebuild
19 @@ -3,7 +3,7 @@
20
21 EAPI=8
22
23 -PYTHON_COMPAT=( python{3_8,3_10} )
24 +PYTHON_COMPAT=( python3_{7,8,9} )
25
26 CRATES="
27 aho-corasick-0.5.3
28 @@ -169,7 +169,7 @@ CRATES="
29 yaml-rust-0.4.0
30 "
31
32 -inherit cargo python-utils-r1
33 +inherit cargo python-utils-r1
34
35 DESCRIPTION="A complete text editor for your terminal."
36 HOMEPAGE="https://github.com/jmacdonald/amp"
37 @@ -193,7 +193,7 @@ RDEPEND="
38 BDEPEND="
39 ${DEPEND}
40 ${PYTHON_DEPS}
41 - dev-vcs/git
42 + dev-vcs/git
43 >=dev-lang/rust-1.53.0
44 dev-util/cmake
45 "
46 @@ -201,7 +201,7 @@ BDEPEND="
47 QA_FLAGS_IGNORED="usr/bin/.*"
48
49 src_configure() {
50 - cargo_src_configure
51 + cargo_src_configure
52 }
53
54 src_compile() {
55 @@ -210,8 +210,8 @@ src_compile() {
56
57 src_install() {
58 if use doc; then
59 - dodoc LICENSE README.md CHANGELOG.md
60 - dodoc -r documentation
61 + local DOCS=( LICENSE README.md CHANGELOG.md documentation/* )
62 + einstalldocs -r
63 fi
64 dobin target/release/amp
65 -}
66 +}
67 \ No newline at end of file