Gentoo Archives: gentoo-commits

From: Stefan Strogin <steils@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/libressl:master commit in: dev-perl/Net-SSLeay/files/, dev-perl/Net-SSLeay/
Date: Sat, 17 Aug 2019 02:29:11
Message-Id: 1566008790.bb34a5b9177c5706e5853ebc8a0bf15e5b5e9654.steils@gentoo
1 commit: bb34a5b9177c5706e5853ebc8a0bf15e5b5e9654
2 Author: Stefan Strogin <steils <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 17 02:26:30 2019 +0000
4 Commit: Stefan Strogin <steils <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 17 02:26:30 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=bb34a5b9
7
8 dev-perl/Net-SSLeay: drop; fixed upstream and in gentoo.git
9
10 Signed-off-by: Stefan Strogin <steils <AT> gentoo.org>
11
12 dev-perl/Net-SSLeay/Manifest | 1 -
13 dev-perl/Net-SSLeay/Net-SSLeay-1.860.0_p9.ebuild | 62 ----------------------
14 .../files/Net-SSLeay-1.86-fix-libdir.patch | 27 ----------
15 dev-perl/Net-SSLeay/metadata.xml | 13 -----
16 4 files changed, 103 deletions(-)
17
18 diff --git a/dev-perl/Net-SSLeay/Manifest b/dev-perl/Net-SSLeay/Manifest
19 deleted file mode 100644
20 index e14a4f6..0000000
21 --- a/dev-perl/Net-SSLeay/Manifest
22 +++ /dev/null
23 @@ -1 +0,0 @@
24 -DIST Net-SSLeay-1.86_09.tar.gz 430456 BLAKE2B c16cba2a1252d572d828e0f3a7cf708ab5bb2369998e949e95edba0098fa5b2c26b724c1029fad63ba4fa200280696035bcb83682214559e0dc09b446d245b89 SHA512 5f878169075dac9b0e5f9aabec732a5034858a414a8344d16928fe8ec614277872d3af75295ac065ef5a7511c0f5ca22fc3f5cd040f0009d2a8119314da54727
25
26 diff --git a/dev-perl/Net-SSLeay/Net-SSLeay-1.860.0_p9.ebuild b/dev-perl/Net-SSLeay/Net-SSLeay-1.860.0_p9.ebuild
27 deleted file mode 100644
28 index 6180799..0000000
29 --- a/dev-perl/Net-SSLeay/Net-SSLeay-1.860.0_p9.ebuild
30 +++ /dev/null
31 @@ -1,62 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -DIST_AUTHOR=CHRISN
38 -DIST_VERSION=1.86_09
39 -DIST_EXAMPLES=("examples/*")
40 -inherit multilib perl-module
41 -
42 -DESCRIPTION="Perl extension for using OpenSSL"
43 -
44 -LICENSE="openssl"
45 -SLOT="0"
46 -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"
47 -IUSE="libressl test minimal examples"
48 -
49 -RDEPEND="
50 - !libressl? ( dev-libs/openssl:0= )
51 - libressl? ( dev-libs/libressl:0= )
52 - virtual/perl-MIME-Base64
53 -"
54 -DEPEND="${RDEPEND}
55 - virtual/perl-ExtUtils-MakeMaker
56 - test? (
57 - !minimal? (
58 - dev-perl/Test-Exception
59 - dev-perl/Test-Warn
60 - dev-perl/Test-NoWarnings
61 - )
62 - virtual/perl-Test-Simple
63 - )
64 -"
65 -
66 -PATCHES=(
67 - "${FILESDIR}/${PN}-1.86-fix-libdir.patch"
68 -)
69 -PERL_RM_FILES=(
70 - # Hateful author tests
71 - 't/local/01_pod.t'
72 - 't/local/02_pod_coverage.t'
73 - 't/local/kwalitee.t'
74 - # Broken under FEATURES="network-sandbox"
75 - # https://rt.cpan.org/Ticket/Display.html?id=128207
76 - 't/local/06_tcpecho.t'
77 - 't/local/07_sslecho.t'
78 -)
79 -mymake=(
80 - OPTIMIZE="${CFLAGS}"
81 - OPENSSL_PREFIX="${EPREFIX}"/usr
82 -)
83 -
84 -src_configure() {
85 - if use test && has network ${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}; then
86 - export NETWORK_TESTS=yes
87 - else
88 - use test && einfo "Network tests will be skipped without DIST_TEST_OVERRIDE=~network"
89 - export NETWORK_TESTS=no
90 - fi
91 - export LIBDIR=$(get_libdir)
92 - perl-module_src_configure
93 -}
94
95 diff --git a/dev-perl/Net-SSLeay/files/Net-SSLeay-1.86-fix-libdir.patch b/dev-perl/Net-SSLeay/files/Net-SSLeay-1.86-fix-libdir.patch
96 deleted file mode 100644
97 index d78acb9..0000000
98 --- a/dev-perl/Net-SSLeay/files/Net-SSLeay-1.86-fix-libdir.patch
99 +++ /dev/null
100 @@ -1,27 +0,0 @@
101 -Bug: https://bugs.gentoo.org/416339
102 -
103 -The previous patch for the above bug report used $ENV{LIBDIR} but this
104 -wasn't enough to help with cross-compiling. We could use $ENV{SYSROOT}
105 -but this results in a bogus RPATH entry. It is better to simply trust
106 -the toolchain, which may have its own sysroot applied.
107 -
108 -Cross-compiling Perl modules requires additional hackery but at least
109 -that hackery will work now. :)
110 -
111 -Chewi
112 -2017/12/03
113 -
114 -diff -Naur a/Makefile.PL b/Makefile.PL
115 ---- a/Makefile.PL 2017-10-13 01:38:01.000000000 +0100
116 -+++ b/Makefile.PL 2017-12-03 10:52:27.304861804 +0000
117 -@@ -141,10 +141,8 @@
118 - cccdlflags => '',
119 - };
120 - for ("$prefix/include", "$prefix/inc32", '/usr/kerberos/include') {
121 -- push @{$opts->{inc_paths}}, $_ if -f "$_/openssl/ssl.h";
122 - }
123 - for ($prefix, "$prefix/lib64", "$prefix/lib", "$prefix/out32dll") {
124 -- push @{$opts->{lib_paths}}, $_ if -d $_;
125 - }
126 -
127 - my $rsaref = $self->ssleay_is_rsaref;
128
129 diff --git a/dev-perl/Net-SSLeay/metadata.xml b/dev-perl/Net-SSLeay/metadata.xml
130 deleted file mode 100644
131 index 3a182c2..0000000
132 --- a/dev-perl/Net-SSLeay/metadata.xml
133 +++ /dev/null
134 @@ -1,13 +0,0 @@
135 -<?xml version="1.0" encoding="UTF-8"?>
136 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
137 -<pkgmetadata>
138 - <maintainer type="project">
139 - <email>perl@g.o</email>
140 - <name>Gentoo Perl Project</name>
141 - </maintainer>
142 - <upstream>
143 - <remote-id type="cpan">Net-SSLeay</remote-id>
144 - <remote-id type="cpan-module">Net::SSLeay</remote-id>
145 - <remote-id type="cpan-module">Net::SSLeay::Handle</remote-id>
146 - </upstream>
147 -</pkgmetadata>