Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/perl-libnet/
Date: Fri, 28 Aug 2020 19:56:00
Message-Id: 1598644542.3190c92ccaed20eb0edf154b76407e71d551ad95.kentnl@gentoo
1 commit: 3190c92ccaed20eb0edf154b76407e71d551ad95
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 28 19:55:23 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 28 19:55:42 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3190c92c
7
8 virtual/perl-libnet: PDEPEND dev-perl/IO-Socket-SSL re bug #735004
9
10 This is necessary due to Net::SMTP having ssl mechanics, that don't work
11 unless IO-Socket-SSL is available.
12
13 However, adding this dep presently drops support for m68k and m68k-mint
14 due to those arches not keeping on top of keywording for IO-Socket-SSL
15
16 Bug: https://bugs.gentoo.org/735004
17 Package-Manager: Portage-2.3.103, Repoman-2.3.22
18 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
19
20 virtual/perl-libnet/perl-libnet-3.110.0-r4.ebuild | 22 ++++++++++++++++++++++
21 1 file changed, 22 insertions(+)
22
23 diff --git a/virtual/perl-libnet/perl-libnet-3.110.0-r4.ebuild b/virtual/perl-libnet/perl-libnet-3.110.0-r4.ebuild
24 new file mode 100644
25 index 00000000000..030e7deaa7b
26 --- /dev/null
27 +++ b/virtual/perl-libnet/perl-libnet-3.110.0-r4.ebuild
28 @@ -0,0 +1,22 @@
29 +# Copyright 1999-2020 Gentoo Authors
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=7
33 +
34 +DESCRIPTION="Virtual for ${PN#perl-}"
35 +SLOT="0"
36 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
37 +IUSE="+ssl"
38 +
39 +RDEPEND="
40 + || ( =dev-lang/perl-5.32* =dev-lang/perl-5.30* ~perl-core/${PN#perl-}-${PV} )
41 + dev-lang/perl:=
42 + !<perl-core/${PN#perl-}-${PV}
43 + !>perl-core/${PN#perl-}-${PV}-r999
44 +"
45 +# https://bugs.gentoo.org/735004
46 +PDEPEND="
47 + ssl? (
48 + >=dev-perl/IO-Socket-SSL-2.7.0
49 + )
50 +"