commit:     8a99555382377d2fdfdc991bdf6a40d941c97d1b
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 25 15:07:35 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Mar 25 19:15:12 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a995553

app-editors/texworks: drop 0.6.8

Closes: https://bugs.gentoo.org/936636
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 app-editors/texworks/Manifest                      |  1 -
 .../files/texworks-0.6.5-cmake_lua_version.patch   | 11 ---
 .../files/texworks-0.6.8-optional-qtscript.patch   | 25 -------
 app-editors/texworks/texworks-0.6.8.ebuild         | 84 ----------------------
 4 files changed, 121 deletions(-)

diff --git a/app-editors/texworks/Manifest b/app-editors/texworks/Manifest
index 1476f7f35bca..e009b77f6bc6 100644
--- a/app-editors/texworks/Manifest
+++ b/app-editors/texworks/Manifest
@@ -1,2 +1 @@
 DIST texworks-0.6.10.tar.gz 11479436 BLAKE2B 
a6b251068c42d3ff68dfb3e5c69348abc984ace1fa9c25b3b815d22f4294931a67697ebb7abb708709be7333aee90495fdf854dea0b6625963ba35902b6aa7e0
 SHA512 
3f8ec187b8d6dd5f62c84cb93ac6b8d9369a8b53525518c47504fba0d1353af90d02a4b68eb38e8f623dce2f2cceae33b20917be7793f0e058864ccea7a2f8b6
-DIST texworks-0.6.8.tar.gz 12486607 BLAKE2B 
a7de78adc0746c57b721a400a704d3912574933604e01124a99f5a60ba377ba66ce8d57f5f0a87e336de715d981146db6b8ae61a78c744b385c698fcdad2f7fe
 SHA512 
23164f9ab2f611a705b533f4c435891f1279d1e0e0de2d7f947864f8919a6513cb696881dc1dcf93345471599f113d264ced57cbd2dceae343b9dde46ee80482

diff --git a/app-editors/texworks/files/texworks-0.6.5-cmake_lua_version.patch 
b/app-editors/texworks/files/texworks-0.6.5-cmake_lua_version.patch
deleted file mode 100644
index 630443d5f119..000000000000
--- a/app-editors/texworks/files/texworks-0.6.5-cmake_lua_version.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -297,7 +297,7 @@
- # -------------------------------
- 
- IF ( WITH_LUA )
--  FIND_PACKAGE(Lua)
-+  FIND_PACKAGE(Lua ${LUA_VERSION} EXACT REQUIRED)
- ENDIF()
- 
- IF ( WITH_PYTHON )

diff --git a/app-editors/texworks/files/texworks-0.6.8-optional-qtscript.patch 
b/app-editors/texworks/files/texworks-0.6.8-optional-qtscript.patch
deleted file mode 100644
index 460c4f4f7e2d..000000000000
--- a/app-editors/texworks/files/texworks-0.6.8-optional-qtscript.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-It doesn't work like that.
-
---- a/CMakeLists.txt   2023-02-18 11:42:11.000000000 +0100
-+++ b/CMakeLists.txt   2023-10-21 20:00:29.144638825 +0200
-@@ -281,9 +281,11 @@
-       set(QT_VERSION_PATCH "${Qt6_VERSION_PATCH}")
- else ()
-       # Check for Qt5
--      find_package(Qt5 REQUIRED COMPONENTS Core Widgets Gui UiTools 
Concurrent Xml LinguistTools Qml OPTIONAL_COMPONENTS Script ScriptTools)
-+      find_package(Qt5 REQUIRED COMPONENTS Core Widgets Gui UiTools 
Concurrent Xml LinguistTools Qml)
-       set(QT_LIBRARIES Qt5::Core Qt5::Widgets Qt5::Gui Qt5::UiTools 
Qt5::Concurrent Qt5::Xml Qt5::Qml)
- 
-+      find_package(Qt5Script)
-+      find_package(Qt5ScriptTools)
-       if (Qt5Script_FOUND AND Qt5ScriptTools_FOUND)
-               list(APPEND QT_LIBRARIES Qt5::ScriptTools Qt5::Script)
-               set(WITH_QTSCRIPT ON)
-@@ -311,7 +313,6 @@
-       set(QT_VERSION_MAJOR "${Qt5_VERSION_MAJOR}")
-       set(QT_VERSION_MINOR "${Qt5_VERSION_MINOR}")
-       set(QT_VERSION_PATCH "${Qt5_VERSION_PATCH}")
--      set(WITH_QTSCRIPT ON)
- endif ()
- 
- # Expose the major version number of Qt to the preprocessor. This is necessary

diff --git a/app-editors/texworks/texworks-0.6.8.ebuild 
b/app-editors/texworks/texworks-0.6.8.ebuild
deleted file mode 100644
index 65ac3d6842d0..000000000000
--- a/app-editors/texworks/texworks-0.6.8.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LUA_COMPAT=( lua5-{1..3} )
-PYTHON_COMPAT=( python3_{9..12} )
-CMAKE_REMOVE_MODULES_LIST=( FindLua )
-inherit lua-single python-single-r1 cmake xdg
-
-DESCRIPTION="Simple interface for working with TeX documents"
-HOMEPAGE="https://tug.org/texworks/";
-SRC_URI="https://github.com/TeXworks/texworks/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}"/${PN}-release-${PV}
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~riscv x86"
-IUSE="lua python test"
-RESTRICT="!test? ( test )"
-
-REQUIRED_USE="
-       lua? ( ${LUA_REQUIRED_USE} )
-       python? ( ${PYTHON_REQUIRED_USE} )
-"
-
-RDEPEND="
-       app-text/hunspell:=
-       app-text/poppler[qt5]
-       dev-qt/designer:5
-       dev-qt/qtcore:5
-       dev-qt/qtconcurrent:5
-       dev-qt/qtdeclarative:5
-       dev-qt/qtdbus:5
-       dev-qt/qtdeclarative:5
-       dev-qt/qtgui:5
-       dev-qt/qtwidgets:5
-       sys-libs/zlib
-       lua? ( ${LUA_DEPS} )
-       python? ( ${PYTHON_DEPS} )
-"
-DEPEND="${RDEPEND}
-       test? ( dev-qt/qttest:5 )
-"
-BDEPEND="
-       dev-qt/linguist-tools:5
-       virtual/pkgconfig
-"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-0.6.5-cmake_lua_version.patch
-       "${FILESDIR}"/${P}-optional-qtscript.patch
-)
-
-pkg_setup() {
-       use lua && lua-single_pkg_setup
-
-       python-single-r1_pkg_setup
-}
-
-src_configure() {
-       local mycmakeargs=(
-               -Wno-dev
-               -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Script=ON
-               -DCMAKE_DISABLE_FIND_PACKAGE_Qt5ScriptTools=ON
-               -DPREFER_BUNDLED_SYNCTEX=ON
-               -DWITH_LUA=$(usex lua)
-               -DWITH_PYTHON=$(usex python)
-               -DWITH_TESTS=$(usex test)
-               -DTeXworks_PLUGIN_DIR="/usr/$(get_libdir)/texworks"
-               -DTeXworks_DOCS_DIR="/share/doc/${PF}"
-               -DQTPDF_VIEWER=ON
-               -DBUILD_SHARED_PLUGINS=ON
-       )
-
-       use lua && mycmakeargs+=( -DLUA_VERSION="$(lua_get_version)" )
-
-       cmake_src_configure
-}
-
-src_test() {
-       local -x QT_QPA_PLATFORM=offscreen
-       cmake_src_test
-}

Reply via email to