Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/dssp/
Date: Thu, 02 Sep 2021 12:01:04
Message-Id: 1630584042.73c30608dfed594378b78b10858023a7f0a19686.pacho@gentoo
1 commit: 73c30608dfed594378b78b10858023a7f0a19686
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 2 11:44:31 2021 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 2 12:00:42 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73c30608
7
8 sci-chemistry/dssp: Bump to 4.0.1
9
10 Closes: https://bugs.gentoo.org/679142
11 Closes: https://bugs.gentoo.org/802417
12 Closes: https://bugs.gentoo.org/808669
13 Package-Manager: Portage-3.0.22, Repoman-3.0.3
14 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
15
16 sci-chemistry/dssp/Manifest | 1 +
17 sci-chemistry/dssp/dssp-4.0.1_p20210831.ebuild | 33 ++++++++++++++++++++++++++
18 2 files changed, 34 insertions(+)
19
20 diff --git a/sci-chemistry/dssp/Manifest b/sci-chemistry/dssp/Manifest
21 index ada8aac8e5c..170fb6728d5 100644
22 --- a/sci-chemistry/dssp/Manifest
23 +++ b/sci-chemistry/dssp/Manifest
24 @@ -1 +1,2 @@
25 DIST dssp-2.2.1.tgz 47141 BLAKE2B 34d8b2db8797a8c23763766c0214337f03584c4be52c1bc820a0df0db6a5f78ac0229aafdd47a60b8fd6f4832abf0399663c53f9e898c75f08ecbe22b141c8da SHA512 4a273714d6b3230daea166caa7f4117d5ccb225bea0cf1bc2eb61539b6cc8e227d0ba19047d61f0ad0d1d6bc2efdec9c193bd44341e15ef0950acb4a22498811
26 +DIST dssp-4.0.1_p20210831.tar.gz 121793 BLAKE2B 1e028b086b418772a93db350f8084d1786996ff6ea935d236b1431d8f4a07c0b33ebf374a4c4d5d4d243952f3f56e29a548ce09763863a1e0c529755fba6c211 SHA512 62f1ac781dd3d6f3436e6c155ae1a470d0baf6a6d9f6d6729034a7a5ef41550f76d0473c688d235279336306c9f3598377c056cddd6d00a89a826fbb04c1bfb3
27
28 diff --git a/sci-chemistry/dssp/dssp-4.0.1_p20210831.ebuild b/sci-chemistry/dssp/dssp-4.0.1_p20210831.ebuild
29 new file mode 100644
30 index 00000000000..407efe50622
31 --- /dev/null
32 +++ b/sci-chemistry/dssp/dssp-4.0.1_p20210831.ebuild
33 @@ -0,0 +1,33 @@
34 +# Copyright 1999-2021 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +inherit cmake
39 +
40 +DESCRIPTION="The protein secondary structure standard"
41 +HOMEPAGE="https://swift.cmbi.umcn.nl/gv/dssp/ https://github.com/PDB-REDO/dssp"
42 +
43 +COMMIT="728cc7c6c8d95460d8db453cf7adb25a89ba15f6"
44 +SRC_URI="https://github.com/PDB-REDO/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
45 +S="${WORKDIR}/${PN}-${COMMIT}"
46 +
47 +LICENSE="BSD-2"
48 +SLOT="0"
49 +KEYWORDS="~amd64"
50 +IUSE=""
51 +
52 +BDEPEND="
53 + >=dev-libs/boost-1.70.0:=[threads(+)]
54 + >=sci-libs/libcifpp-1.1.1
55 +"
56 +DEPEND=""
57 +RDEPEND="${BDEPEND}"
58 +
59 +pkg_postinst() {
60 + if has_version sci-chemistry/gromacs; then
61 + ewarn "DSSP > 3.0.x is not compatible with gmx do_dssp:"
62 + ewarn "https://gitlab.com/gromacs/gromacs/-/issues/4129"
63 + ewarn
64 + ewarn "Feel free to mask newer versions if needed."
65 + fi
66 +}