From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/retext/
Date: Sat, 27 Apr 2024 03:46:58 +0000 (UTC) [thread overview]
Message-ID: <1714188314.3d9bd987fbdd0f4bd317562658c930c550be353d.mgorny@gentoo> (raw)
commit: 3d9bd987fbdd0f4bd317562658c930c550be353d
Author: Chris Mayo <aklhfex <AT> gmail <DOT> com>
AuthorDate: Wed Mar 20 19:29:27 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 27 03:25:14 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d9bd987
app-editors/retext: add 8.0.2
Signed-off-by: Chris Mayo <aklhfex <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/35842
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-editors/retext/Manifest | 1 +
app-editors/retext/retext-8.0.2.ebuild | 69 ++++++++++++++++++++++++++++++++++
2 files changed, 70 insertions(+)
diff --git a/app-editors/retext/Manifest b/app-editors/retext/Manifest
index 1cefd03873f6..0cfa460a7a21 100644
--- a/app-editors/retext/Manifest
+++ b/app-editors/retext/Manifest
@@ -1,3 +1,4 @@
DIST ReText-7.2.3.tar.gz 527428 BLAKE2B 3c710769a881275d74018ba319b174020dda0b65da22ae926231af56901b56c31b3cff69119a9bb378cd218d7b793f002bb08bf1483cc1e55c95a4963cbe1598 SHA512 eb337866f5dfacad2f23435f09b550f4378df5bb261d6f79b1708fed9e7bd93e96e8f06f940cb7109fe02aa6df0592b151f11dfe13853799f0b1ac2c1065a0da
DIST ReText-8.0.0.tar.gz 492823 BLAKE2B ba80f01f1a40981220c0b3e16dd04bf551319a35c1a5c7f6d5e70135404537e74fa4625fe4c05c7ee54202de9ae16d181c110fcae9b9172761ca5ecf6400f7de SHA512 0f2480bcc8569cf60ebfe55847a2a068d1e5dd262a4ff212873bf58660ec31e9c37d9b21bdc66229d681c065a0d96b6ff11652e8d9a7c77841ea551480d1154c
DIST ReText-8.0.1.tar.gz 538968 BLAKE2B 6ee18b4becf47ed3edae9e1d3ea8167a5db2685ae55b206be1ffca78bb765a559f53575da8aa105eae5d1b1fb87419723cdfd02cfff2eb422de9722589a0b97a SHA512 a2a03a821ac06e0408cd036189e9fce18f4b693085aaa15e0d95f2a80157f6ab09b0bcecd9574673ce57fc9cde937457e8d62971f1553cbc26c681039401178a
+DIST ReText-8.0.2.tar.gz 546236 BLAKE2B 3ef28366e5884234d77b2155c3f01d7881206383aa19ccb010255eb40ea14aa2ab298fe212d2b4d0e7d65246075b426c93a8ae518b8fb5f0887f1694064e309a SHA512 c7b543d91290c007c820751f39c009c1e5fb86eb59590d0c13610c9c7f13b6023ffee3d6aebc4665addacbefad0d17937a29e8201d08457cc1641a6d5c0019b0
diff --git a/app-editors/retext/retext-8.0.2.ebuild b/app-editors/retext/retext-8.0.2.ebuild
new file mode 100644
index 000000000000..0ad582a951db
--- /dev/null
+++ b/app-editors/retext/retext-8.0.2.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+DISTUTILS_USE_PEP517="setuptools"
+DISTUTILS_SINGLE_IMPL=1
+PYPI_NO_NORMALIZE=1
+PYPI_PN="ReText"
+
+inherit desktop distutils-r1 optfeature virtualx xdg
+
+DESCRIPTION="Simple editor for Markdown and reStructuredText"
+HOMEPAGE="https://github.com/retext-project/retext https://github.com/retext-project/retext/wiki"
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/retext-project/retext.git"
+else
+ inherit pypi
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2+"
+SLOT="0"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ $(python_gen_cond_dep '
+ dev-python/docutils[${PYTHON_USEDEP}]
+ dev-python/markdown[${PYTHON_USEDEP}]
+ >=dev-python/markups-3.1.1[${PYTHON_USEDEP}]
+ dev-python/pygments[${PYTHON_USEDEP}]
+ dev-python/PyQt6[dbus,gui,printsupport,widgets,${PYTHON_USEDEP}]
+ ')
+"
+# qmake6 from qtbase is used to find lrelease
+BDEPEND="
+ dev-qt/qtbase:6
+ dev-qt/qttools:6[linguist]
+ test? (
+ ${RDEPEND}
+ $(python_gen_cond_dep '
+ dev-python/PyQt6[testlib,${PYTHON_USEDEP}]
+ ')
+ )
+"
+
+distutils_enable_tests unittest
+
+src_test() {
+ QT_QPA_PLATFORM=minimal virtx distutils-r1_src_test
+}
+
+src_install() {
+ distutils-r1_src_install
+
+ domenu data/me.mitya57.ReText.desktop
+}
+
+pkg_postinst() {
+ xdg_pkg_postinst
+
+ optfeature "a local copy of the MathJax JavaScript library" dev-libs/mathjax
+ optfeature "encoding detection" dev-python/chardet
+ optfeature "dictionary support" dev-python/pyenchant
+ optfeature "JavaScript support in preview" dev-python/PyQt6-WebEngine
+}
next reply other threads:[~2024-04-27 3:47 UTC|newest]
Thread overview: 85+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-27 3:46 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-25 4:36 [gentoo-commits] repo/gentoo:master commit in: app-editors/retext/ Sam James
2025-03-25 4:36 Sam James
2025-03-25 4:36 Sam James
2024-11-24 22:16 Jakov Smolić
2024-11-23 14:15 Michał Górny
2024-04-27 3:46 Michał Górny
2024-03-18 20:04 Conrad Kostecki
2023-11-02 8:13 Joonas Niilola
2023-10-03 14:15 Sam James
2023-08-14 7:02 Joonas Niilola
2023-08-14 7:02 Joonas Niilola
2023-05-20 6:26 Michał Górny
2023-03-07 17:56 Jimi Huotari
2023-03-04 7:18 Sam James
2023-03-04 7:18 Sam James
2023-01-28 8:43 Joonas Niilola
2023-01-28 8:43 Joonas Niilola
2023-01-28 8:43 Joonas Niilola
2022-08-22 8:54 Agostino Sarubbo
2022-08-20 23:03 Sam James
2022-06-03 8:27 Sam James
2022-02-20 5:27 Sam James
2022-02-19 19:22 Sam James
2022-01-02 3:29 Sam James
2021-07-19 7:47 Joonas Niilola
2021-07-16 3:58 Sam James
2021-07-16 3:58 Sam James
2021-03-21 9:35 Joonas Niilola
2021-03-21 9:35 Joonas Niilola
2021-03-21 9:35 Joonas Niilola
2021-03-04 6:24 Sam James
2021-03-04 6:24 Sam James
2021-02-25 14:46 Joonas Niilola
2021-02-25 14:46 Joonas Niilola
2021-02-24 7:06 Joonas Niilola
2021-02-24 7:06 Joonas Niilola
2021-02-24 7:06 Joonas Niilola
2021-02-24 7:06 Joonas Niilola
2020-09-18 15:56 Michał Górny
2020-08-30 1:32 Thomas Deutschmann
2020-08-25 12:53 Agostino Sarubbo
2020-07-15 8:06 Joonas Niilola
2020-07-15 8:06 Joonas Niilola
2020-07-15 8:06 Joonas Niilola
2019-12-13 5:23 Davide Pesavento
2019-12-12 16:01 Agostino Sarubbo
2019-12-11 10:47 Agostino Sarubbo
2019-05-15 23:02 Andreas Sturmlechner
2019-05-15 23:02 Andreas Sturmlechner
2018-11-22 20:25 Michał Górny
2018-11-22 20:25 Michał Górny
2018-08-17 0:14 Mikle Kolyada
2018-08-16 0:39 Thomas Deutschmann
2018-07-04 21:53 Patrice Clement
2018-05-25 22:32 Aaron Bauman
2018-05-25 22:32 Aaron Bauman
2018-05-25 22:32 Aaron Bauman
2018-05-25 22:32 Aaron Bauman
2018-04-30 16:08 Patrice Clement
2018-04-30 16:08 Patrice Clement
2018-04-30 16:08 Patrice Clement
2018-04-30 16:08 Patrice Clement
2017-11-21 18:02 Manuel Rüger
2017-09-02 15:04 Michael Palimaka
2017-06-26 17:31 Manuel Rüger
2017-06-08 11:38 Manuel Rüger
2017-05-06 17:39 Manuel Rüger
2017-05-06 17:20 Agostino Sarubbo
2017-05-05 14:10 Agostino Sarubbo
2017-05-04 15:17 Manuel Rüger
2017-03-13 11:32 Manuel Rüger
2017-03-13 11:32 Manuel Rüger
2017-03-13 11:32 Manuel Rüger
2016-10-10 22:50 Manuel Rüger
2016-09-04 23:18 Manuel Rüger
2016-09-04 22:05 Manuel Rüger
2016-09-04 22:05 Manuel Rüger
2016-04-10 0:08 Manuel Rüger
2016-04-10 0:08 Manuel Rüger
2016-02-17 21:28 Manuel Rüger
2016-02-17 21:28 Manuel Rüger
2015-12-20 16:35 Justin Lecher
2015-10-10 16:31 Justin Lecher
2015-09-23 15:58 Justin Lecher
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1714188314.3d9bd987fbdd0f4bd317562658c930c550be353d.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox