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 C0D3015800A for ; Fri, 14 Jul 2023 13:00:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B346FE08A6; Fri, 14 Jul 2023 13:00:52 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9B6F5E08A6 for ; Fri, 14 Jul 2023 13:00:52 +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 9E717340B9E for ; Fri, 14 Jul 2023 13:00:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D90DDAD0 for ; Fri, 14 Jul 2023 13:00:49 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1689339643.35a49b9310afe0153f20e686dfc5c93386156a74.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ps_mem/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/ps_mem/ps_mem-3.14.ebuild X-VCS-Directories: app-admin/ps_mem/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: 35a49b9310afe0153f20e686dfc5c93386156a74 X-VCS-Branch: master Date: Fri, 14 Jul 2023 13:00:49 +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: 621bd401-6806-4f44-9751-016172438a68 X-Archives-Hash: 17e32146c4adc93304fe7b34e05fac1c commit: 35a49b9310afe0153f20e686dfc5c93386156a74 Author: Ben Kohler gentoo org> AuthorDate: Thu Jul 13 13:52:09 2023 +0000 Commit: Ben Kohler gentoo org> CommitDate: Fri Jul 14 13:00:43 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35a49b93 app-admin/ps_mem: drop 3.14 Signed-off-by: Ben Kohler gentoo.org> app-admin/ps_mem/ps_mem-3.14.ebuild | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/app-admin/ps_mem/ps_mem-3.14.ebuild b/app-admin/ps_mem/ps_mem-3.14.ebuild deleted file mode 100644 index cb5d9972bcbf..000000000000 --- a/app-admin/ps_mem/ps_mem-3.14.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..11} ) -DISTUTILS_SINGLE_IMPL=1 - -inherit distutils-r1 - -DESCRIPTION="A utility to report core memory usage per program" -HOMEPAGE="https://github.com/pixelb/ps_mem" -SRC_URI="https://github.com/pixelb/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ppc64 sparc x86" -IUSE="" - -python_install() { - distutils-r1_python_install --install-scripts="${EPREFIX}/usr/sbin" -} - -python_install_all() { - distutils-r1_python_install_all - doman ${PN}.1 -}