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 900E5158020 for ; Tue, 15 Nov 2022 18:17:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0FFFCE0AA7; Tue, 15 Nov 2022 18:17:07 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 pigeon.gentoo.org (Postfix) with ESMTPS id DD4E1E0AAD for ; Tue, 15 Nov 2022 18:17:06 +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 1ACCF340F31 for ; Tue, 15 Nov 2022 18:17:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2DA7B755 for ; Tue, 15 Nov 2022 18:17:03 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1668536213.f32583a77940f87533ad4111b2332a9cf1940b7f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/ranger/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/ranger/Manifest app-misc/ranger/ranger-1.9.2.ebuild X-VCS-Directories: app-misc/ranger/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f32583a77940f87533ad4111b2332a9cf1940b7f X-VCS-Branch: master Date: Tue, 15 Nov 2022 18:17:03 +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: b9f1dc0e-08e4-4232-acdc-6a499afb5d6f X-Archives-Hash: f3d9f8ac82d4c1b00790aba680f10562 commit: f32583a77940f87533ad4111b2332a9cf1940b7f Author: Michał Górny gentoo org> AuthorDate: Tue Nov 15 18:02:27 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Nov 15 18:16:53 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f32583a7 app-misc/ranger: Remove py3.8-only versions Signed-off-by: Michał Górny gentoo.org> app-misc/ranger/Manifest | 1 - app-misc/ranger/ranger-1.9.2.ebuild | 41 ------------------------------------- 2 files changed, 42 deletions(-) diff --git a/app-misc/ranger/Manifest b/app-misc/ranger/Manifest index 30e142bf7235..463e10d6436c 100644 --- a/app-misc/ranger/Manifest +++ b/app-misc/ranger/Manifest @@ -1,2 +1 @@ -DIST ranger-1.9.2.tar.gz 265295 BLAKE2B 93e4d8ff1ad41c9bdf94af4a3ed9ab013048d1a601242553592b0e246f000b3a0226644b126ae7ec1c70562ff80b3f6c6711ee0e53dc1b7363c9ddf8f5fa75cc SHA512 5eb4743beaf0478d745cce8e5bfc2ac07c98ab5784e9394772782d06c0bb27dcd5478ead191ac527f21cce76db09a51eb46db0fabc7993684a6b5aaec0d43104 DIST ranger-1.9.3.tar.gz 280363 BLAKE2B 2698f82773aae0224e7385413a1f939cdd4b3374eddad496781a42b054e26a8d7e5944bf19bc846736a9171df317c0dbc3c8bdf83c6ca9bdb95de17f9229809e SHA512 5cd7bea714a6542d0a5445f5f0cf929b2df4377df3ef710f3786c6c46dd58b017a8060cde3969076637bfaac03c13297d3020fd82f4574dc49546ca223c0e8d3 diff --git a/app-misc/ranger/ranger-1.9.2.ebuild b/app-misc/ranger/ranger-1.9.2.ebuild deleted file mode 100644 index b6dc8374dbf3..000000000000 --- a/app-misc/ranger/ranger-1.9.2.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python{3_7,3_8} ) -PYTHON_REQ_USE="ncurses" - -inherit distutils-r1 xdg - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://github.com/ranger/ranger.git" - inherit git-r3 -else - SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~ppc x86" -fi - -DESCRIPTION="A vim-inspired file manager for the console" -HOMEPAGE="https://ranger.github.io/" -LICENSE="GPL-3" -SLOT="0" - -RDEPEND="virtual/pager" - -distutils_enable_tests pytest - -src_prepare() { - # use versioned doc path - sed -i "s|share/doc/ranger|share/doc/${PF}|" setup.py doc/ranger.1 || die - - distutils-r1_src_prepare -} - -pkg_postinst() { - xdg_pkg_postinst - - if [[ -z ${REPLACING_VERSIONS} ]]; then - elog "Ranger has many optional dependencies to support enhanced file previews." - elog "See the README or homepage for more details." - fi -}