From: "Kent Fredric" <kentnl@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-SSLeay/
Date: Thu, 10 Jan 2019 03:17:49 +0000 (UTC) [thread overview]
Message-ID: <1547090120.98c7d60eacb064cd8285eeccfd2a74af470c7dbc.kentnl@gentoo> (raw)
commit: 98c7d60eacb064cd8285eeccfd2a74af470c7dbc
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 10 03:15:12 2019 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Thu Jan 10 03:15:20 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98c7d60e
dev-perl/Net-SSLeay: Bump to version 1.850.0
- Simplify file removal
- Remove 2 tests that break under FEATURES="network-sandbox"
Upstream:
- Fix problem exporting OPENSSL_NO_NEXTPROTONEG (not available on
libressl)
- Add SSL_set_default_passwd_cb* w/OpenSSL 1.1.0f+
- Add new functions for SSL_CTX_new
- Add functions added in OpenSSL 1.1.0
- Add SSL_use_certificate_chain_file
- Fix libressl version detection
- Fix OCSP handling memleak
- Add new functions for certificate verification
- Add X509_STORE_CTX_new and X509_verify_cert
- SSL_OCSP_response_verify now clears error queue when
OCSP_basic_verify fails but intermediate certificate succeeds
- Fix test failure when Test::Exception not installed
- Fix t/local/33_x509_create_cert.t on various OpenSSLs
Bug: https://rt.cpan.org/Ticket/Display.html?id=128207
Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
dev-perl/Net-SSLeay/Manifest | 1 +
dev-perl/Net-SSLeay/Net-SSLeay-1.850.0.ebuild | 62 +++++++++++++++++++++++++++
2 files changed, 63 insertions(+)
diff --git a/dev-perl/Net-SSLeay/Manifest b/dev-perl/Net-SSLeay/Manifest
index 45ff273e456..4337772143c 100644
--- a/dev-perl/Net-SSLeay/Manifest
+++ b/dev-perl/Net-SSLeay/Manifest
@@ -1 +1,2 @@
DIST Net-SSLeay-1.82.tar.gz 399194 BLAKE2B 0c8aeb3085b102b71284266904ee88a8558070644aaa6dd0c5f78db0bfccb0e7456c8ba62a549d7ab245a02ddc7e856bc326d503f63268ee0761290e41b97e4d SHA512 758c41f4916a55b5085167e5c6a2732a5ee70dbeb8f42e791cd957957ba4a59f724c072d3fa50a6b42ae3b22cf3ecb8738c3f8963990a7030117b73c2dcc0716
+DIST Net-SSLeay-1.85.tar.gz 418349 BLAKE2B 0f639145e5be9406264cc7ef6240a30e0d62e631bfe29b8d1cbc85ab3bf721e8d344a8472faaa87816a5d148cedd7f13faeec925d0632fc1b75ecd1c5c44f6d1 SHA512 74e0f2f56b707f1ff845c78c1fa7ce26a71b8f943bb99e994d4e065d1f42259fe4cd1a6a17d333459727534158f9541f116dbc8515122380807d9450b0faa26b
diff --git a/dev-perl/Net-SSLeay/Net-SSLeay-1.850.0.ebuild b/dev-perl/Net-SSLeay/Net-SSLeay-1.850.0.ebuild
new file mode 100644
index 00000000000..dd754787ef0
--- /dev/null
+++ b/dev-perl/Net-SSLeay/Net-SSLeay-1.850.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=MIKEM
+DIST_VERSION=1.85
+DIST_EXAMPLES=("examples/*")
+inherit multilib perl-module
+
+DESCRIPTION="Perl extension for using OpenSSL"
+
+LICENSE="openssl"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="libressl test minimal examples"
+
+RDEPEND="
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ virtual/perl-MIME-Base64
+"
+DEPEND="${RDEPEND}
+ virtual/perl-ExtUtils-MakeMaker
+ test? (
+ !minimal? (
+ dev-perl/Test-Exception
+ dev-perl/Test-Warn
+ dev-perl/Test-NoWarnings
+ )
+ virtual/perl-Test-Simple
+ )
+"
+export OPTIMIZE="$CFLAGS"
+export OPENSSL_PREFIX=${EPREFIX}/usr
+
+PATCHES=(
+ "${FILESDIR}/${PN}-1.82-respect-cflags.patch"
+ "${FILESDIR}/${PN}-1.82-fix-libdir.patch"
+ "${FILESDIR}/${PN}-1.82-fix-network-tests.patch"
+)
+PERL_RM_FILES=(
+ # Hateful author tests
+ 't/local/01_pod.t'
+ 't/local/02_pod_coverage.t'
+ 't/local/kwalitee.t'
+ # Broken under FEATURES="network-sandbox"
+ # https://rt.cpan.org/Ticket/Display.html?id=128207
+ 't/local/06_tcpecho.t'
+ 't/local/07_sslecho.t'
+)
+
+src_configure() {
+ if use test && has network ${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}; then
+ export NETWORK_TESTS=yes
+ else
+ use test && einfo "Network tests will be skipped without DIST_TEST_OVERRIDE=~network"
+ export NETWORK_TESTS=no
+ fi
+ export LIBDIR=$(get_libdir)
+ perl-module_src_configure
+}
next reply other threads:[~2019-01-10 3:17 UTC|newest]
Thread overview: 88+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-10 3:17 Kent Fredric [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-02 13:19 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-SSLeay/ Sam James
2025-02-13 14:29 Sam James
2024-02-06 6:47 Sam James
2023-06-21 9:17 Jakov Smolić
2023-06-21 9:12 Arthur Zamarin
2023-06-21 9:12 Arthur Zamarin
2023-06-21 8:28 Arthur Zamarin
2023-06-21 8:24 Arthur Zamarin
2023-06-21 8:19 Arthur Zamarin
2023-06-21 8:18 Sam James
2023-06-21 8:18 Sam James
2022-12-24 7:11 Sam James
2022-11-17 1:06 Sam James
2022-11-16 8:08 Arthur Zamarin
2022-11-15 14:50 Arthur Zamarin
2022-11-15 10:04 Sam James
2022-11-15 10:04 Sam James
2022-11-15 8:46 Sam James
2022-11-15 8:46 Sam James
2022-11-15 8:46 Sam James
2022-05-29 11:30 Fabian Groffen
2022-05-29 11:24 Fabian Groffen
2022-05-28 20:19 Sam James
2022-04-29 2:14 WANG Xuerui
2022-03-10 21:12 Sam James
2021-11-21 14:21 Andreas K. Hüttel
2021-08-26 19:51 Sam James
2021-08-26 14:55 Sam James
2021-08-26 14:52 Sam James
2021-08-25 16:26 Sam James
2021-08-25 5:37 Agostino Sarubbo
2021-08-25 5:26 Agostino Sarubbo
2021-07-17 16:35 Andreas K. Hüttel
2021-04-24 14:47 Andreas K. Hüttel
2020-07-24 18:58 Fabian Groffen
2020-07-18 4:43 Kent Fredric
2019-11-30 21:45 Sergei Trofimovich
2019-11-17 4:02 Matt Turner
2019-11-13 11:28 Agostino Sarubbo
2019-11-12 16:02 Agostino Sarubbo
2019-11-12 10:38 Agostino Sarubbo
2019-11-12 10:16 Agostino Sarubbo
2019-11-12 10:13 Agostino Sarubbo
2019-11-07 18:38 Aaron Bauman
2019-11-01 10:14 Mikle Kolyada
2019-10-26 14:44 Agostino Sarubbo
2019-10-25 20:32 Thomas Deutschmann
2019-05-04 19:02 Andreas K. Hüttel
2018-06-28 14:56 Mikle Kolyada
2018-04-18 8:04 Mart Raudsepp
2018-03-04 8:16 Tobias Klausmann
2018-01-15 19:03 Tobias Klausmann
2018-01-09 8:02 Sergei Trofimovich
2018-01-07 11:10 Sergei Trofimovich
2018-01-07 0:16 Sergei Trofimovich
2018-01-07 0:09 Sergei Trofimovich
2018-01-05 20:14 Sergei Trofimovich
2017-06-19 12:45 Kent Fredric
2017-05-19 0:01 Michael Weber
2017-05-18 23:57 Michael Weber
2017-05-16 13:05 Agostino Sarubbo
2017-05-12 17:56 Tobias Klausmann
2017-05-12 14:55 Agostino Sarubbo
2017-05-06 13:15 Markus Meier
2017-05-06 10:15 Jeroen Roovers
2017-05-04 15:55 Agostino Sarubbo
2017-05-03 8:19 Agostino Sarubbo
2017-04-01 22:49 Kent Fredric
2017-03-17 11:12 Michael Haubenwallner
2017-03-16 22:46 Andreas Hüttel
2017-02-24 7:58 Michael Weber
2017-02-24 4:24 Mike Frysinger
2017-02-15 14:23 Tobias Klausmann
2017-02-04 17:33 Andreas Hüttel
2017-02-04 15:21 Agostino Sarubbo
2017-02-04 9:37 Jeroen Roovers
2017-02-03 22:00 Jeroen Roovers
2017-01-29 16:45 Fabian Groffen
2017-01-08 6:26 Kent Fredric
2016-05-25 22:48 Matt Turner
2016-04-22 20:04 Markus Meier
2016-04-09 13:46 Agostino Sarubbo
2016-04-07 23:26 Andreas Hüttel
2016-04-07 23:26 Andreas Hüttel
2016-03-05 20:32 Andreas Hüttel
2015-11-22 22:44 Andreas Hüttel
2015-08-23 18:54 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=1547090120.98c7d60eacb064cd8285eeccfd2a74af470c7dbc.kentnl@gentoo \
--to=kentnl@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