diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2023-09-09 20:34:14 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2023-09-09 20:34:14 +0300 |
commit | 683de8592e9cd732a188c7aedbbe399d481f48b0 (patch) | |
tree | e1bdc4bb07183663cdc2c913e5b880fec07f076e /app-text/sigil | |
parent | dev-python/black: add 23.9.0 (diff) | |
download | gentoo-683de8592e9cd732a188c7aedbbe399d481f48b0.tar.gz gentoo-683de8592e9cd732a188c7aedbbe399d481f48b0.tar.bz2 gentoo-683de8592e9cd732a188c7aedbbe399d481f48b0.zip |
app-text/sigil: fix qt5 qt6 USE flags
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'app-text/sigil')
-rw-r--r-- | app-text/sigil/sigil-2.0.1-r1.ebuild | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/app-text/sigil/sigil-2.0.1-r1.ebuild b/app-text/sigil/sigil-2.0.1-r1.ebuild index 78d881ce3a7f..d278bafefa92 100644 --- a/app-text/sigil/sigil-2.0.1-r1.ebuild +++ b/app-text/sigil/sigil-2.0.1-r1.ebuild @@ -3,16 +3,16 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) PYTHON_REQ_USE="tk" inherit xdg cmake python-single-r1 -DESCRIPTION="Multi-platform WYSIWYG ebook editor for ePub format" -HOMEPAGE="https://sigil-ebook.com/ https://github.com/Sigil-Ebook/Sigil" -IUSE="doc +plugins +qt5 qt6" DOC_VERSION="2022.05.17" DOC_FILE="Sigil_User_Guide_${DOC_VERSION}.epub" + +DESCRIPTION="Multi-platform WYSIWYG ebook editor for ePub format" +HOMEPAGE="https://sigil-ebook.com/ https://github.com/Sigil-Ebook/Sigil" SRC_URI="https://github.com/Sigil-Ebook/Sigil/archive/${PV}.tar.gz -> ${P}.tar.gz doc? ( https://github.com/Sigil-Ebook/sigil-user-guide/releases/download/${DOC_VERSION}/${DOC_FILE} )" S="${WORKDIR}/${P^}" @@ -20,7 +20,8 @@ S="${WORKDIR}/${P^}" LICENSE="GPL-3+ Apache-2.0" SLOT="0" KEYWORDS="~amd64" -REQUIRED_USE="${PYTHON_REQUIRED_USE} ^^ ( qt5 qt6 )" +IUSE="doc +plugins qt6" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND=" ${PYTHON_DEPS} @@ -37,9 +38,9 @@ RDEPEND=" dev-python/dulwich[${PYTHON_USEDEP}] dev-python/html5lib[${PYTHON_USEDEP}] dev-python/pillow[${PYTHON_USEDEP}] - dev-python/regex[${PYTHON_USEDEP}]' - ) ) - qt5? ( + dev-python/regex[${PYTHON_USEDEP}] + ') ) + !qt6? ( dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 @@ -58,9 +59,9 @@ RDEPEND=" DEPEND="${RDEPEND}" BDEPEND=" ${PYTHON_DEPS} - qt5? ( dev-qt/linguist-tools:5 ) - qt6? ( dev-qt/qttools:6[linguist] ) virtual/pkgconfig + !qt6? ( dev-qt/linguist-tools:5 ) + qt6? ( dev-qt/qttools:6[linguist] ) " DOCS=( ChangeLog.txt README.md ) |