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 359E71384B4 for ; Fri, 27 Nov 2015 14:57:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42EEC21C166; Fri, 27 Nov 2015 14:53:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0ABD021C15A for ; Fri, 27 Nov 2015 14:53:45 +0000 (UTC) Received: from localhost.localdomain (d202-251.icpnet.pl [109.173.202.251]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: mgorny) by smtp.gentoo.org (Postfix) with ESMTPSA id 74EF7340756; Fri, 27 Nov 2015 14:53:38 +0000 (UTC) From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= To: gentoo-dev@lists.gentoo.org Cc: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Subject: [gentoo-dev] [PATCH 3/7] systemd.eclass: Remove long-deprecated systemd_to_myeconfargs Date: Fri, 27 Nov 2015 15:53:24 +0100 Message-Id: <1448636008-13184-4-git-send-email-mgorny@gentoo.org> X-Mailer: git-send-email 2.6.3 In-Reply-To: <1448636008-13184-1-git-send-email-mgorny@gentoo.org> References: <1448636008-13184-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: 1c27fc53-1d0d-4fb1-9b26-d7b036d0f958 X-Archives-Hash: a0e484248ce19c27fe7047b91cb5382a Remove systemd_to_myeconfargs function that was supposed to be removed 2013-10-11. It is no longer used by any ebuild in the repository. --- eclass/systemd.eclass | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/eclass/systemd.eclass b/eclass/systemd.eclass index ed787c3..0b2cc8e 100644 --- a/eclass/systemd.eclass +++ b/eclass/systemd.eclass @@ -25,7 +25,7 @@ # } # @CODE -inherit eutils toolchain-funcs +inherit toolchain-funcs case ${EAPI:-0} in 0|1|2|3|4|5) ;; @@ -331,23 +331,6 @@ systemd_with_utildir() { echo --with-systemdutildir="$(systemd_get_utildir)" } -# @FUNCTION: systemd_to_myeconfargs -# @DESCRIPTION: -# Add '--with-systemdsystemunitdir' as expected by systemd-aware configure -# scripts to the myeconfargs variable used by autotools-utils eclass. Handles -# quoting automatically. -systemd_to_myeconfargs() { - debug-print-function ${FUNCNAME} "${@}" - - eqawarn 'systemd_to_myeconfargs() is deprecated and will be removed on 2013-10-11.' - eqawarn 'Please use $(systemd_with_unitdir) instead.' - - myeconfargs=( - "${myeconfargs[@]}" - --with-systemdsystemunitdir="$(systemd_get_unitdir)" - ) -} - # @FUNCTION: systemd_update_catalog # @DESCRIPTION: # Update the journald catalog. This needs to be called after installing -- 2.6.3