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/seqan/
Date: Thu, 24 Feb 2022 15:48:43
Message-Id: 1645717714.8ae0a404819aea5af6bc920231434c3523fb8281.andrewammerlaan@gentoo
1 commit: 8ae0a404819aea5af6bc920231434c3523fb8281
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 24 15:48:06 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 24 15:48:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ae0a404
7
8 sci-biology/seqan: add version 3.1.0
9
10 Closes: https://bugs.gentoo.org/774702
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/seqan/Manifest | 1 +
15 sci-biology/seqan/seqan-3.1.0.ebuild | 31 +++++++++++++++++++++++++++++++
16 2 files changed, 32 insertions(+)
17
18 diff --git a/sci-biology/seqan/Manifest b/sci-biology/seqan/Manifest
19 index b8572815a1e0..f9ddca8ef871 100644
20 --- a/sci-biology/seqan/Manifest
21 +++ b/sci-biology/seqan/Manifest
22 @@ -1 +1,2 @@
23 DIST seqan-v2.4.0.tar.gz 109626901 BLAKE2B a10b5ee9a95667f560a8c2aec3808131f5f838f3c07d56584f4b29e9622912bf3d00b958b02db7c9d62dd52d9d08a171abcccef7f50cddf0407538168cf2c592 SHA512 f92cfc97304581920850c5d49fe4336f7c3855e99c3bcb035b6172fa7307e08e6f06fb06d1cd8f5b447c3220fc7f669684fbfe25641b43e9f6953999cf9ddd4b
24 +DIST seqan3-3.1.0-Source.tar.xz 2656120 BLAKE2B 6a18844f62d935fdbd7008822f83ffeefd596e93b704a8c7b0f478dec87b2265ff532be107ebfd1adc248e2b1db65e4b86cdce2e989c7ac097054d43633a24bd SHA512 686d0ffbe32951e7f831e399a3eab35b7249f45408b7de27ee9cfd6a012215603f033afa6082c8a81783de1cc7c93d3ffbae42cabc122d3b77988c236a049ffd
25
26 diff --git a/sci-biology/seqan/seqan-3.1.0.ebuild b/sci-biology/seqan/seqan-3.1.0.ebuild
27 new file mode 100644
28 index 000000000000..fc9dd78e4233
29 --- /dev/null
30 +++ b/sci-biology/seqan/seqan-3.1.0.ebuild
31 @@ -0,0 +1,31 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +inherit cmake
38 +
39 +DESCRIPTION="C++ Sequence Analysis Library"
40 +HOMEPAGE="https://www.seqan.de/"
41 +SRC_URI="https://github.com/seqan/seqan3/releases/download/${PV}/seqan3-${PV}-Source.tar.xz"
42 +S="${WORKDIR}/seqan3-${PV}-Source"
43 +
44 +LICENSE="BSD GPL-3"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~amd64-linux"
47 +IUSE="cpu_flags_x86_sse4_2"
48 +REQUIRED_USE="cpu_flags_x86_sse4_2"
49 +
50 +RDEPEND="
51 + app-arch/bzip2:=
52 + dev-cpp/range-v3
53 + dev-libs/cereal
54 + sci-libs/lemon
55 + sys-libs/zlib:=
56 +"
57 +DEPEND="${RDEPEND}"
58 +
59 +src_install() {
60 + cmake_src_install
61 + dodoc -r doc/*
62 +}