Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/tomsfastmath/
Date: Tue, 26 May 2020 00:01:38
Message-Id: 1590451171.9db1a647c1f77224b2191d858075c6d7c970c0b7.mjo@gentoo
1 commit: 9db1a647c1f77224b2191d858075c6d7c970c0b7
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 25 23:59:31 2020 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Mon May 25 23:59:31 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9db1a647
7
8 dev-libs/tomsfastmath: add myself as a maintainer.
9
10 The proxy maintainers aren't taking new packages right now, but this
11 is a new dependency of app-antivirus/clamav so I'm adding myself as
12 a maintainer to take responsibility for future pull requests. I've
13 made two cosmetic changes to DESCRIPTION/HOMEPAGE and local'ized two
14 variables in the ebuild at the same time.
15
16 Package-Manager: Portage-2.3.99, Repoman-2.3.22
17 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
18
19 dev-libs/tomsfastmath/metadata.xml | 4 ++++
20 dev-libs/tomsfastmath/tomsfastmath-0.13.1.ebuild | 8 +++++---
21 2 files changed, 9 insertions(+), 3 deletions(-)
22
23 diff --git a/dev-libs/tomsfastmath/metadata.xml b/dev-libs/tomsfastmath/metadata.xml
24 index 6e3769c9110..dfaf4142e2c 100644
25 --- a/dev-libs/tomsfastmath/metadata.xml
26 +++ b/dev-libs/tomsfastmath/metadata.xml
27 @@ -9,4 +9,8 @@
28 <email>proxy-maint@g.o</email>
29 <name>Proxy Maintainers</name>
30 </maintainer>
31 + <maintainer type="person">
32 + <email>mjo@g.o</email>
33 + <name>Michael Orlitzky</name>
34 + </maintainer>
35 </pkgmetadata>
36
37 diff --git a/dev-libs/tomsfastmath/tomsfastmath-0.13.1.ebuild b/dev-libs/tomsfastmath/tomsfastmath-0.13.1.ebuild
38 index 3b61e419f34..9518b0945ad 100644
39 --- a/dev-libs/tomsfastmath/tomsfastmath-0.13.1.ebuild
40 +++ b/dev-libs/tomsfastmath/tomsfastmath-0.13.1.ebuild
41 @@ -5,8 +5,9 @@ EAPI=7
42
43 inherit toolchain-funcs
44
45 -DESCRIPTION="TomsFastMath is a fast public domain large integer arithmetic library"
46 -HOMEPAGE="https://www.libtom.net/TomsFastMath/ https://github.com/libtom/tomsfastmath"
47 +DESCRIPTION="Fast public domain large integer arithmetic library"
48 +HOMEPAGE="https://www.libtom.net/TomsFastMath/
49 + https://github.com/libtom/tomsfastmath"
50 SRC_URI="https://github.com/libtom/tomsfastmath/releases/download/v${PV}/tfm-${PV}.tar.xz"
51 LICENSE="Unlicense"
52
53 @@ -47,8 +48,9 @@ src_test() {
54 # We choose to be verbose during the test process
55 # because the output is quite repetitive with no
56 # clear demarcation b/t tests
57 - tests=( "test" "stest" "rsatest" )
58 + local tests=( "test" "stest" "rsatest" )
59
60 + local test
61 for test in "${tests[@]}"; do
62 einfo "Running test (${test})"
63 ./${test} || die "Test (${test}) failed"