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 49C8F138A6A for ; Fri, 15 Feb 2013 23:40:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24767E0521; Fri, 15 Feb 2013 23:40:13 +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 B2CA9E0521 for ; Fri, 15 Feb 2013 23:40:12 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9F98C33D937 for ; Fri, 15 Feb 2013 23:40:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id F1480E4073 for ; Fri, 15 Feb 2013 23:40:09 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1360971597.d0d62ba0ea6375d53db8843eb938f74613583455.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ebuild-helpers/ X-VCS-Repository: proj/portage X-VCS-Files: bin/ebuild-helpers/preplib X-VCS-Directories: bin/ebuild-helpers/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: d0d62ba0ea6375d53db8843eb938f74613583455 X-VCS-Branch: master Date: Fri, 15 Feb 2013 23:40:09 +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: fbe64fb2-9408-4a1f-b310-0cf27a8b518e X-Archives-Hash: 0cc5621262a29fe284e9cb6508417eeb commit: d0d62ba0ea6375d53db8843eb938f74613583455 Author: Zac Medico gentoo org> AuthorDate: Fri Feb 15 23:39:57 2013 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Feb 15 23:39:57 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=d0d62ba0 preplib: remove for bug #102297 --- bin/ebuild-helpers/preplib | 32 -------------------------------- 1 files changed, 0 insertions(+), 32 deletions(-) diff --git a/bin/ebuild-helpers/preplib b/bin/ebuild-helpers/preplib deleted file mode 100755 index 764261d..0000000 --- a/bin/ebuild-helpers/preplib +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh - -eqawarn "QA Notice: Deprecated call to 'preplib'" - -if ! ___eapi_has_prefix_variables; then - ED=${D} -fi - -LIBDIR_VAR="LIBDIR_${ABI}" -if [ -n "${ABI}" -a -n "${!LIBDIR_VAR}" ]; then - CONF_LIBDIR="${!LIBDIR_VAR}" -fi -unset LIBDIR_VAR - -if [ -z "${CONF_LIBDIR}" ]; then - # we need this to default to lib so that things dont break - CONF_LIBDIR="lib" -fi - -if [ -z "$1" ] ; then - z="${ED}usr/${CONF_LIBDIR}" -else - z="${ED}$1/${CONF_LIBDIR}" -fi - -if [ -d "${z}" ] ; then - ldconfig -n -N "${z}" -fi