Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/paml/
Date: Sun, 01 Nov 2020 18:37:12
Message-Id: 1604255756.5e71680b7a85431b46e92a2bb86e9f0507fcee3e.soap@gentoo
1 commit: 5e71680b7a85431b46e92a2bb86e9f0507fcee3e
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 1 18:35:56 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 1 18:35:56 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e71680b
7
8 sci-biology/paml: Remove old 4.4c-r1
9
10 Closes: https://bugs.gentoo.org/706708
11 Package-Manager: Portage-3.0.8, Repoman-3.0.2
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 sci-biology/paml/Manifest | 1 -
15 sci-biology/paml/paml-4.4c-r1.ebuild | 47 ------------------------------------
16 2 files changed, 48 deletions(-)
17
18 diff --git a/sci-biology/paml/Manifest b/sci-biology/paml/Manifest
19 index e0bf2de6171..87d673016fb 100644
20 --- a/sci-biology/paml/Manifest
21 +++ b/sci-biology/paml/Manifest
22 @@ -1,2 +1 @@
23 -DIST paml4.4c.tar.gz 2891715 BLAKE2B 04449b80e4fec080eabb69108d399a32278fcc79221e3c0d087ad1d978517ae2655bce8c300260dfb99d4d60700369ec338fa71c1d48f41a82017dbd3cae2397 SHA512 6a5f6d5baa91afa924ea392b76e59db6691fa9d6ee13a248dfe6e46d3fc83178ce41c2991de1c4cdb21952ee53771298aa0c62060f47d0dd84eaa76eb533498a
24 DIST paml4.9j.tgz 6380272 BLAKE2B 58fc40904aff6ae539613e772fc0525b557c1e72c1a7a1d95176987bafed8771624ae6c53803bc71c5821a52de8212a49ad99c02c408870ec929c15b6bf217e0 SHA512 c5f3c42409bbaf5ac67c816a245f1d3175ee449dcf10232d9de539130341f80f85ae53518cbca549b1f42ddf64a6e8140a22b9da091d458b425512f11f8c1758
25
26 diff --git a/sci-biology/paml/paml-4.4c-r1.ebuild b/sci-biology/paml/paml-4.4c-r1.ebuild
27 deleted file mode 100644
28 index 27fe5ed4c76..00000000000
29 --- a/sci-biology/paml/paml-4.4c-r1.ebuild
30 +++ /dev/null
31 @@ -1,47 +0,0 @@
32 -# Copyright 1999-2015 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -
37 -inherit toolchain-funcs versionator
38 -
39 -MY_P=$(version_format_string '${PN}$1$2')
40 -
41 -DESCRIPTION="Phylogenetic Analysis by Maximum Likelihood"
42 -HOMEPAGE="http://abacus.gene.ucl.ac.uk/software/paml.html"
43 -SRC_URI="http://abacus.gene.ucl.ac.uk/software/${PN}${PV}.tar.gz"
44 -
45 -LICENSE="free-noncomm"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86"
48 -IUSE=""
49 -
50 -S=${WORKDIR}/${MY_P}
51 -
52 -src_prepare() {
53 - # Notice send by mail to prof. Ziheng Yang
54 - sed -i "s/\$(CC)/& \$(LDFLAGS)/" src/Makefile || die #335608
55 -}
56 -
57 -src_compile() {
58 - emake -C src \
59 - CC="$(tc-getCC)" \
60 - CFLAGS="${CFLAGS} -Wno-unused-result" \
61 - LDFLAGS="${LDFLAGS}"
62 -}
63 -
64 -src_install() {
65 - dodoc README.txt doc/*
66 -
67 - insinto /usr/share/${PN}/control
68 - doins *.ctl
69 -
70 - insinto /usr/share/${PN}/dat
71 - doins stewart* *.dat dat/*
72 -
73 - insinto /usr/share/${PN}
74 - doins -r examples/
75 -
76 - cd src || die
77 - dobin baseml codeml basemlg mcmctree pamp evolver yn00 chi2
78 -}