mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
34 lines
735 B
Bash
34 lines
735 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DIST_AUTHOR=ETHER
|
|
DIST_VERSION=0.17
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="Roles which support overloading (DEPRECATED)"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm ~ppc ~x86 ~x64-macos"
|
|
|
|
RDEPEND="
|
|
>=dev-perl/Moose-0.940.0
|
|
dev-perl/aliased
|
|
>=dev-perl/namespace-autoclean-0.160.0
|
|
>=dev-perl/namespace-clean-0.190.0
|
|
"
|
|
BDEPEND="${RDEPEND}
|
|
virtual/perl-ExtUtils-MakeMaker
|
|
test? (
|
|
virtual/perl-File-Spec
|
|
>=virtual/perl-Test-Simple-0.960.0
|
|
virtual/perl-if
|
|
)
|
|
"
|
|
|
|
pkg_postinst() {
|
|
ewarn "dev-perl/MooseX-Role-WithOverloading is deprecated by upstream as"
|
|
ewarn "equivalent functionality is now provided by >=dev-perl/Moose-2.130.0"
|
|
}
|