public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Aaron Swenson" <titanofold@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libpqxx/
Date: Thu, 10 Aug 2017 12:40:27 +0000 (UTC)	[thread overview]
Message-ID: <1502368808.0e5ca9aa1739831e140c68d090319e189d38977a.titanofold@gentoo> (raw)

commit:     0e5ca9aa1739831e140c68d090319e189d38977a
Author:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 10 12:40:08 2017 +0000
Commit:     Aaron Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Thu Aug 10 12:40:08 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e5ca9aa

dev-libs/libpqxx: Bump to 5.1.0

Fixes bug 626076 where newer version of sed are more strict about
character class syntax.

Last release to support pre-C++11 compilers.

Gentoo-Bug: 626076

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-libs/libpqxx/Manifest             |  1 +
 dev-libs/libpqxx/libpqxx-5.1.0.ebuild | 94 +++++++++++++++++++++++++++++++++++
 2 files changed, 95 insertions(+)

diff --git a/dev-libs/libpqxx/Manifest b/dev-libs/libpqxx/Manifest
index 78db94de1d9..1ddac126f29 100644
--- a/dev-libs/libpqxx/Manifest
+++ b/dev-libs/libpqxx/Manifest
@@ -1,2 +1,3 @@
 DIST libpqxx-4.0.1.tar.gz 1582532 SHA256 097ceda2797761ce517faa5bee186c883df1c407cb2aada613a16773afeedc38 SHA512 00204985097ef8bb0a3376d6ba541dbb471d7c52d7135f6244a9f4acbf6c8e5254d6f813e4411421e49bb56f4a520fc6ac67e300141d724396ce0ac11bd3a95e WHIRLPOOL d377863f9200e7ed235f8a2cf132b554efa4223d5f542eea23d743ffe391a13d44da767ee2f70146558e5b393ba334656c09007241c1aadde750c00c16e25c12
 DIST libpqxx-5.0.1.tar.gz 743560 SHA256 21ba7167aeeb76142c0e865127514b4834cefde45eaab2d5eb79099188e21a06 SHA512 a097a419301d45e8078af08eb4667b7ae06c91d8bb62d57d26e0f6df138eeea350d4ba672a96271f724b3de86f3dd1d57da81aee093835c4b08b2084e98720ef WHIRLPOOL ca447f769f01a876edae5fd05c9b42fb6c33c5684ba61e07b1055586f332310290d85f2dfea9ba4d537100d427b342afd3f75ba948def9b70dabc68ac926d28a
+DIST libpqxx-5.1.0.tar.gz 677998 SHA256 c94c8796e3e82f3dda8e8d39b767bc45e95e1cb6e32d03d7fbf71b3e3bd9edd5 SHA512 4e881bb509b36b6b48d18dddd0895ab6864ba0430630d3e1417036ff8ff0008b446467868f2672e0b49b46cc3a86c6a61a8a3e5c6b63e0bf422be3268d7f9702 WHIRLPOOL 270430f4428b9a4d61cf6c94b36de85c8c575c4712688542b771cdaa535f2147a458d859d66f08d3ef9b0f40bc68033dc90f1b5a8c925921707bad6eaebcb8eb

diff --git a/dev-libs/libpqxx/libpqxx-5.1.0.ebuild b/dev-libs/libpqxx/libpqxx-5.1.0.ebuild
new file mode 100644
index 00000000000..8ef0695ac56
--- /dev/null
+++ b/dev-libs/libpqxx/libpqxx-5.1.0.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python2_7 )
+inherit python-any-r1
+
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+
+DESCRIPTION="Standard front-end for writing C++ programs that use PostgreSQL"
+SRC_URI="https://github.com/jtv/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+HOMEPAGE="http://pqxx.org/development/libpqxx/"
+LICENSE="BSD"
+SLOT="0"
+IUSE="doc static-libs"
+
+RDEPEND="dev-db/postgresql:="
+DEPEND="${PYTHON_DEPS}
+		${RDEPEND}
+		doc? (
+			 app-doc/doxygen
+			 app-text/xmlto
+		)
+"
+
+DOCS=( AUTHORS NEWS README{.md,-UPGRADE} )
+
+src_prepare() {
+	default
+
+	sed -e 's/python/python2/' \
+		-i tools/{splitconfig,template2mak.py} \
+		|| die "Couldn't fix Python shebangs"
+}
+
+src_configure() {
+	econf \
+		--enable-shared \
+		$(use_enable doc documentation) \
+		$(use_enable static-libs static)	local myconf
+}
+
+src_install () {
+	use doc && HTML_DOCS=( doc/html/. )
+
+	default
+
+	if ! use static-libs; then
+		find "${D}" -name '*.la' -delete || die
+	fi
+}
+
+src_test() {
+	einfo "The tests need a running PostgreSQL server and an existing database."
+	einfo "Test requires PGDATABASE and PGUSER to be set at a minimum. Optionally,"
+	einfo "set PGPORT and PGHOST. Define them at the command line or in:"
+	einfo "    ${EROOT%/}/etc/libpqxx_test_env"
+
+	if [[ -z $PGDATABASE || -z $PGUSER ]] ; then
+		if [[ -f ${EROOT%/}/etc/libpqxx_test_env ]] ; then
+			source "${EROOT%/}/etc/libpqxx_test_env"
+			[[ -n $PGDATABASE ]] && export PGDATABASE
+			[[ -n $PGHOST ]] && export PGHOST
+			[[ -n $PGPORT ]] && export PGPORT
+			[[ -n $PGUSER ]] && export PGUSER
+		fi
+	fi
+
+	if [[ -n $PGDATABASE && -n $PGUSER ]] ; then
+		local server_version
+		server_version=$(psql -Aqtc 'SELECT version();' 2> /dev/null)
+		if [[ $? = 0 ]] ; then
+			# Currently works with highest server version in tree
+			#server_version=$(echo ${server_version} | cut -d " " -f 2 | cut -d "." -f -2 | tr -d .)
+			#if [[ $server_version < 92 ]] ; then
+				cd "${S}/test"
+				emake check
+			#else
+			#	eerror "Server version must be 8.4.x or below."
+			#	die "Server version isn't 8.4.x or below"
+			#fi
+		else
+			eerror "Is the server running?"
+			eerror "Verify role and database exist, and are permitted in pg_hba.conf for:"
+			eerror "    Role: ${PGUSER}"
+			eerror "    Database: ${PGDATABASE}"
+			die "Couldn't connect to server."
+		fi
+	else
+		eerror "PGDATABASE and PGUSER must be set to perform tests."
+		eerror "Skipping tests."
+	fi
+}


             reply	other threads:[~2017-08-10 12:40 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-10 12:40 Aaron Swenson [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-06-11 17:02 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libpqxx/ Andreas Sturmlechner
2024-06-11 17:02 Andreas Sturmlechner
2023-12-29  6:58 Arthur Zamarin
2023-05-18 15:41 Andreas Sturmlechner
2023-05-01  6:02 Arthur Zamarin
2023-05-01  4:15 Sam James
2023-05-01  2:27 Sam James
2023-05-01  2:26 Sam James
2023-04-30 23:50 Sam James
2023-04-30 16:44 Arthur Zamarin
2023-04-29 22:28 Andreas Sturmlechner
2022-07-03 12:01 Aaron W. Swenson
2022-07-03 10:52 Agostino Sarubbo
2022-07-03 10:50 Agostino Sarubbo
2022-07-03 10:48 Agostino Sarubbo
2022-07-02 16:24 Jakov Smolić
2022-07-02 16:24 Jakov Smolić
2022-06-09  1:20 Sam James
2022-06-09  1:20 Sam James
2022-06-09  1:20 Sam James
2021-03-03 10:52 Aaron W. Swenson
2021-01-04 15:32 Sam James
2020-12-27 12:28 Sergei Trofimovich
2020-12-27 11:38 Sergei Trofimovich
2020-12-26  0:08 Sam James
2020-12-18 14:58 Aaron W. Swenson
2020-11-23 11:33 Aaron W. Swenson
2020-09-24 10:24 Aaron W. Swenson
2020-09-20 20:21 Agostino Sarubbo
2020-09-13  8:44 Sergei Trofimovich
2020-09-13  8:38 Sergei Trofimovich
2020-09-13  8:30 Sergei Trofimovich
2020-07-30  4:27 Aaron W. Swenson
2019-08-05  9:49 Aaron W. Swenson
2019-07-31 12:09 Agostino Sarubbo
2019-07-26 21:32 Sergei Trofimovich
2019-07-26 10:43 Agostino Sarubbo
2019-07-26  9:53 Agostino Sarubbo
2019-07-26  8:38 Agostino Sarubbo
2019-07-25 18:31 Sergei Trofimovich
2019-07-24 20:49 Thomas Deutschmann
2019-06-23  9:58 Aaron W. Swenson
2018-05-15 20:01 Aaron Swenson
2018-03-20 22:44 Sergei Trofimovich
2018-03-18 20:09 Sergei Trofimovich
2018-03-03 12:14 Tobias Klausmann
2018-02-10 15:18 Sergei Trofimovich
2018-02-10  0:32 Thomas Deutschmann
2018-02-08 22:13 Sergei Trofimovich
2018-01-05 14:38 Aaron Swenson
2018-01-04 17:00 Mikle Kolyada
2017-12-29 17:41 Sergei Trofimovich
2017-12-25 18:29 Sergei Trofimovich
2017-12-25 11:01 Sergei Trofimovich
2017-12-15 15:15 Aaron Swenson
2017-09-17 19:59 Andreas Sturmlechner
2017-09-17 19:59 Andreas Sturmlechner
2017-08-10 18:35 Andreas Sturmlechner
2017-07-10 16:39 Aaron Swenson

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=1502368808.0e5ca9aa1739831e140c68d090319e189d38977a.titanofold@gentoo \
    --to=titanofold@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