Gentoo Archives: gentoo-commits

From: Horea Christian <horea.christ@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/ABI-connectivity-data/
Date: Thu, 21 May 2020 09:20:37
Message-Id: 1590052826.1faa71c6da7a52cfb1bd1908b345cc1cc09c3e3d.chymera@gentoo
1 commit: 1faa71c6da7a52cfb1bd1908b345cc1cc09c3e3d
2 Author: Horea Christian <chr <AT> chymera <DOT> eu>
3 AuthorDate: Thu May 21 09:20:26 2020 +0000
4 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
5 CommitDate: Thu May 21 09:20:26 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1faa71c6
7
8 sci-biology/ABI-connectivity-data: version bump 0.2
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Horea Christian <chr <AT> chymera.eu>
12
13 .../ABI-connectivity-data-0.2.ebuild | 32 ++++++++++++++++++++++
14 1 file changed, 32 insertions(+)
15
16 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
17 new file mode 100644
18 index 000000000..260ce274d
19 --- /dev/null
20 +++ b/sci-biology/ABI-connectivity-data/ABI-connectivity-data-0.2.ebuild
21 @@ -0,0 +1,32 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit check-reqs
28 +
29 +DESCRIPTION="Connectivity data from the Allen Mouse Brain data portal"
30 +HOMEPAGE="https://github.com/IBT-FMI/ABI-connectivity-data"
31 +SRC_URI="http://chymera.eu/distfiles/${P}.tar.xz"
32 +
33 +LICENSE="fairuse"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
36 +
37 +RDEPEND=""
38 +DEPEND=""
39 +
40 +pkg_pretend() {
41 + CHECKREQS_DISK_BUILD="3G"
42 + CHECKREQS_DISK_USR="3G"
43 + CHECKREQS_DISK_VAR="3G"
44 + check-reqs_pkg_pretend
45 +}
46 +
47 +# We disable this phase to not check requirements twice.
48 +pkg_setup() { :; }
49 +
50 +src_install() {
51 + insinto "/usr/share/${PN}"
52 + doins -r *
53 +}