From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-992799-garchives=archives.gentoo.org@lists.gentoo.org> 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 0E1B4139084 for <garchives@archives.gentoo.org>; Mon, 25 Dec 2017 11:00:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4714EE0E1A; Mon, 25 Dec 2017 11:00:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 271EEE0E1A for <gentoo-commits@lists.gentoo.org>; Mon, 25 Dec 2017 11:00:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 0C2DE33BF3C for <gentoo-commits@lists.gentoo.org>; Mon, 25 Dec 2017 11:00:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 90EC0AE92 for <gentoo-commits@lists.gentoo.org>; Mon, 25 Dec 2017 11:00:37 +0000 (UTC) From: "Ulrich Müller" <ulm@gentoo.org> 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" <ulm@gentoo.org> Message-ID: <1514193089.bc8d7b4d1cffbf60d31753aee798c65d554d0fa2.ulm@gentoo> Subject: [gentoo-commits] proj/eselect:master commit in: libs/, / X-VCS-Repository: proj/eselect X-VCS-Files: ChangeLog libs/core.bash.in X-VCS-Directories: / libs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: bc8d7b4d1cffbf60d31753aee798c65d554d0fa2 X-VCS-Branch: master Date: Mon, 25 Dec 2017 11:00:37 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 26735af1-f086-447a-9682-484c9afaf154 X-Archives-Hash: 169cb55092641700bf46b4ddbbfb10ea commit: bc8d7b4d1cffbf60d31753aee798c65d554d0fa2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Mon Dec 25 09:11:29 2017 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Mon Dec 25 09:11:29 2017 +0000 URL: https://gitweb.gentoo.org/proj/eselect.git/commit/?id=bc8d7b4d Make eval die. * libs/core.bash.in (eval): Make it fatal again, after more than one year of transition time. ChangeLog | 5 +++++ libs/core.bash.in | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a8d3693..648e874 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2017-12-25 Ulrich Müller <ulm@gentoo.org> + + * libs/core.bash.in (eval): Make it fatal again, after more than + one year of transition time. + 2017-10-14 Ulrich Müller <ulm@gentoo.org> * man/news.eselect.5: Update URI of GLEP 42. diff --git a/libs/core.bash.in b/libs/core.bash.in index 06f767e..281dbde 100644 --- a/libs/core.bash.in +++ b/libs/core.bash.in @@ -121,8 +121,7 @@ inherit() { # make eval not work, because it's evil eval() { - write_warning_msg "Don't use eval. Find another way." - builtin eval "$@" + die "Don't use eval. Find another way." } # GNU sed wrapper (sed or gsed, as determined by configure)