Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/retext/
Date: Mon, 30 Apr 2018 16:08:54
Message-Id: 1525104518.17dbc4b9dc0f75a811d05cddaf80510ce8eb5a06.monsieurp@gentoo
1 commit: 17dbc4b9dc0f75a811d05cddaf80510ce8eb5a06
2 Author: Nils Freydank <holgersson <AT> posteo <DOT> de>
3 AuthorDate: Sun Apr 29 16:35:48 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 30 16:08:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17dbc4b9
7
8 app-editors/retext: switch backend to QtWebEngine in 7.0.0.
9
10 Package-Manager: Portage-2.3.31, Repoman-2.3.9
11
12 app-editors/retext/retext-7.0.0-r1.ebuild | 61 +++++++++++++++++++++++++++++++
13 1 file changed, 61 insertions(+)
14
15 diff --git a/app-editors/retext/retext-7.0.0-r1.ebuild b/app-editors/retext/retext-7.0.0-r1.ebuild
16 new file mode 100644
17 index 00000000000..00f57b4e518
18 --- /dev/null
19 +++ b/app-editors/retext/retext-7.0.0-r1.ebuild
20 @@ -0,0 +1,61 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +PYTHON_COMPAT=( python3_{4,5,6} )
27 +
28 +PLOCALES="ca cs cy da de es et eu fr hu it ja pl pt pt_BR ru sk sr sr@latin uk zh_TW"
29 +
30 +inherit distutils-r1 virtualx l10n eutils
31 +
32 +MY_PN="ReText"
33 +MY_P="${MY_PN}-${PV/_/~}"
34 +
35 +DESCRIPTION="Simple editor for Markdown and reStructuredText"
36 +HOMEPAGE="https://github.com/retext-project/retext https://github.com/retext-project/retext/wiki"
37 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
38 +
39 +LICENSE="GPL-2"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~x86"
42 +IUSE="+spell"
43 +
44 +RDEPEND="
45 + dev-python/docutils[${PYTHON_USEDEP}]
46 + dev-python/markdown[${PYTHON_USEDEP}]
47 + >=dev-python/markups-2.0[${PYTHON_USEDEP}]
48 + >=dev-python/chardet-2.3[${PYTHON_USEDEP}]
49 + dev-python/pygments[${PYTHON_USEDEP}]
50 + dev-python/PyQt5[gui,network,printsupport,webengine,widgets,${PYTHON_USEDEP}]
51 + spell? ( dev-python/pyenchant[${PYTHON_USEDEP}] )
52 +"
53 +
54 +S="${WORKDIR}"/${MY_P}
55 +
56 +remove_locale() {
57 + find "${ED}" -name "retext_${1}.qm" -delete || die "Failed to remove locale ${1}."
58 +}
59 +
60 +python_test() {
61 + virtx esetup.py test
62 +}
63 +
64 +python_install_all() {
65 + distutils-r1_python_install_all
66 +
67 + newicon {icons/,}${PN}.png
68 + newicon {icons/,}${PN}.svg
69 +
70 + l10n_for_each_disabled_locale_do remove_locale
71 +
72 + make_desktop_entry ${PN} "${MY_PN} Editor" ${PN} "Development;Utility;TextEditor"
73 +}
74 +
75 +pkg_postinst() {
76 + xdg_desktop_database_update
77 +}
78 +
79 +pkg_postrm() {
80 + xdg_desktop_database_update
81 +}