Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/g-sorcery/
Date: Sat, 09 Feb 2019 20:12:51
Message-Id: 1549743152.3ff945c37f253d63428ecfcd5f4c78f742cb8e63.bman@gentoo
1 commit: 3ff945c37f253d63428ecfcd5f4c78f742cb8e63
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Tue Sep 11 17:34:02 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 9 20:12:32 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ff945c3
7
8 app-portage/g-sorcery: EAPI7, minor improvements
9
10 Closes: https://bugs.gentoo.org/665718
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/9829
13 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
14
15 app-portage/g-sorcery/g-sorcery-9999.ebuild | 10 ++++++----
16 1 file changed, 6 insertions(+), 4 deletions(-)
17
18 diff --git a/app-portage/g-sorcery/g-sorcery-9999.ebuild b/app-portage/g-sorcery/g-sorcery-9999.ebuild
19 index 8425f5282fc..bb8f8a3556e 100644
20 --- a/app-portage/g-sorcery/g-sorcery-9999.ebuild
21 +++ b/app-portage/g-sorcery/g-sorcery-9999.ebuild
22 @@ -1,7 +1,7 @@
23 # Copyright 1999-2018 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25
26 -EAPI=6
27 +EAPI=7
28
29 PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
30
31 @@ -27,14 +27,16 @@ RDEPEND="${DEPEND}"
32 PDEPEND=">=app-portage/layman-2.2.0[g-sorcery(-),${PYTHON_USEDEP}]"
33
34 python_test() {
35 - PYTHONPATH="." "${PYTHON}" scripts/run_tests.py
36 + PYTHONPATH="." "${PYTHON}" scripts/run_tests.py || die
37 }
38
39 python_install_all() {
40 distutils-r1_python_install_all
41
42 doman docs/*.8
43 - dohtml docs/developer_instructions.html
44 + docinto html
45 + dodoc docs/developer_instructions.html
46 diropts -m0777
47 - dodir /var/lib/g-sorcery
48 + dodir /var/lib/${PN}
49 + keepdir /var/lib/${PN}
50 }