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/irsabi_bidsdata/
Date: Fri, 03 May 2019 00:05:09
Message-Id: 1556841886.321b5ff18121930e28232e3d2a51ed6064a7dac7.chymera@gentoo
1 commit: 321b5ff18121930e28232e3d2a51ed6064a7dac7
2 Author: Horea Christian <horea.christ <AT> yandex <DOT> com>
3 AuthorDate: Fri May 3 00:04:46 2019 +0000
4 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
5 CommitDate: Fri May 3 00:04:46 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=321b5ff1
7
8 sci-biology/irsabi_bidsdata: version bump 1.1
9
10 Package-Manager: Portage-2.3.66, Repoman-2.3.12
11 Signed-off-by: Horea Christian <horea.christ <AT> yandex.com>
12
13 .../irsabi_bidsdata/irsabi_bidsdata-1.1.ebuild | 35 ++++++++++++++++++++++
14 1 file changed, 35 insertions(+)
15
16 diff --git a/sci-biology/irsabi_bidsdata/irsabi_bidsdata-1.1.ebuild b/sci-biology/irsabi_bidsdata/irsabi_bidsdata-1.1.ebuild
17 new file mode 100644
18 index 000000000..cd47dcfa3
19 --- /dev/null
20 +++ b/sci-biology/irsabi_bidsdata/irsabi_bidsdata-1.1.ebuild
21 @@ -0,0 +1,35 @@
22 +# Copyright 1999-2019 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="BIDS data files released with the IRSABI publication"
30 +HOMEPAGE="http://www.aic-fmi.ethz.ch/"
31 +SRC_URI="
32 + https://zenodo.org/record/2658627/files/${P}.tar.xz
33 + http://chymera.eu/distfiles/${P}.tar.xz
34 + "
35 +
36 +LICENSE="CC-BY-SA-4.0"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
39 +
40 +RDEPEND=""
41 +DEPEND=""
42 +
43 +pkg_pretend() {
44 + CHECKREQS_DISK_BUILD="10G"
45 + check-reqs_pkg_pretend
46 +}
47 +
48 +# We disable this phase to not check requirements twice.
49 +pkg_setup() { :; }
50 +
51 +src_install() {
52 + insinto "/usr/share/${PN}"
53 + doins -r *
54 +}
55 +
56 +S="${WORKDIR}/${MY_PN}"