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 3B2B2158011 for ; Mon, 20 Sep 2021 17:15:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 852D5E0844; Mon, 20 Sep 2021 17:15:01 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A7C5E0844 for ; Mon, 20 Sep 2021 17:15:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F2EF5342EEF for ; Mon, 20 Sep 2021 17:14:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 390A9E5 for ; Mon, 20 Sep 2021 17:14:58 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1632158088.665d2ab04b7f0583464b3f1c471853b27bc9bafe.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/dash-table/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-visualization/dash-table/Manifest sci-visualization/dash-table/dash-table-4.12.1.ebuild X-VCS-Directories: sci-visualization/dash-table/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 665d2ab04b7f0583464b3f1c471853b27bc9bafe X-VCS-Branch: master Date: Mon, 20 Sep 2021 17:14:58 +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: ff6a2afe-2feb-402f-bfb9-b7824562d5fc X-Archives-Hash: fb77e846af4658d76762157cacd77268 commit: 665d2ab04b7f0583464b3f1c471853b27bc9bafe Author: Alfredo Tupone gentoo org> AuthorDate: Mon Sep 20 17:14:32 2021 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Mon Sep 20 17:14:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=665d2ab0 sci-visualization/dash-table: bump 4.12.1 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Alfredo Tupone gentoo.org> sci-visualization/dash-table/Manifest | 1 + .../dash-table/dash-table-4.12.1.ebuild | 32 ++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/sci-visualization/dash-table/Manifest b/sci-visualization/dash-table/Manifest index fb78f350a95..33c5e9955d2 100644 --- a/sci-visualization/dash-table/Manifest +++ b/sci-visualization/dash-table/Manifest @@ -1 +1,2 @@ DIST dash-table-4.11.3.tar.gz 9504642 BLAKE2B d48e1448caf19f555d8e8436de295d6999dc4caabd4e80d188ec9921278dc4e48b6631dbf4a572cd190210bb83f0a73986c0c93c269b931aeff1fd52e152e248 SHA512 580de0b92ae114cd65e5a2a85aa96a78cbf3364173135ddb29ac3d2edd3ad2aa7b526d447481f78379da2c2420ed9cc8d6a83836565ccac31249ecc4a94a3db5 +DIST dash-table-4.12.1.tar.gz 9773683 BLAKE2B 97f00d2d6e9619bdd794f2e478dd4ab2eeaa521b170cef3a546a86e53632099e917e38f99d7ddc91cc4eebcf6199c301128916e29a7afecb2138da667bf38d32 SHA512 f521204b571fb20951202713721fd9fdd790d72a8a2f8461f77244bf8dcd2fb88b88626b590a63f1d28938b30ec4610112c9d2d1b5089d59cdc5219c3e16b5aa diff --git a/sci-visualization/dash-table/dash-table-4.12.1.ebuild b/sci-visualization/dash-table/dash-table-4.12.1.ebuild new file mode 100644 index 00000000000..273b870d6b7 --- /dev/null +++ b/sci-visualization/dash-table/dash-table-4.12.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8,9} ) +inherit distutils-r1 + +DESCRIPTION="First-Class interactive DataTable for Dash" +HOMEPAGE="https://plot.ly/dash" +SRC_URI="https://github.com/plotly/${PN}/archive/refs/tags/v${PV}.tar.gz + -> ${P}.tar.gz" +# Test execution depends on sci-visualization/dash being installed +# but sci-visualization/dash depends on this +RESTRICT="test" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="" + +distutils_enable_tests pytest + +python_prepare_all() { + # Needs percy - not available + rm -r tests/selenium || die + + distutils-r1_python_prepare_all +}