commit: cbd349ea7ee2c66041eca46adf511fcf9faa49bb Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr> AuthorDate: Sun Jan 24 13:48:21 2021 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Sun Jan 24 13:48:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbd349ea
sci-libs/libecpint: Bump to 1.0.4 Closes: https://bugs.gentoo.org/746440 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr> Signed-off-by: David Seifert <soap <AT> gentoo.org> sci-libs/libecpint/Manifest | 1 + sci-libs/libecpint/libecpint-1.0.4.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/sci-libs/libecpint/Manifest b/sci-libs/libecpint/Manifest index fdaecf16277..7f62c72e8e0 100644 --- a/sci-libs/libecpint/Manifest +++ b/sci-libs/libecpint/Manifest @@ -1 +1,2 @@ DIST libecpint-1.0.2.tar.gz 1161801 BLAKE2B 98b9264055bc9dab86ad54921f65380bca6cf96a2e6000bc061998367b3eeaffe122fa03ed83c75deb568ee7cce49ff85b97909bd57ae057a189025421dee82e SHA512 adf9394628a39d1e07e4f02bf4fad1c3d19cbfd9a9aa123d6151dddb78c7ef2c2cab07bc7060dba1d5114756c03964c2bd237c82203a1efb38b9facaaa24c74a +DIST libecpint-1.0.4.tar.gz 1313698 BLAKE2B 63f7ce2001ae9bdc975af083735f82fd03e133e880061d3c8659bf18d8236d09a7337049977cea6867a4e0e586d4112ccef6a8ee098903869111551364f614fb SHA512 ff38b598351e4499cd2d270a15e8c2dedcb0a6bc6aafcfc7a88ed8053199356e209bdb630713370aacbc3bba2a169050520405f7003feea7b064140d6d5337b6 diff --git a/sci-libs/libecpint/libecpint-1.0.4.ebuild b/sci-libs/libecpint/libecpint-1.0.4.ebuild new file mode 100644 index 00000000000..47004ee7019 --- /dev/null +++ b/sci-libs/libecpint/libecpint-1.0.4.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Efficient evaluation of integrals over ab initio effective core potentials" +HOMEPAGE="https://github.com/robashaw/libecpint" +SRC_URI="https://github.com/robashaw/libecpint/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND="dev-libs/pugixml" +DEPEND="${RDEPEND} + test? ( dev-cpp/gtest )" + +src_configure() { + local mycmakeargs=( + -DLIBECPINT_BUILD_TESTS=$(usex test) + ) + cmake_src_configure +}
