summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2015-05-25 18:18:00 +0000
committerAndreas K. Hüttel <dilfridge@gentoo.org>2015-05-25 18:18:00 +0000
commit39bc4a90de06e05a92a7542dd96cb6c9dfed8792 (patch)
treeefd5b2d3b65cf262fbcffe6fcbf395b416f7b21f /eclass
parentFix dependencies: >=libusb-1.0.19 is needed, gudev is not. (diff)
downloadgentoo-2-39bc4a90de06e05a92a7542dd96cb6c9dfed8792.tar.gz
gentoo-2-39bc4a90de06e05a92a7542dd96cb6c9dfed8792.tar.bz2
gentoo-2-39bc4a90de06e05a92a7542dd96cb6c9dfed8792.zip
Remove long-deprecated and just dieing function stubs
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/perl-module.eclass68
2 files changed, 5 insertions, 68 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index 6982a4625f82..6cac17b9dba8 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.1622 2015/05/25 10:07:33 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1623 2015/05/25 18:18:00 dilfridge Exp $
+
+ 25 May 2015; Andreas K. Huettel <dilfridge@gentoo.org> perl-module.eclass:
+ Remove long-deprecated and just dieing function stubs
25 May 2015; Justin Lecher <jlec@gentoo.org> cuda.eclass:
Loose quoting, #550060
diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass
index 35f087ac3696..ed13f839d4a5 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.164 2015/03/15 17:23:09 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.165 2015/05/25 18:18:00 dilfridge Exp $
# @ECLASS: perl-module.eclass
# @MAINTAINER:
@@ -177,20 +177,6 @@ perl-module_src_configure() {
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 "$@"
- die "perl-modules.eclass: perl-module_src_prep has been removed. Please use perl-module_src_configure instead."
-}
-
# @FUNCTION: perl-module_src_compile
# @USAGE: perl-module_src_compile
# @DESCRIPTION:
@@ -302,26 +288,6 @@ perl-module_src_install() {
perl_link_duallife_scripts
}
-# @FUNCTION: perl-module_pkg_setup
-# @USAGE: perl-module_pkg_setup
-# @DESCRIPTION:
-# This function was to be called during the pkg_setup() phase.
-# Deprecated, to be removed. Where it is called, place a call to perl_set_version instead.
-perl-module_pkg_setup() {
- debug-print-function $FUNCNAME "$@"
- die "perl-modules.eclass: perl-module_pkg_setup has been removed. Please use perl_set_version instead."
-}
-
-# @FUNCTION: perl-module_pkg_preinst
-# @USAGE: perl-module_pkg_preinst
-# @DESCRIPTION:
-# This function was to be called during the pkg_preinst() phase.
-# Deprecated, to be removed. Where it is called, place a call to perl_set_version instead.
-perl-module_pkg_preinst() {
- debug-print-function $FUNCNAME "$@"
- die "perl-modules.eclass: perl-module_pkg_preinst has been removed. Please use perl_set_version instead."
-}
-
# @FUNCTION: perl-module_pkg_postinst
# @USAGE: perl-module_pkg_postinst
# @DESCRIPTION:
@@ -339,16 +305,6 @@ perl-module_pkg_postinst() {
perl_link_duallife_scripts
}
-# @FUNCTION: perl-module_pkg_prerm
-# @USAGE: perl-module_pkg_prerm
-# @DESCRIPTION:
-# This function was to be called during the pkg_prerm() phase.
-# It does not do anything. Deprecated, to be removed.
-perl-module_pkg_prerm() {
- debug-print-function $FUNCNAME "$@"
- die "perl-module.eclass: perl-module_pkg_prerm has been removed. Please remove the call."
-}
-
# @FUNCTION: perl-module_pkg_postrm
# @USAGE: perl-module_pkg_postrm
# @DESCRIPTION:
@@ -392,17 +348,6 @@ perl_set_version() {
VENDOR_ARCH=${installvendorarch}
}
-# @FUNCTION: perlinfo
-# @USAGE: perlinfo
-# @DESCRIPTION:
-# This function is deprecated.
-#
-# Please use the function above instead, perl_set_version().
-perlinfo() {
- debug-print-function $FUNCNAME "$@"
- die "perl-modules.eclass: perlinfo has been removed. Please use perl_set_version instead."
-}
-
# @FUNCTION: perl_delete_localpod
# @USAGE: perl_delete_localpod
# @DESCRIPTION:
@@ -416,17 +361,6 @@ perl_delete_localpod() {
find "${D}" -depth -mindepth 1 -type d -empty -delete
}
-# @FUNCTION: fixlocalpod
-# @USAGE: fixlocalpod
-# @DESCRIPTION:
-# This function is deprecated.
-#
-# Please use the function above instead, perl_delete_localpod().
-fixlocalpod() {
- debug-print-function $FUNCNAME "$@"
- die "perl-modules.eclass: fixlocalpod has been removed. Please use perl_delete_localpod instead."
-}
-
# @FUNCTION: perl_fix_osx_extra
# @USAGE: perl_fix_osx_extra
# @DESCRIPTION: