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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5C212139335 for ; Sun, 27 Jun 2021 20:23:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8178CE07FE; Sun, 27 Jun 2021 20:23:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 613D8E07FE for ; Sun, 27 Jun 2021 20:23:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 04506335D26 for ; Sun, 27 Jun 2021 20:23:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3089E798 for ; Sun, 27 Jun 2021 20:23:51 +0000 (UTC) From: "Brian Gloyer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Gloyer" Message-ID: <1624825371.33ec778d4c71da30fd769dd426379f525a1ca60c.brian.gloyer@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-portage/pacvis/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-portage/pacvis/pacvis-0.4.2.ebuild app-portage/pacvis/pacvis-9999.ebuild X-VCS-Directories: app-portage/pacvis/ X-VCS-Committer: brian.gloyer X-VCS-Committer-Name: Brian Gloyer X-VCS-Revision: 33ec778d4c71da30fd769dd426379f525a1ca60c X-VCS-Branch: dev Date: Sun, 27 Jun 2021 20:23:51 +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: 27da3161-e18c-4c4a-b4e7-162a7b6d6114 X-Archives-Hash: 18931d6f4ba47759baf99298aee1b5ee commit: 33ec778d4c71da30fd769dd426379f525a1ca60c Author: brian gloyer gmail com> AuthorDate: Sun Jun 27 19:23:44 2021 +0000 Commit: Brian Gloyer gmail com> CommitDate: Sun Jun 27 20:22:51 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=33ec778d app-portage/pacvis: added python 3.9; removed 9999 Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: brian gloyer gmail.com> app-portage/pacvis/pacvis-0.4.2.ebuild | 4 ++-- app-portage/pacvis/pacvis-9999.ebuild | 19 ------------------- 2 files changed, 2 insertions(+), 21 deletions(-) diff --git a/app-portage/pacvis/pacvis-0.4.2.ebuild b/app-portage/pacvis/pacvis-0.4.2.ebuild index 2adc736e8..353db4b57 100644 --- a/app-portage/pacvis/pacvis-0.4.2.ebuild +++ b/app-portage/pacvis/pacvis-0.4.2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python{3_6,3_7,3_8} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 diff --git a/app-portage/pacvis/pacvis-9999.ebuild b/app-portage/pacvis/pacvis-9999.ebuild deleted file mode 100644 index 5bd18faf3..000000000 --- a/app-portage/pacvis/pacvis-9999.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python{3_6,3_7,3_8} ) - -EGIT_REPO_URI="https://github.com/bgloyer/pacvis.git" -inherit distutils-r1 git-r3 - -DESCRIPTION="Displays dependency graphs of packages" -HOMEPAGE="https://github.com/bgloyer/pacvis" -SRC_URI="" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="" -IUSE="" - -RDEPEND="www-servers/tornado[${PYTHON_USEDEP}]"