From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 29B74138334 for ; Tue, 2 Oct 2018 13:00:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0AE86E0903; Tue, 2 Oct 2018 13:00:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C7620E0903 for ; Tue, 2 Oct 2018 13:00:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0DC68335CA3 for ; Tue, 2 Oct 2018 13:00:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5ABC93AB for ; Tue, 2 Oct 2018 13:00:26 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1538485198.241012d86ad3e7f835c95ff2c259da38589d6fb3.junghans@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/libxc/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/libxc/libxc-2.1.3.ebuild sci-libs/libxc/libxc-2.2.3.ebuild sci-libs/libxc/libxc-3.0.0.ebuild sci-libs/libxc/metadata.xml X-VCS-Directories: sci-libs/libxc/ X-VCS-Committer: junghans X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: 241012d86ad3e7f835c95ff2c259da38589d6fb3 X-VCS-Branch: master Date: Tue, 2 Oct 2018 13:00:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: fe9a2ee2-67f2-4ba4-934d-3472c6ce3897 X-Archives-Hash: 785a202aa1127750e34321ee894cd867 commit: 241012d86ad3e7f835c95ff2c259da38589d6fb3 Author: Christoph Junghans gentoo org> AuthorDate: Tue Oct 2 12:59:40 2018 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Tue Oct 2 12:59:58 2018 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=241012d8 sci-libs/libxc: moved to gx86 Signed-off-by: Christoph Junghans gentoo.org> sci-libs/libxc/libxc-2.1.3.ebuild | 56 --------------------------------------- sci-libs/libxc/libxc-2.2.3.ebuild | 56 --------------------------------------- sci-libs/libxc/libxc-3.0.0.ebuild | 56 --------------------------------------- sci-libs/libxc/metadata.xml | 31 ---------------------- 4 files changed, 199 deletions(-) diff --git a/sci-libs/libxc/libxc-2.1.3.ebuild b/sci-libs/libxc/libxc-2.1.3.ebuild deleted file mode 100644 index 4ffe5fe89..000000000 --- a/sci-libs/libxc/libxc-2.1.3.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -AUTOTOOLS_AUTORECONF=true - -inherit autotools-utils flag-o-matic fortran-2 multilib - -MY_P=${P//_/-} - -DESCRIPTION="A library of exchange-correlation functionals for use in DFT" -HOMEPAGE="http://octopus-code.org/wiki/Libxc" -SRC_URI="http://www.tddft.org/programs/octopus/download/${PN}/${P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux" -IUSE="fortran static-libs -test" - -S="${WORKDIR}"/${MY_P} - -pkg_setup() { - use fortran && fortran-2_pkg_setup -} - -src_prepare() { - sed \ - -e "s:${PN}.f90:${PN}.F90:g" \ - -i src/Makefile.am || die - autotools-utils_src_prepare -} - -src_configure() { - local myeconfargs=( $(use_enable fortran) ) - autotools-utils_src_configure -} - -## Upstream recommends not running the test suite because it requires -## human expert interpretation to determine whether output is an error or -## expected under certain circumstances. Nevertheless, experts might want the option. -# The autotools src_test function modified not to die. Runs emake check in build directory. -src_test() { - debug-print-function ${FUNCNAME} "$@" - - _check_build_dir - pushd "${BUILD_DIR}" > /dev/null || die - make check || ewarn "Make check failed. See above for details." - einfo "emake check done" - popd > /dev/null || die -} - -src_install() { - autotools-utils_src_install - -} diff --git a/sci-libs/libxc/libxc-2.2.3.ebuild b/sci-libs/libxc/libxc-2.2.3.ebuild deleted file mode 100644 index 4ffe5fe89..000000000 --- a/sci-libs/libxc/libxc-2.2.3.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -AUTOTOOLS_AUTORECONF=true - -inherit autotools-utils flag-o-matic fortran-2 multilib - -MY_P=${P//_/-} - -DESCRIPTION="A library of exchange-correlation functionals for use in DFT" -HOMEPAGE="http://octopus-code.org/wiki/Libxc" -SRC_URI="http://www.tddft.org/programs/octopus/download/${PN}/${P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux" -IUSE="fortran static-libs -test" - -S="${WORKDIR}"/${MY_P} - -pkg_setup() { - use fortran && fortran-2_pkg_setup -} - -src_prepare() { - sed \ - -e "s:${PN}.f90:${PN}.F90:g" \ - -i src/Makefile.am || die - autotools-utils_src_prepare -} - -src_configure() { - local myeconfargs=( $(use_enable fortran) ) - autotools-utils_src_configure -} - -## Upstream recommends not running the test suite because it requires -## human expert interpretation to determine whether output is an error or -## expected under certain circumstances. Nevertheless, experts might want the option. -# The autotools src_test function modified not to die. Runs emake check in build directory. -src_test() { - debug-print-function ${FUNCNAME} "$@" - - _check_build_dir - pushd "${BUILD_DIR}" > /dev/null || die - make check || ewarn "Make check failed. See above for details." - einfo "emake check done" - popd > /dev/null || die -} - -src_install() { - autotools-utils_src_install - -} diff --git a/sci-libs/libxc/libxc-3.0.0.ebuild b/sci-libs/libxc/libxc-3.0.0.ebuild deleted file mode 100644 index 4ffe5fe89..000000000 --- a/sci-libs/libxc/libxc-3.0.0.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -AUTOTOOLS_AUTORECONF=true - -inherit autotools-utils flag-o-matic fortran-2 multilib - -MY_P=${P//_/-} - -DESCRIPTION="A library of exchange-correlation functionals for use in DFT" -HOMEPAGE="http://octopus-code.org/wiki/Libxc" -SRC_URI="http://www.tddft.org/programs/octopus/download/${PN}/${P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux" -IUSE="fortran static-libs -test" - -S="${WORKDIR}"/${MY_P} - -pkg_setup() { - use fortran && fortran-2_pkg_setup -} - -src_prepare() { - sed \ - -e "s:${PN}.f90:${PN}.F90:g" \ - -i src/Makefile.am || die - autotools-utils_src_prepare -} - -src_configure() { - local myeconfargs=( $(use_enable fortran) ) - autotools-utils_src_configure -} - -## Upstream recommends not running the test suite because it requires -## human expert interpretation to determine whether output is an error or -## expected under certain circumstances. Nevertheless, experts might want the option. -# The autotools src_test function modified not to die. Runs emake check in build directory. -src_test() { - debug-print-function ${FUNCNAME} "$@" - - _check_build_dir - pushd "${BUILD_DIR}" > /dev/null || die - make check || ewarn "Make check failed. See above for details." - einfo "emake check done" - popd > /dev/null || die -} - -src_install() { - autotools-utils_src_install - -} diff --git a/sci-libs/libxc/metadata.xml b/sci-libs/libxc/metadata.xml deleted file mode 100644 index 064923854..000000000 --- a/sci-libs/libxc/metadata.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - sci@gentoo.org - Gentoo Science Project - - - Hloupy.Honza@centrum.cz - Honza Macháček - - -Libxc is a library of exchange-correlation functionals for density-functional theory. -The aim is to provide a portable, well tested and reliable set of exchange and correlation -functionals that can be used by all the ETSF codes and also other codes. - -In Libxc you can find different types of functionals: LDA, GGA, hybrids, and mGGA (experimental). -These functionals depend on local information, in the sense that the value of the potential -at a given point depends only on the values of the density -- and the gradient of the density -and the kinetic energy density, for the GGA and mGGA cases. - -It can calculate the functional itself and its derivative; for some functionals, -higher-order derivatives are available. - -Libxc is written in C and has Fortran bindings. It is released under the LGPL license (v. 3.0). -Contributions are welcome. - - - http://octopus-code.org/wiki/Libxc:manual - -