Gentoo Archives: gentoo-commits

From: Nicolas Bock <nicolasbock@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/scan_for_matches/
Date: Mon, 31 Mar 2014 15:28:41
Message-Id: 1396279653.17ea2fcee15a12d2c3b7d54b479ad019ce42a40c.nicolasbock@gentoo
1 commit: 17ea2fcee15a12d2c3b7d54b479ad019ce42a40c
2 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Fri Mar 28 13:55:35 2014 +0000
4 Commit: Nicolas Bock <nicolasbock <AT> gmail <DOT> com>
5 CommitDate: Mon Mar 31 15:27:33 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=17ea2fce
7
8 sci-biology/scan_for_matches: new package, LICENSE not explicitly avalaible hence seems public-domain fits?
9
10 Package-Manager: portage-2.2.7
11
12 ---
13 sci-biology/scan_for_matches/ChangeLog | 10 +++++++++
14 sci-biology/scan_for_matches/metadata.xml | 9 ++++++++
15 .../scan_for_matches-20121220.ebuild | 26 ++++++++++++++++++++++
16 3 files changed, 45 insertions(+)
17
18 diff --git a/sci-biology/scan_for_matches/ChangeLog b/sci-biology/scan_for_matches/ChangeLog
19 new file mode 100644
20 index 0000000..48c608a
21 --- /dev/null
22 +++ b/sci-biology/scan_for_matches/ChangeLog
23 @@ -0,0 +1,10 @@
24 +# ChangeLog for sci-biology/scan_for_matches
25 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
26 +# $Header: $
27 +
28 +*scan_for_matches-20121220 (28 Mar 2014)
29 +
30 + 28 Mar 2014; Martin Mokrejs <mmokrejs@×××××××××××××××.cz> +metadata.xml,
31 + +scan_for_matches-20121220.ebuild:
32 + sci-biology/scan_for_matches: new package, LICENSE not explicitly avalaible
33 + hence seems public-domain fits?
34
35 diff --git a/sci-biology/scan_for_matches/metadata.xml b/sci-biology/scan_for_matches/metadata.xml
36 new file mode 100644
37 index 0000000..2bc8930
38 --- /dev/null
39 +++ b/sci-biology/scan_for_matches/metadata.xml
40 @@ -0,0 +1,9 @@
41 +<?xml version="1.0" encoding="UTF-8"?>
42 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
43 +<pkgmetadata>
44 + <herd>sci-biology</herd>
45 + <maintainer>
46 + <email>mmokrejs@×××××××××××××××.cz</email>
47 + <name>Martin Mokrejs</name>
48 + </maintainer>
49 +</pkgmetadata>
50
51 diff --git a/sci-biology/scan_for_matches/scan_for_matches-20121220.ebuild b/sci-biology/scan_for_matches/scan_for_matches-20121220.ebuild
52 new file mode 100644
53 index 0000000..c64394b
54 --- /dev/null
55 +++ b/sci-biology/scan_for_matches/scan_for_matches-20121220.ebuild
56 @@ -0,0 +1,26 @@
57 +# Copyright 1999-2014 Gentoo Foundation
58 +# Distributed under the terms of the GNU General Public License v2
59 +# $Header: $
60 +
61 +EAPI=5
62 +
63 +inherit eutils
64 +
65 +S="${WORKDIR}"/scan_for_matches
66 +
67 +DESCRIPTION="Pattern search through DNA sequences (aka patscan)"
68 +HOMEPAGE="http://blog.theseed.org/servers/2010/07/scan-for-matches.html"
69 +SRC_URI="http://www.theseed.org/servers/downloads/scan_for_matches.tgz"
70 +
71 +LICENSE="public-domain"
72 +SLOT="0"
73 +KEYWORDS="~amd64"
74 +IUSE=""
75 +
76 +DEPEND=""
77 +RDEPEND="${DEPEND}"
78 +
79 +src_install(){
80 + dobin scan_for_matches
81 + dodoc README
82 +}