From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B911D1389AA for ; Mon, 11 Feb 2013 22:16:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C31621C090; Mon, 11 Feb 2013 22:14:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0FC0921C087 for ; Mon, 11 Feb 2013 22:14:51 +0000 (UTC) Received: from pomiocik.lan (77-253-151-121.adsl.inetia.pl [77.253.151.121]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: mgorny) by smtp.gentoo.org (Postfix) with ESMTPSA id 3F38433E688; Mon, 11 Feb 2013 22:14:50 +0000 (UTC) From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= To: gentoo-dev@lists.gentoo.org Cc: x11@gentoo.org, =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Subject: [gentoo-dev] [PATCH virtualx.eclass 5/5] (Optionally) deprecate all X* wrappers. Date: Mon, 11 Feb 2013 23:14:43 +0100 Message-Id: <1360620883-22562-6-git-send-email-mgorny@gentoo.org> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1360620883-22562-1-git-send-email-mgorny@gentoo.org> References: <1360620883-22562-1-git-send-email-mgorny@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Archives-Salt: e5650ed5-867a-44ed-b538-3d80a01d8f6c X-Archives-Hash: ebeb187c9f393866e05384683b7193ba The new syntax seems simple enough that we can think of deprecating all those short-hand forms. --- gx86/eclass/virtualx.eclass | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/gx86/eclass/virtualx.eclass b/gx86/eclass/virtualx.eclass index f576335..9d5045d 100644 --- a/gx86/eclass/virtualx.eclass +++ b/gx86/eclass/virtualx.eclass @@ -189,8 +189,10 @@ virtualmake() { Xmake() { debug-print-function ${FUNCNAME} "$@" - eqawarn "you should not execute make directly" - eqawarn "rather execute Xemake -j1 if you have issues with parallel make" + eqawarn "Using Xmake is considered deprecated." + eqawarn "Please use the new, cleaner API instead:" + eqawarn " virtualx emake -j1 ..." + virtualx emake -j1 "$@" } @@ -200,6 +202,10 @@ Xmake() { Xemake() { debug-print-function ${FUNCNAME} "$@" + eqawarn "Using Xemake is considered deprecated." + eqawarn "Please use the new, cleaner API instead:" + eqawarn " virtualx emake ..." + virtualx emake "$@" } @@ -209,5 +215,9 @@ Xemake() { Xeconf() { debug-print-function ${FUNCNAME} "$@" + eqawarn "Using Xeconf is considered deprecated." + eqawarn "Please use the new, cleaner API instead:" + eqawarn " virtualx econf ..." + virtualx econf "$@" } -- 1.8.1.2