Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/augustus/
Date: Thu, 27 Jan 2022 19:08:44
Message-Id: 1643310516.aea4f8147ac23b904f17d3890b398d5fb30c9eee.andrewammerlaan@gentoo
1 commit: aea4f8147ac23b904f17d3890b398d5fb30c9eee
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 27 19:08:10 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 27 19:08:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aea4f814
7
8 sci-biology/augustus: add version 3.4.0
9
10 Closes: https://bugs.gentoo.org/515996
11 Package-Manager: Portage-3.0.30, Repoman-3.0.3
12 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
13
14 sci-biology/augustus/Manifest | 1 +
15 sci-biology/augustus/augustus-3.4.0.ebuild | 47 ++++++++++++++++++++++++++++++
16 2 files changed, 48 insertions(+)
17
18 diff --git a/sci-biology/augustus/Manifest b/sci-biology/augustus/Manifest
19 index 7d0b1e3689b4..7ddb67b5c888 100644
20 --- a/sci-biology/augustus/Manifest
21 +++ b/sci-biology/augustus/Manifest
22 @@ -1 +1,2 @@
23 +DIST augustus-3.4.0.tar.gz 221652100 BLAKE2B dfc8c98107f5a955f688f3d2976ca936faf2ef7004095f6b9d7c1902a36ca5d3c9aef59cab1b82b56cd5c2abc7b67195c5030111ed68557d53128814b1bf6bab SHA512 ca1df1016589f55527a883429edd5024cbc32c1b32036c81f9df5e0967a7d194f5b7a82109e924f380627427d9731caa478e63cad8cd804c01521aed76d8c4a6
24 DIST augustus.2.5.5.tar.gz 70826249 BLAKE2B 3f3f1537c5c614f00298e1835eeb7bbe968987c3e0dee13299e1e26b4abf198d8635a93121b11722d2c90b63ff54cf153c72716d01c3ca033481bb54357b7bcf SHA512 33eb05d5c90200d2fc17026743d3a25e73aa3e217b8546f0bed4c94bcb460597d853377a67896e52e45ead5d736d13ed3b2c91b31fed8216da2920c825e8c20f
25
26 diff --git a/sci-biology/augustus/augustus-3.4.0.ebuild b/sci-biology/augustus/augustus-3.4.0.ebuild
27 new file mode 100644
28 index 000000000000..0608d11dee6c
29 --- /dev/null
30 +++ b/sci-biology/augustus/augustus-3.4.0.ebuild
31 @@ -0,0 +1,47 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +DOCS_BUILDER="doxygen"
38 +DOCS_CONFIG_NAME="doxygen.conf"
39 +inherit docs
40 +
41 +DESCRIPTION="Eukaryotic gene predictor"
42 +HOMEPAGE="https://bioinf.uni-greifswald.de/augustus/"
43 +SRC_URI="https://github.com/Gaius-Augustus/Augustus/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
44 +S="${WORKDIR}/${P^}"
45 +
46 +LICENSE="Artistic"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +
50 +RDEPEND="
51 + dev-db/sqlite:3
52 + dev-db/mysql++
53 + dev-db/mysql-connector-c
54 + dev-libs/boost:=
55 + sci-biology/bamtools
56 + sci-libs/gsl
57 + sci-libs/htslib
58 + sci-libs/suitesparse
59 + sci-mathematics/lpsolve
60 + sys-libs/zlib
61 +"
62 +DEPEND="${RDEPEND}"
63 +
64 +src_compile() {
65 + default
66 + docs_compile
67 +}
68 +
69 +src_install() {
70 + einstalldocs
71 + # from upstream Makefile install:
72 + dodir "opt/${P}"
73 + cp -a config bin scripts "${ED}/opt/${P}" || die
74 + local file
75 + for file in bin/*; do
76 + dosym "../${P}/${file}" "/opt/${file}"
77 + done
78 +}