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 27DFB159C9B for ; Tue, 30 Jul 2024 15:34:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3DD9AE2A7B; Tue, 30 Jul 2024 15:34:40 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2213EE2A7B for ; Tue, 30 Jul 2024 15:34:40 +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 30D06340C9C for ; Tue, 30 Jul 2024 15:34:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B5BA61E7E for ; Tue, 30 Jul 2024 15:34:37 +0000 (UTC) From: "Horea Christian" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horea Christian" Message-ID: <1722353667.e4579f5851734f245b02cc1e98f3b69d9df67e09.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/nwb2bids/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/nwb2bids/metadata.xml dev-python/nwb2bids/nwb2bids-0.0.3.ebuild X-VCS-Directories: dev-python/nwb2bids/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: e4579f5851734f245b02cc1e98f3b69d9df67e09 X-VCS-Branch: master Date: Tue, 30 Jul 2024 15:34:37 +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: 6ab62374-3c72-488e-87ca-7719cc8c9c4d X-Archives-Hash: fd53768f2e4e6aa17d05e5fe8ecdfe03 commit: e4579f5851734f245b02cc1e98f3b69d9df67e09 Author: Horea Christian chymera eu> AuthorDate: Tue Jul 30 15:34:27 2024 +0000 Commit: Horea Christian gmail com> CommitDate: Tue Jul 30 15:34:27 2024 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e4579f58 dev-python/nwb2bids: new package, add 0.0.3 Signed-off-by: Horea Christian chymera.eu> dev-python/nwb2bids/metadata.xml | 15 +++++++++++++++ dev-python/nwb2bids/nwb2bids-0.0.3.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/dev-python/nwb2bids/metadata.xml b/dev-python/nwb2bids/metadata.xml new file mode 100644 index 000000000..6dc951583 --- /dev/null +++ b/dev-python/nwb2bids/metadata.xml @@ -0,0 +1,15 @@ + + + + + gentoo@chymera.eu + Horea Christian + + + sci@gentoo.org + Gentoo Science Project + + + con/nwb2bids + + diff --git a/dev-python/nwb2bids/nwb2bids-0.0.3.ebuild b/dev-python/nwb2bids/nwb2bids-0.0.3.ebuild new file mode 100644 index 000000000..5f778356e --- /dev/null +++ b/dev-python/nwb2bids/nwb2bids-0.0.3.ebuild @@ -0,0 +1,25 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..12} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +DESCRIPTION="Next-generation file format (NGFF) for storing bioimaging data in the cloud" +HOMEPAGE="https://github.com/con/nwb2bids" +SRC_URI="https://github.com/con/nwb2bids/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND=" + test? ( + dev-python/pynwb[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest