Gentoo Archives: gentoo-commits

From: Michael Haubenwallner <haubi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/oracle-instantclient/
Date: Mon, 28 Sep 2020 09:28:59
Message-Id: 1601285320.4748c2e097dc3cc474b787ac82f34f882b5f3973.haubi@gentoo
1 commit: 4748c2e097dc3cc474b787ac82f34f882b5f3973
2 Author: Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 28 09:28:01 2020 +0000
4 Commit: Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 28 09:28:40 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4748c2e0
7
8 dev-db/oracle-instantclient: fix unpack problem
9
10 Closes: https://bugs.gentoo.org/745057
11 Package-Manager: Portage-2.3.89, Repoman-2.3.20
12 Signed-off-by: Michael Haubenwallner <haubi <AT> gentoo.org>
13
14 .../oracle-instantclient-19.6.0.0-r1.ebuild | 14 +++++++-------
15 1 file changed, 7 insertions(+), 7 deletions(-)
16
17 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
18 index 94909337b67..7c6f515d7d1 100644
19 --- a/dev-db/oracle-instantclient/oracle-instantclient-19.6.0.0-r1.ebuild
20 +++ b/dev-db/oracle-instantclient/oracle-instantclient-19.6.0.0-r1.ebuild
21 @@ -101,13 +101,13 @@ set_my_abivars() {
22 [[ ${abi} == 'default' ]] && abi=${ARCH}
23 MY_PLAT=MY_PLAT_${abi} ; MY_PLAT=${!MY_PLAT} # platform name
24 MY_BITS=MY_BITS_${abi} ; MY_BITS=${!MY_BITS} # platform bitwidth
25 - MY_A=MY_A_${abi} ; MY_A=${!MY_A} # runtime distfile
26 - MY_A_jdbc=MY_A_${abi}_jdbc ; MY_A_jdbc=${!MY_A_jdbc} # jdbc distfile
27 - MY_A_odbc=MY_A_${abi}_odbc ; MY_A_odbc=${!MY_A_odbc} # odbc distfile
28 - MY_A_precomp=MY_A_${abi}_precomp; MY_A_precomp=${!MY_A_precomp} # precomp distfile
29 - MY_A_sdk=MY_A_${abi}_sdk ; MY_A_sdk=${!MY_A_sdk} # sdk distfile
30 - MY_A_sqlplus=MY_A_${abi}_sqlplus; MY_A_sqlplus=${!MY_A_sqlplus} # sqlplus distfile
31 - MY_A_tools=MY_A_${abi}_tools ; MY_A_tools=${!MY_A_tools} # tools distfile
32 + MY_A=MY_A_${abi} ; MY_A=${!MY_A##*/} # runtime distfile
33 + MY_A_jdbc=MY_A_${abi}_jdbc ; MY_A_jdbc=${!MY_A_jdbc##*/} # jdbc distfile
34 + MY_A_odbc=MY_A_${abi}_odbc ; MY_A_odbc=${!MY_A_odbc##*/} # odbc distfile
35 + MY_A_precomp=MY_A_${abi}_precomp; MY_A_precomp=${!MY_A_precomp##*/} # precomp distfile
36 + MY_A_sdk=MY_A_${abi}_sdk ; MY_A_sdk=${!MY_A_sdk##*/} # sdk distfile
37 + MY_A_sqlplus=MY_A_${abi}_sqlplus; MY_A_sqlplus=${!MY_A_sqlplus##*/} # sqlplus distfile
38 + MY_A_tools=MY_A_${abi}_tools ; MY_A_tools=${!MY_A_tools##*/} # tools distfile
39
40 [[ -n ${MY_PLAT} ]]
41 }