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/opfvta_bidsdata/
Date: Sun, 02 Jun 2019 23:04:13
Message-Id: 1559516632.0b0d1f92936f37f2df3039241c3586e9ccd4db06.chymera@gentoo
1 commit: 0b0d1f92936f37f2df3039241c3586e9ccd4db06
2 Author: Horea Christian <chr <AT> chymera <DOT> eu>
3 AuthorDate: Sun Jun 2 23:03:52 2019 +0000
4 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
5 CommitDate: Sun Jun 2 23:03:52 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=0b0d1f92
7
8 sci-biology/opfvta_bidsdata: new package
9
10 Package-Manager: Portage-2.3.67, Repoman-2.3.13
11 Signed-off-by: Horea Christian <chr <AT> chymera.eu>
12
13 sci-biology/opfvta_bidsdata/metadata.xml | 20 +++++++++++++
14 .../opfvta_bidsdata/opfvta_bidsdata-1.0.ebuild | 33 ++++++++++++++++++++++
15 2 files changed, 53 insertions(+)
16
17 diff --git a/sci-biology/opfvta_bidsdata/metadata.xml b/sci-biology/opfvta_bidsdata/metadata.xml
18 new file mode 100644
19 index 000000000..729ebaaa6
20 --- /dev/null
21 +++ b/sci-biology/opfvta_bidsdata/metadata.xml
22 @@ -0,0 +1,20 @@
23 +<?xml version="1.0" encoding="UTF-8"?>
24 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
25 +<pkgmetadata>
26 + <maintainer type="person">
27 + <email>chr@×××××××.eu</email>
28 + <name>Horea Christian</name>
29 + </maintainer>
30 + <maintainer type="project">
31 + <email>sci@g.o</email>
32 + <name>Gentoo Science Project</name>
33 + </maintainer>
34 + <longdescription lang="en">
35 + BIDS-formatted MRI data recorded at the ETH/UZH Animal Imaging Center
36 + and first associated with the OPFVTA publication. The data represents
37 + f/MRI mouse brain scans with both BOLD and CBV contrasts, using block
38 + and phasic stimulation protocols delivered via a laser to the VTA,
39 + which is rendered sensitive by channelrhodopsin expression under
40 + the dopamine transporter promoter.
41 + </longdescription>
42 +</pkgmetadata>
43
44 diff --git a/sci-biology/opfvta_bidsdata/opfvta_bidsdata-1.0.ebuild b/sci-biology/opfvta_bidsdata/opfvta_bidsdata-1.0.ebuild
45 new file mode 100644
46 index 000000000..e8ac9ff97
47 --- /dev/null
48 +++ b/sci-biology/opfvta_bidsdata/opfvta_bidsdata-1.0.ebuild
49 @@ -0,0 +1,33 @@
50 +# Copyright 1999-2019 Gentoo Authors
51 +# Distributed under the terms of the GNU General Public License v2
52 +
53 +EAPI=7
54 +
55 +inherit check-reqs
56 +
57 +DESCRIPTION="BIDS data files released with the OPFVTA publication"
58 +HOMEPAGE="http://www.aic-fmi.ethz.ch/"
59 +SRC_URI="
60 + https://zenodo.org/record/3236930/files/${P}.tar.xz
61 + http://chymera.eu/distfiles/${P}.tar.xz
62 + "
63 +
64 +LICENSE="CC-BY-SA-4.0"
65 +SLOT="0"
66 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
67 +
68 +RDEPEND=""
69 +DEPEND=""
70 +
71 +pkg_pretend() {
72 + CHECKREQS_DISK_BUILD="11G"
73 + check-reqs_pkg_pretend
74 +}
75 +
76 +# We disable this phase to not check requirements twice.
77 +pkg_setup() { :; }
78 +
79 +src_install() {
80 + insinto "/usr/share/${PN}"
81 + doins -r *
82 +}