public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/ocp/
Date: Sun, 30 Jul 2017 10:26:02 +0000 (UTC)	[thread overview]
Message-ID: <1501410325.4206e6636d297eb834f8117d70ae89ac1ea00864.soap@gentoo> (raw)

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
+}


             reply	other threads:[~2017-07-30 10:26 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-30 10:26 David Seifert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2017-09-03  8:47 [gentoo-commits] repo/gentoo:master commit in: dev-db/ocp/ 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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1501410325.4206e6636d297eb834f8117d70ae89ac1ea00864.soap@gentoo \
    --to=soap@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox