Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/oracle-instantclient-sqlplus/
Date: Fri, 25 Sep 2020 19:41:14
Message-Id: 1601062864.f3ce38b10a2591d91d1150e2dd7889d3795a7ff2.bman@gentoo
1 commit: f3ce38b10a2591d91d1150e2dd7889d3795a7ff2
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 25 19:27:55 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 25 19:41:04 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3ce38b1
7
8 dev-db/oracle-instantclient-sqlplus: drop old EAPI=4
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 dev-db/oracle-instantclient-sqlplus/Manifest | 2 -
13 ...oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild | 70 ----------------------
14 .../oracle-instantclient-sqlplus-11.2.0.3.ebuild | 68 ---------------------
15 3 files changed, 140 deletions(-)
16
17 diff --git a/dev-db/oracle-instantclient-sqlplus/Manifest b/dev-db/oracle-instantclient-sqlplus/Manifest
18 index 6a0c1821c8b..1425c27a01d 100644
19 --- a/dev-db/oracle-instantclient-sqlplus/Manifest
20 +++ b/dev-db/oracle-instantclient-sqlplus/Manifest
21 @@ -1,4 +1,2 @@
22 -DIST instantclient-sqlplus-linux-11.2.0.3.0.zip 796570 BLAKE2B 0492185103d5fb36f3acb8f52e937fca35bb8b7308eb9317d43f25f4fbde39f15b8b6de0fc9065d04c809a94731c7c011dcac1daf4e734405d065d9959cf215f SHA512 241d812b3955b11efba7764f463417e79dd973ce7ad0624144e661403b71b1c4fb091c6e42d05759eaf74355dfe432970375064d4018cae9ae67cd1401095460
23 DIST instantclient-sqlplus-linux-11.2.0.4.0.zip 792608 BLAKE2B c3e8f0843700df9f95428b01520400d95076df5e19169f2a79982293e54ce6cc74321de0f34a0e7865d5d29535e38b60bcca127be06343c979a40985bf349012 SHA512 8f5ff27043a036eab038080bbdc056325cc2c197e12de34e74a8da17bf69b44e4fd4200b638881d86fdf1dc1450d8e1d033daaa56386bd2c8784d556ba0093ce
24 -DIST instantclient-sqlplus-linux.x64-11.2.0.3.0.zip 837574 BLAKE2B c1f123b68b60f211843af954e33922e46d05ff89ce68e8357a8839e7fce83cccc31ab3f16b87204343376657839fd582fb2c80be3148cc34f2340191ed261526 SHA512 55bbac5e8267a4de2c7f9f6750f0e38dcf7c775bccc2e1e05df7fda9e6ffa7d394776e605980d8b67176acf52ba88f2dcaa959934740a1ca6f91d10b12d14024
25 DIST instantclient-sqlplus-linux.x64-11.2.0.4.0.zip 834491 BLAKE2B 487091d97c0f2ec383018c39a957c8a27b030c4c8754a6c2714237dc875b89b250b47dbd28ca228a98c6199323ddd031452e1cc90c60824fbcca536aa38bff1f SHA512 b7180b5667e604564cf379b9eb55a2fc8994b87cfb993e728b4c1bdd297cab134a55580018429bdbb2b101ebdf8a350bacc1ddf5a30e1cc419092054c79a108b
26
27 diff --git a/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild b/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild
28 deleted file mode 100644
29 index 190e6ba230e..00000000000
30 --- a/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild
31 +++ /dev/null
32 @@ -1,70 +0,0 @@
33 -# Copyright 1999-2019 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI="4"
37 -
38 -inherit eutils multilib pax-utils
39 -
40 -MY_PLAT_x86="Linux x86"
41 -MY_A_x86="${PN#oracle-}-linux-${PV}.0.zip"
42 -
43 -MY_PLAT_amd64="Linux x86-64"
44 -MY_A_amd64="${PN#oracle-}-linux.x64-${PV}.0.zip"
45 -
46 -DESCRIPTION="Oracle 11g Instant Client: SQL*Plus"
47 -HOMEPAGE="http://www.oracle.com/technetwork/database/features/instant-client/index.html"
48 -SRC_URI="
49 - x86? ( ${MY_A_x86} )
50 - amd64? ( ${MY_A_amd64} )
51 -"
52 -
53 -LICENSE="OTN"
54 -SLOT="0"
55 -KEYWORDS="amd64 x86"
56 -RESTRICT="fetch"
57 -IUSE=""
58 -
59 -DEPEND="app-arch/unzip"
60 -RDEPEND="~dev-db/oracle-instantclient-basic-${PV}"
61 -
62 -S="${WORKDIR}"/instantclient_11_2
63 -
64 -QA_PREBUILT="
65 - usr/lib*/oracle/${PV}/client/lib*/lib*
66 - usr/lib*/oracle/${PV}/client/bin/sqlplus
67 -"
68 -
69 -my_arch() {
70 - # platform name
71 - MY_PLAT=MY_PLAT_${ARCH}
72 - export MY_PLAT=${!MY_PLAT}
73 - # distfile
74 - MY_A=MY_A_${ARCH}
75 - export MY_A=${!MY_A}
76 -}
77 -
78 -pkg_nofetch() {
79 - my_arch
80 - eerror "Please go to"
81 - eerror " ${HOMEPAGE%/*}/index-097480.html"
82 - eerror " and download"
83 - eerror "Instant Client for ${MY_PLAT}"
84 - eerror " SQL*Plus: ${MY_A}"
85 - eerror "After downloading, put it into your DISTDIR directory."
86 -}
87 -
88 -src_install() {
89 - # all binaries go here
90 - local oracle_home=usr/$(get_libdir)/oracle/${PV}/client
91 - into /"${oracle_home}"
92 -
93 - dolib.so libsqlplus$(get_libname) libsqlplusic$(get_libname)
94 - dobin sqlplus
95 -
96 - insinto /"${oracle_home}"/sqlplus/admin
97 - doins glogin.sql
98 -
99 - pax-mark -c "${ED}${oracle_home}"/bin/sqlplus || die
100 -
101 - dosym /"${oracle_home}"/bin/sqlplus /usr/bin/sqlplus
102 -}
103
104 diff --git a/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3.ebuild b/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3.ebuild
105 deleted file mode 100644
106 index c9939d8beae..00000000000
107 --- a/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3.ebuild
108 +++ /dev/null
109 @@ -1,68 +0,0 @@
110 -# Copyright 1999-2019 Gentoo Authors
111 -# Distributed under the terms of the GNU General Public License v2
112 -
113 -EAPI="4"
114 -
115 -inherit eutils multilib
116 -
117 -MY_PLAT_x86="Linux x86"
118 -MY_A_x86="${PN#oracle-}-linux-${PV}.0.zip"
119 -
120 -MY_PLAT_amd64="Linux x86-64"
121 -MY_A_amd64="${PN#oracle-}-linux.x64-${PV}.0.zip"
122 -
123 -DESCRIPTION="Oracle 11g Instant Client: SQL*Plus"
124 -HOMEPAGE="http://www.oracle.com/technetwork/database/features/instant-client/index.html"
125 -SRC_URI="
126 - x86? ( ${MY_A_x86} )
127 - amd64? ( ${MY_A_amd64} )
128 -"
129 -
130 -LICENSE="OTN"
131 -SLOT="0"
132 -KEYWORDS="amd64 x86"
133 -RESTRICT="fetch"
134 -IUSE=""
135 -
136 -DEPEND="app-arch/unzip"
137 -RDEPEND="~dev-db/oracle-instantclient-basic-${PV}"
138 -
139 -S="${WORKDIR}"/instantclient_11_2
140 -
141 -QA_PREBUILT="
142 - usr/lib*/oracle/${PV}/client/lib*/lib*
143 - usr/lib*/oracle/${PV}/client/bin/sqlplus
144 -"
145 -
146 -my_arch() {
147 - # platform name
148 - MY_PLAT=MY_PLAT_${ARCH}
149 - export MY_PLAT=${!MY_PLAT}
150 - # distfile
151 - MY_A=MY_A_${ARCH}
152 - export MY_A=${!MY_A}
153 -}
154 -
155 -pkg_nofetch() {
156 - my_arch
157 - eerror "Please go to"
158 - eerror " ${HOMEPAGE%/*}/index-097480.html"
159 - eerror " and download"
160 - eerror "Instant Client for ${MY_PLAT}"
161 - eerror " SQL*Plus: ${MY_A}"
162 - eerror "After downloading, put it into your DISTDIR directory."
163 -}
164 -
165 -src_install() {
166 - # all binaries go here
167 - local oracle_home=/usr/$(get_libdir)/oracle/${PV}/client
168 - into "${oracle_home}"
169 -
170 - dolib.so libsqlplus$(get_libname) libsqlplusic$(get_libname)
171 - dobin sqlplus
172 -
173 - insinto "${oracle_home}"/sqlplus/admin
174 - doins glogin.sql
175 -
176 - dosym "${oracle_home}"/bin/sqlplus /usr/bin/sqlplus
177 -}