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/tigr-assembler/, sci-biology/tigr-assembler/files/
Date: Mon, 21 Sep 2015 14:05:03
Message-Id: 1442839978.7dda553d5086989dc3507e2d3f86c21652c8aff3.jlec@gentoo
1 commit: 7dda553d5086989dc3507e2d3f86c21652c8aff3
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 21 12:52:58 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 21 12:52:58 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=7dda553d
7
8 Drop obsolete package Sources unavailable
9
10 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
11
12 sci-biology/tigr-assembler/ChangeLog | 15 --------
13 sci-biology/tigr-assembler/files/run_TA | 32 -----------------
14 sci-biology/tigr-assembler/metadata.xml | 10 ------
15 .../tigr-assembler/tigr-assembler-2.0.ebuild | 40 ----------------------
16 4 files changed, 97 deletions(-)
17
18 diff --git a/sci-biology/tigr-assembler/ChangeLog b/sci-biology/tigr-assembler/ChangeLog
19 deleted file mode 100644
20 index 8163ef1..0000000
21 --- a/sci-biology/tigr-assembler/ChangeLog
22 +++ /dev/null
23 @@ -1,15 +0,0 @@
24 -# ChangeLog for sci-biology/tigr-assembler
25 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
26 -# $Id$
27 -
28 - 24 Jun 2011; Justin Lecher <jlec@g.o> tigr-assembler-2.0.ebuild:
29 - Some ebuild cleaning
30 -
31 - 27 Apr 2007; Andrey Kislyuk <weaver@×××××××××××.cx>
32 - +tigr-assembler-2.0.ebuild:
33 - Mass import from sunrise
34 -
35 - 19 Apr 2007; Andrey Kislyuk <weaver@×××××××××××.cx> +tigr-assembler-2.0.ebuild,
36 - +metadata.xml:
37 - new package (bug 175282)
38 -
39
40 diff --git a/sci-biology/tigr-assembler/files/run_TA b/sci-biology/tigr-assembler/files/run_TA
41 deleted file mode 100644
42 index 679c81d..0000000
43 --- a/sci-biology/tigr-assembler/files/run_TA
44 +++ /dev/null
45 @@ -1,32 +0,0 @@
46 -#!/bin/sh
47 -
48 -# Copyright @ 2000 The Institute for Genomic Research (TIGR). All rights
49 -# reserved.
50 -#
51 -# This software is provided "AS IS". The Institute for Genomic Research makes
52 -# no warranties, express or implied, including no representation or warranty
53 -# with respect to the performance of the software and derivatives or their
54 -# safety, effectiveness, or commercial viability. TIGR does not warrant the
55 -# merchantability or fitness of the software and derivatives for any
56 -# particular purpose, or that they may be exploited without infringing the
57 -# copyrights, patent rights or property rights of others.
58 -#
59 -# This software program may not be sold, leased, transferred, exported or
60 -# otherwise disclosed to anyone, in whole or in part, without written consent
61 -# of TIGR.
62 -
63 -if [ ! -e "$1" ]
64 -then
65 - asmg_options=$1
66 - shift
67 -else
68 - asmg_options=""
69 -fi
70 -
71 -for file in $*
72 -do
73 - file_tail=`basename $file`
74 - file_root=${file_tail%%.*}
75 - TIGR_Assembler -n ${file_root} -g 8 -l 40 -e 15 -p 97.5 -a ${file_root}.align -f ${file_root}.fasta ${asmg_options} ${file_root}.scratch < ${file} > ${file_root}.asm 2> ${file_root}.error
76 -done
77 -
78
79 diff --git a/sci-biology/tigr-assembler/metadata.xml b/sci-biology/tigr-assembler/metadata.xml
80 deleted file mode 100644
81 index c07e96e..0000000
82 --- a/sci-biology/tigr-assembler/metadata.xml
83 +++ /dev/null
84 @@ -1,10 +0,0 @@
85 -<?xml version="1.0" encoding="UTF-8"?>
86 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
87 -<pkgmetadata>
88 - <herd>sci-biology</herd>
89 - <maintainer>
90 - <email>mmokrejs@×××××××××××××××.cz</email>
91 - <name>Martin Mokrejs</name>
92 - </maintainer>
93 - <longdescription>TIGR assembler</longdescription>
94 -</pkgmetadata>
95
96 diff --git a/sci-biology/tigr-assembler/tigr-assembler-2.0.ebuild b/sci-biology/tigr-assembler/tigr-assembler-2.0.ebuild
97 deleted file mode 100644
98 index fafbe68..0000000
99 --- a/sci-biology/tigr-assembler/tigr-assembler-2.0.ebuild
100 +++ /dev/null
101 @@ -1,40 +0,0 @@
102 -# Copyright 1999-2014 Gentoo Foundation
103 -# Distributed under the terms of the GNU General Public License v2
104 -# $Id$
105 -
106 -EAPI=3
107 -
108 -DESCRIPTION="A whole-genome shotgun assembler from TIGR"
109 -HOMEPAGE="http://www.tigr.org/software/assembler/"
110 -SRC_URI="ftp://ftp.tigr.org/pub/software/assembler/TIGR_Assembler_v2.tar.gz"
111 -
112 -LICENSE="Artistic"
113 -SLOT="0"
114 -IUSE=""
115 -KEYWORDS="~amd64 ~x86"
116 -
117 -S="${WORKDIR}/TIGR_Assembler_v2"
118 -
119 -src_prepare() {
120 - cd "${S}"/bin || die
121 - mv run_TA run_TA.csh || die
122 - cp "${FILESDIR}"/run_TA run_TA || die
123 -}
124 -src_compile() {
125 - sed -i 's/^CC/#CC/' "${S}/src/Makefile" || die "sed failed"
126 - sed -i 's/CFLAGS.*= -O/CFLAGS := ${CFLAGS}/' "${S}/src/Makefile" || die "sed failed"
127 - cd "${S}/src" || die
128 - emake || die "emake failed"
129 -}
130 -
131 -src_install() {
132 - dobin bin/{run_TA,run_TA.csh,TIGR_Assembler} || die
133 - dodoc README || die
134 -}
135 -
136 -src_test() {
137 - cd "${S}"/data/201.pre || die
138 - PATH="${D}"/usr/bin:$PATH run_TA '-s -q 201.qual -C 201.contigs' 201.seq || die "Failed to execute run_TA"
139 - for f in *; do diff -I "^ed_date" -u -w ../201.post/$f $f; done || die "Found some differences in the output files compared to expected results."
140 - for f in 201.align/*; do diff -u -w ../201.post/$f $f; done || die "Found some differences in the output files compared to expected results."
141 -}