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 0F29A1388BF for ; Sun, 10 Jan 2016 21:20:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8885D21C002; Sun, 10 Jan 2016 21:20:04 +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 4026A21C002 for ; Sun, 10 Jan 2016 21:20:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6915A340751 for ; Sun, 10 Jan 2016 21:20:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 12D53C79 for ; Sun, 10 Jan 2016 21:20:01 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1452460799.329af7a128929b02118fa41a540eac49ce4dc768.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/nvidia-drivers/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-drivers/nvidia-drivers/nvidia-drivers-361.16.ebuild X-VCS-Directories: x11-drivers/nvidia-drivers/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 329af7a128929b02118fa41a540eac49ce4dc768 X-VCS-Branch: master Date: Sun, 10 Jan 2016 21:20:01 +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: 3ca5614d-fdba-4f9f-a2a9-342a4b6bb7f9 X-Archives-Hash: ab2d2ccf165bc213fc240e7a51c4a6d3 commit: 329af7a128929b02118fa41a540eac49ce4dc768 Author: Jeroen Roovers gentoo org> AuthorDate: Sun Jan 10 21:19:49 2016 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sun Jan 10 21:19:59 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=329af7a1 x11-drivers/nvidia-drivers: Clean up testing cruft. Package-Manager: portage-2.2.26 x11-drivers/nvidia-drivers/nvidia-drivers-361.16.ebuild | 7 ------- 1 file changed, 7 deletions(-) diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-361.16.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-361.16.ebuild index 7789bd9..055c12e 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-361.16.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-361.16.ebuild @@ -194,19 +194,15 @@ src_compile() { donvidia() { # Full path to library nv_LIB="${1}" -echo -n "$nv_LIB : " # SOVER to use nv_SOVER="$(scanelf -qF'%S#F' ${nv_LIB})" -echo -n "$nv_SOVER : " # Where to install nv_DEST="${2}" -echo -n "$nv_DEST : " # Get just the library name nv_LIBNAME=$(basename "${nv_LIB}") -echo "$nv_LIBNAME" if [[ "${nv_DEST}" ]]; then exeinto ${nv_DEST} @@ -217,18 +213,15 @@ echo "$nv_LIBNAME" fi # Install the library -echo ${action} ${nv_LIB} ${action} ${nv_LIB} || die "failed to install ${nv_LIBNAME}" # If the library has a SONAME and SONAME does not match the library name, # then we need to create a symlink if [[ ${nv_SOVER} ]] && ! [[ "${nv_SOVER}" = "${nv_LIBNAME}" ]]; then -echo 1 dosym ${nv_LIBNAME} ${nv_DEST}/${nv_SOVER} dosym ${nv_LIBNAME} ${nv_DEST}/${nv_SOVER} \ || die "failed to create ${nv_DEST}/${nv_SOVER} symlink" fi -echo 2 dosym ${nv_LIBNAME} ${nv_DEST}/${nv_LIBNAME/.so*/.so} dosym ${nv_LIBNAME} ${nv_DEST}/${nv_LIBNAME/.so*/.so} \ || die "failed to create ${nv_LIBNAME/.so*/.so} symlink" }