Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libint/
Date: Fri, 26 Feb 2021 22:16:41
Message-Id: 1614377788.4ff0b0bea66d51fe99aeb1ac959d0f5ee67051c6.asturm@gentoo
1 commit: 4ff0b0bea66d51fe99aeb1ac959d0f5ee67051c6
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 26 16:22:19 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 26 22:16:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ff0b0be
7
8 sci-libs/libint: EAPI-7 bump
9
10 Package-Manager: Portage-3.0.15, Repoman-3.0.2
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 sci-libs/libint/libint-1.1.6.ebuild | 18 ++++++++----------
14 1 file changed, 8 insertions(+), 10 deletions(-)
15
16 diff --git a/sci-libs/libint/libint-1.1.6.ebuild b/sci-libs/libint/libint-1.1.6.ebuild
17 index 760d266a781..f3a93eaaacd 100644
18 --- a/sci-libs/libint/libint-1.1.6.ebuild
19 +++ b/sci-libs/libint/libint-1.1.6.ebuild
20 @@ -1,20 +1,17 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 +# Copyright 1999-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=5
26 +EAPI=7
27
28 -AUTOTOOLS_AUTORECONF=true
29 -
30 -inherit autotools-utils fortran-2 toolchain-funcs versionator
31 -
32 -MY_PV="$(replace_all_version_separators -)"
33 +MY_PV="$(ver_rs 0- -)"
34 +inherit autotools fortran-2 toolchain-funcs
35
36 DESCRIPTION="Matrix elements (integrals) evaluation over Cartesian Gaussian functions"
37 HOMEPAGE="https://github.com/evaleev/libint"
38 SRC_URI="https://github.com/evaleev/libint/archive/release-${MY_PV}.tar.gz -> ${P}.tar.gz"
39
40 -SLOT="1"
41 LICENSE="GPL-2"
42 +SLOT="1"
43 KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
44 IUSE="static-libs"
45
46 @@ -24,7 +21,8 @@ PATCHES=( "${FILESDIR}"/${P}-as-needed.patch )
47
48 src_prepare() {
49 mv configure.{in,ac} || die
50 - autotools-utils_src_prepare
51 + default
52 + eautoreconf
53 }
54
55 src_configure() {
56 @@ -36,5 +34,5 @@ src_configure() {
57 --with-cc-optflags="${CFLAGS}"
58 --with-cxx-optflags="${CXXFLAGS}"
59 )
60 - autotools-utils_src_configure
61 + econf "${myeconfargs[@]}"
62 }