diff options
author | Kent Fredric <kentnl@gentoo.org> | 2020-08-29 07:55:23 +1200 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2020-08-29 07:55:42 +1200 |
commit | 3190c92ccaed20eb0edf154b76407e71d551ad95 (patch) | |
tree | 1b1357c6688610782855ffac5dc20ec2d0aee0c2 /virtual | |
parent | sys-fs/zfs: update live ebuild, pass --with-vendor=gentoo (diff) | |
download | gentoo-3190c92ccaed20eb0edf154b76407e71d551ad95.tar.gz gentoo-3190c92ccaed20eb0edf154b76407e71d551ad95.tar.bz2 gentoo-3190c92ccaed20eb0edf154b76407e71d551ad95.zip |
virtual/perl-libnet: PDEPEND dev-perl/IO-Socket-SSL re bug #735004
This is necessary due to Net::SMTP having ssl mechanics, that don't work
unless IO-Socket-SSL is available.
However, adding this dep presently drops support for m68k and m68k-mint
due to those arches not keeping on top of keywording for IO-Socket-SSL
Bug: https://bugs.gentoo.org/735004
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl@gentoo.org>
Diffstat (limited to 'virtual')
-rw-r--r-- | virtual/perl-libnet/perl-libnet-3.110.0-r4.ebuild | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/virtual/perl-libnet/perl-libnet-3.110.0-r4.ebuild b/virtual/perl-libnet/perl-libnet-3.110.0-r4.ebuild new file mode 100644 index 000000000000..030e7deaa7bc --- /dev/null +++ b/virtual/perl-libnet/perl-libnet-3.110.0-r4.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Virtual for ${PN#perl-}" +SLOT="0" +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" +IUSE="+ssl" + +RDEPEND=" + || ( =dev-lang/perl-5.32* =dev-lang/perl-5.30* ~perl-core/${PN#perl-}-${PV} ) + dev-lang/perl:= + !<perl-core/${PN#perl-}-${PV} + !>perl-core/${PN#perl-}-${PV}-r999 +" +# https://bugs.gentoo.org/735004 +PDEPEND=" + ssl? ( + >=dev-perl/IO-Socket-SSL-2.7.0 + ) +" |