summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2015-06-13 19:01:10 +0000
committerAndreas K. Hüttel <dilfridge@gentoo.org>2015-06-13 19:01:10 +0000
commitb8ddf78c9a47d0804c975c2914721e667ad08b61 (patch)
tree33e9b79a616fc5576c6a63f5d4f0d8b93d4cb8eb /eclass
parentversion bump (diff)
downloadgentoo-2-b8ddf78c9a47d0804c975c2914721e667ad08b61.tar.gz
gentoo-2-b8ddf78c9a47d0804c975c2914721e667ad08b61.tar.bz2
gentoo-2-b8ddf78c9a47d0804c975c2914721e667ad08b61.zip
Allow dev-perl/Module-Build in QA check for Module::Build
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/perl-module.eclass6
2 files changed, 7 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index 16d87415c683..feb19457620c 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1659 2015/06/13 17:28:13 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1660 2015/06/13 19:01:10 dilfridge Exp $
+
+ 13 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> perl-module.eclass:
+ Allow dev-perl/Module-Build in QA check for Module::Build
13 Jun 2015; Davide Pesavento <pesa@gentoo.org> qt4-build-multilib.eclass:
Workaround gcc-4.8 ICE in qtdeclarative (bug 551560).
diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass
index ed13f839d4a5..947e79a1fe05 100644
--- a/eclass/perl-module.eclass
+++ b/eclass/perl-module.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.165 2015/05/25 18:18:00 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.166 2015/06/13 19:01:10 dilfridge Exp $
# @ECLASS: perl-module.eclass
# @MAINTAINER:
@@ -141,9 +141,9 @@ perl-module_src_configure() {
fi
else
einfo "Using Module::Build"
- if [[ ${DEPEND} != *virtual/perl-Module-Build* && ${PN} != Module-Build ]] ; then
+ if [[ ${DEPEND} != *virtual/perl-Module-Build* && ${DEPEND} != *dev-perl/Module-Build* && ${PN} != Module-Build ]] ; then
eqawarn "QA Notice: The ebuild uses Module::Build but doesn't depend on it."
- eqawarn " Add virtual/perl-Module-Build to DEPEND!"
+ eqawarn " Add dev-perl/Module-Build to DEPEND!"
if [[ -n ${PERLQAFATAL} ]]; then
eerror "Bailing out due to PERLQAFATAL=1";
die