Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/stampy-bin/
Date: Mon, 01 Feb 2021 04:54:52
Message-Id: 1612155252.141d595a554e77413db8b484a734ee2100d51cb5.andrewammerlaan@gentoo
1 commit: 141d595a554e77413db8b484a734ee2100d51cb5
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
3 AuthorDate: Mon Feb 1 04:54:12 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Mon Feb 1 04:54:12 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=141d595a
7
8 sci-biology/stampy-bin: drop pack, py2 only
9
10 documentation says it needs py2.6 or py2.7
11
12 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
13
14 sci-biology/stampy-bin/metadata.xml | 12 -------
15 sci-biology/stampy-bin/stampy-bin-1.0.28.ebuild | 43 -------------------------
16 2 files changed, 55 deletions(-)
17
18 diff --git a/sci-biology/stampy-bin/metadata.xml b/sci-biology/stampy-bin/metadata.xml
19 deleted file mode 100644
20 index 138cb7705..000000000
21 --- a/sci-biology/stampy-bin/metadata.xml
22 +++ /dev/null
23 @@ -1,12 +0,0 @@
24 -<?xml version="1.0" encoding="UTF-8"?>
25 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
26 -<pkgmetadata>
27 - <maintainer type="person">
28 - <email>mmokrejs@×××××××××××××××.cz</email>
29 - <name>Martin Mokrejs</name>
30 - </maintainer>
31 - <maintainer type="project">
32 - <email>sci-biology@g.o</email>
33 - <name>Gentoo Biology Project</name>
34 - </maintainer>
35 -</pkgmetadata>
36
37 diff --git a/sci-biology/stampy-bin/stampy-bin-1.0.28.ebuild b/sci-biology/stampy-bin/stampy-bin-1.0.28.ebuild
38 deleted file mode 100644
39 index 6d3034304..000000000
40 --- a/sci-biology/stampy-bin/stampy-bin-1.0.28.ebuild
41 +++ /dev/null
42 @@ -1,43 +0,0 @@
43 -# Copyright 1999-2021 Gentoo Authors
44 -# Distributed under the terms of the GNU General Public License v2
45 -
46 -EAPI=5
47 -PYTHON_COMPAT=( python2_7 )
48 -
49 -inherit toolchain-funcs python-r1 python-utils-r1
50 -
51 -DESCRIPTION="Map highly divergent short reads to a reference"
52 -HOMEPAGE="http://www.well.ox.ac.uk/project-stampy"
53 -SRC_URI="stampy-${PV}.tar.gz"
54 -
55 -LICENSE="stampy-academic"
56 -SLOT="0"
57 -KEYWORDS="~amd64 ~x86"
58 -
59 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
60 -
61 -RESTRICT="fetch"
62 -
63 -DEPEND="${PYTHON_DEPS}"
64 -RDEPEND="${DEPEND}"
65 -
66 -S="${WORKDIR}"/stampy-${PV}
67 -
68 -# FIXME: the makefile calls python but fails if that is under python-3.4, 2.7 works
69 -# FIXME: respect CC and CXX
70 -
71 -src_prepare(){
72 - sed -e 's/-O2 -Wall/$(CFLAGS)/' -i makefile || die
73 -}
74 -
75 -src_install(){
76 - dobin *.py
77 - python_foreach_impl python_domodule maptools.so
78 - python_moduleinto Stampy
79 - python_foreach_impl python_domodule build/python2.7/Stampy/*.pyc # only *.pyc files available
80 - python_moduleinto ext
81 - python_foreach_impl python_domodule build/python2.7/ext/*.pyc # only *.pyc files available
82 - python_moduleinto plugins
83 - python_foreach_impl python_domodule build/python2.7/plugins/*.py*
84 - dodoc README.txt
85 -}