public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/tora/
Date: Thu, 28 Dec 2017 10:17:44 +0000 (UTC)	[thread overview]
Message-ID: <1514456249.2591ec4c9f7ad173c32d2bff9c46ddd7eec89203.asturm@gentoo> (raw)

commit:     2591ec4c9f7ad173c32d2bff9c46ddd7eec89203
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 28 10:03:33 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Dec 28 10:17:29 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2591ec4c

dev-db/tora: Drop old

Closes: https://bugs.gentoo.org/577850
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-db/tora/Manifest                         |  1 -
 dev-db/tora/tora-3.0.0_pre20140929-r2.ebuild | 84 ----------------------------
 2 files changed, 85 deletions(-)

diff --git a/dev-db/tora/Manifest b/dev-db/tora/Manifest
index f0cbf8f7ce1..282b353face 100644
--- a/dev-db/tora/Manifest
+++ b/dev-db/tora/Manifest
@@ -1,2 +1 @@
-DIST tora-3.0.0_pre20140929.tar.xz 9038680 BLAKE2B 93dc168c78ddf6f016a70e974dfade020bbbbed7fb628c6c7a3600e7cb95122067bf84be8bf99afebc58a735daa47694df757aaa86cdce717a31f504bce302d1 SHA512 42bc76d8bbed8a5cfee447ea6dec9966a31ef740d3ab58078ecdfc12f725cc94568fbb96d044668ae5fd83def5ab35823df6dee77b630e7903edfd1521b87b73
 DIST tora-3.2.tar.gz 12762547 BLAKE2B 9e52013cc4122a8c6278392fd2251bad941fa48dbbc6e3c72a98bb2bad173d0262877afc44eca689c3110f69883c246441844f7884e309e000f1068b23c6b918 SHA512 005f9bc42a7c7ee9676ad60cdcb7b8fb9862a8ff0be9ffeb7911d96da7f233553b68e4089d23161871b479702ae8a8dc8bc63bd8d9aa75677bdd6c166ce86f7a

diff --git a/dev-db/tora/tora-3.0.0_pre20140929-r2.ebuild b/dev-db/tora/tora-3.0.0_pre20140929-r2.ebuild
deleted file mode 100644
index fdd5149bda7..00000000000
--- a/dev-db/tora/tora-3.0.0_pre20140929-r2.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils eutils
-
-if [[ ${PV} == 9999 ]]; then
-	ESVN_REPO_URI="https://svn.code.sf.net/p/tora/code/trunk/tora"
-	inherit subversion
-	SRC_URI=""
-else
-	SRC_URI="https://dev.gentoo.org/~pinkbyte/distfiles/snapshots/${P}.tar.xz"
-fi
-
-DESCRIPTION="TOra - Toolkit For Oracle"
-HOMEPAGE="http://torasql.com/"
-IUSE="debug mysql postgres"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-	dev-libs/ferrisloki
-	x11-libs/qscintilla:=[qt4(-)]
-	dev-qt/qtgui:4
-	dev-qt/qtsql:4[mysql?,postgres?]
-	dev-qt/qtxmlpatterns:4
-	=dev-db/oracle-instantclient-basic-11*
-	postgres? ( dev-db/postgresql:* )
-"
-DEPEND="
-	virtual/pkgconfig
-	${RDEPEND}
-"
-
-pkg_setup() {
-	if [ -z "$ORACLE_HOME" ] ; then
-		eerror "ORACLE_HOME variable is not set."
-		eerror
-		eerror "You must install Oracle >= 8i client for Linux in"
-		eerror "order to compile TOra with Oracle support."
-		eerror
-		eerror "You can download the Oracle software from"
-		eerror "http://otn.oracle.com/software/content.html"
-		die
-	fi
-}
-
-src_prepare() {
-	sed -i \
-		-e "/COPYING/ d" \
-		CMakeLists.txt || die "Removal of COPYING file failed"
-	# bug 547520
-	grep -rlZ '$$ORIGIN' . | xargs -0 sed -i 's|:$$ORIGIN[^:"]*||' || \
-		die 'Removal of $$ORIGIN failed'
-}
-
-src_configure() {
-	local mycmakeargs=()
-	mycmakeargs=(-DENABLE_ORACLE=ON)
-	mycmakeargs+=(
-		-DWANT_RPM=OFF
-		-DWANT_BUNDLE=OFF
-		-DWANT_BUNDLE_STANDALONE=OFF
-		-DWANT_INTERNAL_QSCINTILLA=OFF
-		-DWANT_INTERNAL_LOKI=OFF
-		-DLOKI_LIBRARY="$(pkg-config --variable=libdir ferrisloki)/libferrisloki.so"
-		-DLOKI_INCLUDE_DIR="$(pkg-config --variable=includedir ferrisloki)/FerrisLoki"
-		$(cmake-utils_use_enable postgres PGSQL)
-		$(cmake-utils_use_want debug)
-		# path variables
-		-DTORA_DOC_DIR=share/doc/${PF}
-	)
-	cmake-utils_src_configure
-}
-
-src_install() {
-	cmake-utils_src_install
-	#
-	doicon src/icons/${PN}.xpm || die
-	domenu src/${PN}.desktop || die
-}


             reply	other threads:[~2017-12-28 10:17 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-28 10:17 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-07-02 20:56 [gentoo-commits] repo/gentoo:master commit in: dev-db/tora/ Sam James
2022-07-02 20:40 David Seifert
2022-07-02 20:40 David Seifert
2022-07-02 20:40 David Seifert
2021-04-23  6:53 Michael Haubenwallner
2021-04-23  6:53 Michael Haubenwallner
2020-11-22  9:36 Andreas Sturmlechner
2018-07-02 15:57 Andreas Sturmlechner
2018-07-02 15:57 Andreas Sturmlechner
2018-07-02 15:57 Andreas Sturmlechner
2017-12-28 10:17 Andreas Sturmlechner
2016-12-22 18:26 David Seifert

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=1514456249.2591ec4c9f7ad173c32d2bff9c46ddd7eec89203.asturm@gentoo \
    --to=asturm@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