Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/pdbcat/
Date: Sun, 27 Feb 2022 22:40:00
Message-Id: 1646001364.df50910c5761df0de027da735f6990e577f2ead7.sam@gentoo
1 commit: df50910c5761df0de027da735f6990e577f2ead7
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 22:36:04 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 22:36:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df50910c
7
8 sci-chemistry/pdbcat: port to EAPI 8
9
10 Closes: https://bugs.gentoo.org/834304
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 .../pdbcat/{pdbcat-1.3.ebuild => pdbcat-1.3-r1.ebuild} | 15 +++++++++------
14 1 file changed, 9 insertions(+), 6 deletions(-)
15
16 diff --git a/sci-chemistry/pdbcat/pdbcat-1.3.ebuild b/sci-chemistry/pdbcat/pdbcat-1.3-r1.ebuild
17 similarity index 76%
18 rename from sci-chemistry/pdbcat/pdbcat-1.3.ebuild
19 rename to sci-chemistry/pdbcat/pdbcat-1.3-r1.ebuild
20 index ccdbd9928160..270e7b98fb36 100644
21 --- a/sci-chemistry/pdbcat/pdbcat-1.3.ebuild
22 +++ b/sci-chemistry/pdbcat/pdbcat-1.3-r1.ebuild
23 @@ -1,9 +1,9 @@
24 -# Copyright 1999-2017 Gentoo Foundation
25 +# Copyright 1999-2022 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 -EAPI=6
29 +EAPI=8
30
31 -inherit cmake-utils
32 +inherit cmake
33
34 DESCRIPTION="Manipulate and process PDB files using tools such as Perl, awk, etc"
35 HOMEPAGE="http://www.ks.uiuc.edu/Development/MDTools/pdbcat/"
36 @@ -12,12 +12,15 @@ SRC_URI="http://www.ks.uiuc.edu/Development/MDTools/${PN}/files/${P}.tar.gz"
37 LICENSE="free-noncomm"
38 SLOT="0"
39 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
40 -IUSE=""
41
42 -PATCHES=( "${FILESDIR}"/${P}-gcc.patch )
43 +PATCHES=(
44 + "${FILESDIR}"/${P}-gcc.patch
45 +)
46 +
47 DOCS=( README )
48
49 src_prepare() {
50 cp "${FILESDIR}"/CMakeLists.txt . || die
51 - cmake-utils_src_prepare
52 +
53 + cmake_src_prepare
54 }