public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-db/ocp/
@ 2017-07-30 10:26 David Seifert
  0 siblings, 0 replies; 7+ messages in thread
From: David Seifert @ 2017-07-30 10:26 UTC (permalink / raw
  To: gentoo-commits

commit:     4206e6636d297eb834f8117d70ae89ac1ea00864
Author:     Max Satula <maksym.satula <AT> gmail <DOT> com>
AuthorDate: Thu Jul 27 19:46:24 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jul 30 10:25:25 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4206e663

dev-db/ocp: New package

ocp is a command line tool to download and upload files from/to Oracle
Database directories using Oracle SQL Net connection only

Package-Manager: Portage-2.3.2, Repoman-2.3.3
Closes: https://github.com/gentoo/gentoo/pull/5225

 dev-db/ocp/Manifest        |  1 +
 dev-db/ocp/metadata.xml    | 16 ++++++++++++++++
 dev-db/ocp/ocp-0.2.ebuild  | 41 +++++++++++++++++++++++++++++++++++++++++
 dev-db/ocp/ocp-9999.ebuild | 41 +++++++++++++++++++++++++++++++++++++++++
 4 files changed, 99 insertions(+)

diff --git a/dev-db/ocp/Manifest b/dev-db/ocp/Manifest
new file mode 100644
index 00000000000..88420d44ff6
--- /dev/null
+++ b/dev-db/ocp/Manifest
@@ -0,0 +1 @@
+DIST ocp-0.2.tar.gz 144968 SHA256 d6afd26d5342ecb8444a610e21822c926f1af8e3b65ec0d3c0f0bf8a35bde39a SHA512 0ff132a368a615c2a8e8ecb391da138ce9fd52d638de82e5a4d1c9ec3340b117c9c4d8f971ee86724664f93b4073b189407c3c19a0c22c961922145d30221c85 WHIRLPOOL a21b575e668336b62b2fae418faa28bfd80e6f187dbdac2e150a458985ff940289e24fcd556e5fc0f48c6dccce27549772b6594a095d2eff940dd458215a41d1

diff --git a/dev-db/ocp/metadata.xml b/dev-db/ocp/metadata.xml
new file mode 100644
index 00000000000..1d504426439
--- /dev/null
+++ b/dev-db/ocp/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>maksym.satula@gmail.com</email>
+		<name>Max Satula</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<upstream>
+		<bugs-to>https://github.com/maxsatula/ocp/issues</bugs-to>
+	</upstream>
+	<longdescription lang="en">A tool for downloading and uploading files from/to Oracle Database directories using Oracle SQL Net connection only</longdescription>
+</pkgmetadata>

diff --git a/dev-db/ocp/ocp-0.2.ebuild b/dev-db/ocp/ocp-0.2.ebuild
new file mode 100644
index 00000000000..3745af1f5a8
--- /dev/null
+++ b/dev-db/ocp/ocp-0.2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic
+
+DESCRIPTION="Oracle copy tool"
+HOMEPAGE="https://github.com/maxsatula/ocp"
+
+if [[ ${PV} == *9999 ]]; then
+	EGIT_REPO_URI="https://github.com/maxsatula/ocp.git"
+	EGIT_BRANCH="develop"
+	inherit git-r3 autotools
+else
+	SRC_URI="https://github.com/maxsatula/ocp/releases/download/v${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+	dev-db/oracle-instantclient-basic
+	dev-libs/popt
+	sys-libs/zlib"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+	default
+
+	if [[ ${PV} == *9999 ]] ; then
+		eautoreconf
+	fi
+}
+
+src_configure() {
+	append-ldflags $(no-as-needed)
+	default
+}

diff --git a/dev-db/ocp/ocp-9999.ebuild b/dev-db/ocp/ocp-9999.ebuild
new file mode 100644
index 00000000000..3745af1f5a8
--- /dev/null
+++ b/dev-db/ocp/ocp-9999.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic
+
+DESCRIPTION="Oracle copy tool"
+HOMEPAGE="https://github.com/maxsatula/ocp"
+
+if [[ ${PV} == *9999 ]]; then
+	EGIT_REPO_URI="https://github.com/maxsatula/ocp.git"
+	EGIT_BRANCH="develop"
+	inherit git-r3 autotools
+else
+	SRC_URI="https://github.com/maxsatula/ocp/releases/download/v${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+	dev-db/oracle-instantclient-basic
+	dev-libs/popt
+	sys-libs/zlib"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+	default
+
+	if [[ ${PV} == *9999 ]] ; then
+		eautoreconf
+	fi
+}
+
+src_configure() {
+	append-ldflags $(no-as-needed)
+	default
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-db/ocp/
@ 2017-09-03  8:47 Michał Górny
  0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2017-09-03  8:47 UTC (permalink / raw
  To: gentoo-commits

commit:     86d4b02075861aceeb1a382baa54ee95f6ec9d28
Author:     Max Satula <maksym.satula <AT> gmail <DOT> com>
AuthorDate: Thu Aug 31 01:52:49 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Sep  3 08:46:09 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86d4b020

dev-db/ocp: Remove no-as-needed flag after upstream fix in -9999

Closes: https://github.com/gentoo/gentoo/pull/5565
Package-Manager: Portage-2.3.2, Repoman-2.3.3

 dev-db/ocp/ocp-9999.ebuild | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/dev-db/ocp/ocp-9999.ebuild b/dev-db/ocp/ocp-9999.ebuild
index 3745af1f5a8..baab9a6071e 100644
--- a/dev-db/ocp/ocp-9999.ebuild
+++ b/dev-db/ocp/ocp-9999.ebuild
@@ -3,8 +3,6 @@
 
 EAPI=6
 
-inherit flag-o-matic
-
 DESCRIPTION="Oracle copy tool"
 HOMEPAGE="https://github.com/maxsatula/ocp"
 
@@ -34,8 +32,3 @@ src_prepare() {
 		eautoreconf
 	fi
 }
-
-src_configure() {
-	append-ldflags $(no-as-needed)
-	default
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-db/ocp/
@ 2019-02-09  9:52 Andreas Sturmlechner
  0 siblings, 0 replies; 7+ messages in thread
From: Andreas Sturmlechner @ 2019-02-09  9:52 UTC (permalink / raw
  To: gentoo-commits

commit:     c81f2f6103a468f1cc5f42f6b6f111f504050c7d
Author:     Max Satula <maksym.satula <AT> gmail <DOT> com>
AuthorDate: Sat Jan 12 20:42:16 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Feb  9 09:52:00 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c81f2f61

dev-db/ocp: bump to 0.3

Bump to EAPI=7

Replace a dependency on a transitional package `dev-db/oracle-instantclient-basic`
with a newer `dev-db/oracle-instantclient` package
https://bugs.gentoo.org/show_bug.cgi?id=524922#c12

Signed-off-by: Max Satula <maksym.satula <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/10814
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-db/ocp/Manifest                            | 1 +
 dev-db/ocp/{ocp-9999.ebuild => ocp-0.3.ebuild} | 8 +++++---
 dev-db/ocp/ocp-9999.ebuild                     | 8 +++++---
 3 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/dev-db/ocp/Manifest b/dev-db/ocp/Manifest
index 61b6d9a9a2f..ea45fabd60b 100644
--- a/dev-db/ocp/Manifest
+++ b/dev-db/ocp/Manifest
@@ -1 +1,2 @@
 DIST ocp-0.2.tar.gz 144968 BLAKE2B 495b2af182768a0c18b08350fb77b09964be52afd72f3ff610ed6a0a54905b116744c93c6261986ca48a0a0c56fd23fd2d15d1919f4c8a4ff8b55ebe532efa07 SHA512 0ff132a368a615c2a8e8ecb391da138ce9fd52d638de82e5a4d1c9ec3340b117c9c4d8f971ee86724664f93b4073b189407c3c19a0c22c961922145d30221c85
+DIST ocp-0.3.tar.gz 156447 BLAKE2B 0c7f8743fe4ae46c3b9d95847e39c51fd1b829af9e9a7e87f3b7a59ab146a89ccf0913bebc3b1c0ef985b0faf24152756dc73f243217e4d2dcf8013de342ed27 SHA512 1af862f21cc3572344d26b6765a93e4e9c8744e01d550a36647afbe690886717e3fb1d8264832563161d65d04c41fe183dd8b518320df959fd3aa4ebbe602d38

diff --git a/dev-db/ocp/ocp-9999.ebuild b/dev-db/ocp/ocp-0.3.ebuild
similarity index 86%
copy from dev-db/ocp/ocp-9999.ebuild
copy to dev-db/ocp/ocp-0.3.ebuild
index baab9a6071e..5c6591bf5df 100644
--- a/dev-db/ocp/ocp-9999.ebuild
+++ b/dev-db/ocp/ocp-0.3.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 DESCRIPTION="Oracle copy tool"
 HOMEPAGE="https://github.com/maxsatula/ocp"
@@ -20,10 +20,12 @@ SLOT="0"
 IUSE=""
 
 RDEPEND="
-	dev-db/oracle-instantclient-basic
+	dev-db/oracle-instantclient
 	dev-libs/popt
 	sys-libs/zlib"
-DEPEND="${RDEPEND}"
+DEPEND="
+	dev-db/oracle-instantclient[sdk]
+	${RDEPEND}"
 
 src_prepare() {
 	default

diff --git a/dev-db/ocp/ocp-9999.ebuild b/dev-db/ocp/ocp-9999.ebuild
index baab9a6071e..5c6591bf5df 100644
--- a/dev-db/ocp/ocp-9999.ebuild
+++ b/dev-db/ocp/ocp-9999.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 DESCRIPTION="Oracle copy tool"
 HOMEPAGE="https://github.com/maxsatula/ocp"
@@ -20,10 +20,12 @@ SLOT="0"
 IUSE=""
 
 RDEPEND="
-	dev-db/oracle-instantclient-basic
+	dev-db/oracle-instantclient
 	dev-libs/popt
 	sys-libs/zlib"
-DEPEND="${RDEPEND}"
+DEPEND="
+	dev-db/oracle-instantclient[sdk]
+	${RDEPEND}"
 
 src_prepare() {
 	default


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

* [gentoo-commits] repo/gentoo:master commit in: dev-db/ocp/
@ 2022-01-15 21:51 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2022-01-15 21:51 UTC (permalink / raw
  To: gentoo-commits

commit:     516ae59120b0656fb3c47e5a4631bef0cc7eef00
Author:     Marco Genasci <fedeliallalinea <AT> gmail <DOT> com>
AuthorDate: Fri Jan  7 12:46:11 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 15 21:50:19 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=516ae591

dev-db/ocp: changed old oracle-instantclient-basic dependency

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Marco Genasci <fedeliallalinea <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-db/ocp/{ocp-0.2.ebuild => ocp-0.2-r1.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-db/ocp/ocp-0.2.ebuild b/dev-db/ocp/ocp-0.2-r1.ebuild
similarity index 89%
rename from dev-db/ocp/ocp-0.2.ebuild
rename to dev-db/ocp/ocp-0.2-r1.ebuild
index 3745af1f5a87..f53cafed6893 100644
--- a/dev-db/ocp/ocp-0.2.ebuild
+++ b/dev-db/ocp/ocp-0.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -22,7 +22,7 @@ SLOT="0"
 IUSE=""
 
 RDEPEND="
-	dev-db/oracle-instantclient-basic
+	dev-db/oracle-instantclient[sdk]
 	dev-libs/popt
 	sys-libs/zlib"
 DEPEND="${RDEPEND}"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-db/ocp/
@ 2022-01-20 12:36 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2022-01-20 12:36 UTC (permalink / raw
  To: gentoo-commits

commit:     7f7653c57cf5f7d60c9d5c97c7d36887e3600f25
Author:     Marco Genasci <fedeliallalinea <AT> gmail <DOT> com>
AuthorDate: Thu Jan 20 06:42:16 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 20 12:31:13 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f7653c5

dev-db/ocp: fix AR direct call

Closes: https://bugs.gentoo.org/831291
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Marco Genasci <fedeliallalinea <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/23879
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-db/ocp/ocp-0.3.ebuild  | 11 ++++++++---
 dev-db/ocp/ocp-9999.ebuild | 11 ++++++++---
 2 files changed, 16 insertions(+), 6 deletions(-)

diff --git a/dev-db/ocp/ocp-0.3.ebuild b/dev-db/ocp/ocp-0.3.ebuild
index 5c6591bf5df3..47e7110d55b1 100644
--- a/dev-db/ocp/ocp-0.3.ebuild
+++ b/dev-db/ocp/ocp-0.3.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 DESCRIPTION="Oracle copy tool"
 HOMEPAGE="https://github.com/maxsatula/ocp"
@@ -9,10 +9,11 @@ HOMEPAGE="https://github.com/maxsatula/ocp"
 if [[ ${PV} == *9999 ]]; then
 	EGIT_REPO_URI="https://github.com/maxsatula/ocp.git"
 	EGIT_BRANCH="develop"
-	inherit git-r3 autotools
+	inherit git-r3 autotools toolchain-funcs
 else
 	SRC_URI="https://github.com/maxsatula/ocp/releases/download/v${PV}/${P}.tar.gz"
 	KEYWORDS="~amd64 ~x86"
+	inherit toolchain-funcs
 fi
 
 LICENSE="GPL-2"
@@ -27,6 +28,10 @@ DEPEND="
 	dev-db/oracle-instantclient[sdk]
 	${RDEPEND}"
 
+src_compile() {
+	emake AR="$(tc-getAR)"
+}
+
 src_prepare() {
 	default
 

diff --git a/dev-db/ocp/ocp-9999.ebuild b/dev-db/ocp/ocp-9999.ebuild
index 5c6591bf5df3..47e7110d55b1 100644
--- a/dev-db/ocp/ocp-9999.ebuild
+++ b/dev-db/ocp/ocp-9999.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 DESCRIPTION="Oracle copy tool"
 HOMEPAGE="https://github.com/maxsatula/ocp"
@@ -9,10 +9,11 @@ HOMEPAGE="https://github.com/maxsatula/ocp"
 if [[ ${PV} == *9999 ]]; then
 	EGIT_REPO_URI="https://github.com/maxsatula/ocp.git"
 	EGIT_BRANCH="develop"
-	inherit git-r3 autotools
+	inherit git-r3 autotools toolchain-funcs
 else
 	SRC_URI="https://github.com/maxsatula/ocp/releases/download/v${PV}/${P}.tar.gz"
 	KEYWORDS="~amd64 ~x86"
+	inherit toolchain-funcs
 fi
 
 LICENSE="GPL-2"
@@ -27,6 +28,10 @@ DEPEND="
 	dev-db/oracle-instantclient[sdk]
 	${RDEPEND}"
 
+src_compile() {
+	emake AR="$(tc-getAR)"
+}
+
 src_prepare() {
 	default
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-db/ocp/
@ 2022-01-20 15:21 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2022-01-20 15:21 UTC (permalink / raw
  To: gentoo-commits

commit:     ffbe6ac5b5d4ccc29993e3d7ae68625afbf871df
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 20 15:21:41 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 20 15:21:41 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffbe6ac5

dev-db/ocp: move common inherit out

Bug: https://bugs.gentoo.org/831291
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-db/ocp/ocp-0.3.ebuild  | 5 +++--
 dev-db/ocp/ocp-9999.ebuild | 5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/dev-db/ocp/ocp-0.3.ebuild b/dev-db/ocp/ocp-0.3.ebuild
index 47e7110d55b1..baeb53e6decb 100644
--- a/dev-db/ocp/ocp-0.3.ebuild
+++ b/dev-db/ocp/ocp-0.3.ebuild
@@ -6,14 +6,15 @@ EAPI=8
 DESCRIPTION="Oracle copy tool"
 HOMEPAGE="https://github.com/maxsatula/ocp"
 
+inherit toolchain-funcs
+
 if [[ ${PV} == *9999 ]]; then
 	EGIT_REPO_URI="https://github.com/maxsatula/ocp.git"
 	EGIT_BRANCH="develop"
-	inherit git-r3 autotools toolchain-funcs
+	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/maxsatula/ocp/releases/download/v${PV}/${P}.tar.gz"
 	KEYWORDS="~amd64 ~x86"
-	inherit toolchain-funcs
 fi
 
 LICENSE="GPL-2"

diff --git a/dev-db/ocp/ocp-9999.ebuild b/dev-db/ocp/ocp-9999.ebuild
index 47e7110d55b1..baeb53e6decb 100644
--- a/dev-db/ocp/ocp-9999.ebuild
+++ b/dev-db/ocp/ocp-9999.ebuild
@@ -6,14 +6,15 @@ EAPI=8
 DESCRIPTION="Oracle copy tool"
 HOMEPAGE="https://github.com/maxsatula/ocp"
 
+inherit toolchain-funcs
+
 if [[ ${PV} == *9999 ]]; then
 	EGIT_REPO_URI="https://github.com/maxsatula/ocp.git"
 	EGIT_BRANCH="develop"
-	inherit git-r3 autotools toolchain-funcs
+	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/maxsatula/ocp/releases/download/v${PV}/${P}.tar.gz"
 	KEYWORDS="~amd64 ~x86"
-	inherit toolchain-funcs
 fi
 
 LICENSE="GPL-2"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-db/ocp/
@ 2022-08-19  5:56 Andreas Sturmlechner
  0 siblings, 0 replies; 7+ messages in thread
From: Andreas Sturmlechner @ 2022-08-19  5:56 UTC (permalink / raw
  To: gentoo-commits

commit:     2bd7d6ebe6fc06e70e6179bfc4fac05c7aacd9c4
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 16 21:34:08 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Aug 19 05:56:01 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bd7d6eb

dev-db/ocp: drop 0.2-r1, EAPI-6--

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-db/ocp/Manifest          |  1 -
 dev-db/ocp/ocp-0.2-r1.ebuild | 41 -----------------------------------------
 2 files changed, 42 deletions(-)

diff --git a/dev-db/ocp/Manifest b/dev-db/ocp/Manifest
index ea45fabd60b9..7ce94fa57a9d 100644
--- a/dev-db/ocp/Manifest
+++ b/dev-db/ocp/Manifest
@@ -1,2 +1 @@
-DIST ocp-0.2.tar.gz 144968 BLAKE2B 495b2af182768a0c18b08350fb77b09964be52afd72f3ff610ed6a0a54905b116744c93c6261986ca48a0a0c56fd23fd2d15d1919f4c8a4ff8b55ebe532efa07 SHA512 0ff132a368a615c2a8e8ecb391da138ce9fd52d638de82e5a4d1c9ec3340b117c9c4d8f971ee86724664f93b4073b189407c3c19a0c22c961922145d30221c85
 DIST ocp-0.3.tar.gz 156447 BLAKE2B 0c7f8743fe4ae46c3b9d95847e39c51fd1b829af9e9a7e87f3b7a59ab146a89ccf0913bebc3b1c0ef985b0faf24152756dc73f243217e4d2dcf8013de342ed27 SHA512 1af862f21cc3572344d26b6765a93e4e9c8744e01d550a36647afbe690886717e3fb1d8264832563161d65d04c41fe183dd8b518320df959fd3aa4ebbe602d38

diff --git a/dev-db/ocp/ocp-0.2-r1.ebuild b/dev-db/ocp/ocp-0.2-r1.ebuild
deleted file mode 100644
index f53cafed6893..000000000000
--- a/dev-db/ocp/ocp-0.2-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit flag-o-matic
-
-DESCRIPTION="Oracle copy tool"
-HOMEPAGE="https://github.com/maxsatula/ocp"
-
-if [[ ${PV} == *9999 ]]; then
-	EGIT_REPO_URI="https://github.com/maxsatula/ocp.git"
-	EGIT_BRANCH="develop"
-	inherit git-r3 autotools
-else
-	SRC_URI="https://github.com/maxsatula/ocp/releases/download/v${PV}/${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-	dev-db/oracle-instantclient[sdk]
-	dev-libs/popt
-	sys-libs/zlib"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-	default
-
-	if [[ ${PV} == *9999 ]] ; then
-		eautoreconf
-	fi
-}
-
-src_configure() {
-	append-ldflags $(no-as-needed)
-	default
-}


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

end of thread, other threads:[~2022-08-19  5:56 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-30 10:26 [gentoo-commits] repo/gentoo:master commit in: dev-db/ocp/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2017-09-03  8:47 Michał Górny
2019-02-09  9:52 Andreas Sturmlechner
2022-01-15 21:51 Sam James
2022-01-20 12:36 Sam James
2022-01-20 15:21 Sam James
2022-08-19  5:56 Andreas Sturmlechner

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