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 B60DE158015 for ; Sun, 26 Sep 2021 06:52:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC541E0965; Sun, 26 Sep 2021 06:52:11 +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 E01FDE0965 for ; Sun, 26 Sep 2021 06:52:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B9B5A342FD8 for ; Sun, 26 Sep 2021 06:52:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2157AA3 for ; Sun, 26 Sep 2021 06:52:08 +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: <1632639124.21f72c2fae4daf8fe109549a269b286e0267dbbd.mgorny@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.2.ebuild X-VCS-Directories: dev-python/patsy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 21f72c2fae4daf8fe109549a269b286e0267dbbd X-VCS-Branch: master Date: Sun, 26 Sep 2021 06:52:08 +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: 00e93bf5-e2d7-4503-ba58-8bd0545c889f X-Archives-Hash: 46a455c2097617d4f14ce5c2b90a496b commit: 21f72c2fae4daf8fe109549a269b286e0267dbbd Author: Michał Górny gentoo org> AuthorDate: Sun Sep 26 06:14:02 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Sep 26 06:52:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21f72c2f dev-python/patsy: Bump to 0.5.2 Signed-off-by: Michał Górny gentoo.org> dev-python/patsy/Manifest | 1 + dev-python/patsy/patsy-0.5.2.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest index f7b04d950b1..b66b50f379e 100644 --- a/dev-python/patsy/Manifest +++ b/dev-python/patsy/Manifest @@ -1 +1,2 @@ DIST patsy-0.5.1.tar.gz 397623 BLAKE2B b8861e8c8e223db5df616c378d5b1ce475a1b337d049723c1a4b01432d9e1569c4b6537dc467fbc1ba83dfc7cd999ad188008e387c446f2133f872393c9eb960 SHA512 aeb56411e68713ec75c0b5344890939f721c460d3c7643b9fd57d7c928421d21408b0f2963348edf27a025842989dbae6fd5cfccd3f9d9497d60a1dffe8d7bdc +DIST patsy-0.5.2.tar.gz 397275 BLAKE2B 3aa5dc310729bd979c78004d5f1badb83b75b08d290cf8258191c87d61401f0b6ecd9490f1c4b932269e545c50a16694e44de9c076ca80648717c5f1af62fb69 SHA512 898df5536b0ff3a4d299e69c5f73a3d754cfbe78fe463fb4c4726cfd67d4e30c77cd3d7093131737207cb9f29c1374ab20a68ec5978007ea51878ec7c395f48d diff --git a/dev-python/patsy/patsy-0.5.2.ebuild b/dev-python/patsy/patsy-0.5.2.ebuild new file mode 100644 index 00000000000..79ca7593449 --- /dev/null +++ b/dev-python/patsy/patsy-0.5.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2021 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 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + dev-python/scipy[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest