Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libxc/
Date: Thu, 24 Sep 2020 19:53:45
Message-Id: 1600977203.2cedae10724032a2eb6b8ccd3a84a07892324384.bman@gentoo
1 commit: 2cedae10724032a2eb6b8ccd3a84a07892324384
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 24 19:09:40 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 24 19:53:23 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cedae10
7
8 sci-libs/libxc: drop old EAPI=5
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 sci-libs/libxc/Manifest | 1 -
13 sci-libs/libxc/libxc-2.1.3.ebuild | 56 ---------------------------------------
14 2 files changed, 57 deletions(-)
15
16 diff --git a/sci-libs/libxc/Manifest b/sci-libs/libxc/Manifest
17 index c019462953f..f49c88cee39 100644
18 --- a/sci-libs/libxc/Manifest
19 +++ b/sci-libs/libxc/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST libxc-2.1.3.tar.gz 750044 BLAKE2B 6d6bb348bd8f7e25d6a3857fc40f0d7d3a7fe22c0a0514ca9f0ca60aadd67fde65b6052bc04e076a6328841c7ebe154921937083b8e9e2b9e55a5bcf197d08d0 SHA512 6cc7e4cb9b6187d3f7be9bca0aa574a1e0807db47201bee271d651e23c34ff7f00590cbe2ab1a6c399735e55d088a27e5b3456af6df46817137b3e6857c1c221
22 DIST libxc-2.2.3.tar.gz 734714 BLAKE2B c5c4c3aec3373b8b481de8ec1779366b6916899e0b77964cbde0e83904b351e009b14a3ff64e9f020640e6ebf68d78828615b8abf83a46fdf86ea16480083643 SHA512 bfcd88c1946e459227e9b1a32c513f0e68ae7a5497925ac6e692085542526ebad9fe2cd5722077c839c06dbaaceca601c7f615ee6936e638eb150a9d68278d5a
23 DIST libxc-3.0.0.tar.gz 8388775 BLAKE2B e82a7310c583c39b6c2313668a5d3a3d5ae7bf71ad450e9ac6241d1601bf1bb429abf98787f7e0c3c252e881c381b895e277d18619b57c46f2f910d7e079941c SHA512 42173341f917c2aed6954f76885d2a9149d7212d2525becf77072b9878753c28d752b5cf6b2c79c90a88d8aa033f0aa94fa9753eb67108e9325cee6919cece52
24
25 diff --git a/sci-libs/libxc/libxc-2.1.3.ebuild b/sci-libs/libxc/libxc-2.1.3.ebuild
26 deleted file mode 100644
27 index a54c26ddfc3..00000000000
28 --- a/sci-libs/libxc/libxc-2.1.3.ebuild
29 +++ /dev/null
30 @@ -1,56 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -AUTOTOOLS_AUTORECONF=true
37 -
38 -inherit autotools-utils flag-o-matic fortran-2 multilib
39 -
40 -MY_P=${P//_/-}
41 -
42 -DESCRIPTION="A library of exchange-correlation functionals for use in DFT"
43 -HOMEPAGE="https://octopus-code.org/wiki/Libxc"
44 -SRC_URI="https://www.tddft.org/programs/octopus/download/${PN}/${P}.tar.gz"
45 -
46 -LICENSE="LGPL-3"
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~x86 ~amd64-linux"
49 -IUSE="fortran static-libs -test"
50 -
51 -S="${WORKDIR}"/${MY_P}
52 -
53 -pkg_setup() {
54 - use fortran && fortran-2_pkg_setup
55 -}
56 -
57 -src_prepare() {
58 - sed \
59 - -e "s:${PN}.f90:${PN}.F90:g" \
60 - -i src/Makefile.am || die
61 - autotools-utils_src_prepare
62 -}
63 -
64 -src_configure() {
65 - local myeconfargs=( $(use_enable fortran) )
66 - autotools-utils_src_configure
67 -}
68 -
69 -## Upstream recommends not running the test suite because it requires
70 -## human expert interpretation to determine whether output is an error or
71 -## expected under certain circumstances. Nevertheless, experts might want the option.
72 -# The autotools src_test function modified not to die. Runs emake check in build directory.
73 -src_test() {
74 - debug-print-function ${FUNCNAME} "$@"
75 -
76 - _check_build_dir
77 - pushd "${BUILD_DIR}" > /dev/null || die
78 - make check || ewarn "Make check failed. See above for details."
79 - einfo "emake check done"
80 - popd > /dev/null || die
81 -}
82 -
83 -src_install() {
84 - autotools-utils_src_install
85 -
86 -}