From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id C767F1581EE for ; Mon, 07 Apr 2025 20:24:03 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 868103430EC for ; Mon, 07 Apr 2025 20:24:03 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 814381104B6; Mon, 07 Apr 2025 20:24:02 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 736161104B6 for ; Mon, 07 Apr 2025 20:24:02 +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 19494342FF0 for ; Mon, 07 Apr 2025 20:24:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7622A1379 for ; Mon, 07 Apr 2025 20:24:00 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1744057420.3300f659cbe1e6b8cf94e070d3ead4d04f3d99e1.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-ml/fastcore/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-ml/fastcore/Manifest sci-ml/fastcore/fastcore-1.7.29.ebuild sci-ml/fastcore/metadata.xml X-VCS-Directories: sci-ml/fastcore/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 3300f659cbe1e6b8cf94e070d3ead4d04f3d99e1 X-VCS-Branch: master Date: Mon, 07 Apr 2025 20:24: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: 754bbe32-a453-4324-a2dd-f4cc83029515 X-Archives-Hash: 751a58ed57b0a5df7ed4d22aa176b896 commit: 3300f659cbe1e6b8cf94e070d3ead4d04f3d99e1 Author: Alfredo Tupone gentoo org> AuthorDate: Mon Apr 7 20:23:12 2025 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Mon Apr 7 20:23:40 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3300f659 sci-ml/fastcore: new package, add 1.7.29 Signed-off-by: Alfredo Tupone gentoo.org> sci-ml/fastcore/Manifest | 1 + sci-ml/fastcore/fastcore-1.7.29.ebuild | 20 ++++++++++++++++++++ sci-ml/fastcore/metadata.xml | 11 +++++++++++ 3 files changed, 32 insertions(+) diff --git a/sci-ml/fastcore/Manifest b/sci-ml/fastcore/Manifest new file mode 100644 index 000000000000..db0d2810fc2d --- /dev/null +++ b/sci-ml/fastcore/Manifest @@ -0,0 +1 @@ +DIST fastcore-1.7.29.tar.gz 854672 BLAKE2B dc62bf2a84cde5ee4bd5519dd184008136129b8c06e888f3587e95e29f124aae1a7de7ffbbf64ca63f95f2033dc677bce2d78b18a9acfd4637e05ad31b85c4b3 SHA512 0caf1ceb273a9c4f5b8fd65b5cf29c028be07d2a337b425233fdfd2089e7ce466857935359f321398df9ecdfd6ce8f2d84a681efaf78e5824bce69f884211d4f diff --git a/sci-ml/fastcore/fastcore-1.7.29.ebuild b/sci-ml/fastcore/fastcore-1.7.29.ebuild new file mode 100644 index 000000000000..9ae8d57f581c --- /dev/null +++ b/sci-ml/fastcore/fastcore-1.7.29.ebuild @@ -0,0 +1,20 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{11..13} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +DESCRIPTION="Python supercharged for the fastai library" +HOMEPAGE="https://fastcore.fast.ai/" +SRC_URI="https://github.com/AnswerDotAI/${PN}/archive/refs/tags/${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +RESTRICT="test" # No test available + +RDEPEND="dev-python/packaging[${PYTHON_USEDEP}]" diff --git a/sci-ml/fastcore/metadata.xml b/sci-ml/fastcore/metadata.xml new file mode 100644 index 000000000000..3d5bcd63f75b --- /dev/null +++ b/sci-ml/fastcore/metadata.xml @@ -0,0 +1,11 @@ + + + + + tupone@gentoo.org + Tupone Alfredo + + + AnswerDotAI/fastcore + +