Gentoo Archives: gentoo-commits

From: Marius Brehler <marbre@××××××××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/hmmer/, sci-biology/hmmer/files/
Date: Wed, 12 Oct 2016 06:30:59
Message-Id: 1476026463.34b9085a65dbd111a02b71d66e07caad8ec31e32.marbre@gentoo
1 commit: 34b9085a65dbd111a02b71d66e07caad8ec31e32
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 9 15:21:03 2016 +0000
4 Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
5 CommitDate: Sun Oct 9 15:21:03 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=34b9085a
7
8 sci-biology/hmmer: Remove, latest version in main tree
9
10 .../hmmer/files/hmmer-3.1_beta2-fix_tests.patch | 12 ---
11 .../hmmer/files/hmmer-3.1_beta2-perl-5.16-2.patch | 90 ----------------------
12 sci-biology/hmmer/hmmer-3.1_beta2.ebuild | 48 ------------
13 sci-biology/hmmer/metadata.xml | 8 --
14 4 files changed, 158 deletions(-)
15
16 diff --git a/sci-biology/hmmer/files/hmmer-3.1_beta2-fix_tests.patch b/sci-biology/hmmer/files/hmmer-3.1_beta2-fix_tests.patch
17 deleted file mode 100644
18 index 9f4ea12..0000000
19 --- a/sci-biology/hmmer/files/hmmer-3.1_beta2-fix_tests.patch
20 +++ /dev/null
21 @@ -1,12 +0,0 @@
22 ---- easel/Makefile.in.old 2015-11-19 23:49:53.470244757 +0100
23 -+++ easel/Makefile.in 2015-11-19 23:52:01.120245091 +0100
24 -@@ -52,8 +52,7 @@
25 - SIMDFLAGS= @SIMD_CFLAGS@
26 - CPPFLAGS = @CPPFLAGS@
27 - LDFLAGS = @LDFLAGS@
28 --LIBGSL = @LIBGSL@
29 --LIBS = @LIBS@ @PTHREAD_LIBS@
30 -+LIBS = @LIBS@ @LIBGSL@ @PTHREAD_LIBS@
31 -
32 - # Other tools
33 - #
34
35 diff --git a/sci-biology/hmmer/files/hmmer-3.1_beta2-perl-5.16-2.patch b/sci-biology/hmmer/files/hmmer-3.1_beta2-perl-5.16-2.patch
36 deleted file mode 100644
37 index 88a8ea4..0000000
38 --- a/sci-biology/hmmer/files/hmmer-3.1_beta2-perl-5.16-2.patch
39 +++ /dev/null
40 @@ -1,90 +0,0 @@
41 ---- easel/devkit/autodoc.ori 2015-11-19 23:54:04.170245412 +0100
42 -+++ easel/devkit/autodoc 2015-11-19 23:54:27.190245472 +0100
43 -@@ -49,8 +49,8 @@
44 - #
45 - # SRE, Tue Nov 30 19:43:47 2004
46 -
47 --require "getopts.pl";
48 --&Getopts('n:t');
49 -+use Getopt::Std;
50 -+getopts('n:t');
51 - $cfile = shift;
52 -
53 - if ($opt_t) { $show_api_table = 1; }
54 ---- easel/devkit/esl-dependencies.ori 2015-11-19 23:54:40.830245508 +0100
55 -+++ easel/devkit/esl-dependencies 2015-11-19 23:55:08.510245580 +0100
56 -@@ -13,8 +13,8 @@
57 - # SRE, Mon Jun 11 11:15:31 2007
58 - # SVN $Id$
59 -
60 --require "getopts.pl"
61 --&Getopts('1afr');
62 -+use Getopt::Std;
63 -+getopts('1afr');
64 -
65 - if ($opt_1) { $show_summary_table = 1; }
66 - if ($opt_a) { $list_augfiles = 1; }
67 ---- easel/devkit/sqc.ori 2015-11-19 23:55:15.900245600 +0100
68 -+++ easel/devkit/sqc 2015-11-19 23:56:16.530245758 +0100
69 -@@ -674,7 +674,7 @@
70 - #
71 - sub tempname {
72 - my ($dir, $name, $suffix);
73 -- if ($TMPDIR) { $dir = $TMPDIR."/"; } else {$dir = "";}
74 -+ if ($ENV{TMPDIR}) { $dir = $ENV{TMPDIR}."/"; } else {$dir = "";}
75 -
76 - foreach $suffix ("aa".."zz") {
77 - $name = "$dir"."esltmp".$suffix.$$;
78 ---- easel/testsuite/coverage_report.pl.ori 2015-11-19 23:56:34.010245804 +0100
79 -+++ easel/testsuite/coverage_report.pl 2015-11-19 23:57:03.040245879 +0100
80 -@@ -16,9 +16,9 @@
81 - #
82 - # SRE, Thu Mar 1 19:22:57 2007 (Janelia)
83 - # SVN $Id: coverage_report.pl 231 2008-03-25 14:43:57Z eddys $
84 --require "getopts.pl";
85 -+use Getopt::Std;
86 - $have_sloccount = 1;
87 --&Getopts('cs');
88 -+getopts('cs');
89 - if ($opt_c) { $do_recompile = 1; }
90 - if ($opt_s) { $have_sloccount = 0; }
91 -
92 ---- easel/testsuite/driver_report.pl.ori 2015-11-19 23:57:14.600245910 +0100
93 -+++ easel/testsuite/driver_report.pl 2015-11-19 23:57:39.310245974 +0100
94 -@@ -25,8 +25,8 @@
95 - # SRE, Fri Mar 2 10:01:44 2007 (Janelia)
96 - # SVN $Id: driver_report.pl 664 2011-02-27 17:08:36Z eddys $
97 -
98 --require "getopts.pl";
99 --&Getopts('c');
100 -+use Getopt::Std;
101 -+getopts('c');
102 - if ($opt_c) { $do_recompile = 1; }
103 -
104 - if ($ENV{'CC'} ne "") { $CC = $ENV{'CC'}; } else { $CC = "gcc"; }
105 ---- easel/testsuite/valgrind_report.pl.ori 2015-11-19 23:57:47.480245996 +0100
106 -+++ easel/testsuite/valgrind_report.pl 2015-11-19 23:58:03.000246036 +0100
107 -@@ -10,8 +10,8 @@
108 - #
109 - # SRE, Fri Mar 2 08:37:48 2007 [Janelia]
110 - # SVN $Id: valgrind_report.pl 231 2008-03-25 14:43:57Z eddys $
111 --require "getopts.pl";
112 --&Getopts('c');
113 -+use Getopt::Std;
114 -+getopts('c');
115 - if ($opt_c) { $do_recompile = 1; }
116 -
117 - if ($ENV{'CC'} ne "") { $CC = $ENV{'CC'}; } else { $CC = "gcc"; }
118 ---- profmark/rocplot.pl.ori 2015-11-19 23:58:12.530246061 +0100
119 -+++ profmark/rocplot.pl 2015-11-19 23:58:43.090246141 +0100
120 -@@ -2,8 +2,8 @@
121 -
122 - $nsearches = 2809;
123 -
124 --require "getopts.pl";
125 --&Getopts('n:X:x:');
126 -+use Getopt::Std;
127 -+getopts('n:X:x:');
128 -
129 - if ($opt_n) { $nsearches = $opt_n; }
130 - if ($opt_X) {
131
132 diff --git a/sci-biology/hmmer/hmmer-3.1_beta2.ebuild b/sci-biology/hmmer/hmmer-3.1_beta2.ebuild
133 deleted file mode 100644
134 index 880df1e..0000000
135 --- a/sci-biology/hmmer/hmmer-3.1_beta2.ebuild
136 +++ /dev/null
137 @@ -1,48 +0,0 @@
138 -# Copyright 1999-2015 Gentoo Foundation
139 -# Distributed under the terms of the GNU General Public License v2
140 -# $Id$
141 -
142 -EAPI=5
143 -
144 -inherit eutils
145 -
146 -MY_PV="3.1b2"
147 -DESCRIPTION="Sequence analysis using profile hidden Markov models"
148 -HOMEPAGE="http://hmmer.janelia.org/"
149 -SRC_URI="ftp://selab.janelia.org/pub/software/hmmer3/"${MY_PV}"/"${PN}"-"${MY_PV}".tar.gz"
150 -
151 -LICENSE="GPL-3"
152 -SLOT="0"
153 -IUSE="+cpu_flags_x86_sse mpi +threads gsl static-libs"
154 -KEYWORDS="~amd64"
155 -
156 -DEPEND="
157 - mpi? ( virtual/mpi )
158 - gsl? ( >=sci-libs/gsl-1.12 )"
159 -RDEPEND="${DEPEND}"
160 -
161 -S="${WORKDIR}"/"${PN}"-"${MY_PV}"
162 -
163 -src_prepare() {
164 - epatch \
165 - "${FILESDIR}"/${P}-fix_tests.patch \
166 - "${FILESDIR}"/${P}-perl-5.16-2.patch
167 -}
168 -
169 -src_configure() {
170 - econf \
171 - $(use_enable cpu_flags_x86_sse sse) \
172 - $(use_enable mpi) \
173 - $(use_enable threads) \
174 - $(use_with gsl)
175 -}
176 -
177 -src_install() {
178 - default
179 -
180 - use static-libs && dolib.a src/libhmmer.a easel/libeasel.a
181 -
182 - insinto /usr/share/${PN}
183 - doins -r tutorial
184 - dodoc Userguide.pdf
185 -}
186
187 diff --git a/sci-biology/hmmer/metadata.xml b/sci-biology/hmmer/metadata.xml
188 deleted file mode 100644
189 index 8417d15..0000000
190 --- a/sci-biology/hmmer/metadata.xml
191 +++ /dev/null
192 @@ -1,8 +0,0 @@
193 -<?xml version="1.0" encoding="UTF-8"?>
194 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
195 -<pkgmetadata>
196 - <maintainer type="project">
197 - <email>sci-biology@g.o</email>
198 - <name>Gentoo Biology Project</name>
199 - </maintainer>
200 -</pkgmetadata>