From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libtommath/
Date: Sat, 9 Sep 2023 05:03:47 +0000 (UTC) [thread overview]
Message-ID: <1694235562.9e4b7c3ada9725aa4cf21c16d6fac8fa985e4b2f.sam@gentoo> (raw)
commit: 9e4b7c3ada9725aa4cf21c16d6fac8fa985e4b2f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 9 04:57:54 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Sep 9 04:59:22 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e4b7c3a
dev-libs/libtommath: add 1.2.1
Bug: https://bugs.gentoo.org/913880
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/libtommath/Manifest | 1 +
dev-libs/libtommath/libtommath-1.2.1.ebuild | 96 +++++++++++++++++++++++++++++
2 files changed, 97 insertions(+)
diff --git a/dev-libs/libtommath/Manifest b/dev-libs/libtommath/Manifest
index eaf116692eb5..701ebd802e6a 100644
--- a/dev-libs/libtommath/Manifest
+++ b/dev-libs/libtommath/Manifest
@@ -1 +1,2 @@
DIST ltm-1.2.0.tar.xz 622120 BLAKE2B 1537dad7da5c14264f03280e9d49fa0b7e6c1c4924c805f202d31c60569b9e3bee40674301d67b0f5b049c1c2dc5ec71b6c566ff5c9b8168d16840b031acc400 SHA512 6f9ccd0691831f07f86ddc81cb6145504b3d5da66dd3e92312c64cce0ea986fa4e08ba65ca8991aaebe56702c2d7c15f309696785b813dffb4c112a4ad04b203
+DIST ltm-1.2.1.tar.xz 635728 BLAKE2B b1464843af4a33f2ba0c824fe2dd080227c6b761b3f8059bbc5229f36d601aecc8bcb20c386718c71a1bc01f69e532647689b43252bd15143f809f7072de449e SHA512 50c9459357aa7f5076af93de6701c617da0dbbf2230a2f4468062704a6cd6e9d3c2fbb27016f68a7e1d6b35d6ddb2088630b24ea6acc20ed8c19594913d36e95
diff --git a/dev-libs/libtommath/libtommath-1.2.1.ebuild b/dev-libs/libtommath/libtommath-1.2.1.ebuild
new file mode 100644
index 000000000000..a2986670805b
--- /dev/null
+++ b/dev-libs/libtommath/libtommath-1.2.1.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools toolchain-funcs
+
+DESCRIPTION="Optimized and portable routines for integer theoretic applications"
+HOMEPAGE="https://www.libtom.net/"
+SRC_URI="https://github.com/libtom/libtommath/releases/download/v${PV}/ltm-${PV}.tar.xz"
+
+LICENSE="Unlicense"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
+IUSE="doc examples static-libs"
+
+BDEPEND="sys-devel/libtool"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-1.2.0-sparc.patch
+)
+
+src_prepare() {
+ default
+
+ # need libtool for cross compilation, bug #376643
+ cat <<-EOF > configure.ac
+ AC_INIT(libtommath, 0)
+ AM_INIT_AUTOMAKE
+ LT_INIT
+ AC_CONFIG_FILES(Makefile)
+ AC_OUTPUT
+ EOF
+
+ touch NEWS README AUTHORS ChangeLog Makefile.am || die
+
+ eautoreconf
+
+ export LIBTOOL="${S}"/libtool
+}
+
+src_configure() {
+ econf $(use_enable static-libs static)
+}
+
+_emake() {
+ emake \
+ CC="$(tc-getCC)" \
+ AR="$(tc-getAR)" \
+ RANLIB="$(tc-getRANLIB)" \
+ IGNORE_SPEED=1 \
+ DESTDIR="${ED}" \
+ PREFIX="${EPREFIX}/usr" \
+ LIBPATH="/usr/$(get_libdir)" \
+ INCPATH="/usr/include" \
+ "$@"
+}
+
+src_compile() {
+ # Replace hard-coded libdir=${exec_prefix}/lib.
+ sed -i -e "/libdir=/s:/lib:/$(get_libdir):" libtommath.pc.in || die
+
+ _emake -f makefile.shared
+}
+
+src_test() {
+ # Tests must be built statically
+ # (i.e. without -f makefile.shared)
+ _emake test
+
+ ./test || die
+}
+
+src_install() {
+ _emake -f makefile.shared install
+
+ if [[ ${CHOST} == *-darwin* ]] ; then
+ local path="usr/$(get_libdir)/libtommath.${PV}.dylib"
+ install_name_tool -id "${EPREFIX}/${path}" "${ED}/${path}" || die "Failed to adjust install_name"
+ fi
+
+ # We only link against -lc, so drop the .la file.
+ find "${ED}" -name '*.la' -delete || die
+ if ! use static-libs ; then
+ find "${ED}" -name "*.a" -delete || die
+ fi
+
+ dodoc changes.txt
+
+ use doc && dodoc doc/*.pdf
+
+ if use examples ; then
+ docinto demo
+ dodoc demo/*.c
+ fi
+}
next reply other threads:[~2023-09-09 5:03 UTC|newest]
Thread overview: 57+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-09 5:03 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-04-03 5:10 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libtommath/ Sam James
2023-10-08 15:29 Arthur Zamarin
2023-10-08 6:44 Sam James
2023-10-08 5:39 Sam James
2023-10-08 5:39 Sam James
2023-10-08 5:33 Sam James
2023-10-08 5:33 Sam James
2023-10-08 5:33 Sam James
2023-10-08 5:33 Sam James
2022-11-16 5:57 WANG Xuerui
2021-10-28 1:00 Sam James
2021-10-28 0:47 Sam James
2021-09-10 20:16 Matt Turner
2021-08-28 8:50 Fabian Groffen
2021-07-28 0:19 Marek Szuba
2021-05-31 20:45 David Seifert
2021-03-23 4:53 Sam James
2021-01-30 5:24 Sam James
2021-01-30 5:24 Sam James
2021-01-06 0:02 Sam James
2020-12-20 6:29 Sam James
2020-09-05 15:23 Sam James
2020-08-19 14:33 Sam James
2020-08-18 13:28 Jeroen Roovers
2020-08-16 14:48 Agostino Sarubbo
2020-08-16 14:47 Agostino Sarubbo
2020-08-15 6:12 Sam James
2020-08-15 5:53 Sam James
2020-08-15 3:44 Sam James
2020-08-15 3:40 Sam James
2020-07-14 13:02 Sam James
2020-07-14 13:02 Sam James
2020-07-14 13:02 Sam James
2020-02-25 12:48 Mikle Kolyada
2020-02-25 12:48 Mikle Kolyada
2019-12-08 5:32 Matt Turner
2019-11-30 21:45 Sergei Trofimovich
2019-11-22 13:44 Matt Turner
2019-11-20 11:50 Agostino Sarubbo
2019-11-20 11:48 Agostino Sarubbo
2019-11-20 11:35 Agostino Sarubbo
2019-11-19 22:43 Aaron Bauman
2019-11-18 12:03 Agostino Sarubbo
2019-02-09 16:07 James Le Cuirot
2019-02-09 16:07 James Le Cuirot
2019-02-01 17:02 Lars Wendler
2019-02-01 17:02 Lars Wendler
2017-12-15 8:12 Jeroen Roovers
2017-07-26 20:41 Sergei Trofimovich
2017-06-26 13:50 Patrick Lauer
2017-01-29 16:19 Fabian Groffen
2017-01-11 4:47 Benda XU
2016-03-05 16:25 Patrick Lauer
2016-03-05 16:25 Patrick Lauer
2016-03-03 18:59 Patrick Lauer
2016-02-28 21:04 Patrick Lauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1694235562.9e4b7c3ada9725aa4cf21c16d6fac8fa985e4b2f.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox