Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libressl/
Date: Fri, 21 Aug 2020 14:15:45
Message-Id: 1598019021.c5f173409b0bba0fdcbd6c3534bf372758eaf6d3.blueness@gentoo
1 commit: c5f173409b0bba0fdcbd6c3534bf372758eaf6d3
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 21 14:10:21 2020 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 21 14:10:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5f17340
7
8 dev-libs/libressl: version bump to 3.1.4
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.23
11 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
12
13 dev-libs/libressl/Manifest | 1 +
14 dev-libs/libressl/libressl-3.1.4.ebuild | 63 +++++++++++++++++++++++++++++++++
15 2 files changed, 64 insertions(+)
16
17 diff --git a/dev-libs/libressl/Manifest b/dev-libs/libressl/Manifest
18 index a9c9b7c53e0..d8fab0d05dd 100644
19 --- a/dev-libs/libressl/Manifest
20 +++ b/dev-libs/libressl/Manifest
21 @@ -1,4 +1,5 @@
22 DIST libressl-2.9.2.tar.gz 3607549 BLAKE2B 496e993e4f1c85167e0344afab61259d4e3f094a7e5dfac85878191070e2c196753162532efb921fab582481aeda3705fca9a2b48921cba82465192f2c1eef95 SHA512 b43e73e47c1f14da3c702ab42f29f1d67645a4fa425441337bd6c125b481ef78a40fd13e6b34dadb2af337e1c0c190cfb616186d4db9c9a743a37e594b9b8033
23 DIST libressl-3.0.2.tar.gz 3669468 BLAKE2B 84ad2c1fea8d2119f191ec8ab3f999fb0354636d48aabb76fa1786139c669c9d8ca105d79cc8416dd20683818eccc84490cdadc9ca94cb2b0e411644e923a3d6 SHA512 19226da3bc9776e1da40b8e94dfa53564d5e6acc80edee539ba12d7a75c1bb8c0603e7633f26a6ef8b12adc56bb677ccda448575aa6be2ad3df5447465a4b080
24 DIST libressl-3.1.3.tar.gz 3766345 BLAKE2B 4956fa0ae6030e9e9969d584db3bc0084c4b155207d1472ebfa40c8e68e925214b66ed1bc7e32d98a9a48de0b61909323a0380a973c724422c92bfe88b9fdfb2 SHA512 f9f497fe5d09b8b762175da038a8e67d9d2567462fefc49e434d306a3071ba3a4d369c89143d9d90e3bbcc7b9ba051c9c923a0dfc41d856edc08ae59fa727ee8
25 +DIST libressl-3.1.4.tar.gz 3767238 BLAKE2B e639349e50f985360f2cef01b16b5c8f3c725d4a9bbee1117787174e4de6eb9b14cc8ad5f1704971057dd0f5000eea01f3b172178c534c70d38921418034d94c SHA512 77a53c4294fc332006502dc3af069346e2c9efc9240de7f91eb48e89043525900b5b23652cfd159221c3a482cc01e263611adb752e23b707f965156e3a7cd895
26 DIST libressl-3.2.0.tar.gz 3775925 BLAKE2B 99d74fad16e272be8e3b23b873c35970ce3693e088baf365670ad8e8cbb846e90f4232bbc6c65b70a35060da99b9b210b3debce1c78d531e810de26e3e2f05cb SHA512 e8bf95af4e4e855b0462eb12df8f802102a3bee5bb40fb1859e7c40d9e3ce89f0d2eb0acdd923e7c592b4aeb7ecc556f753c0a12d0dace05d2ef342bffdd9d07
27
28 diff --git a/dev-libs/libressl/libressl-3.1.4.ebuild b/dev-libs/libressl/libressl-3.1.4.ebuild
29 new file mode 100644
30 index 00000000000..ab31f204168
31 --- /dev/null
32 +++ b/dev-libs/libressl/libressl-3.1.4.ebuild
33 @@ -0,0 +1,63 @@
34 +# Copyright 1999-2020 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +inherit multilib-minimal libtool
40 +
41 +DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
42 +HOMEPAGE="https://www.libressl.org/"
43 +SRC_URI="https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz"
44 +
45 +LICENSE="ISC openssl"
46 +# Reflects ABI of libcrypto.so and libssl.so. Since these can differ,
47 +# we'll try to use the max of either. However, if either change between
48 +# versions, we have to change the subslot to trigger rebuild of consumers.
49 +SLOT="0/48"
50 +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"
51 +IUSE="+asm static-libs test"
52 +RESTRICT="!test? ( test )"
53 +REQUIRED_USE="test? ( static-libs )"
54 +
55 +RDEPEND="!dev-libs/openssl:0"
56 +DEPEND="${RDEPEND}"
57 +PDEPEND="app-misc/ca-certificates"
58 +
59 +src_prepare() {
60 + touch crypto/Makefile.in
61 +
62 + sed -i \
63 + -e '/^[ \t]*CFLAGS=/s#-g ##' \
64 + -e '/^[ \t]*CFLAGS=/s#-g"#"#' \
65 + -e '/^[ \t]*CFLAGS=/s#-O2 ##' \
66 + -e '/^[ \t]*CFLAGS=/s#-O2"#"#' \
67 + -e '/^[ \t]*USER_CFLAGS=/s#-O2 ##' \
68 + -e '/^[ \t]*USER_CFLAGS=/s#-O2"#"#' \
69 + configure || die "fixing CFLAGS failed"
70 +
71 + if ! use test ; then
72 + sed -i \
73 + -e '/^[ \t]*SUBDIRS =/s#tests##' \
74 + Makefile.in || die "Removing tests failed"
75 + fi
76 +
77 + eapply "${FILESDIR}"/${PN}-2.8.3-solaris10.patch
78 + eapply_user
79 +
80 + elibtoolize # for Solaris
81 +}
82 +
83 +multilib_src_configure() {
84 + ECONF_SOURCE="${S}" econf \
85 + $(use_enable asm) \
86 + $(use_enable static-libs static)
87 +}
88 +
89 +multilib_src_test() {
90 + emake check
91 +}
92 +
93 +multilib_src_install_all() {
94 + einstalldocs
95 + find "${D}" -name '*.la' -exec rm -f {} + || die
96 +}