Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/pysam/
Date: Fri, 04 Dec 2015 07:01:17
Message-Id: 1449179940.94d90ab3b484a298828765dcccac7416741911d2.jlec@gentoo
1 commit: 94d90ab3b484a298828765dcccac7416741911d2
2 Author: Ted Tanberry <ted.tanberry <AT> gmail <DOT> com>
3 AuthorDate: Thu Dec 3 21:59:00 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 3 21:59:00 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=94d90ab3
7
8 sci-biology/pysam: version bump to 0.8.4
9
10 Package-Manager: portage-2.2.26
11
12 sci-biology/pysam/ChangeLog | 5 +++++
13 sci-biology/pysam/pysam-0.8.4.ebuild | 27 +++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/sci-biology/pysam/ChangeLog b/sci-biology/pysam/ChangeLog
17 index c4c9a54..492a5fc 100644
18 --- a/sci-biology/pysam/ChangeLog
19 +++ b/sci-biology/pysam/ChangeLog
20 @@ -2,6 +2,11 @@
21 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
22 # $Id$
23
24 +*pysam-0.8.4 (03 Dec 2015)
25 +
26 + 03 Dec 2015; Ted Tanberry <ted.tanberry@×××××.com> +pysam-0.8.4.ebuild:
27 + sci-biology/pysam: version bump to 0.8.4
28 +
29 04 May 2015; Marius Brehler <marbre@××××××××××××××.de> pysam-0.7.5.ebuild:
30 Fix deps
31
32
33 diff --git a/sci-biology/pysam/pysam-0.8.4.ebuild b/sci-biology/pysam/pysam-0.8.4.ebuild
34 new file mode 100644
35 index 0000000..2b4d3d9
36 --- /dev/null
37 +++ b/sci-biology/pysam/pysam-0.8.4.ebuild
38 @@ -0,0 +1,27 @@
39 +# Copyright 1999-2015 Gentoo Foundation
40 +# Distributed under the terms of the GNU General Public License v2
41 +# $Id$
42 +
43 +EAPI="5"
44 +
45 +PYTHON_COMPAT=( python2_7 )
46 +
47 +inherit distutils-r1
48 +
49 +DESCRIPTION="Python interface for the SAM/BAM sequence alignment and mapping format"
50 +HOMEPAGE="https://github.com/pysam-developers/pysam http://pypi.python.org/pypi/pysam"
51 +SRC_URI="https://github.com/pysam-developers/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
52 +
53 +LICENSE="MIT"
54 +SLOT="0"
55 +KEYWORDS="~amd64 ~x86"
56 +IUSE=""
57 +
58 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
59 + >=sci-biology/samtools-1.2[${PYTHON_USEDEP}]
60 + >=sci-libs/htslib-1.2.1"
61 +
62 +python_compile() {
63 + python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
64 + distutils-r1_python_compile
65 +}