From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5EAC4138334 for ; Fri, 1 Jun 2018 18:07:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D129E07F9; Fri, 1 Jun 2018 18:07:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EA9C3E07F9 for ; Fri, 1 Jun 2018 18:07:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2403A335C03 for ; Fri, 1 Jun 2018 18:07:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 446302AD for ; Fri, 1 Jun 2018 18:07:37 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1527876410.5e996d0ccda6670266632a5af345607c2d6a6aae.ulm@gentoo> Subject: [gentoo-commits] repo/proj/emacs:master commit in: eclass/ X-VCS-Repository: repo/proj/emacs X-VCS-Files: eclass/elisp.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 5e996d0ccda6670266632a5af345607c2d6a6aae X-VCS-Branch: master Date: Fri, 1 Jun 2018 18:07:37 +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: 4297af3f-cbd3-4c65-ac33-d49cd0097dd9 X-Archives-Hash: b02b6e5cf96787c399c8571d3b8bca6c commit: 5e996d0ccda6670266632a5af345607c2d6a6aae Author: Ulrich Müller gentoo org> AuthorDate: Fri Jun 1 18:06:50 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Jun 1 18:06:50 2018 +0000 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=5e996d0c elisp.eclass: Sync from gentoo repo. eclass/elisp.eclass | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index 6745973..9a66ec5 100644 --- a/eclass/elisp.eclass +++ b/eclass/elisp.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # @ECLASS: elisp.eclass @@ -75,7 +75,7 @@ case ${EAPI:-0} in inherit epatch EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \ pkg_{setup,postinst,postrm} ;; - 6) + 6|7) EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \ pkg_{setup,postinst,postrm} ;; *) die "${ECLASS}: EAPI ${EAPI} not supported" ;; @@ -137,14 +137,14 @@ elisp_src_prepare() { fi case ${EAPI:-0} in 0|1|2|3|4|5) epatch "${file}" ;; - 6) eapply "${file}" ;; + *) eapply "${file}" ;; esac done # apply any user patches case ${EAPI:-0} in 0|1|2|3|4|5) epatch_user ;; - 6) eapply_user ;; + *) eapply_user ;; esac if [[ -n ${ELISP_REMOVE} ]]; then