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/stampy/
Date: Fri, 15 Jul 2016 13:14:04
Message-Id: 1468588411.e48ef93babd11710d0e39fdea396cbd12f594968.mmokrejs@gentoo
1 commit: e48ef93babd11710d0e39fdea396cbd12f594968
2 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Fri Jul 15 13:13:31 2016 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Fri Jul 15 13:13:31 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e48ef93b
7
8 sci-biology/stampy: new package; installs into wrong PYTHON library path
9
10 Package-Manager: portage-2.2.28
11
12 sci-biology/stampy/metadata.xml | 12 ++++++++++++
13 sci-biology/stampy/stampy-1.0.28.ebuild | 30 ++++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/sci-biology/stampy/metadata.xml b/sci-biology/stampy/metadata.xml
17 new file mode 100644
18 index 0000000..f68a1b6
19 --- /dev/null
20 +++ b/sci-biology/stampy/metadata.xml
21 @@ -0,0 +1,12 @@
22 +<?xml version="1.0" encoding="UTF-8"?>
23 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
24 +<pkgmetadata>
25 + <maintainer type="person">
26 + <email>mmokrejs@×××××××××××××××.cz</email>
27 + <name>Martin Mokrejs</name>
28 + </maintainer>
29 + <maintainer type="project">
30 + <email>sci-biology@g.o</email>
31 + <name>Gentoo Biology Project</name>
32 + </maintainer>
33 +</pkgmetadata>
34
35 diff --git a/sci-biology/stampy/stampy-1.0.28.ebuild b/sci-biology/stampy/stampy-1.0.28.ebuild
36 new file mode 100644
37 index 0000000..c820e6a
38 --- /dev/null
39 +++ b/sci-biology/stampy/stampy-1.0.28.ebuild
40 @@ -0,0 +1,30 @@
41 +# Copyright 1999-2016 Gentoo Foundation
42 +# Distributed under the terms of the GNU General Public License v2
43 +# $Id$
44 +
45 +EAPI=6
46 +
47 +inherit toolchain-funcs
48 +
49 +DESCRIPTION="Map highly divergent short reads to a reference"
50 +HOMEPAGE="http://www.well.ox.ac.uk/project-stampy"
51 +SRC_URI="${P}.tar.gz"
52 +
53 +LICENSE="stampy-academic"
54 +SLOT="0"
55 +KEYWORDS=""
56 +IUSE=""
57 +
58 +RESTRICT="fetch"
59 +
60 +DEPEND=""
61 +RDEPEND="${DEPEND}"
62 +
63 +src_install(){
64 + dobin *.py
65 + local dest=/usr/$(get_libdir) # FIXME: still not correct
66 + insinto "${dest}"
67 + doins maptools.so
68 + fperms a+x ${dest}/maptools.so
69 + dodoc README.txt
70 +}