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 1FBB8158095 for ; Mon, 10 Oct 2022 07:43:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E74BE089C; Mon, 10 Oct 2022 07:43: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 5099AE089C for ; Mon, 10 Oct 2022 07:43: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 6380A340FEB for ; Mon, 10 Oct 2022 07:43:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 07C255F1 for ; Mon, 10 Oct 2022 07:43:32 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1665387803.740725659c15a534468ba67c356429a9dccd6838.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/patsy/Manifest dev-python/patsy/patsy-0.5.3.ebuild X-VCS-Directories: dev-python/patsy/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 740725659c15a534468ba67c356429a9dccd6838 X-VCS-Branch: master Date: Mon, 10 Oct 2022 07:43:32 +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: 1be48488-a82a-424c-99d3-eb7fa260745b X-Archives-Hash: 12aebd75262bdc176ee79614b2e5409d commit: 740725659c15a534468ba67c356429a9dccd6838 Author: Arthur Zamarin gentoo org> AuthorDate: Mon Oct 10 06:46:33 2022 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Mon Oct 10 07:43:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74072565 dev-python/patsy: add 0.5.3 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/patsy/Manifest | 1 + dev-python/patsy/patsy-0.5.3.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest index 67873491e698..1a4b898c0d39 100644 --- a/dev-python/patsy/Manifest +++ b/dev-python/patsy/Manifest @@ -1 +1,2 @@ DIST patsy-0.5.2.tar.gz 397275 BLAKE2B 3aa5dc310729bd979c78004d5f1badb83b75b08d290cf8258191c87d61401f0b6ecd9490f1c4b932269e545c50a16694e44de9c076ca80648717c5f1af62fb69 SHA512 898df5536b0ff3a4d299e69c5f73a3d754cfbe78fe463fb4c4726cfd67d4e30c77cd3d7093131737207cb9f29c1374ab20a68ec5978007ea51878ec7c395f48d +DIST patsy-0.5.3.tar.gz 397680 BLAKE2B 43696f9e95c124cab5bf907723596d8b2b15f0539fbd2b9c2a2fcc76591e935020929ba31fd5378114fe58d22a9931508d89edf21f24b00c916a6e78dc4ee58f SHA512 9a6ea2382287208013e02bab7cba9378311a8e18fe059593aa99090bb6191efa74badff011424a7f6b3c8ec72c1b8650637322b71617f23357bb4b38ac6a79a0 diff --git a/dev-python/patsy/patsy-0.5.3.ebuild b/dev-python/patsy/patsy-0.5.3.ebuild new file mode 100644 index 000000000000..14d0d4386090 --- /dev/null +++ b/dev-python/patsy/patsy-0.5.3.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="Python module to describe statistical models and design matrices" +HOMEPAGE="https://patsy.readthedocs.io/en/latest/index.html" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + !hppa? ( dev-python/scipy[${PYTHON_USEDEP}] ) +" + +distutils_enable_tests pytest