public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-db/oracle-instantclient-jdbc: ChangeLog oracle-instantclient-jdbc-11.2.0.3.ebuild
@ 2012-03-07 14:25 Michael Haubenwallner (haubi)
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Haubenwallner (haubi) @ 2012-03-07 14:25 UTC (permalink / raw
  To: gentoo-commits

haubi       12/03/07 14:25:23

  Modified:             ChangeLog
  Added:                oracle-instantclient-jdbc-11.2.0.3.ebuild
  Log:
  Revbump. Use EAPI 4. Update homepage. Drop useless postinst info.
  Add multilib support.
  RDEPEND on _same_ version of oracle-instantclient-basic.
  
  (Portage version: 2.1.10.41/cvs/Linux x86_64)

Revision  Changes    Path
1.30                 dev-db/oracle-instantclient-jdbc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	9 Feb 2012 14:24:42 -0000	1.29
+++ ChangeLog	7 Mar 2012 14:25:23 -0000	1.30
@@ -1,6 +1,14 @@
 # ChangeLog for dev-db/oracle-instantclient-jdbc
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v 1.29 2012/02/09 14:24:42 haubi Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v 1.30 2012/03/07 14:25:23 haubi Exp $
+
+*oracle-instantclient-jdbc-11.2.0.3 (07 Mar 2012)
+
+  07 Mar 2012; Michael Haubenwallner <haubi@gentoo.org>
+  +oracle-instantclient-jdbc-11.2.0.3.ebuild:
+  Revbump. Use EAPI 4. Update homepage. Drop useless postinst info.
+  Add multilib support.
+  RDEPEND on _same_ version of oracle-instantclient-basic.
 
   09 Feb 2012; Michael Haubenwallner <haubi@gentoo.org> metadata.xml:
   Taking over maintainership.



1.1                  dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?rev=1.1&content-type=text/plain

Index: oracle-instantclient-jdbc-11.2.0.3.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild,v 1.1 2012/03/07 14:25:23 haubi Exp $

EAPI="4"

inherit eutils

MY_PLAT_x86="Linux x86"
MY_A_x86="${PN/oracle-/}-linux-${PV}.0.zip"

MY_PLAT_amd64="Linux x86-64"
MY_A_amd64="${PN/oracle-/}-linux.x64-${PV}.0.zip"

DESCRIPTION="Oracle 11g Instant Client: JDBC supplement"
HOMEPAGE="http://www.oracle.com/technetwork/database/features/instant-client/index.html"
SRC_URI="
	x86?   ( ${MY_A_x86}                             )
	amd64? ( ${MY_A_amd64} multilib? ( ${MY_A_x86} ) )
"

LICENSE="OTN"
SLOT="0"
KEYWORDS="~x86 ~amd64"
RESTRICT="fetch"
IUSE="multilib"

DEPEND="app-arch/unzip"
RDEPEND="~dev-db/oracle-instantclient-basic-${PV}"

S="${WORKDIR}"

default_abi() {
	[[ ${DEFAULT_ABI} == 'default' ]] && echo ${ARCH} || echo ${DEFAULT_ABI}
}

abi_list() {
	if use multilib; then
		echo ${MULTILIB_ABIS}
	elif [[ ${DEFAULT_MULTILIB} == default ]]; then
		# no multilib-able platform
		echo ${ARCH}
	else
		echo ${DEFAULT_ABI}
	fi
	return 0
}

set_abivars() {
	local abi=$1
	# platform name
	MY_PLAT=MY_PLAT_${abi}
	MY_PLAT=${!MY_PLAT}
	# runtime distfile
	MY_A=MY_A_${abi}
	MY_A=${!MY_A}
	# abi sourcedir
	MY_S="${S}/${abi}/instantclient_11_2"
	# abi libdir
	MY_LIBDIR=$(ABI=${abi} get_libdir)
}

pkg_nofetch() {
	eerror "Please go to"
	eerror "  ${HOMEPAGE%/*}/index-097480.html"
	eerror "  and download"
	local abi
	for abi in $(abi_list)
	do
		set_abivars ${abi}
		eerror "Instant Client for ${MY_PLAT}"
		eerror "    JDBC: ${MY_A}"
	done
	eerror "After downloading, put them in:"
	eerror "    ${DISTDIR}/"
}

src_unpack() {
	local abi
	for abi in $(abi_list)
	do
		set_abivars ${abi}
		mkdir -p "${MY_S%/*}" || die
		cd "${MY_S%/*}" || die
		unpack ${MY_A}
	done
}

src_install() {
	# all binaries go here
	local oracle_home=/usr/$(get_libdir)/oracle/${PV}/client
	into "${oracle_home}"

	local abi
	for abi in $(abi_list)
	do
		set_abivars ${abi}
		einfo "Installing runtime for ${MY_PLAT} ..."

		cd "${MY_S}" || die

		ABI=${abi} dolib.so lib*$(get_libname)*

		insinto "${oracle_home}"/${MY_LIBDIR}
		doins *.jar

		eend $?
	done
}






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-db/oracle-instantclient-jdbc: ChangeLog oracle-instantclient-jdbc-11.2.0.3.ebuild
@ 2012-03-07 15:33 Michael Haubenwallner (haubi)
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Haubenwallner (haubi) @ 2012-03-07 15:33 UTC (permalink / raw
  To: gentoo-commits

haubi       12/03/07 15:33:54

  Modified:             ChangeLog oracle-instantclient-jdbc-11.2.0.3.ebuild
  Log:
  fix typo with non-multilib archs
  
  (Portage version: 2.1.10.41/cvs/Linux x86_64)

Revision  Changes    Path
1.31                 dev-db/oracle-instantclient-jdbc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	7 Mar 2012 14:25:23 -0000	1.30
+++ ChangeLog	7 Mar 2012 15:33:54 -0000	1.31
@@ -1,6 +1,10 @@
 # ChangeLog for dev-db/oracle-instantclient-jdbc
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v 1.30 2012/03/07 14:25:23 haubi Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v 1.31 2012/03/07 15:33:54 haubi Exp $
+
+  07 Mar 2012; Michael Haubenwallner <haubi@gentoo.org>
+  oracle-instantclient-jdbc-11.2.0.3.ebuild:
+  fix typo with non-multilib archs
 
 *oracle-instantclient-jdbc-11.2.0.3 (07 Mar 2012)
 



1.2                  dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?r1=1.1&r2=1.2

Index: oracle-instantclient-jdbc-11.2.0.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oracle-instantclient-jdbc-11.2.0.3.ebuild	7 Mar 2012 14:25:23 -0000	1.1
+++ oracle-instantclient-jdbc-11.2.0.3.ebuild	7 Mar 2012 15:33:54 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild,v 1.1 2012/03/07 14:25:23 haubi Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild,v 1.2 2012/03/07 15:33:54 haubi Exp $
 
 EAPI="4"
 
@@ -37,11 +37,8 @@
 abi_list() {
 	if use multilib; then
 		echo ${MULTILIB_ABIS}
-	elif [[ ${DEFAULT_MULTILIB} == default ]]; then
-		# no multilib-able platform
-		echo ${ARCH}
 	else
-		echo ${DEFAULT_ABI}
+		default_abi
 	fi
 	return 0
 }






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-db/oracle-instantclient-jdbc: ChangeLog oracle-instantclient-jdbc-11.2.0.3.ebuild
@ 2012-03-07 16:25 Michael Haubenwallner (haubi)
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Haubenwallner (haubi) @ 2012-03-07 16:25 UTC (permalink / raw
  To: gentoo-commits

haubi       12/03/07 16:25:45

  Modified:             ChangeLog oracle-instantclient-jdbc-11.2.0.3.ebuild
  Log:
  must not set ABI for non-multilib-able archs at all
  
  (Portage version: 2.1.10.41/cvs/Linux x86_64)

Revision  Changes    Path
1.32                 dev-db/oracle-instantclient-jdbc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	7 Mar 2012 15:33:54 -0000	1.31
+++ ChangeLog	7 Mar 2012 16:25:45 -0000	1.32
@@ -1,6 +1,10 @@
 # ChangeLog for dev-db/oracle-instantclient-jdbc
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v 1.31 2012/03/07 15:33:54 haubi Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v 1.32 2012/03/07 16:25:45 haubi Exp $
+
+  07 Mar 2012; Michael Haubenwallner <haubi@gentoo.org>
+  oracle-instantclient-jdbc-11.2.0.3.ebuild:
+  must not set ABI for non-multilib-able archs at all
 
   07 Mar 2012; Michael Haubenwallner <haubi@gentoo.org>
   oracle-instantclient-jdbc-11.2.0.3.ebuild:



1.3                  dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?r1=1.2&r2=1.3

Index: oracle-instantclient-jdbc-11.2.0.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- oracle-instantclient-jdbc-11.2.0.3.ebuild	7 Mar 2012 15:33:54 -0000	1.2
+++ oracle-instantclient-jdbc-11.2.0.3.ebuild	7 Mar 2012 16:25:45 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild,v 1.2 2012/03/07 15:33:54 haubi Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild,v 1.3 2012/03/07 16:25:45 haubi Exp $
 
 EAPI="4"
 
@@ -53,8 +53,10 @@
 	MY_A=${!MY_A}
 	# abi sourcedir
 	MY_S="${S}/${abi}/instantclient_11_2"
+	# ABI might not need to be set at all
+	[[ -n ${ABI} ]] && MY_ABI=${abi} || MY_ABI=
 	# abi libdir
-	MY_LIBDIR=$(ABI=${abi} get_libdir)
+	MY_LIBDIR=$(ABI=${MY_ABI} get_libdir)
 }
 
 pkg_nofetch() {
@@ -96,7 +98,7 @@
 
 		cd "${MY_S}" || die
 
-		ABI=${abi} dolib.so lib*$(get_libname)*
+		ABI=${MY_ABI} dolib.so lib*$(get_libname)*
 
 		insinto "${oracle_home}"/${MY_LIBDIR}
 		doins *.jar






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-db/oracle-instantclient-jdbc: ChangeLog oracle-instantclient-jdbc-11.2.0.3.ebuild
@ 2012-11-14 17:19 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-11-14 17:19 UTC (permalink / raw
  To: gentoo-commits

ago         12/11/14 17:19:02

  Modified:             ChangeLog oracle-instantclient-jdbc-11.2.0.3.ebuild
  Log:
  Stable for amd64, wrt bug #397571
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.34                 dev-db/oracle-instantclient-jdbc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?r1=1.33&r2=1.34

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	4 Jun 2012 06:39:47 -0000	1.33
+++ ChangeLog	14 Nov 2012 17:19:02 -0000	1.34
@@ -1,6 +1,10 @@
 # ChangeLog for dev-db/oracle-instantclient-jdbc
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v 1.33 2012/06/04 06:39:47 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v 1.34 2012/11/14 17:19:02 ago Exp $
+
+  14 Nov 2012; Agostino Sarubbo <ago@gentoo.org>
+  oracle-instantclient-jdbc-11.2.0.3.ebuild:
+  Stable for amd64, wrt bug #397571
 
   04 Jun 2012; Zac Medico <zmedico@gentoo.org>
   oracle-instantclient-jdbc-10.2.0.3.ebuild,



1.5                  dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?r1=1.4&r2=1.5

Index: oracle-instantclient-jdbc-11.2.0.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- oracle-instantclient-jdbc-11.2.0.3.ebuild	4 Jun 2012 06:39:47 -0000	1.4
+++ oracle-instantclient-jdbc-11.2.0.3.ebuild	14 Nov 2012 17:19:02 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild,v 1.4 2012/06/04 06:39:47 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild,v 1.5 2012/11/14 17:19:02 ago Exp $
 
 EAPI="4"
 
@@ -21,7 +21,7 @@
 
 LICENSE="OTN"
 SLOT="0"
-KEYWORDS="~x86 ~amd64"
+KEYWORDS="amd64 ~x86"
 RESTRICT="fetch"
 IUSE="multilib"
 





^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-db/oracle-instantclient-jdbc: ChangeLog oracle-instantclient-jdbc-11.2.0.3.ebuild
@ 2012-11-14 17:20 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-11-14 17:20 UTC (permalink / raw
  To: gentoo-commits

ago         12/11/14 17:20:21

  Modified:             ChangeLog oracle-instantclient-jdbc-11.2.0.3.ebuild
  Log:
  Stable for x86, wrt bug #397571
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.35                 dev-db/oracle-instantclient-jdbc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	14 Nov 2012 17:19:02 -0000	1.34
+++ ChangeLog	14 Nov 2012 17:20:21 -0000	1.35
@@ -1,6 +1,10 @@
 # ChangeLog for dev-db/oracle-instantclient-jdbc
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v 1.34 2012/11/14 17:19:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v 1.35 2012/11/14 17:20:21 ago Exp $
+
+  14 Nov 2012; Agostino Sarubbo <ago@gentoo.org>
+  oracle-instantclient-jdbc-11.2.0.3.ebuild:
+  Stable for x86, wrt bug #397571
 
   14 Nov 2012; Agostino Sarubbo <ago@gentoo.org>
   oracle-instantclient-jdbc-11.2.0.3.ebuild:



1.6                  dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?r1=1.5&r2=1.6

Index: oracle-instantclient-jdbc-11.2.0.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- oracle-instantclient-jdbc-11.2.0.3.ebuild	14 Nov 2012 17:19:02 -0000	1.5
+++ oracle-instantclient-jdbc-11.2.0.3.ebuild	14 Nov 2012 17:20:21 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild,v 1.5 2012/11/14 17:19:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild,v 1.6 2012/11/14 17:20:21 ago Exp $
 
 EAPI="4"
 
@@ -21,7 +21,7 @@
 
 LICENSE="OTN"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 RESTRICT="fetch"
 IUSE="multilib"
 





^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-db/oracle-instantclient-jdbc: ChangeLog oracle-instantclient-jdbc-11.2.0.3.ebuild
@ 2012-11-15 19:50 Michael Haubenwallner (haubi)
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Haubenwallner (haubi) @ 2012-11-15 19:50 UTC (permalink / raw
  To: gentoo-commits

haubi       12/11/15 19:50:09

  Modified:             ChangeLog oracle-instantclient-jdbc-11.2.0.3.ebuild
  Log:
  Define QA_PREBUILT, bug#443120.
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.36                 dev-db/oracle-instantclient-jdbc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	14 Nov 2012 17:20:21 -0000	1.35
+++ ChangeLog	15 Nov 2012 19:50:09 -0000	1.36
@@ -1,6 +1,10 @@
 # ChangeLog for dev-db/oracle-instantclient-jdbc
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v 1.35 2012/11/14 17:20:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v 1.36 2012/11/15 19:50:09 haubi Exp $
+
+  15 Nov 2012; Michael Haubenwallner <haubi@gentoo.org>
+  oracle-instantclient-jdbc-11.2.0.3.ebuild:
+  Define QA_PREBUILT, bug#443120.
 
   14 Nov 2012; Agostino Sarubbo <ago@gentoo.org>
   oracle-instantclient-jdbc-11.2.0.3.ebuild:



1.7                  dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild?r1=1.6&r2=1.7

Index: oracle-instantclient-jdbc-11.2.0.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- oracle-instantclient-jdbc-11.2.0.3.ebuild	14 Nov 2012 17:20:21 -0000	1.6
+++ oracle-instantclient-jdbc-11.2.0.3.ebuild	15 Nov 2012 19:50:09 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild,v 1.6 2012/11/14 17:20:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild,v 1.7 2012/11/15 19:50:09 haubi Exp $
 
 EAPI="4"
 
@@ -30,6 +30,8 @@
 
 S="${WORKDIR}"
 
+QA_PREBUILT="usr/lib*/oracle/${PV}/client/lib*/lib*"
+
 default_abi() {
 	[[ ${DEFAULT_ABI} == 'default' ]] && echo ${ARCH} || echo ${DEFAULT_ABI}
 }





^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-11-15 19:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-14 17:20 [gentoo-commits] gentoo-x86 commit in dev-db/oracle-instantclient-jdbc: ChangeLog oracle-instantclient-jdbc-11.2.0.3.ebuild Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2012-11-15 19:50 Michael Haubenwallner (haubi)
2012-11-14 17:19 Agostino Sarubbo (ago)
2012-03-07 16:25 Michael Haubenwallner (haubi)
2012-03-07 15:33 Michael Haubenwallner (haubi)
2012-03-07 14:25 Michael Haubenwallner (haubi)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox