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/libzdb/
Date: Sun,  3 Sep 2023 07:58:01 +0000 (UTC)	[thread overview]
Message-ID: <1693727810.c5c1d0d95c549c397864d6360541bf738a7cc02b.asturm@gentoo> (raw)

commit:     c5c1d0d95c549c397864d6360541bf738a7cc02b
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  3 07:26:58 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Sep  3 07:56:50 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5c1d0d9

dev-db/libzdb: drop 3.2.2

Closes: https://bugs.gentoo.org/913058
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-db/libzdb/Manifest            |  1 -
 dev-db/libzdb/libzdb-3.2.2.ebuild | 88 ---------------------------------------
 2 files changed, 89 deletions(-)

diff --git a/dev-db/libzdb/Manifest b/dev-db/libzdb/Manifest
index b5324e65a6c6..dccae33c1c34 100644
--- a/dev-db/libzdb/Manifest
+++ b/dev-db/libzdb/Manifest
@@ -1,2 +1 @@
-DIST libzdb-3.2.2.tar.gz 752292 BLAKE2B 449fe1cf9ac7196473ab45593d197ea9d02a91bb3b0efaaea91b3c95bb22de1ced68704835e542e092a9f507e8f2484a141e021721df84e818a18a36214f7c40 SHA512 1e732f8785322e0369de16a8100c9467e96ad1ca4eee31e8bfc349f4f17d4cc237a691addc060a66e1b46bcfeb99c3aed07b1d5dbe20e70fde4ffbf35dbea2eb
 DIST libzdb-3.2.3.tar.gz 771263 BLAKE2B a734dbee38ad175cd4d60afc7fe38c72318d5c74daf1556587997e592b2136d96fc747210aac4151764d8644a8b657a9364ffc1c7fcb133d8487f2585c12c22c SHA512 3cf0641a7aabf91fa9bc7ed93bce6fa3e692cad309086e3f899ede443ffdd84ed20dda38fbc48764733537cdc105ae7e555a23cf7bc9b8f99e233787e0271e29

diff --git a/dev-db/libzdb/libzdb-3.2.2.ebuild b/dev-db/libzdb/libzdb-3.2.2.ebuild
deleted file mode 100644
index 208df8a2959f..000000000000
--- a/dev-db/libzdb/libzdb-3.2.2.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="A thread safe high level multi-database connection pool library"
-HOMEPAGE="https://www.tildeslash.com/libzdb/"
-SRC_URI="https://www.tildeslash.com/${PN}/dist/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="debug doc mysql postgres +sqlite ssl static-libs"
-REQUIRED_USE=" || ( postgres mysql sqlite )"
-
-RESTRICT=test
-
-RDEPEND="mysql? ( dev-db/mysql-connector-c:0= )
-	postgres? ( dev-db/postgresql:* )
-	sqlite? ( >=dev-db/sqlite-3.7:3[unlock-notify(+)] )
-	ssl? ( dev-libs/openssl:0= )"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-	doc? ( app-doc/doxygen )"
-
-src_prepare() {
-	default
-	sed -i -e "s|&& ./pool||g" test/Makefile.in || die
-}
-
-src_configure() {
-	## TODO: check what --enable-optimized actually does
-	## TODO: find someone with oracle db to add oci8 support
-	myconf=""
-	# enable default hidden visibility
-	myconf="${myconf} --enable-protected"
-
-	if use sqlite; then
-		myconf="${myconf} --with-sqlite=${EPREFIX}/usr/ --enable-sqliteunlock"
-	else
-		myconf="${myconf} --without-sqlite"
-	fi
-
-	if use mysql; then
-		myconf="${myconf} --with-mysql=${EPREFIX}/usr/bin/mysql_config"
-	else
-		myconf="${myconf} --without-mysql"
-	fi
-
-	if use postgres; then
-		myconf="${myconf} --with-postgresql=${EPREFIX}/usr/bin/pg_config"
-	else
-		myconf="${myconf} --without-postgresql"
-	fi
-
-	econf \
-		$(use_enable debug profiling) \
-		$(use_enable static-libs static) \
-		$(use_enable ssl openssl) \
-		--without-oci \
-		${myconf}
-}
-
-src_compile() {
-	default
-	if use doc; then
-		emake doc
-	fi
-}
-
-src_install() {
-	default
-
-	# the --disable-static flag only skips .a
-	use static-libs || rm -f "${D}"/usr/lib*/libzdb.la
-
-	dodoc AUTHORS CHANGES README
-	if use doc;then
-		docinto html
-		dodoc -r "${S}/doc/api-docs"/*
-	fi
-}
-
-src_test() {
-	emake verify
-}


             reply	other threads:[~2023-09-03  7:58 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-03  7:58 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-17 19:47 [gentoo-commits] repo/gentoo:master commit in: dev-db/libzdb/ Thomas Raschbacher
2023-09-03  4:53 Sam James
2023-09-03  4:53 Sam James
2023-05-07  8:06 Thomas Raschbacher
2021-11-12  7:27 Jakov Smolić
2021-11-12  7:27 Jakov Smolić
2021-03-13  0:06 Thomas Raschbacher
2021-03-12 20:58 Thomas Raschbacher
2020-11-28 18:37 Aaron Bauman
2020-02-18 13:58 Sergei Trofimovich
2019-11-14  0:47 Aaron Bauman
2019-11-14  0:47 Aaron Bauman
2019-05-19 20:48 Mikle Kolyada
2019-05-16 23:56 Thomas Deutschmann
2019-02-08 17:24 Brian Evans
2019-01-07 17:00 Lars Wendler
2017-08-19  0:31 Thomas Deutschmann
2017-07-16  9:19 Tobias Klausmann
2016-11-03 16:19 Göktürk Yüksek
2016-01-19 21:38 Manuel Rüger

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=1693727810.c5c1d0d95c549c397864d6360541bf738a7cc02b.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