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 B3BAA1382C5 for ; Tue, 2 Feb 2021 22:49:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02CFAE0936; Tue, 2 Feb 2021 22:49:05 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 DDD39E0936 for ; Tue, 2 Feb 2021 22:49:04 +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 953E63418B0 for ; Tue, 2 Feb 2021 22:49:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E697B46B for ; Tue, 2 Feb 2021 22:49:01 +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: <1612306134.6dafecdb7b6f5a498a11d2b67b98d93fb4059f49.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/rat-brain-templates/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/rat-brain-templates/metadata.xml sci-biology/rat-brain-templates/rat-brain-templates-0.2.ebuild X-VCS-Directories: sci-biology/rat-brain-templates/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 6dafecdb7b6f5a498a11d2b67b98d93fb4059f49 X-VCS-Branch: master Date: Tue, 2 Feb 2021 22:49:01 +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: 5eb8230c-2c0a-43eb-9375-cd4d59e18ecc X-Archives-Hash: 303515f63468bcf6d6cc11b9424fef56 commit: 6dafecdb7b6f5a498a11d2b67b98d93fb4059f49 Author: Horea Christian chymera eu> AuthorDate: Tue Feb 2 22:48:54 2021 +0000 Commit: Horea Christian gmail com> CommitDate: Tue Feb 2 22:48:54 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6dafecdb sci-biology/rat-brain-templates: new package Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Horea Christian chymera.eu> sci-biology/rat-brain-templates/metadata.xml | 17 +++++++++++++++ .../rat-brain-templates-0.2.ebuild | 25 ++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/sci-biology/rat-brain-templates/metadata.xml b/sci-biology/rat-brain-templates/metadata.xml new file mode 100644 index 000000000..ac271f806 --- /dev/null +++ b/sci-biology/rat-brain-templates/metadata.xml @@ -0,0 +1,17 @@ + + + + + horea.christ@gmail.com + Horea Christian + + + sci@gentoo.org + Gentoo Science Project + + + Digital rat brain template collection containing data files in NIfTI + format oriented in the standard RAS space, with origin at bregma for + use in magnetic resonance rat brain imaging. + + diff --git a/sci-biology/rat-brain-templates/rat-brain-templates-0.2.ebuild b/sci-biology/rat-brain-templates/rat-brain-templates-0.2.ebuild new file mode 100644 index 000000000..faecd8848 --- /dev/null +++ b/sci-biology/rat-brain-templates/rat-brain-templates-0.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A collection of rat brain templates in NIfTI format" +HOMEPAGE="https://gitlab.com/FOS-FMI/rat-brain-templates_generator" +SRC_URI="http://chymera.eu/distfiles/${P}.tar.xz" + +LICENSE="fairuse" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +pkg_pretend() { + CHECKREQS_DISK_BUILD="16G" + check-reqs_pkg_pretend +} + +# We disable this phase to not check requirements twice. +pkg_setup() { :; } + +src_install() { + insinto "/usr/share/${PN}" + doins * +}