Gentoo Archives: gentoo-commits

From: Martin Mokrejs <mmokrejs@×××××××××××××××.cz>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/ntCard/
Date: Fri, 09 Feb 2018 22:36:55
Message-Id: 1518215794.9937ba8b1340a6187cddeb99a4f4b7d45e252eb4.mmokrejs@gentoo
1 commit: 9937ba8b1340a6187cddeb99a4f4b7d45e252eb4
2 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Fri Feb 9 22:36:34 2018 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Fri Feb 9 22:36:34 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=9937ba8b
7
8 sci-biology/ntCard: new package
9
10 Package-Manager: Portage-2.3.23, Repoman-2.3.6
11
12 sci-biology/ntCard/metadata.xml | 12 ++++++++++++
13 sci-biology/ntCard/ntCard-1.0.1.ebuild | 23 +++++++++++++++++++++++
14 sci-biology/ntCard/ntCard-9999.ebuild | 23 +++++++++++++++++++++++
15 3 files changed, 58 insertions(+)
16
17 diff --git a/sci-biology/ntCard/metadata.xml b/sci-biology/ntCard/metadata.xml
18 new file mode 100644
19 index 000000000..138cb7705
20 --- /dev/null
21 +++ b/sci-biology/ntCard/metadata.xml
22 @@ -0,0 +1,12 @@
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>mmokrejs@×××××××××××××××.cz</email>
28 + <name>Martin Mokrejs</name>
29 + </maintainer>
30 + <maintainer type="project">
31 + <email>sci-biology@g.o</email>
32 + <name>Gentoo Biology Project</name>
33 + </maintainer>
34 +</pkgmetadata>
35
36 diff --git a/sci-biology/ntCard/ntCard-1.0.1.ebuild b/sci-biology/ntCard/ntCard-1.0.1.ebuild
37 new file mode 100644
38 index 000000000..14470723a
39 --- /dev/null
40 +++ b/sci-biology/ntCard/ntCard-1.0.1.ebuild
41 @@ -0,0 +1,23 @@
42 +# Copyright 1999-2018 Gentoo Foundation
43 +# Distributed under the terms of the GNU General Public License v2
44 +
45 +EAPI=6
46 +
47 +inherit eutils
48 +
49 +DESCRIPTION="Estimate k-mer coverage histogram of genomics data"
50 +HOMEPAGE="https://github.com/bcgsc/ntCard"
51 +SRC_URI="https://github.com/bcgsc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
52 +
53 +LICENSE="MIT"
54 +SLOT="0"
55 +KEYWORDS="~amd64 ~x86"
56 +IUSE=""
57 +
58 +DEPEND=""
59 +RDEPEND="${DEPEND}"
60 +
61 +src_prepare(){
62 + sh ./autogen.sh || die
63 + default
64 +}
65
66 diff --git a/sci-biology/ntCard/ntCard-9999.ebuild b/sci-biology/ntCard/ntCard-9999.ebuild
67 new file mode 100644
68 index 000000000..15b29ff93
69 --- /dev/null
70 +++ b/sci-biology/ntCard/ntCard-9999.ebuild
71 @@ -0,0 +1,23 @@
72 +# Copyright 1999-2018 Gentoo Foundation
73 +# Distributed under the terms of the GNU General Public License v2
74 +
75 +EAPI=6
76 +
77 +inherit eutils git-r3
78 +
79 +DESCRIPTION="Estimate k-mer coverage histogram of genomics data"
80 +HOMEPAGE="https://github.com/bcgsc/ntCard"
81 +EGIT_REPO_URI="https://github.com/bcgsc/ntCard.git"
82 +
83 +LICENSE="MIT"
84 +SLOT="0"
85 +KEYWORDS=""
86 +IUSE=""
87 +
88 +DEPEND=""
89 +RDEPEND="${DEPEND}"
90 +
91 +src_prepare(){
92 + sh ./autogen.sh || die
93 + default
94 +}