From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C2EB315812D for ; Wed, 01 Jan 2025 16:48:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6D99E0718; Wed, 01 Jan 2025 16:48:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A6EEAE05AC for ; Wed, 01 Jan 2025 16:48:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A08FE33FEF1 for ; Wed, 01 Jan 2025 16:48:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E121111B5 for ; Wed, 01 Jan 2025 16:48:21 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1735750064.7c0c9c5f14d5d388e74c857c64b9f867caeb8aeb.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/tea/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/tea/tea-62.4.0.ebuild X-VCS-Directories: app-editors/tea/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7c0c9c5f14d5d388e74c857c64b9f867caeb8aeb X-VCS-Branch: master Date: Wed, 01 Jan 2025 16:48:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c1024967-5eac-49ae-bd15-e062ce75d162 X-Archives-Hash: 8e80008346a7f0dc41f1b93cc50fd4ff commit: 7c0c9c5f14d5d388e74c857c64b9f867caeb8aeb Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Jan 1 13:13:14 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Jan 1 16:47:44 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c0c9c5f app-editors/tea: drop 62.4.0 Signed-off-by: Andreas Sturmlechner gentoo.org> app-editors/tea/tea-62.4.0.ebuild | 83 --------------------------------------- 1 file changed, 83 deletions(-) diff --git a/app-editors/tea/tea-62.4.0.ebuild b/app-editors/tea/tea-62.4.0.ebuild deleted file mode 100644 index d966ed1501ae..000000000000 --- a/app-editors/tea/tea-62.4.0.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake xdg - -MY_P="tea-qt-${PV}" - -DESCRIPTION="Small, lightweight Qt text editor" -HOMEPAGE="https://tea.ourproject.org/" -SRC_URI="https://github.com/psemiletov/tea-qt/archive/${PV}.tar.gz -> ${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="amd64 ~riscv x86" -IUSE="aspell djvu qt6 pdf" - -RESTRICT="test" # no tests - -DEPEND=" - app-text/hunspell:= - sys-libs/zlib - aspell? ( app-text/aspell ) - djvu? ( app-text/djvu ) - qt6? ( - dev-qt/qtbase:6[widgets] - dev-qt/qt5compat:6 - pdf? ( app-text/poppler:=[qt6(-)] ) - ) - !qt6? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - pdf? ( app-text/poppler:=[qt5] ) - ) -" -RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" - -DOCS=( AUTHORS ChangeLog NEWS NEWS-RU TODO ) - -PATCHES=( - "${FILESDIR}/tea-62.1.1-fix-desktop.patch" -) - -src_prepare() { - cmake_src_prepare - - # Replace AUR link with p.g.o link - sed -i \ - -e 's,AUR: aur.archlinux.org/packages/tea-qt-git,Gentoo: https://packages.gentoo.org/packages/app-editors/tea,' \ - tea.cpp translations/{de,es,fr,pl,ru}.ts || die - - # Rename tea to tea-qt to avoid file conflict with dev-util/tea - # bug #917587 - # https://github.com/psemiletov/tea-qt/issues/50 - sed -i -e '/set_target_properties(tea PROPERTIES$/ a\ - OUTPUT_NAME \"tea-qt\"' \ - CMakeLists.txt || die - sed -i -e '/Exec/ { s/tea/tea-qt/ }' desktop/tea.desktop || die -} - -src_configure() { - local mycmakeargs=( - -DUSE_ASPELL=$(usex aspell) - -DUSE_PDF=$(usex pdf) - -DUSE_DJVU=$(usex djvu) - -DUSE_PRINTER=OFF # appears to be setup wrong - $(cmake_use_find_package qt6 Qt6) - ) - - cmake_src_configure -} - -pkg_postinst() { - xdg_pkg_postinst - - if [[ "${REPLACING_VERSIONS}" == "47.0.0" ]]; then - elog "Executable 'tea' has been renamed to 'tea-qt'" - fi -}