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 87CA215800F for ; Fri, 27 Jan 2023 10:52:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B930BE0AAB; Fri, 27 Jan 2023 10:52:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A4695E0AAB for ; Fri, 27 Jan 2023 10:52:24 +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 CC21E3410EB for ; Fri, 27 Jan 2023 10:52:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A03C893 for ; Fri, 27 Jan 2023 10:52:20 +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: <1674816379.05c280e37d14568d7a5a24eec6513aff907b94e8.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/funcy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/funcy/Manifest dev-python/funcy/funcy-1.18.ebuild X-VCS-Directories: dev-python/funcy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 05c280e37d14568d7a5a24eec6513aff907b94e8 X-VCS-Branch: master Date: Fri, 27 Jan 2023 10:52:20 +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: 9b62ce6d-75d7-4f9f-9197-2a1d518e12c2 X-Archives-Hash: cd626e3d830fe6581f54e4056014c295 commit: 05c280e37d14568d7a5a24eec6513aff907b94e8 Author: Michał Górny gentoo org> AuthorDate: Fri Jan 27 08:04:53 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jan 27 10:46:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05c280e3 dev-python/funcy: Bump to 1.18 Signed-off-by: Michał Górny gentoo.org> dev-python/funcy/Manifest | 1 + dev-python/funcy/funcy-1.18.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/dev-python/funcy/Manifest b/dev-python/funcy/Manifest index 47857b4044a7..f2ddf8c3358b 100644 --- a/dev-python/funcy/Manifest +++ b/dev-python/funcy/Manifest @@ -1 +1,2 @@ DIST funcy-1.17.tar.gz 112383 BLAKE2B 150133f72ed165bdc9adc3a9f4954dfd5b846dea7b1ee2cae0d6621ebaec3e2ba986cd6596fd86482036aad6476913caec0868db9cf55c067fdbf62ac10953e2 SHA512 d48ce3b7a7b8ee7512df109d651f40ca4dadf681acca6ab0a4857a2ea408f20f6345b9b416ca8b1e924050a842648192b8fe79381c202361bc4d2e25bd55ad05 +DIST funcy-1.18.tar.gz 277530 BLAKE2B 78e86e23b3908924de1de62dd567ff8ff52079a9a7529923c84f67a3c5f768d232164d758763db1ce941986c28012dbcb3c146412998b1d1d6064efcc0ff4bf9 SHA512 274fec59c1fddc58248b5f8c81686955706333bbd33a1d567f62694c70449ef2488fae6bf76418b8ff3c6655fad12ed344cc6c90a84c5b10412e32fbdda016fe diff --git a/dev-python/funcy/funcy-1.18.ebuild b/dev-python/funcy/funcy-1.18.ebuild new file mode 100644 index 000000000000..9a149505ee00 --- /dev/null +++ b/dev-python/funcy/funcy-1.18.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..10} ) + +inherit distutils-r1 + +DESCRIPTION="A collection of fancy functional tools focused on practicality" +HOMEPAGE=" + https://github.com/Suor/funcy/ + https://pypi.org/project/funcy/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND=" + test? ( + dev-python/whatever[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest