From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5CFFA1581F0 for ; Fri, 24 Jan 2025 07:43:56 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 48CCA34352C for ; Fri, 24 Jan 2025 07:43:56 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id DC692110433; Fri, 24 Jan 2025 07:43:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 bobolink.gentoo.org (Postfix) with ESMTPS id D1BAB110433 for ; Fri, 24 Jan 2025 07:43:04 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 601AB335D6A for ; Fri, 24 Jan 2025 07:43:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A140236B for ; Fri, 24 Jan 2025 07:43:01 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1737704411.b4425ec57bb2668c1b764e0ce8ff03430d2e8381.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/ranger/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/ranger/ranger-1.9.4.ebuild X-VCS-Directories: app-misc/ranger/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: b4425ec57bb2668c1b764e0ce8ff03430d2e8381 X-VCS-Branch: master Date: Fri, 24 Jan 2025 07:43:01 +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: 2e002f2d-9201-4a9a-8b76-a3bc612ec843 X-Archives-Hash: e9197c1db5e2b1e7a15311e4f3f4627a commit: b4425ec57bb2668c1b764e0ce8ff03430d2e8381 Author: Ionen Wolkens gentoo org> AuthorDate: Fri Jan 24 05:39:32 2025 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Fri Jan 24 07:40:11 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4425ec5 app-misc/ranger: drop 1.9.4 Signed-off-by: Ionen Wolkens gentoo.org> app-misc/ranger/ranger-1.9.4.ebuild | 48 ------------------------------------- 1 file changed, 48 deletions(-) diff --git a/app-misc/ranger/ranger-1.9.4.ebuild b/app-misc/ranger/ranger-1.9.4.ebuild deleted file mode 100644 index 4a85b351acf9..000000000000 --- a/app-misc/ranger/ranger-1.9.4.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_SINGLE_IMPL=1 -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..13} ) -PYTHON_REQ_USE="ncurses" -inherit distutils-r1 xdg - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/ranger/ranger.git" -else - SRC_URI=" - https://github.com/ranger/ranger/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz - " - KEYWORDS="amd64 ~arm ~arm64 ~ppc ~riscv x86" -fi - -DESCRIPTION="Vim-inspired file manager for the console" -HOMEPAGE="https://ranger.github.io/" - -LICENSE="GPL-3" -SLOT="0" - -distutils_enable_tests pytest - -PATCHES=( - "${FILESDIR}"/${PN}-1.9.3-color-crash-fix.patch -) - -src_prepare() { - distutils-r1_src_prepare - - sed -i "s|share/doc/ranger|share/doc/${PF}|" setup.py doc/ranger.1 || die -} - -pkg_postinst() { - xdg_pkg_postinst - - if [[ ! ${REPLACING_VERSIONS} ]]; then - elog "${PN^} has many optional dependencies to support enhanced file previews." - elog "See ${EROOT}/usr/share/doc/${PF}/README.md* for more details." - fi -}