summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2019-07-18 11:58:34 +0200
committerUlrich Müller <ulm@gentoo.org>2019-07-21 11:13:46 +0200
commit93de7b406a234560fd509d4a3109ce75d3f7c0f4 (patch)
treece1101254ab7b3b67c284866b5f3f9f14969b3a0
parentcvs.eclass: Remove support for running under sudo. (diff)
downloadgentoo-93de7b406a234560fd509d4a3109ce75d3f7c0f4.tar.gz
gentoo-93de7b406a234560fd509d4a3109ce75d3f7c0f4.tar.bz2
gentoo-93de7b406a234560fd509d4a3109ce75d3f7c0f4.zip
cvs.eclass: Remove support for PATCHES.
Not used in the tree, and broken in EAPI 7. Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r--eclass/cvs.eclass14
1 files changed, 0 insertions, 14 deletions
diff --git a/eclass/cvs.eclass b/eclass/cvs.eclass
index 128c065ebe78..33a642445471 100644
--- a/eclass/cvs.eclass
+++ b/eclass/cvs.eclass
@@ -15,8 +15,6 @@
if [[ -z ${_CVS_ECLASS} ]]; then
_CVS_ECLASS=1
-inherit eutils
-
# TODO:
# Implement more auth types (gserver?, kserver?)
@@ -525,18 +523,6 @@ cvs_src_unpack() {
rm -rf "${ECVS_TOP_DIR}/${ECVS_LOCALNAME}"
fi
- # Implement some of base_src_unpack's functionality; note however
- # that base.eclass may not have been inherited!
- if [[ -n ${PATCHES} ]] ; then
- debug-print "${FUNCNAME}: PATCHES=${PATCHES}, S=${S}, autopatching"
- cd "${S}"
- epatch ${PATCHES}
- # Make sure we don't try to apply patches more than once,
- # since cvs_src_unpack is usually called several times from
- # e.g. kde-source_src_unpack
- export PATCHES=""
- fi
-
einfo "CVS module ${ECVS_MODULE} is now in ${WORKDIR}"
}