public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-db/oracle-instantclient-sqlplus: oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild ChangeLog
@ 2013-03-08 15:34 Michael Haubenwallner (haubi)
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Haubenwallner (haubi) @ 2013-03-08 15:34 UTC (permalink / raw
  To: gentoo-commits

haubi       13/03/08 15:34:03

  Modified:             ChangeLog
  Added:                oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild
  Log:
  sqlplus binary needs pax-mark for hardened, bug#456694. Credits to Hugo Mildenberger at web.de.
  
  (Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key A630CCB8)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	15 Nov 2012 19:47:11 -0000	1.35
+++ ChangeLog	8 Mar 2013 15:34:03 -0000	1.36
@@ -1,6 +1,13 @@
 # ChangeLog for dev-db/oracle-instantclient-sqlplus
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/ChangeLog,v 1.35 2012/11/15 19:47:11 haubi Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/ChangeLog,v 1.36 2013/03/08 15:34:03 haubi Exp $
+
+*oracle-instantclient-sqlplus-11.2.0.3-r1 (08 Mar 2013)
+
+  08 Mar 2013; Michael Haubenwallner <haubi@gentoo.org>
+  +oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild:
+  sqlplus binary needs pax-mark for hardened, bug#456694.
+  Credits to Hugo Mildenberger at web.de.
 
   15 Nov 2012; Michael Haubenwallner <haubi@gentoo.org>
   oracle-instantclient-sqlplus-11.2.0.3.ebuild:



1.1                  dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild

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

Index: oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild,v 1.1 2013/03/08 15:34:03 haubi Exp $

EAPI="4"

inherit eutils multilib pax-utils

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: SQL*Plus"
HOMEPAGE="http://www.oracle.com/technetwork/database/features/instant-client/index.html"
SRC_URI="
	x86?   ( ${MY_A_x86}   )
	amd64? ( ${MY_A_amd64} )
"

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

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

S="${WORKDIR}"/instantclient_11_2

QA_PREBUILT="
	usr/lib*/oracle/${PV}/client/lib*/lib*
	usr/lib*/oracle/${PV}/client/bin/sqlplus
"

my_arch() {
	# platform name
	MY_PLAT=MY_PLAT_${ARCH}
	export MY_PLAT=${!MY_PLAT}
	# distfile
	MY_A=MY_A_${ARCH}
	export MY_A=${!MY_A}
}

pkg_nofetch() {
	my_arch
	eerror "Please go to"
	eerror "  ${HOMEPAGE%/*}/index-097480.html"
	eerror "  and download"
	eerror "Instant Client for ${MY_PLAT}"
	eerror "    SQL*Plus: ${MY_A}"
	eerror "After downloading, put it in:"
	eerror "  ${DISTDIR}/"
}

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

	dolib.so libsqlplus$(get_libname) libsqlplusic$(get_libname)
	dobin sqlplus

	insinto /"${oracle_home}"/sqlplus/admin
	doins glogin.sql

	pax-mark -c "${ED}${oracle_home}"/bin/sqlplus || die

	dosym /"${oracle_home}"/bin/sqlplus /usr/bin/sqlplus
}





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

* [gentoo-commits] gentoo-x86 commit in dev-db/oracle-instantclient-sqlplus: oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild ChangeLog
@ 2013-05-25 11:06 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-25 11:06 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/25 11:06:35

  Modified:             oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild
                        ChangeLog
  Log:
  Stable for amd64, wrt bug #470348
  
  (Portage version: 2.1.12.1/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.2                  dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild

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

Index: oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild	8 Mar 2013 15:34:03 -0000	1.1
+++ oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild	25 May 2013 11:06:34 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild,v 1.1 2013/03/08 15:34:03 haubi Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild,v 1.2 2013/05/25 11:06:34 ago Exp $
 
 EAPI="4"
 
@@ -21,7 +21,7 @@
 
 LICENSE="OTN"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 RESTRICT="fetch"
 IUSE=""
 



1.38                 dev-db/oracle-instantclient-sqlplus/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	10 May 2013 08:18:43 -0000	1.37
+++ ChangeLog	25 May 2013 11:06:34 -0000	1.38
@@ -1,6 +1,10 @@
 # ChangeLog for dev-db/oracle-instantclient-sqlplus
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/ChangeLog,v 1.37 2013/05/10 08:18:43 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/ChangeLog,v 1.38 2013/05/25 11:06:34 ago Exp $
+
+  25 May 2013; Agostino Sarubbo <ago@gentoo.org>
+  oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild:
+  Stable for amd64, wrt bug #470348
 
   10 May 2013; Patrick Lauer <patrick@gentoo.org>
   oracle-instantclient-sqlplus-11.2.0.2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in dev-db/oracle-instantclient-sqlplus: oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild ChangeLog
@ 2013-05-25 11:11 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-25 11:11 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/25 11:11:27

  Modified:             oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild
                        ChangeLog
  Log:
  Stable for x86, wrt bug #470348
  
  (Portage version: 2.1.12.1/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild

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

Index: oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild	25 May 2013 11:06:34 -0000	1.2
+++ oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild	25 May 2013 11:11:27 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild,v 1.2 2013/05/25 11:06:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild,v 1.3 2013/05/25 11:11:27 ago Exp $
 
 EAPI="4"
 
@@ -21,7 +21,7 @@
 
 LICENSE="OTN"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 RESTRICT="fetch"
 IUSE=""
 



1.39                 dev-db/oracle-instantclient-sqlplus/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	25 May 2013 11:06:34 -0000	1.38
+++ ChangeLog	25 May 2013 11:11:27 -0000	1.39
@@ -1,6 +1,10 @@
 # ChangeLog for dev-db/oracle-instantclient-sqlplus
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/ChangeLog,v 1.38 2013/05/25 11:06:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/ChangeLog,v 1.39 2013/05/25 11:11:27 ago Exp $
+
+  25 May 2013; Agostino Sarubbo <ago@gentoo.org>
+  oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild:
+  Stable for x86, wrt bug #470348
 
   25 May 2013; Agostino Sarubbo <ago@gentoo.org>
   oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild:





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

end of thread, other threads:[~2013-05-25 11:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-25 11:11 [gentoo-commits] gentoo-x86 commit in dev-db/oracle-instantclient-sqlplus: oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-05-25 11:06 Agostino Sarubbo (ago)
2013-03-08 15:34 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