Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/pysam/, sci-biology/pysam/files/
Date: Sat, 02 Sep 2017 12:37:22
Message-Id: 1504355819.de55574a2c871cd8baaf5fdc33960f90401d3e44.soap@gentoo
1 commit: de55574a2c871cd8baaf5fdc33960f90401d3e44
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 2 11:07:41 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 2 12:36:59 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de55574a
7
8 sci-biology/pysam: Remove old
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11 Closes: https://github.com/gentoo/gentoo/pull/5593
12
13 sci-biology/pysam/Manifest | 1 -
14 .../pysam/files/pysam-0.9.0-missing-config.h.patch | 40 -------------------
15 sci-biology/pysam/pysam-0.9.0.ebuild | 45 ----------------------
16 3 files changed, 86 deletions(-)
17
18 diff --git a/sci-biology/pysam/Manifest b/sci-biology/pysam/Manifest
19 index b2e7af85717..c95db9a1dcd 100644
20 --- a/sci-biology/pysam/Manifest
21 +++ b/sci-biology/pysam/Manifest
22 @@ -1,2 +1 @@
23 DIST pysam-0.12.tar.gz 2537142 SHA256 33922cb3277ed9a63457c1b6a9dcad2774a217ababcc97a854435be87ba80488 SHA512 095a47cd7258ef093a172445c425f382996da886e44e1beb81ecdec2325024e099d14bee6fcd928c4449099f51ad92b6d7ceb464815c463ab4478f162a40f21e WHIRLPOOL 2331e24d817cd3e7372df8e115498456e685ac426796b29c6d5a28edbaab2321f7efc9db0f14a000750fcd9e30391c02b81e439a07596813bdf7fc6c6e1a3ae3
24 -DIST pysam-0.9.0.tar.gz 2701721 SHA256 dd4946c8efa6786a754e2b50c6027dd03aa82c8ee6c2be3b4e51384da80b4c7c SHA512 9189ef2b56df0f5e2c84586c0c2b2cd46a77dbedd3aa6fd25ddcc4a93320038bead073206fff528ae9775f153c875838726dd0af8e4c7bf4e0c6063145e2bc06 WHIRLPOOL 6c7d459057fed3961e983b3e8563e10a47cb87f5da2fb99ca893eff9e19a8b9e4c27b5d82a978a611d615eba8052fbe3e36498ea461e03521a075d9aee8da463
25
26 diff --git a/sci-biology/pysam/files/pysam-0.9.0-missing-config.h.patch b/sci-biology/pysam/files/pysam-0.9.0-missing-config.h.patch
27 deleted file mode 100644
28 index 617786a5a58..00000000000
29 --- a/sci-biology/pysam/files/pysam-0.9.0-missing-config.h.patch
30 +++ /dev/null
31 @@ -1,40 +0,0 @@
32 -From 55f5d8ce51ad999123a779f31fcf0fecd60de9e6 Mon Sep 17 00:00:00 2001
33 -From: Andreas Heger <andreas.heger@×××××.com>
34 -Date: Mon, 21 Mar 2016 21:10:04 +0000
35 -Subject: [PATCH] {AH} create empty config.h for samtools if it does not exist,
36 - fixes #245
37 -
38 ----
39 - setup.py | 12 +++++++++++-
40 - 1 file changed, 11 insertions(+), 1 deletion(-)
41 -
42 -diff --git a/setup.py b/setup.py
43 -index 7b59b69..2f00c37 100644
44 ---- a/setup.py
45 -+++ b/setup.py
46 -@@ -155,7 +155,7 @@ def run_configure(option):
47 - outf.write(
48 - "/* empty config.h created by pysam */\n")
49 - outf.write(
50 -- "/* conservative compilation options */")
51 -+ "/* conservative compilation options */\n")
52 -
53 - if HTSLIB_LIBRARY_DIR:
54 - # linking against a shared, externally installed htslib version, no
55 -@@ -259,6 +259,16 @@ def run_configure(option):
56 - "adding shared libcurl and libcrypto")
57 - external_htslib_libraries.extend(["curl", "crypto"])
58 -
59 -+# create empty config.h files if they have not been created automatically
60 -+# or created by the user:
61 -+for fn in "samtools/config.h", "htslib/config.h":
62 -+ if not os.path.exists(fn):
63 -+ with open(fn, "w") as outf:
64 -+ outf.write(
65 -+ "/* empty config.h created by pysam */\n")
66 -+ outf.write(
67 -+ "/* conservative compilation options */\n")
68 -+
69 - parts = ["samtools",
70 - "bcftools",
71 - "htslib",
72
73 diff --git a/sci-biology/pysam/pysam-0.9.0.ebuild b/sci-biology/pysam/pysam-0.9.0.ebuild
74 deleted file mode 100644
75 index ba886f80899..00000000000
76 --- a/sci-biology/pysam/pysam-0.9.0.ebuild
77 +++ /dev/null
78 @@ -1,45 +0,0 @@
79 -# Copyright 1999-2016 Gentoo Foundation
80 -# Distributed under the terms of the GNU General Public License v2
81 -
82 -EAPI=6
83 -
84 -PYTHON_COMPAT=( python2_7 python3_{4,5} )
85 -
86 -inherit distutils-r1 python-r1
87 -
88 -DESCRIPTION="Python interface for the SAM/BAM sequence alignment and mapping format"
89 -HOMEPAGE="https://github.com/pysam-developers/pysam http://pypi.python.org/pypi/pysam"
90 -SRC_URI="https://github.com/pysam-developers/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
91 -
92 -LICENSE="MIT"
93 -SLOT="0"
94 -KEYWORDS="~amd64 ~x86"
95 -IUSE=""
96 -
97 -RDEPEND="=sci-libs/htslib-1.3*"
98 -DEPEND="${RDEPEND}
99 - dev-python/cython[${PYTHON_USEDEP}]
100 - dev-python/setuptools[${PYTHON_USEDEP}]"
101 -
102 -PATCHES=(
103 - "${FILESDIR}/${P}-missing-config.h.patch"
104 -)
105 -
106 -src_prepare() {
107 - default
108 -
109 - export HTSLIB_INCLUDE_DIR=${EPREFIX}/usr/include
110 - export HTSLIB_LIBRARY_DIR=${EPREFIX}/usr/$(get_libdir)
111 - export HTSLIB_CONFIGURE_OPTIONS="--disable-libcurl"
112 -
113 - sed -e "/ext\.extra_link_args += \['-Wl,-rpath,\$ORIGIN'\]/d" \
114 - -i cy_build.py || die
115 - sed -e '/runtime_library_dirs=htslib_library_dirs/d' \
116 - -i setup.py || die
117 -}
118 -
119 -src_compile() {
120 - # TODO
121 - # empty compile, as the build system runs the whole build again in install
122 - :
123 -}