From f5facd36fda7a121e97e2601167993359b316fb0 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Tue, 27 Aug 2019 22:50:14 +0100 Subject: Remove use of libmysqlclient from postgresql-fdw-mysql --- dev-db/postgresql-fdw-mysql/Manifest | 4 +-- .../postgresql-fdw-mysql-2.2.0-r1.ebuild | 31 ++++++++++++++++++++++ .../postgresql-fdw-mysql-2.2.0.ebuild | 31 ---------------------- .../postgresql-fdw-mysql-2.5.1-r1.ebuild | 31 ++++++++++++++++++++++ .../postgresql-fdw-mysql-2.5.1.ebuild | 31 ---------------------- 5 files changed, 64 insertions(+), 64 deletions(-) create mode 100644 dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.2.0-r1.ebuild delete mode 100644 dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.2.0.ebuild create mode 100644 dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.5.1-r1.ebuild delete mode 100644 dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.5.1.ebuild (limited to 'dev-db') diff --git a/dev-db/postgresql-fdw-mysql/Manifest b/dev-db/postgresql-fdw-mysql/Manifest index 15490a9..4ffaa16 100644 --- a/dev-db/postgresql-fdw-mysql/Manifest +++ b/dev-db/postgresql-fdw-mysql/Manifest @@ -1,4 +1,4 @@ DIST REL-2_2_0.tar.gz 39615 BLAKE2B 5504776a45b75316261d3aace15b6695d20d8799b49cacbbe19ffd626327ca4ce0e577d166e304c25fad2f7fd3dfb2c47231ed058fc7fce79670974c8cb8f1fe SHA512 d8d9b646b2f411148956250fc3f4d3fa1ca7d634aa84c87df1f796136c877c4918f14bfb64776bab846a4705fb0b8d8c3df0e98db78270eee8cf71f6d96ee432 DIST REL-2_5_1.tar.gz 42615 BLAKE2B 54e7162a2740ee15bf060e443317d23954b9ed7809c782dc8953982fcbad815aa08876340e4c5085cbecab551116bd297b2894575f6d81633f1cae60b5d26d0d SHA512 a3b10f165b15ca4bfdefabb4f4d173b7fc94012278fb718737e18d6d7a5bcc1be6fb9e0f97626e0ab444e33f3b2426b35f7b9986c625c09977535d8e5fcb6951 -EBUILD postgresql-fdw-mysql-2.2.0.ebuild 588 BLAKE2B 064b8a52c6146ce3ae5517289142ce94a8d839c3b6bdcbd60ca443e95c320ee6d2957488f47e633b5834749ee5dbdae79d43d96d02462119d7af2ff2f6406259 SHA512 e0316048b05d961fe7112868dd68890c4fcb769a2c8d75e66afcb3fec80699668a534beae073f2a6ab4d6c8fb2d123d1e99952e1004c3dfca7da1544649d52e1 -EBUILD postgresql-fdw-mysql-2.5.1.ebuild 588 BLAKE2B 064b8a52c6146ce3ae5517289142ce94a8d839c3b6bdcbd60ca443e95c320ee6d2957488f47e633b5834749ee5dbdae79d43d96d02462119d7af2ff2f6406259 SHA512 e0316048b05d961fe7112868dd68890c4fcb769a2c8d75e66afcb3fec80699668a534beae073f2a6ab4d6c8fb2d123d1e99952e1004c3dfca7da1544649d52e1 +EBUILD postgresql-fdw-mysql-2.2.0-r1.ebuild 592 BLAKE2B d6b33c57d39450b3b45a9c77f893863cda6f9443649ce3690aef1bbac97ab0013867a13fb5a31738efc96f3788071c098de56fbc01440e808b846cc3a5958927 SHA512 1c65d9ef97f3642e42ac05f2152661b68321de395a946c93b23c1950b078a0e6d8b6105ba6725ecac3d01c6a07edcf5d317f0ccaa0e2497ef1916209d4a8c3a2 +EBUILD postgresql-fdw-mysql-2.5.1-r1.ebuild 592 BLAKE2B d6b33c57d39450b3b45a9c77f893863cda6f9443649ce3690aef1bbac97ab0013867a13fb5a31738efc96f3788071c098de56fbc01440e808b846cc3a5958927 SHA512 1c65d9ef97f3642e42ac05f2152661b68321de395a946c93b23c1950b078a0e6d8b6105ba6725ecac3d01c6a07edcf5d317f0ccaa0e2497ef1916209d4a8c3a2 diff --git a/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.2.0-r1.ebuild b/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.2.0-r1.ebuild new file mode 100644 index 0000000..4ee6701 --- /dev/null +++ b/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.2.0-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=7 + +DESCRIPTION="PostgreSQL foreign data wrapper for MySQL" +HOMEPAGE="https://github.com/EnterpriseDB/mysql_fdw" +SRC_URI="https://github.com/EnterpriseDB/mysql_fdw/archive/REL-${PV//./_}.tar.gz" + +LICENSE="mysql_fdw" +SLOT="0" +KEYWORDS="amd64" +IUSE="" + +S="${WORKDIR}/mysql_fdw-REL-${PV//./_}" + +DEPEND=" + dev-db/mysql-connector-c + >=dev-db/postgresql-9.4 + " +RDEPEND="${DEPEND}" + +src_compile() { + emake USE_PGXS=1 +} + +src_install() { + emake USE_PGXS=1 install DESTDIR="${D}" +} + diff --git a/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.2.0.ebuild b/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.2.0.ebuild deleted file mode 100644 index b2b81ca..0000000 --- a/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.2.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -DESCRIPTION="PostgreSQL foreign data wrapper for MySQL" -HOMEPAGE="https://github.com/EnterpriseDB/mysql_fdw" -SRC_URI="https://github.com/EnterpriseDB/mysql_fdw/archive/REL-${PV//./_}.tar.gz" - -LICENSE="mysql_fdw" -SLOT="0" -KEYWORDS="amd64" -IUSE="" - -S="${WORKDIR}/mysql_fdw-REL-${PV//./_}" - -DEPEND=" - virtual/libmysqlclient - >=dev-db/postgresql-9.4 - " -RDEPEND="${DEPEND}" - -src_compile() { - make USE_PGXS=1 -} - -src_install() { - make USE_PGXS=1 install DESTDIR="${D}" -} - diff --git a/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.5.1-r1.ebuild b/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.5.1-r1.ebuild new file mode 100644 index 0000000..4ee6701 --- /dev/null +++ b/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.5.1-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=7 + +DESCRIPTION="PostgreSQL foreign data wrapper for MySQL" +HOMEPAGE="https://github.com/EnterpriseDB/mysql_fdw" +SRC_URI="https://github.com/EnterpriseDB/mysql_fdw/archive/REL-${PV//./_}.tar.gz" + +LICENSE="mysql_fdw" +SLOT="0" +KEYWORDS="amd64" +IUSE="" + +S="${WORKDIR}/mysql_fdw-REL-${PV//./_}" + +DEPEND=" + dev-db/mysql-connector-c + >=dev-db/postgresql-9.4 + " +RDEPEND="${DEPEND}" + +src_compile() { + emake USE_PGXS=1 +} + +src_install() { + emake USE_PGXS=1 install DESTDIR="${D}" +} + diff --git a/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.5.1.ebuild b/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.5.1.ebuild deleted file mode 100644 index b2b81ca..0000000 --- a/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.5.1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -DESCRIPTION="PostgreSQL foreign data wrapper for MySQL" -HOMEPAGE="https://github.com/EnterpriseDB/mysql_fdw" -SRC_URI="https://github.com/EnterpriseDB/mysql_fdw/archive/REL-${PV//./_}.tar.gz" - -LICENSE="mysql_fdw" -SLOT="0" -KEYWORDS="amd64" -IUSE="" - -S="${WORKDIR}/mysql_fdw-REL-${PV//./_}" - -DEPEND=" - virtual/libmysqlclient - >=dev-db/postgresql-9.4 - " -RDEPEND="${DEPEND}" - -src_compile() { - make USE_PGXS=1 -} - -src_install() { - make USE_PGXS=1 install DESTDIR="${D}" -} - -- cgit v1.2.3