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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E0096158020 for ; Fri, 2 Dec 2022 13:32:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC2E42BC007; Fri, 2 Dec 2022 13:32:16 +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 B34672BC007 for ; Fri, 2 Dec 2022 13:32:16 +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 A9DF93411A0 for ; Fri, 2 Dec 2022 13:32:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E86FD4C8 for ; Fri, 2 Dec 2022 13:32:13 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1669987870.15e8992fc185fc5ac505a20d9c5567117e529cc4.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/joe/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/joe/joe-4.6-r1.ebuild X-VCS-Directories: app-editors/joe/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 15e8992fc185fc5ac505a20d9c5567117e529cc4 X-VCS-Branch: master Date: Fri, 2 Dec 2022 13:32:13 +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: 0a5470ba-2b4c-4937-98e2-3e51582b6d6e X-Archives-Hash: 48f12ffd15751edbb0a3681e1eb714bc commit: 15e8992fc185fc5ac505a20d9c5567117e529cc4 Author: Ulrich Müller gentoo org> AuthorDate: Fri Dec 2 13:31:10 2022 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Dec 2 13:31:10 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15e8992f app-editors/joe: drop 4.6-r1 Signed-off-by: Ulrich Müller gentoo.org> app-editors/joe/joe-4.6-r1.ebuild | 56 --------------------------------------- 1 file changed, 56 deletions(-) diff --git a/app-editors/joe/joe-4.6-r1.ebuild b/app-editors/joe/joe-4.6-r1.ebuild deleted file mode 100644 index 195c91a815d2..000000000000 --- a/app-editors/joe/joe-4.6-r1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools xdg-utils - -DESCRIPTION="A free ASCII-Text Screen Editor for UNIX" -HOMEPAGE="https://sourceforge.net/projects/joe-editor/" -SRC_URI="mirror://sourceforge/joe-editor/${P}.tar.gz" - -LICENSE="GPL-1+ CC-BY-3.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris" -IUSE="xterm" - -DEPEND=">=sys-libs/ncurses-5.2-r2:0=" -RDEPEND="${DEPEND} - xterm? ( >=x11-terms/xterm-239 )" - -PATCHES=( - "${FILESDIR}/${PN}-4.3-tinfo.patch" - "${FILESDIR}/${P}-db.patch" -) - -DOCS=( README.md NEWS.md docs/hacking.md docs/man.md ) - -src_prepare() { - default - # Enable xterm mouse support in the rc files - if use xterm; then - pushd "${S}"/rc &>/dev/null || die - local i - for i in *rc*.in; do - sed -e 's/^ -\(mouse\|joexterm\)/-\1/' -i "${i}" || die - done - popd &>/dev/null - fi - eautoreconf -} - -pkg_postinst() { - xdg_desktop_database_update - xdg_icon_cache_update - if use xterm; then - elog "To enable full xterm clipboard you need to set the allowWindowOps" - elog "resources to true. This is usually found in /etc/X11/app-defaults/XTerm" - elog "This is false by default due to potential security problems on some" - elog "architectures (see bug #91453)." - fi -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_icon_cache_update -}