From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 5328A1389E2 for ; Sat, 13 Dec 2014 20:51:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 03053E0B9D; Sat, 13 Dec 2014 20:51:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 87AE9E0B9D for ; Sat, 13 Dec 2014 20:51:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 76A6B3403F9 for ; Sat, 13 Dec 2014 20:51:24 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 2276) id 2D8C1C5BB; Sat, 13 Dec 2014 20:51:23 +0000 (UTC) From: "Andreas HAttel (dilfridge)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, dilfridge@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog perl-module.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog perl-module.eclass X-VCS-Directories: eclass X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas HAttel Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20141213205123.2D8C1C5BB@oystercatcher.gentoo.org> Date: Sat, 13 Dec 2014 20:51:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 611779b6-bcb7-4452-b971-3021663b56fe X-Archives-Hash: 3e2869b05511e4e5238a730ace72799c dilfridge 14/12/13 20:51:23 Modified: ChangeLog perl-module.eclass Log: Move content of perl-module_src_prep into src_configure, add deprecation warning to src_prep Revision Changes Path 1.1462 eclass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1462&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1462&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1461&r2=1.1462 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v retrieving revision 1.1461 retrieving revision 1.1462 diff -u -r1.1461 -r1.1462 --- ChangeLog 13 Dec 2014 08:42:42 -0000 1.1461 +++ ChangeLog 13 Dec 2014 20:51:23 -0000 1.1462 @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1461 2014/12/13 08:42:42 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1462 2014/12/13 20:51:23 dilfridge Exp $ + + 13 Dec 2014; Andreas K. Huettel perl-module.eclass: + Move content of perl-module_src_prep into src_configure, add deprecation + warning to src_prep 13 Dec 2014; Michał Górny multibuild.eclass: Disable parallel run support. 1.159 eclass/perl-module.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/perl-module.eclass?rev=1.159&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/perl-module.eclass?rev=1.159&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/perl-module.eclass?r1=1.158&r2=1.159 Index: perl-module.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v retrieving revision 1.158 retrieving revision 1.159 diff -u -r1.158 -r1.159 --- perl-module.eclass 1 Dec 2014 20:41:08 -0000 1.158 +++ perl-module.eclass 13 Dec 2014 20:51:23 -0000 1.159 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.158 2014/12/01 20:41:08 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.159 2014/12/13 20:51:23 dilfridge Exp $ # @ECLASS: perl-module.eclass # @MAINTAINER: @@ -134,22 +134,7 @@ # This function is to be called during the ebuild src_configure() phase. perl-module_src_configure() { debug-print-function $FUNCNAME "$@" - perl-module_src_prep -} -# @FUNCTION: perl-module_src_prep -# @USAGE: perl-module_src_prep -# @DESCRIPTION: -# Configure the ebuild sources (bis). -# -# This function is still around for historical reasons -# and will be soon deprecated. -# -# Please use the function above instead, perl-module_src_configure(). -# -# TODO: Move code to perl-module_src_configure(). -perl-module_src_prep() { - debug-print-function $FUNCNAME "$@" [[ ${SRC_PREP} = yes ]] && return 0 SRC_PREP="yes" @@ -202,6 +187,21 @@ fi } +# @FUNCTION: perl-module_src_prep +# @USAGE: perl-module_src_prep +# @DESCRIPTION: +# Configure the ebuild sources (bis). +# +# This function is still around for historical reasons +# and will be soon deprecated. +# +# Please use the function above instead, perl-module_src_configure(). +perl-module_src_prep() { + debug-print-function $FUNCNAME "$@" + eqawarn "perl-modules.eclass: perl-module_src_prep is deprecated and will be removed. Please use perl-module_src_configure instead." + perl-module_src_configure +} + # @FUNCTION: perl-module_src_compile # @USAGE: perl-module_src_compile # @DESCRIPTION: