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 29D30158090 for ; Wed, 18 May 2022 10:47:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 588E7E0933; Wed, 18 May 2022 10:47:03 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 37FB2E0933 for ; Wed, 18 May 2022 10:47:03 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 132303411F3 for ; Wed, 18 May 2022 10:47:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66D31474 for ; Wed, 18 May 2022 10:47:00 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1652870804.4a9e45fdcbfac3576d855ea427adc9006beb7fb2.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/aniso8601/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/aniso8601/aniso8601-9.0.1-r1.ebuild X-VCS-Directories: dev-python/aniso8601/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 4a9e45fdcbfac3576d855ea427adc9006beb7fb2 X-VCS-Branch: master Date: Wed, 18 May 2022 10:47:00 +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: b4c34cff-c73a-4699-bd8b-98bcda7ad733 X-Archives-Hash: 8fcaa79462ddfe60ec363545bcf0698f commit: 4a9e45fdcbfac3576d855ea427adc9006beb7fb2 Author: Andrew Ammerlaan gentoo org> AuthorDate: Wed May 18 10:19:19 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Wed May 18 10:46:44 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a9e45fd dev-python/aniso8601: update EAPI 7 -> 8 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/aniso8601/aniso8601-9.0.1-r1.ebuild | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/dev-python/aniso8601/aniso8601-9.0.1-r1.ebuild b/dev-python/aniso8601/aniso8601-9.0.1-r1.ebuild new file mode 100644 index 000000000000..f979167cba93 --- /dev/null +++ b/dev-python/aniso8601/aniso8601-9.0.1-r1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} pypy3 ) +DISTUTILS_USE_PEP517=setuptools + +inherit distutils-r1 + +DESCRIPTION="A library for parsing ISO 8601 strings" +HOMEPAGE="https://bitbucket.org/nielsenb/aniso8601/ https://pypi.org/project/aniso8601/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND=">=dev-python/python-dateutil-2.7.3[${PYTHON_USEDEP}]" + +distutils_enable_tests unittest