summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-06-21 06:39:54 +0100
committerSam James <sam@gentoo.org>2021-06-21 06:39:54 +0100
commit1f99a6cd272529e80bc22fefe3bfe4bebbfdfb96 (patch)
tree7f351f821fbbb2592b9ab740cde29063eae04202 /eclass/findlib.eclass
parentuser.eclass: fix @SUPPORTED_EAPIS eclassdoc (diff)
downloadgentoo-1f99a6cd272529e80bc22fefe3bfe4bebbfdfb96.tar.gz
gentoo-1f99a6cd272529e80bc22fefe3bfe4bebbfdfb96.tar.bz2
gentoo-1f99a6cd272529e80bc22fefe3bfe4bebbfdfb96.zip
findlib.eclass: Revert "add EAPI guard"
This reverts commit 371c510d5bfbce3a1580374352f2667f71c2ab57. Reverting for cleaner history, will restore. Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass/findlib.eclass')
-rw-r--r--eclass/findlib.eclass11
1 files changed, 0 insertions, 11 deletions
diff --git a/eclass/findlib.eclass b/eclass/findlib.eclass
index e8b6e73c97af..d117c0b2bfd6 100644
--- a/eclass/findlib.eclass
+++ b/eclass/findlib.eclass
@@ -6,19 +6,10 @@
# ML <ml@gentoo.org>
# @AUTHOR:
# Original author: Matthieu Sozeau <mattam@gentoo.org> (retired)
-# @SUPPORTED_EAPIS: 6 7
# @BLURB: ocamlfind (a.k.a. findlib) eclass
# @DESCRIPTION:
# ocamlfind (a.k.a. findlib) eclass
-case ${EAPI:-0} in
- [67]) ;;
- *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
-esac
-
-if [[ -z ${_FINDLIB_ECLASS} ]] ; then
-_FINDLIB_ECLASS=1
-
# Do not complain about CFLAGS etc since ML projects do not use them.
QA_FLAGS_IGNORED='.*'
@@ -69,5 +60,3 @@ findlib_src_install() {
findlib_src_preinst
make DESTDIR="${D}" "$@" install || die "make failed"
}
-
-fi