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 95932158008 for ; Mon, 12 Jun 2023 19:27:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 883E9E0951; Mon, 12 Jun 2023 19:27:34 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6D2F8E0951 for ; Mon, 12 Jun 2023 19:27:34 +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 050DE3413BC for ; Mon, 12 Jun 2023 19:27:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 91206A9A for ; Mon, 12 Jun 2023 19:27:30 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1686580753.e66b569b5a5d98e9c2f64c5b05142a443d99ff75.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-portage/pacvis/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-portage/pacvis/pacvis-0.4.2-r1.ebuild X-VCS-Directories: app-portage/pacvis/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: e66b569b5a5d98e9c2f64c5b05142a443d99ff75 X-VCS-Branch: master Date: Mon, 12 Jun 2023 19:27:30 +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: 30f48839-1ecf-42e9-9e02-919e4c726bae X-Archives-Hash: 4bdfc09eda8a17cd7b768295ce5d43d7 commit: e66b569b5a5d98e9c2f64c5b05142a443d99ff75 Author: Tomas Fabrizio Orsi fi uba ar> AuthorDate: Mon Jun 12 14:39:13 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Mon Jun 12 14:39:13 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e66b569b app-portage/pacvis: Updated python interpreter to 3.11 Signed-off-by: Tomas Fabrizio Orsi fi.uba.ar> app-portage/pacvis/pacvis-0.4.2-r1.ebuild | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/app-portage/pacvis/pacvis-0.4.2-r1.ebuild b/app-portage/pacvis/pacvis-0.4.2-r1.ebuild new file mode 100644 index 000000000..f455d8f10 --- /dev/null +++ b/app-portage/pacvis/pacvis-0.4.2-r1.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_11 ) + +inherit distutils-r1 + +DESCRIPTION="Displays dependency graphs of packages" +HOMEPAGE="https://github.com/bgloyer/pacvis" +SRC_URI="https://github.com/bgloyer/pacvis/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="dev-python/tornado[${PYTHON_USEDEP}]"