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 D65921382C5 for ; Thu, 21 May 2020 09:20:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 136B5E0895; Thu, 21 May 2020 09:20: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 EE64DE0895 for ; Thu, 21 May 2020 09:20:36 +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 4EE4434F70C for ; Thu, 21 May 2020 09:20:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BFDBA242 for ; Thu, 21 May 2020 09:20:33 +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: <1590052826.1faa71c6da7a52cfb1bd1908b345cc1cc09c3e3d.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/ABI-connectivity-data/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/ABI-connectivity-data/ABI-connectivity-data-0.2.ebuild X-VCS-Directories: sci-biology/ABI-connectivity-data/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 1faa71c6da7a52cfb1bd1908b345cc1cc09c3e3d X-VCS-Branch: master Date: Thu, 21 May 2020 09:20: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: 742f8e35-349c-456b-ae9b-cd63cccfc0d6 X-Archives-Hash: 9ac6473344e3a10383b56c13322d894e commit: 1faa71c6da7a52cfb1bd1908b345cc1cc09c3e3d Author: Horea Christian chymera eu> AuthorDate: Thu May 21 09:20:26 2020 +0000 Commit: Horea Christian gmail com> CommitDate: Thu May 21 09:20:26 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1faa71c6 sci-biology/ABI-connectivity-data: version bump 0.2 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Horea Christian chymera.eu> .../ABI-connectivity-data-0.2.ebuild | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/sci-biology/ABI-connectivity-data/ABI-connectivity-data-0.2.ebuild b/sci-biology/ABI-connectivity-data/ABI-connectivity-data-0.2.ebuild new file mode 100644 index 000000000..260ce274d --- /dev/null +++ b/sci-biology/ABI-connectivity-data/ABI-connectivity-data-0.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit check-reqs + +DESCRIPTION="Connectivity data from the Allen Mouse Brain data portal" +HOMEPAGE="https://github.com/IBT-FMI/ABI-connectivity-data" +SRC_URI="http://chymera.eu/distfiles/${P}.tar.xz" + +LICENSE="fairuse" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND="" +DEPEND="" + +pkg_pretend() { + CHECKREQS_DISK_BUILD="3G" + CHECKREQS_DISK_USR="3G" + CHECKREQS_DISK_VAR="3G" + check-reqs_pkg_pretend +} + +# We disable this phase to not check requirements twice. +pkg_setup() { :; } + +src_install() { + insinto "/usr/share/${PN}" + doins -r * +}