Gentoo Archives: gentoo-commits

From: Christoph Junghans <junghans@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libecpint/
Date: Sat, 03 Oct 2020 20:43:15
Message-Id: 1601757695.ff77abc98e9ddc1765499b896079c176f9e083b0.junghans@gentoo
1 commit: ff77abc98e9ddc1765499b896079c176f9e083b0
2 Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 3 20:40:53 2020 +0000
4 Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 3 20:41:35 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff77abc9
7
8 sci-libs/libecpint: initial commit
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.23
11 Signed-off-by: Christoph Junghans <junghans <AT> gentoo.org>
12
13 sci-libs/libecpint/Manifest | 1 +
14 sci-libs/libecpint/libecpint-1.0.2.ebuild | 26 ++++++++++++++++++++++++++
15 sci-libs/libecpint/metadata.xml | 17 +++++++++++++++++
16 3 files changed, 44 insertions(+)
17
18 diff --git a/sci-libs/libecpint/Manifest b/sci-libs/libecpint/Manifest
19 new file mode 100644
20 index 00000000000..fdaecf16277
21 --- /dev/null
22 +++ b/sci-libs/libecpint/Manifest
23 @@ -0,0 +1 @@
24 +DIST libecpint-1.0.2.tar.gz 1161801 BLAKE2B 98b9264055bc9dab86ad54921f65380bca6cf96a2e6000bc061998367b3eeaffe122fa03ed83c75deb568ee7cce49ff85b97909bd57ae057a189025421dee82e SHA512 adf9394628a39d1e07e4f02bf4fad1c3d19cbfd9a9aa123d6151dddb78c7ef2c2cab07bc7060dba1d5114756c03964c2bd237c82203a1efb38b9facaaa24c74a
25
26 diff --git a/sci-libs/libecpint/libecpint-1.0.2.ebuild b/sci-libs/libecpint/libecpint-1.0.2.ebuild
27 new file mode 100644
28 index 00000000000..d59b2f4bddb
29 --- /dev/null
30 +++ b/sci-libs/libecpint/libecpint-1.0.2.ebuild
31 @@ -0,0 +1,26 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit cmake
38 +
39 +DESCRIPTION="Efficient evaluation of integrals over ab initio effective core potentials"
40 +HOMEPAGE="https://github.com/robashaw/libecpint"
41 +SRC_URI="https://github.com/robashaw/libecpint/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +SLOT="0"
44 +LICENSE="MIT"
45 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
46 +IUSE="test"
47 +
48 +DEPEND="
49 + dev-libs/pugixml
50 + test? ( dev-cpp/gtest )"
51 +
52 +src_configure() {
53 + mycmakeargs=(
54 + -DLIBECPINT_BUILD_TESTS=$(usex test)
55 + )
56 + cmake_src_configure
57 +}
58
59 diff --git a/sci-libs/libecpint/metadata.xml b/sci-libs/libecpint/metadata.xml
60 new file mode 100644
61 index 00000000000..0802ee79be8
62 --- /dev/null
63 +++ b/sci-libs/libecpint/metadata.xml
64 @@ -0,0 +1,17 @@
65 +<?xml version="1.0" encoding="UTF-8"?>
66 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
67 +<pkgmetadata>
68 + <maintainer type="project">
69 + <email>sci@g.o</email>
70 + <name>Gentoo Science Project</name>
71 + </maintainer>
72 + <longdescription lang="en">
73 + Libecpint is a C++ library for the efficient evaluation of integrals over ab
74 + initio effective core potentials, using a mixture of generated, recursive
75 + code and Gauss-Chebyshev quadrature. It is designed to be standalone and
76 + generic.
77 +</longdescription>
78 + <upstream>
79 + <remote-id type="github">robashaw/libecpint</remote-id>
80 + </upstream>
81 +</pkgmetadata>