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 EAE8A139360 for ; Sat, 14 Aug 2021 08:03:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2AA1EE0AF0; Sat, 14 Aug 2021 08:03:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 12AAFE0AF0 for ; Sat, 14 Aug 2021 08:03:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BE63B342B1B for ; Sat, 14 Aug 2021 08:03:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01F918B3 for ; Sat, 14 Aug 2021 08:03:33 +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: <1628928207.b7ed5d42b8eb1ef8aa59379031ed8cc5701b0a37.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tzlocal/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tzlocal/Manifest dev-python/tzlocal/tzlocal-3.0.ebuild X-VCS-Directories: dev-python/tzlocal/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b7ed5d42b8eb1ef8aa59379031ed8cc5701b0a37 X-VCS-Branch: master Date: Sat, 14 Aug 2021 08:03:33 +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: 8888e9c0-7a82-4792-9611-ad2b0d0d20e8 X-Archives-Hash: 62bd89d057d3e338d1b3c042e1fb3a29 commit: b7ed5d42b8eb1ef8aa59379031ed8cc5701b0a37 Author: Michał Górny gentoo org> AuthorDate: Sat Aug 14 05:54:23 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Aug 14 08:03:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7ed5d42 dev-python/tzlocal: Bump to 3.0 Signed-off-by: Michał Górny gentoo.org> dev-python/tzlocal/Manifest | 1 + dev-python/tzlocal/tzlocal-3.0.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-python/tzlocal/Manifest b/dev-python/tzlocal/Manifest index 9cf06a42b4d..46b125b77b5 100644 --- a/dev-python/tzlocal/Manifest +++ b/dev-python/tzlocal/Manifest @@ -1 +1,2 @@ DIST tzlocal-2.1.gh.tar.gz 18463 BLAKE2B 73e886cfb6d13bebc1a15a222da60f368a15dc5a097acac74990b1d76bdaa229be8f12ff735d1828ccd78c4c8d06eb5bc0a07da695d70251af1e67e4fb71037e SHA512 2679cebdc2692d9e0e1c9b714994ad881896f53e75ef407229a67c9fee9d27617638a2919865cb67e21e2bbd6e3bc13f2568343037e06603236f25a96aa6863d +DIST tzlocal-3.0.gh.tar.gz 18924 BLAKE2B 340739015ce0fae245ddcb2d3f6250886261a81a49c9db7960515e178090183d3a826ee494763503023c033d3d9c19771aad865d4c1150350a118250aab23362 SHA512 9060eb325783d183bfaf7038476031a2ea22fd4ba50f6b5caf3d8eda15d9c90e557c64a0218c7e3c3df51f385378fe8a17f10871abb038012e1d05a9547918c3 diff --git a/dev-python/tzlocal/tzlocal-3.0.ebuild b/dev-python/tzlocal/tzlocal-3.0.ebuild new file mode 100644 index 00000000000..cf573a7edda --- /dev/null +++ b/dev-python/tzlocal/tzlocal-3.0.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="tzinfo object for the local timezone" +HOMEPAGE="https://github.com/regebro/tzlocal" +SRC_URI="https://github.com/regebro/tzlocal/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +IUSE="" + +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/backports-zoneinfo[${PYTHON_USEDEP}] + ' python3_8 pypy3)" + +distutils_enable_tests pytest