From: "Jory Pratt" <anarchy@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libressl/
Date: Mon, 2 Nov 2020 02:29:06 +0000 (UTC) [thread overview]
Message-ID: <1604284140.104632d70665cdb198525ef7f98068801a0070b8.anarchy@gentoo> (raw)
commit: 104632d70665cdb198525ef7f98068801a0070b8
Author: Jory Pratt <anarchy <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 2 02:27:12 2020 +0000
Commit: Jory Pratt <anarchy <AT> gentoo <DOT> org>
CommitDate: Mon Nov 2 02:29:00 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=104632d7
dev-libs/libressl: Version bump 3.2.2
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Jory Pratt <anarchy <AT> gentoo.org>
dev-libs/libressl/Manifest | 1 +
dev-libs/libressl/libressl-3.2.2.ebuild | 63 +++++++++++++++++++++++++++++++++
2 files changed, 64 insertions(+)
diff --git a/dev-libs/libressl/Manifest b/dev-libs/libressl/Manifest
index d3f055151f2..03e1e6b58f7 100644
--- a/dev-libs/libressl/Manifest
+++ b/dev-libs/libressl/Manifest
@@ -4,3 +4,4 @@ DIST libressl-3.1.3.tar.gz 3766345 BLAKE2B 4956fa0ae6030e9e9969d584db3bc0084c4b1
DIST libressl-3.1.4.tar.gz 3767238 BLAKE2B e639349e50f985360f2cef01b16b5c8f3c725d4a9bbee1117787174e4de6eb9b14cc8ad5f1704971057dd0f5000eea01f3b172178c534c70d38921418034d94c SHA512 77a53c4294fc332006502dc3af069346e2c9efc9240de7f91eb48e89043525900b5b23652cfd159221c3a482cc01e263611adb752e23b707f965156e3a7cd895
DIST libressl-3.2.0.tar.gz 3775925 BLAKE2B 99d74fad16e272be8e3b23b873c35970ce3693e088baf365670ad8e8cbb846e90f4232bbc6c65b70a35060da99b9b210b3debce1c78d531e810de26e3e2f05cb SHA512 e8bf95af4e4e855b0462eb12df8f802102a3bee5bb40fb1859e7c40d9e3ce89f0d2eb0acdd923e7c592b4aeb7ecc556f753c0a12d0dace05d2ef342bffdd9d07
DIST libressl-3.2.1.tar.gz 3798341 BLAKE2B 25d4d0fa758d92fd781f39000e631d7cec0a5a8210b2b127b7d49ef0e96e1a20a45f60e6231dcbe379f57f19c1ca8a4dde6205b1cc52ee44d17a4a21da34c98a SHA512 0204177ad0291f3fce4c77ab21cce17785d0239f2ae4be8fbdce5575cc98775186caa0e1851b211c05be07e3cc603111eeaac4379c8977e7b140fedee2551f93
+DIST libressl-3.2.2.tar.gz 3839529 BLAKE2B b5c35c85bf9914b49d828963e5089e77ec0b370227f8e36c70eac9a4c9176e90ebec1dccd19fc4d99d58caaba545b78cc5570751bd73a7488e502a9bcca2c5ed SHA512 708f347ec88f0501b5937f1efc8dc15e76a2f99a54f024e21a006349abc9305f64796f7df9fcbc875e13f999a620253b62b138d76f67586f1e432f3956da25e1
diff --git a/dev-libs/libressl/libressl-3.2.2.ebuild b/dev-libs/libressl/libressl-3.2.2.ebuild
new file mode 100644
index 00000000000..ab31f204168
--- /dev/null
+++ b/dev-libs/libressl/libressl-3.2.2.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multilib-minimal libtool
+
+DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
+HOMEPAGE="https://www.libressl.org/"
+SRC_URI="https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz"
+
+LICENSE="ISC openssl"
+# Reflects ABI of libcrypto.so and libssl.so. Since these can differ,
+# we'll try to use the max of either. However, if either change between
+# versions, we have to change the subslot to trigger rebuild of consumers.
+SLOT="0/48"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="+asm static-libs test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="test? ( static-libs )"
+
+RDEPEND="!dev-libs/openssl:0"
+DEPEND="${RDEPEND}"
+PDEPEND="app-misc/ca-certificates"
+
+src_prepare() {
+ touch crypto/Makefile.in
+
+ sed -i \
+ -e '/^[ \t]*CFLAGS=/s#-g ##' \
+ -e '/^[ \t]*CFLAGS=/s#-g"#"#' \
+ -e '/^[ \t]*CFLAGS=/s#-O2 ##' \
+ -e '/^[ \t]*CFLAGS=/s#-O2"#"#' \
+ -e '/^[ \t]*USER_CFLAGS=/s#-O2 ##' \
+ -e '/^[ \t]*USER_CFLAGS=/s#-O2"#"#' \
+ configure || die "fixing CFLAGS failed"
+
+ if ! use test ; then
+ sed -i \
+ -e '/^[ \t]*SUBDIRS =/s#tests##' \
+ Makefile.in || die "Removing tests failed"
+ fi
+
+ eapply "${FILESDIR}"/${PN}-2.8.3-solaris10.patch
+ eapply_user
+
+ elibtoolize # for Solaris
+}
+
+multilib_src_configure() {
+ ECONF_SOURCE="${S}" econf \
+ $(use_enable asm) \
+ $(use_enable static-libs static)
+}
+
+multilib_src_test() {
+ emake check
+}
+
+multilib_src_install_all() {
+ einstalldocs
+ find "${D}" -name '*.la' -exec rm -f {} + || die
+}
next reply other threads:[~2020-11-02 2:29 UTC|newest]
Thread overview: 168+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-02 2:29 Jory Pratt [this message]
-- strict thread matches above, loose matches on Subject: below --
2020-12-31 11:22 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libressl/ Sergei Trofimovich
2020-12-31 4:24 Sam James
2020-12-31 4:24 Sam James
2020-12-31 4:16 Sam James
2020-12-11 20:46 Sam James
2020-12-11 20:21 Sam James
2020-12-10 21:41 Thomas Deutschmann
2020-12-09 18:56 Fabian Groffen
2020-12-09 4:45 Stefan Strogin
2020-11-26 17:18 Anthony G. Basile
2020-11-26 17:17 Anthony G. Basile
2020-11-03 3:54 Sam James
2020-11-02 2:29 Jory Pratt
2020-09-07 3:28 Sam James
2020-09-07 3:26 Sam James
2020-09-07 3:26 Sam James
2020-09-05 0:38 Sam James
2020-09-04 2:34 Sam James
2020-09-04 2:34 Sam James
2020-09-03 14:29 Thomas Deutschmann
2020-08-25 23:37 Anthony G. Basile
2020-08-24 23:33 Sam James
2020-08-21 14:15 Anthony G. Basile
2020-08-15 1:42 Stefan Strogin
2020-07-27 20:35 Aaron Bauman
2020-07-27 20:33 Aaron Bauman
2020-07-20 16:10 Sam James
2020-07-20 14:59 Sam James
2020-07-09 21:19 Sergei Trofimovich
2020-06-29 16:12 Mikle Kolyada
2020-06-28 20:56 Thomas Deutschmann
2020-06-21 20:31 Thomas Deutschmann
2020-06-17 15:51 Anthony G. Basile
2020-05-25 3:36 Stefan Strogin
2020-05-25 3:36 Stefan Strogin
2020-05-08 20:20 Anthony G. Basile
2020-04-11 13:30 Sergei Trofimovich
2020-03-02 11:51 Sergei Trofimovich
2020-02-11 23:34 Sergei Trofimovich
2020-02-05 23:54 Sergei Trofimovich
2020-01-27 10:26 Mikle Kolyada
2020-01-10 1:26 Thomas Deutschmann
2019-12-31 18:32 Aaron Bauman
2019-12-31 10:52 Mikle Kolyada
2019-10-02 0:09 Stefan Strogin
2019-08-06 17:47 Anthony G. Basile
2019-07-28 13:59 Mikle Kolyada
2019-07-28 13:59 Mikle Kolyada
2019-07-21 10:01 Sergei Trofimovich
2019-07-02 8:19 Sergei Trofimovich
2019-07-01 19:23 Thomas Deutschmann
2019-06-26 20:05 Sergei Trofimovich
2019-05-25 0:42 Aaron Bauman
2019-05-24 14:55 Mikle Kolyada
2019-05-21 13:02 Anthony G. Basile
2019-05-14 2:27 Aaron Bauman
2019-05-14 1:18 Aaron Bauman
2019-04-24 1:57 Aaron Bauman
2019-04-24 1:49 Aaron Bauman
2019-04-24 1:49 Aaron Bauman
2019-04-24 1:07 Aaron Bauman
2019-04-24 1:07 Aaron Bauman
2019-04-17 21:36 Aaron Bauman
2019-03-04 21:33 Fabian Groffen
2019-03-03 18:58 Aaron Bauman
2019-03-03 18:04 Aaron Bauman
2019-03-02 15:33 Mikle Kolyada
2019-03-02 15:33 Mikle Kolyada
2019-02-25 0:46 Aaron Bauman
2019-02-24 21:53 Aaron Bauman
2019-02-18 21:31 Sergei Trofimovich
2019-02-18 0:31 Thomas Deutschmann
2019-02-17 18:37 Aaron Bauman
2019-02-17 18:32 Aaron Bauman
2018-12-28 23:15 Sergei Trofimovich
2018-12-28 7:56 Mikle Kolyada
2018-12-19 23:35 Anthony G. Basile
2018-11-25 1:48 Aaron Bauman
2018-11-25 1:48 Aaron Bauman
2018-11-25 1:47 Aaron Bauman
2018-10-31 13:25 Anthony G. Basile
2018-10-10 1:11 Anthony G. Basile
2018-09-17 23:21 Matt Turner
2018-09-17 23:21 Matt Turner
2018-08-07 11:08 Anthony G. Basile
2018-07-09 23:25 Mikle Kolyada
2018-07-07 10:47 Markus Meier
2018-06-29 20:08 Anthony G. Basile
2018-06-17 23:29 Thomas Deutschmann
2018-06-17 1:13 Aaron Bauman
2018-06-16 19:26 Sergei Trofimovich
2018-06-16 1:36 Aaron Bauman
2018-06-05 7:12 Jeroen Roovers
2018-06-03 17:16 Mikle Kolyada
2018-05-25 0:11 Aaron Bauman
2018-05-19 18:15 Sergei Trofimovich
2018-05-18 23:16 Jeroen Roovers
2018-05-06 16:37 Aaron Bauman
2018-05-06 16:16 Aaron Bauman
2018-05-06 12:06 Anthony G. Basile
2018-04-30 23:50 Anthony G. Basile
2018-04-30 0:29 Aaron Bauman
2018-04-19 23:51 Aaron Bauman
2018-04-17 1:32 Aaron Bauman
2018-04-15 16:39 Mikle Kolyada
2018-04-06 13:36 Anthony G. Basile
2018-04-01 22:43 Anthony G. Basile
2018-03-30 16:18 Anthony G. Basile
2018-03-30 14:01 Anthony G. Basile
2018-03-24 11:12 Anthony G. Basile
2018-03-23 0:04 Anthony G. Basile
2018-03-22 7:12 Anthony G. Basile
2017-12-20 14:15 Anthony G. Basile
2017-12-04 22:07 Sergei Trofimovich
2017-11-13 7:54 Sergei Trofimovich
2017-11-13 0:55 Thomas Deutschmann
2017-11-12 19:39 Anthony G. Basile
2017-11-12 19:39 Anthony G. Basile
2017-11-10 23:15 Anthony G. Basile
2017-11-10 12:40 Anthony G. Basile
2017-11-07 22:52 Sergei Trofimovich
2017-11-06 21:21 Anthony G. Basile
2017-09-27 7:40 Anthony G. Basile
2017-09-19 22:19 Anthony G. Basile
2017-09-19 21:04 Sergei Trofimovich
2017-09-07 19:16 Anthony G. Basile
2017-08-26 12:32 Mikle Kolyada
2017-07-15 0:59 Anthony G. Basile
2017-06-30 10:52 Sergei Trofimovich
2017-06-18 15:24 Alexis Ballier
2017-06-05 0:19 Anthony G. Basile
2017-05-03 21:36 Anthony G. Basile
2017-05-03 21:34 Anthony G. Basile
2017-04-12 15:14 Anthony G. Basile
2017-03-28 11:19 Anthony G. Basile
2017-02-02 23:45 Anthony G. Basile
2017-02-01 18:39 Anthony G. Basile
2017-01-26 16:08 Tobias Klausmann
2016-11-25 13:34 Anthony G. Basile
2016-11-09 3:23 Anthony G. Basile
2016-09-28 0:55 Anthony G. Basile
2016-08-31 16:07 Michael Palimaka
2016-08-01 22:40 Anthony G. Basile
2016-07-05 23:35 Anthony G. Basile
2016-06-10 7:26 Anthony G. Basile
2016-06-04 13:33 Anthony G. Basile
2016-06-01 8:35 Anthony G. Basile
2016-05-09 6:51 Anthony G. Basile
2016-05-04 20:30 Anthony G. Basile
2016-04-23 12:26 Michał Górny
2016-04-18 9:43 Patrice Clement
2016-04-18 4:41 Michał Górny
2016-03-23 10:06 Anthony G. Basile
2016-03-23 10:06 Anthony G. Basile
2016-01-29 8:11 Anthony G. Basile
2016-01-29 0:27 Anthony G. Basile
2016-01-29 0:27 Anthony G. Basile
2015-12-08 10:00 Anthony G. Basile
2015-12-05 12:36 Anthony G. Basile
2015-12-04 23:40 Anthony G. Basile
2015-12-04 10:21 Anthony G. Basile
2015-12-04 10:12 Anthony G. Basile
2015-10-31 7:21 Jeroen Roovers
2015-10-19 21:07 Julian Ospald
2015-10-16 13:53 Julian Ospald
2015-10-16 13:53 Julian Ospald
2015-09-20 11:32 Julian Ospald
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=1604284140.104632d70665cdb198525ef7f98068801a0070b8.anarchy@gentoo \
--to=anarchy@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