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 C4723158020 for ; Wed, 21 Dec 2022 06:46:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94689E07FE; Wed, 21 Dec 2022 06:46:09 +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 7DEEBE07FE for ; Wed, 21 Dec 2022 06:46:09 +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 36770340E0D for ; Wed, 21 Dec 2022 06:46:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7E057F5 for ; Wed, 21 Dec 2022 06:46:05 +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: <1671605160.61002233890c446f6079a152e02e15d19de0644b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/plotly-geo/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/plotly-geo/plotly-geo-1.0.0-r1.ebuild X-VCS-Directories: dev-python/plotly-geo/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 61002233890c446f6079a152e02e15d19de0644b X-VCS-Branch: master Date: Wed, 21 Dec 2022 06:46:05 +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: 9a1a1448-28e3-4c20-bc92-1377a1eedb2a X-Archives-Hash: 0afa2a12a4b6e15b1a35ded0155d27f5 commit: 61002233890c446f6079a152e02e15d19de0644b Author: Michał Górny gentoo org> AuthorDate: Wed Dec 21 05:59:50 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Dec 21 06:46:00 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61002233 dev-python/plotly-geo: Disable Python < 3.10 Signed-off-by: Michał Górny gentoo.org> dev-python/plotly-geo/plotly-geo-1.0.0-r1.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dev-python/plotly-geo/plotly-geo-1.0.0-r1.ebuild b/dev-python/plotly-geo/plotly-geo-1.0.0-r1.ebuild new file mode 100644 index 000000000000..678e302fe0a4 --- /dev/null +++ b/dev-python/plotly-geo/plotly-geo-1.0.0-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_10 ) + +inherit distutils-r1 + +DESCRIPTION="Browser-based graphing library for Python" +HOMEPAGE="https://plot.ly/python/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/plotly[${PYTHON_USEDEP}] +"