From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 53A67138359 for ; Mon, 28 Sep 2020 09:28:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78DA6E0845; Mon, 28 Sep 2020 09:28:58 +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 5B67DE0845 for ; Mon, 28 Sep 2020 09:28:58 +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 4B5DE340A2B for ; Mon, 28 Sep 2020 09:28:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 056EF373 for ; Mon, 28 Sep 2020 09:28:56 +0000 (UTC) From: "Michael Haubenwallner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Haubenwallner" Message-ID: <1601285320.4748c2e097dc3cc474b787ac82f34f882b5f3973.haubi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/oracle-instantclient/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/oracle-instantclient/oracle-instantclient-19.6.0.0-r1.ebuild X-VCS-Directories: dev-db/oracle-instantclient/ X-VCS-Committer: haubi X-VCS-Committer-Name: Michael Haubenwallner X-VCS-Revision: 4748c2e097dc3cc474b787ac82f34f882b5f3973 X-VCS-Branch: master Date: Mon, 28 Sep 2020 09:28:56 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 661794e9-1ef5-4a9f-ac81-49ec88878efb X-Archives-Hash: b8da037bb584609b68d88cbada60f748 commit: 4748c2e097dc3cc474b787ac82f34f882b5f3973 Author: Michael Haubenwallner gentoo org> AuthorDate: Mon Sep 28 09:28:01 2020 +0000 Commit: Michael Haubenwallner gentoo org> CommitDate: Mon Sep 28 09:28:40 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4748c2e0 dev-db/oracle-instantclient: fix unpack problem Closes: https://bugs.gentoo.org/745057 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Michael Haubenwallner gentoo.org> .../oracle-instantclient-19.6.0.0-r1.ebuild | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dev-db/oracle-instantclient/oracle-instantclient-19.6.0.0-r1.ebuild b/dev-db/oracle-instantclient/oracle-instantclient-19.6.0.0-r1.ebuild index 94909337b67..7c6f515d7d1 100644 --- a/dev-db/oracle-instantclient/oracle-instantclient-19.6.0.0-r1.ebuild +++ b/dev-db/oracle-instantclient/oracle-instantclient-19.6.0.0-r1.ebuild @@ -101,13 +101,13 @@ set_my_abivars() { [[ ${abi} == 'default' ]] && abi=${ARCH} MY_PLAT=MY_PLAT_${abi} ; MY_PLAT=${!MY_PLAT} # platform name MY_BITS=MY_BITS_${abi} ; MY_BITS=${!MY_BITS} # platform bitwidth - MY_A=MY_A_${abi} ; MY_A=${!MY_A} # runtime distfile - MY_A_jdbc=MY_A_${abi}_jdbc ; MY_A_jdbc=${!MY_A_jdbc} # jdbc distfile - MY_A_odbc=MY_A_${abi}_odbc ; MY_A_odbc=${!MY_A_odbc} # odbc distfile - MY_A_precomp=MY_A_${abi}_precomp; MY_A_precomp=${!MY_A_precomp} # precomp distfile - MY_A_sdk=MY_A_${abi}_sdk ; MY_A_sdk=${!MY_A_sdk} # sdk distfile - MY_A_sqlplus=MY_A_${abi}_sqlplus; MY_A_sqlplus=${!MY_A_sqlplus} # sqlplus distfile - MY_A_tools=MY_A_${abi}_tools ; MY_A_tools=${!MY_A_tools} # tools distfile + MY_A=MY_A_${abi} ; MY_A=${!MY_A##*/} # runtime distfile + MY_A_jdbc=MY_A_${abi}_jdbc ; MY_A_jdbc=${!MY_A_jdbc##*/} # jdbc distfile + MY_A_odbc=MY_A_${abi}_odbc ; MY_A_odbc=${!MY_A_odbc##*/} # odbc distfile + MY_A_precomp=MY_A_${abi}_precomp; MY_A_precomp=${!MY_A_precomp##*/} # precomp distfile + MY_A_sdk=MY_A_${abi}_sdk ; MY_A_sdk=${!MY_A_sdk##*/} # sdk distfile + MY_A_sqlplus=MY_A_${abi}_sqlplus; MY_A_sqlplus=${!MY_A_sqlplus##*/} # sqlplus distfile + MY_A_tools=MY_A_${abi}_tools ; MY_A_tools=${!MY_A_tools##*/} # tools distfile [[ -n ${MY_PLAT} ]] }