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-expression-data/
Date: Thu, 21 May 2020 09:21:52
Message-Id: 1590052901.fad9d2fb42327765a4398853ba84412a962a0aad.chymera@gentoo
1 commit: fad9d2fb42327765a4398853ba84412a962a0aad
2 Author: Horea Christian <chr <AT> chymera <DOT> eu>
3 AuthorDate: Thu May 21 09:21:41 2020 +0000
4 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
5 CommitDate: Thu May 21 09:21:41 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=fad9d2fb
7
8 sci-biology/ABI-expression-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-expression-data-0.2.ebuild | 34 ++++++++++++++++++++++
14 1 file changed, 34 insertions(+)
15
16 diff --git a/sci-biology/ABI-expression-data/ABI-expression-data-0.2.ebuild b/sci-biology/ABI-expression-data/ABI-expression-data-0.2.ebuild
17 new file mode 100644
18 index 000000000..4636480f7
19 --- /dev/null
20 +++ b/sci-biology/ABI-expression-data/ABI-expression-data-0.2.ebuild
21 @@ -0,0 +1,34 @@
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="Gene expression data form the Allen Mouse Brain data portal"
30 +HOMEPAGE="https://github.com/IBT-FMI/ABI-geneexpression-data"
31 +SRC_URI="
32 + http://chymera.eu/distfiles/${P}.tar.xz
33 + "
34 +
35 +LICENSE="fairuse"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
38 +
39 +RDEPEND=""
40 +DEPEND=""
41 +
42 +pkg_pretend() {
43 + CHECKREQS_DISK_BUILD="7G"
44 + CHECKREQS_DISK_USR="7G"
45 + CHECKREQS_DISK_VAR="7G"
46 + check-reqs_pkg_pretend
47 +}
48 +
49 +# We disable this phase to not check requirements twice.
50 +pkg_setup() { :; }
51 +
52 +src_install() {
53 + insinto "/usr/share/${PN}"
54 + doins -r *
55 +}