From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libtasn1/
Date: Sun, 09 Feb 2025 04:32:36 +0000 (UTC) [thread overview]
Message-ID: <1739075358.4ba6d3c31e981be734c49c185fa856766b1c0436.sam@gentoo> (raw)
commit: 4ba6d3c31e981be734c49c185fa856766b1c0436
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 9 04:29:18 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 9 04:29:18 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ba6d3c3
dev-libs/libtasn1: add 4.20.0
Bug: https://bugs.gentoo.org/949497
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/libtasn1/Manifest | 2 ++
dev-libs/libtasn1/libtasn1-4.20.0.ebuild | 54 ++++++++++++++++++++++++++++++++
2 files changed, 56 insertions(+)
diff --git a/dev-libs/libtasn1/Manifest b/dev-libs/libtasn1/Manifest
index 002fb8ad17a3..576a9c7c86f4 100644
--- a/dev-libs/libtasn1/Manifest
+++ b/dev-libs/libtasn1/Manifest
@@ -1,2 +1,4 @@
DIST libtasn1-4.19.0.tar.gz 1786576 BLAKE2B 6e8232590cd87da3bfd9182ed44eccdfbdfcc85e88d8cf19fffdb3d600e04694b77079b95bbd822d2c3fff29458ddae0f0440f9c1c19c711923a2507bd19270f SHA512 287f5eddfb5e21762d9f14d11997e56b953b980b2b03a97ed4cd6d37909bda1ed7d2cdff9da5d270a21d863ab7e54be6b85c05f1075ac5d8f0198997cf335ef4
DIST libtasn1-4.19.0.tar.gz.sig 228 BLAKE2B f45b8c53844fad4d1044ef6915d88337affb0287973a0ffab2d77a6a61c850cebdea6904f077fcc13a8bc29ba7cbbef7cdf2a5e325c8180d574020eb3cb9f432 SHA512 e0417625f8df22c6421914bf2d4f19d7f27260c24c04f50e59669681f326debe06ddef9dc5a2e20fda50feb30bbbf3f41597e64961257304ec2c407aa76d107e
+DIST libtasn1-4.20.0.tar.gz 1783873 BLAKE2B 3219b48e691abd7f6f4e32164ab708bc7c29832a2a7669aa03751d4a519dffb78d5a5f94530a3f35cd6516b39400da9e634d7f46245ab934465c305a1d387561 SHA512 0c0660085f5e80537aa3d65197967029be6cc5e27d7029789713902989c1694fdb49421ae0415b79b953e11893bb4bdaada85f7aff847dd0bb4075c91887e7b4
+DIST libtasn1-4.20.0.tar.gz.sig 1223 BLAKE2B c9bff7ae5b7f4939e4df1c0d67b634a1fde57554a5dae26a20fbe600dd9d5b79239a04d1531acdf1f6dedf2eb06bc2bab46c432dbe6c9ad991d0e06b41dcf268 SHA512 bb5da128c20ed8f1e7c681c779ac3d2e455c661d779a4a7a70a6cabc1ea4139df9d0acfd145545acc8fe41df6490fd7d3c2df4b8d7560891291abbf56ac3afdb
diff --git a/dev-libs/libtasn1/libtasn1-4.20.0.ebuild b/dev-libs/libtasn1/libtasn1-4.20.0.ebuild
new file mode 100644
index 000000000000..adaefbd8d210
--- /dev/null
+++ b/dev-libs/libtasn1/libtasn1-4.20.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/libtasn1.asc
+inherit multilib-minimal libtool verify-sig
+
+DESCRIPTION="ASN.1 library"
+HOMEPAGE="https://www.gnu.org/software/libtasn1/"
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+SRC_URI+=" verify-sig? ( mirror://gnu/${PN}/${P}.tar.gz.sig )"
+
+LICENSE="LGPL-2.1+"
+SLOT="0/6" # subslot = libtasn1 soname version
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
+IUSE="static-libs test"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ sys-apps/help2man
+ app-alternatives/yacc
+ verify-sig? ( >=sec-keys/openpgp-keys-libtasn1-20250209 )
+"
+
+DOCS=( AUTHORS ChangeLog NEWS README.md THANKS )
+
+src_prepare() {
+ default
+
+ # For Solaris shared library
+ elibtoolize
+}
+
+multilib_src_configure() {
+ # -fanalyzer substantially slows down the build and isn't useful for
+ # us. It's useful for upstream as it's static analysis, but it's not
+ # useful when just getting something built.
+ export gl_cv_warn_c__fanalyzer=no
+
+ local myeconfargs=(
+ --disable-valgrind-tests
+ $(use_enable static-libs static)
+ )
+
+ ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_install_all() {
+ einstalldocs
+
+ find "${ED}" -type f -name '*.la' -delete || die
+}
next reply other threads:[~2025-02-09 4:32 UTC|newest]
Thread overview: 105+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-09 4:32 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-04-13 21:22 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libtasn1/ Sam James
2025-03-13 4:45 Sam James
2022-09-23 2:09 Sam James
2022-09-03 5:55 Arthur Zamarin
2022-09-03 5:55 Arthur Zamarin
2022-09-03 5:55 Arthur Zamarin
2022-09-03 5:16 Sam James
2022-09-03 5:16 Sam James
2022-09-03 4:42 Arthur Zamarin
2022-09-03 4:42 Arthur Zamarin
2022-09-03 4:42 Arthur Zamarin
2022-08-24 0:21 Sam James
2022-08-24 0:21 Sam James
2022-08-23 20:48 Sam James
2022-06-30 22:49 Sam James
2022-05-22 12:22 Jakov Smolić
2022-05-22 6:22 Agostino Sarubbo
2022-05-22 6:19 Agostino Sarubbo
2022-05-22 6:17 Agostino Sarubbo
2022-05-22 3:21 Sam James
2022-05-22 3:20 Sam James
2022-05-22 3:18 Sam James
2022-05-22 3:18 Sam James
2021-11-29 5:22 Sam James
2021-11-09 22:00 Lars Wendler
2021-08-15 19:51 Sam James
2021-08-11 19:11 Sam James
2021-08-11 0:23 Sam James
2021-08-11 0:04 Sam James
2021-05-14 16:21 Thomas Deutschmann
2020-06-19 15:41 Sergei Trofimovich
2020-06-11 22:08 Mart Raudsepp
2020-06-11 8:34 Agostino Sarubbo
2020-06-11 8:31 Agostino Sarubbo
2020-06-11 8:29 Agostino Sarubbo
2020-06-11 8:27 Agostino Sarubbo
2020-06-11 8:25 Agostino Sarubbo
2020-06-10 13:01 Agostino Sarubbo
2020-06-10 13:00 Agostino Sarubbo
2020-02-06 17:36 Lars Wendler
2020-02-06 17:36 Lars Wendler
2020-01-09 7:15 Lars Wendler
2019-11-26 7:05 Lars Wendler
2019-11-25 22:56 Lars Wendler
2019-08-19 11:01 Lars Wendler
2019-05-04 18:38 Andreas K. Hüttel
2018-09-28 13:00 Alon Bar-Lev
2018-09-26 20:49 Sergei Trofimovich
2018-08-18 5:21 Mikle Kolyada
2018-04-22 19:18 Matt Turner
2018-04-08 10:55 Markus Meier
2018-04-07 12:05 Sergei Trofimovich
2018-03-31 15:38 Tobias Klausmann
2018-03-31 10:46 Sergei Trofimovich
2018-03-29 15:19 Thomas Deutschmann
2018-03-28 19:45 Mart Raudsepp
2018-03-26 19:49 Mikle Kolyada
2018-03-25 21:57 Sergei Trofimovich
2018-03-02 20:35 Mart Raudsepp
2018-01-16 19:11 Alon Bar-Lev
2017-10-06 9:59 Sergei Trofimovich
2017-09-30 10:45 Sergei Trofimovich
2017-09-29 10:29 Sergei Trofimovich
2017-09-26 23:02 Sergei Trofimovich
2017-09-24 20:13 Sergei Trofimovich
2017-09-06 19:47 Markus Meier
2017-09-04 20:36 Sergei Trofimovich
2017-09-04 13:36 Tobias Klausmann
2017-09-04 12:50 Aaron Bauman
2017-09-04 12:50 Aaron Bauman
2017-09-02 18:50 Alexis Ballier
2017-06-01 4:43 Markus Meier
2017-05-29 6:30 Alon Bar-Lev
2017-05-27 13:23 Tobias Klausmann
2017-05-27 12:46 Alon Bar-Lev
2017-05-27 10:26 Alon Bar-Lev
2017-05-26 13:48 Agostino Sarubbo
2017-03-22 3:15 Mike Frysinger
2017-03-17 11:12 Michael Haubenwallner
2017-03-15 6:01 Jeroen Roovers
2017-03-07 19:35 Michael Weber
2017-03-04 14:02 Agostino Sarubbo
2017-03-04 13:46 Agostino Sarubbo
2017-03-04 13:38 Agostino Sarubbo
2017-03-03 19:14 Tobias Klausmann
2017-02-24 4:16 Mike Frysinger
2017-02-17 6:33 Alon Bar-Lev
2017-02-17 5:59 Markus Meier
2017-01-24 9:57 Fabian Groffen
2017-01-16 18:55 Alon Bar-Lev
2017-01-14 23:22 Jeroen Roovers
2016-12-17 6:45 Aaron Bauman
2016-12-14 9:14 Tobias Klausmann
2016-11-20 13:04 Agostino Sarubbo
2016-09-24 22:01 Alon Bar-Lev
2016-07-26 18:32 Alon Bar-Lev
2016-06-27 8:47 Agostino Sarubbo
2016-06-12 13:41 Alon Bar-Lev
2016-05-02 3:33 Matt Turner
2016-04-19 15:50 Markus Meier
2016-04-16 12:16 Jeroen Roovers
2016-04-11 19:04 Alon Bar-Lev
2015-09-14 17:53 Alon Bar-Lev
2015-09-05 6:56 Alon Bar-Lev
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=1739075358.4ba6d3c31e981be734c49c185fa856766b1c0436.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