Gentoo Archives: gentoo-commits

From: Haelwenn Monnier <contact@×××××××××.me>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: sci-libs/ensmallen/
Date: Sun, 13 Jun 2021 08:49:17
Message-Id: 1623425586.bc783bcc379c20d3bf645e9fde126d75754a1af8.lanodan@gentoo
1 commit: bc783bcc379c20d3bf645e9fde126d75754a1af8
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Fri Jun 11 15:33:06 2021 +0000
4 Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
5 CommitDate: Fri Jun 11 15:33:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc783bcc
7
8 sci-libs/ensmallen: import from ::science
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
12
13 sci-libs/ensmallen/Manifest | 5 +++++
14 sci-libs/ensmallen/ensmallen-2.14.2.ebuild | 28 ++++++++++++++++++++++++++++
15 sci-libs/ensmallen/ensmallen-2.15.0.ebuild | 28 ++++++++++++++++++++++++++++
16 sci-libs/ensmallen/ensmallen-2.15.1.ebuild | 28 ++++++++++++++++++++++++++++
17 sci-libs/ensmallen/ensmallen-2.16.0.ebuild | 28 ++++++++++++++++++++++++++++
18 sci-libs/ensmallen/ensmallen-2.16.2.ebuild | 28 ++++++++++++++++++++++++++++
19 sci-libs/ensmallen/metadata.xml | 8 ++++++++
20 7 files changed, 153 insertions(+)
21
22 diff --git a/sci-libs/ensmallen/Manifest b/sci-libs/ensmallen/Manifest
23 new file mode 100644
24 index 000000000..d74da89b9
25 --- /dev/null
26 +++ b/sci-libs/ensmallen/Manifest
27 @@ -0,0 +1,5 @@
28 +DIST ensmallen-2.14.2.tar.gz 1262697 BLAKE2B c3ecd10271a476cdb03de0a74dd1e7d250273481b540d9cadb44ff7292cdb1f4abbefaf7c1a90bd33c68928f766db8afafd45f253735a36de9def6ab222597bb SHA512 9f29d70f66748d6131b44fc2a580e9fc07131a3aeecaa9f6113fd635eaff8b52db90e487a389393a1976dcccb8c1f5850ea50e03308af90b58ba1c12fde2bd21
29 +DIST ensmallen-2.15.0.tar.gz 1266409 BLAKE2B 379ea897d3b29440e89d65cb60c65dca3c34a530dd8a4cee321349d177455b020d4aa19ee1e701b46a325a8f56028c236ab80b0383bee84018952034106f7161 SHA512 7e8ea0d64788287e58ee14e922c81c18e1804a23dba3d144fe6e66de8a81dfd3755c9f36a1e8a480aa6e15f0f7b1ff886e0aeecde0be35993db0ba69ca7e12e0
30 +DIST ensmallen-2.15.1.tar.gz 1266496 BLAKE2B 7ff803207c59be03fa47e7fddafb49176d307fbea89f5688bd591898fb36d7d8ee018dec933b59a06063dc6c2a7117d3ec0d330cd37d475e4f387528f2d86f6a SHA512 4f0cda1ad0d02e823042fb6af03635677e3d5cac28f7f13fab20fc7f4b3d7fbe1b182777c573187a403eff5e5fd7e1e577e290a4b624a9c2a71cbfd347e14afa
31 +DIST ensmallen-2.16.0.tar.gz 1264948 BLAKE2B a58de7e7d8aa88988b08d76c2a5746daf9074ccc39bc8df9d21b61d745741d6521922b578e01b60e0d1657f84f377f411172a01d50bbcd30cca7142da0baeb7b SHA512 39afc19936710d5595218292f5d6a055b4f644ca157f9fc2329fb18b71318b9f613dc26169921e1fda3dd949d06847dee4f09f13c1902a92e38826e122c1adc5
32 +DIST ensmallen-2.16.2.tar.gz 1294240 BLAKE2B b388f2c99f289dd20f6d94b5b185d872abc553637c6081ea3a80a3c82ce9ac8b1327496bf3eae6dc5cbf5f4ae12a9fd1e8ccf9c296007f9af9cbfc7560cd0301 SHA512 290932f8e423be7c57d8ba38783a29798df52a7505ded7683f969fa30391398edcca584daca1b1c42977f06180a802d4c3640a9ec24cd787a3914723e4eb6f8d
33
34 diff --git a/sci-libs/ensmallen/ensmallen-2.14.2.ebuild b/sci-libs/ensmallen/ensmallen-2.14.2.ebuild
35 new file mode 100644
36 index 000000000..bd1c0530b
37 --- /dev/null
38 +++ b/sci-libs/ensmallen/ensmallen-2.14.2.ebuild
39 @@ -0,0 +1,28 @@
40 +# Copyright 1999-2021 Gentoo Authors
41 +# Distributed under the terms of the GNU General Public License v2
42 +
43 +EAPI=7
44 +
45 +inherit cmake
46 +
47 +DESCRIPTION="header only C++ library for numerical optimization"
48 +HOMEPAGE="https://ensmallen.org"
49 +SRC_URI="https://github.com/mlpack/ensmallen/archive/${PV}.tar.gz -> ${P}.tar.gz"
50 +
51 +KEYWORDS="~amd64"
52 +
53 +LICENSE="BSD"
54 +SLOT="0"
55 +IUSE="openmp test"
56 +RESTRICT="!test? ( test )"
57 +
58 +RDEPEND="sci-libs/armadillo[lapack]"
59 +DEPEND="${RDEPEND}"
60 +
61 +src_configure() {
62 + local mycmakeargs=(
63 + -DUSE_OPENMP=$(usex openmp)
64 + -DBUILD_TESTS=$(usex test)
65 + )
66 + cmake_src_configure
67 +}
68
69 diff --git a/sci-libs/ensmallen/ensmallen-2.15.0.ebuild b/sci-libs/ensmallen/ensmallen-2.15.0.ebuild
70 new file mode 100644
71 index 000000000..bd1c0530b
72 --- /dev/null
73 +++ b/sci-libs/ensmallen/ensmallen-2.15.0.ebuild
74 @@ -0,0 +1,28 @@
75 +# Copyright 1999-2021 Gentoo Authors
76 +# Distributed under the terms of the GNU General Public License v2
77 +
78 +EAPI=7
79 +
80 +inherit cmake
81 +
82 +DESCRIPTION="header only C++ library for numerical optimization"
83 +HOMEPAGE="https://ensmallen.org"
84 +SRC_URI="https://github.com/mlpack/ensmallen/archive/${PV}.tar.gz -> ${P}.tar.gz"
85 +
86 +KEYWORDS="~amd64"
87 +
88 +LICENSE="BSD"
89 +SLOT="0"
90 +IUSE="openmp test"
91 +RESTRICT="!test? ( test )"
92 +
93 +RDEPEND="sci-libs/armadillo[lapack]"
94 +DEPEND="${RDEPEND}"
95 +
96 +src_configure() {
97 + local mycmakeargs=(
98 + -DUSE_OPENMP=$(usex openmp)
99 + -DBUILD_TESTS=$(usex test)
100 + )
101 + cmake_src_configure
102 +}
103
104 diff --git a/sci-libs/ensmallen/ensmallen-2.15.1.ebuild b/sci-libs/ensmallen/ensmallen-2.15.1.ebuild
105 new file mode 100644
106 index 000000000..bd1c0530b
107 --- /dev/null
108 +++ b/sci-libs/ensmallen/ensmallen-2.15.1.ebuild
109 @@ -0,0 +1,28 @@
110 +# Copyright 1999-2021 Gentoo Authors
111 +# Distributed under the terms of the GNU General Public License v2
112 +
113 +EAPI=7
114 +
115 +inherit cmake
116 +
117 +DESCRIPTION="header only C++ library for numerical optimization"
118 +HOMEPAGE="https://ensmallen.org"
119 +SRC_URI="https://github.com/mlpack/ensmallen/archive/${PV}.tar.gz -> ${P}.tar.gz"
120 +
121 +KEYWORDS="~amd64"
122 +
123 +LICENSE="BSD"
124 +SLOT="0"
125 +IUSE="openmp test"
126 +RESTRICT="!test? ( test )"
127 +
128 +RDEPEND="sci-libs/armadillo[lapack]"
129 +DEPEND="${RDEPEND}"
130 +
131 +src_configure() {
132 + local mycmakeargs=(
133 + -DUSE_OPENMP=$(usex openmp)
134 + -DBUILD_TESTS=$(usex test)
135 + )
136 + cmake_src_configure
137 +}
138
139 diff --git a/sci-libs/ensmallen/ensmallen-2.16.0.ebuild b/sci-libs/ensmallen/ensmallen-2.16.0.ebuild
140 new file mode 100644
141 index 000000000..bd1c0530b
142 --- /dev/null
143 +++ b/sci-libs/ensmallen/ensmallen-2.16.0.ebuild
144 @@ -0,0 +1,28 @@
145 +# Copyright 1999-2021 Gentoo Authors
146 +# Distributed under the terms of the GNU General Public License v2
147 +
148 +EAPI=7
149 +
150 +inherit cmake
151 +
152 +DESCRIPTION="header only C++ library for numerical optimization"
153 +HOMEPAGE="https://ensmallen.org"
154 +SRC_URI="https://github.com/mlpack/ensmallen/archive/${PV}.tar.gz -> ${P}.tar.gz"
155 +
156 +KEYWORDS="~amd64"
157 +
158 +LICENSE="BSD"
159 +SLOT="0"
160 +IUSE="openmp test"
161 +RESTRICT="!test? ( test )"
162 +
163 +RDEPEND="sci-libs/armadillo[lapack]"
164 +DEPEND="${RDEPEND}"
165 +
166 +src_configure() {
167 + local mycmakeargs=(
168 + -DUSE_OPENMP=$(usex openmp)
169 + -DBUILD_TESTS=$(usex test)
170 + )
171 + cmake_src_configure
172 +}
173
174 diff --git a/sci-libs/ensmallen/ensmallen-2.16.2.ebuild b/sci-libs/ensmallen/ensmallen-2.16.2.ebuild
175 new file mode 100644
176 index 000000000..bd1c0530b
177 --- /dev/null
178 +++ b/sci-libs/ensmallen/ensmallen-2.16.2.ebuild
179 @@ -0,0 +1,28 @@
180 +# Copyright 1999-2021 Gentoo Authors
181 +# Distributed under the terms of the GNU General Public License v2
182 +
183 +EAPI=7
184 +
185 +inherit cmake
186 +
187 +DESCRIPTION="header only C++ library for numerical optimization"
188 +HOMEPAGE="https://ensmallen.org"
189 +SRC_URI="https://github.com/mlpack/ensmallen/archive/${PV}.tar.gz -> ${P}.tar.gz"
190 +
191 +KEYWORDS="~amd64"
192 +
193 +LICENSE="BSD"
194 +SLOT="0"
195 +IUSE="openmp test"
196 +RESTRICT="!test? ( test )"
197 +
198 +RDEPEND="sci-libs/armadillo[lapack]"
199 +DEPEND="${RDEPEND}"
200 +
201 +src_configure() {
202 + local mycmakeargs=(
203 + -DUSE_OPENMP=$(usex openmp)
204 + -DBUILD_TESTS=$(usex test)
205 + )
206 + cmake_src_configure
207 +}
208
209 diff --git a/sci-libs/ensmallen/metadata.xml b/sci-libs/ensmallen/metadata.xml
210 new file mode 100644
211 index 000000000..e15add1ea
212 --- /dev/null
213 +++ b/sci-libs/ensmallen/metadata.xml
214 @@ -0,0 +1,8 @@
215 +<?xml version="1.0" encoding="UTF-8"?>
216 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
217 +<pkgmetadata>
218 + <!-- Maintainer Needed -->
219 + <upstream>
220 + <remote-id type="github">mlpack/ensmallen</remote-id>
221 + </upstream>
222 +</pkgmetadata>