commit:     dc4226c0402b1c1da4bede7fa37452c0f9643b38
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 11 21:21:38 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Nov 11 22:09:15 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc4226c0

app-editors/texworks: drop 0.6.7-r1

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

 app-editors/texworks/Manifest                      |  1 -
 .../texworks-0.6.7-vasprintf-clang16-fix.patch     | 12 ----
 app-editors/texworks/texworks-0.6.7-r1.ebuild      | 76 ----------------------
 3 files changed, 89 deletions(-)

diff --git a/app-editors/texworks/Manifest b/app-editors/texworks/Manifest
index eba2967aa0d0..a5b724486bf8 100644
--- a/app-editors/texworks/Manifest
+++ b/app-editors/texworks/Manifest
@@ -1,2 +1 @@
-DIST texworks-0.6.7.tar.gz 12394465 BLAKE2B 
0a2e0531ef0f296cd2be176baed14eb0c21733aeaf3ca3c43e3ff02e48bf68be8953db67f955db0b5a56676b391e2f7700404e9ea52907092d58cbbccaa02adf
 SHA512 
b1c22c1f9bfae2595e77f0c98297cc690f62aac38125bb576d57cc3a0666d779e75af23ccf430a3547215065596b4ea60758233947cda06df8e1a7fc95c46b65
 DIST texworks-0.6.8.tar.gz 12486607 BLAKE2B 
a7de78adc0746c57b721a400a704d3912574933604e01124a99f5a60ba377ba66ce8d57f5f0a87e336de715d981146db6b8ae61a78c744b385c698fcdad2f7fe
 SHA512 
23164f9ab2f611a705b533f4c435891f1279d1e0e0de2d7f947864f8919a6513cb696881dc1dcf93345471599f113d264ced57cbd2dceae343b9dde46ee80482

diff --git 
a/app-editors/texworks/files/texworks-0.6.7-vasprintf-clang16-fix.patch 
b/app-editors/texworks/files/texworks-0.6.7-vasprintf-clang16-fix.patch
deleted file mode 100644
index ce8e9e2daca0..000000000000
--- a/app-editors/texworks/files/texworks-0.6.7-vasprintf-clang16-fix.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-Bug: https://bugs.gentoo.org/882461
-Reverting commit ccf692bb38c43a38f8e9f755dd48451c6f6ad430
---- a/modules/synctex/CMakeLists.txt
-+++ b/modules/synctex/CMakeLists.txt
-@@ -26,6 +26,4 @@ endif()
- 
- # SyncTeX uses vasprintf which is not in POSIX; thus gcc prints a warning 
unless
- # _GNU_SOURCE is defined. Other compilers seem to be fine.
--if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
--  target_compile_definitions(SyncTeX PRIVATE _GNU_SOURCE)
--endif()
-+target_compile_definitions(SyncTeX PRIVATE _GNU_SOURCE)

diff --git a/app-editors/texworks/texworks-0.6.7-r1.ebuild 
b/app-editors/texworks/texworks-0.6.7-r1.ebuild
deleted file mode 100644
index 82e392d2582f..000000000000
--- a/app-editors/texworks/texworks-0.6.7-r1.ebuild
+++ /dev/null
@@ -1,76 +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..11} )
-CMAKE_REMOVE_MODULES_LIST=( FindLua )
-inherit lua-single python-single-r1 cmake virtualx xdg
-
-DESCRIPTION="A simple interface for working with TeX documents"
-HOMEPAGE="http://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"
-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/qtgui:5
-       dev-qt/qtscript:5[scripttools]
-       dev-qt/qtwidgets:5
-       sys-libs/zlib
-       lua? ( ${LUA_DEPS} )
-       python? ( ${PYTHON_DEPS} ) "
-DEPEND="${RDEPEND}"
-BDEPEND="dev-qt/linguist-tools:5
-       virtual/pkgconfig"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-0.6.5-cmake_lua_version.patch
-       "${FILESDIR}"/${PN}-0.6.7-vasprintf-clang16-fix.patch
-)
-
-pkg_setup() {
-       use lua && lua-single_pkg_setup
-
-       python-single-r1_pkg_setup
-}
-
-src_configure() {
-       local mycmakeargs=(
-               -Wno-dev
-
-               -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() {
-       virtx cmake_src_test
-}

Reply via email to