Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-SSLeay/
Date: Mon, 19 Jun 2017 12:45:34
Message-Id: 1497876315.e333360efb1ba43eab5f78597755f153d8d39566.kentnl@gentoo
1 commit: e333360efb1ba43eab5f78597755f153d8d39566
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 19 12:45:15 2017 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 19 12:45:15 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e333360e
7
8 dev-perl/Net-SSLeay: Cleanup old re #613750
9
10 Remove old versions affected by '.' removal from @INC
11
12 Bug: https://bugs.gentoo.org/613750
13 Package-Manager: Portage-2.3.6, Repoman-2.3.2
14
15 dev-perl/Net-SSLeay/Manifest | 1 -
16 dev-perl/Net-SSLeay/Net-SSLeay-1.800.0.ebuild | 56 ---------------------------
17 2 files changed, 57 deletions(-)
18
19 diff --git a/dev-perl/Net-SSLeay/Manifest b/dev-perl/Net-SSLeay/Manifest
20 index 51d68bb1f8e..befb2e21473 100644
21 --- a/dev-perl/Net-SSLeay/Manifest
22 +++ b/dev-perl/Net-SSLeay/Manifest
23 @@ -1,2 +1 @@
24 -DIST Net-SSLeay-1.80.tar.gz 395820 SHA256 a541a66d59fc5f9bb7af09d3a0b68305e4c43ba9488b12915728fd282ea01b93 SHA512 03b5f2ba86d20f31ef50029af94b1bcf513c7b99d9666a04e83aba4f7c8cce3e30daf6df85932619949f059177660f49a928488e61b967a12dd4aec41eafad95 WHIRLPOOL 8f11141c3caaa1e9d32368183ab9742e8c1bba5efd6702efa9e4142b6f54871f2380cdb6fe3d1aef2b63db388bdf69f3167d592eca935d93af484dd00511b03c
25 DIST Net-SSLeay-1.81.tar.gz 396631 SHA256 00cbb6174e628b42178e1445c9fd5a3c5ae2cfd6a5a43e03610ba14786f21b7d SHA512 8d4b72ede74ea22cf2ed681a8441f40965331cd5d4442c19677cf5bc7c1e61ed1e50d0f3a4f1b272428485bcc132ec99b0c75344ca43e8a34a9dd15539719f55 WHIRLPOOL 125710fcabce6f9ba2515bb04a90513d0f2ab2f57546187044bc7f4f45b0ba354f747674fcebfad41dced608603e8c811bce58a66e104efd90205a4b2102d417
26
27 diff --git a/dev-perl/Net-SSLeay/Net-SSLeay-1.800.0.ebuild b/dev-perl/Net-SSLeay/Net-SSLeay-1.800.0.ebuild
28 deleted file mode 100644
29 index f92c3275595..00000000000
30 --- a/dev-perl/Net-SSLeay/Net-SSLeay-1.800.0.ebuild
31 +++ /dev/null
32 @@ -1,56 +0,0 @@
33 -# Copyright 1999-2017 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -DIST_AUTHOR=MIKEM
39 -DIST_VERSION=1.80
40 -DIST_EXAMPLES=("examples/*")
41 -inherit multilib perl-module
42 -
43 -DESCRIPTION="Perl extension for using OpenSSL"
44 -
45 -LICENSE="openssl"
46 -SLOT="0"
47 -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 ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
48 -IUSE="libressl test minimal examples"
49 -
50 -RDEPEND="
51 - !libressl? ( dev-libs/openssl:0= )
52 - libressl? ( dev-libs/libressl:0= )
53 - virtual/perl-MIME-Base64
54 -"
55 -DEPEND="${RDEPEND}
56 - virtual/perl-ExtUtils-MakeMaker
57 - test? (
58 - !minimal? (
59 - dev-perl/Test-Exception
60 - dev-perl/Test-Warn
61 - dev-perl/Test-NoWarnings
62 - )
63 - virtual/perl-Test-Simple
64 - )
65 -"
66 -export OPTIMIZE="$CFLAGS"
67 -export OPENSSL_PREFIX=${EPREFIX}/usr
68 -
69 -src_prepare() {
70 - sed -i \
71 - -e "/\$opts->{optimize} = '-O2 -g';/d" \
72 - -e "s,\"\$prefix/lib\",\"\$prefix/$(get_libdir)\"," \
73 - inc/Module/Install/PRIVATE/Net/SSLeay.pm || die
74 -
75 - local my_test_control
76 - my_test_control=${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}
77 -
78 - if use test; then
79 - perl_rm_files 't/local/01_pod.t' 't/local/02_pod_coverage.t' 't/local/kwalitee.t'
80 - fi
81 - if use test && has network ${my_test_control} ; then
82 - eapply "${FILESDIR}/1.72-config-nettest-yes.patch"
83 - else
84 - eapply "${FILESDIR}/1.72-config-nettest-no.patch"
85 - fi
86 -
87 - perl-module_src_prepare
88 -}