blob: 5897112514ef01fe7faafc349ecd693f86940ddc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DIST_AUTHOR=DSKOLL
DIST_VERSION=5.510
DIST_EXAMPLES=("examples/*")
# tests fail when done in parallel
DIST_TEST="do"
inherit perl-module
DESCRIPTION="A Perl module for parsing and creating MIME entities"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
RDEPEND="
>=virtual/perl-File-Path-1
>=virtual/perl-File-Spec-0.600.0
>=virtual/perl-File-Temp-0.180.0
virtual/perl-IO
>=virtual/perl-MIME-Base64-2.200.0
dev-perl/MailTools
"
BDEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.420.0
test? (
dev-perl/Test-Deep
)
"
PERL_RM_FILES=(
# Author tests
t/02-kwalitee.t
t/02-pod.t
t/02-pod-coverage.t
# Fails under FEATURES="network-sandbox"
t/Smtpsend.t
)
|