diff options
author | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2019-10-04 10:39:11 +0100 |
---|---|---|
committer | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2019-10-04 10:39:11 +0100 |
commit | 6bd0ed3c9f348d0ba98fe111ba2ed0bf0c9d02cd (patch) | |
tree | 1e15bd7be98c8da6f6ee5e13435fd979b5027231 | |
parent | Remove cgicc (diff) | |
download | portage-6bd0ed3c9f348d0ba98fe111ba2ed0bf0c9d02cd.tar.bz2 portage-6bd0ed3c9f348d0ba98fe111ba2ed0bf0c9d02cd.tar.xz portage-6bd0ed3c9f348d0ba98fe111ba2ed0bf0c9d02cd.zip |
mysql_fdw bump
-rw-r--r-- | dev-db/postgresql-fdw-mysql/Manifest | 4 | ||||
-rw-r--r-- | dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.5.3.ebuild (renamed from dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.2.0-r1.ebuild) | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/dev-db/postgresql-fdw-mysql/Manifest b/dev-db/postgresql-fdw-mysql/Manifest index 4ffaa16..38a0829 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-r1.ebuild 592 BLAKE2B d6b33c57d39450b3b45a9c77f893863cda6f9443649ce3690aef1bbac97ab0013867a13fb5a31738efc96f3788071c098de56fbc01440e808b846cc3a5958927 SHA512 1c65d9ef97f3642e42ac05f2152661b68321de395a946c93b23c1950b078a0e6d8b6105ba6725ecac3d01c6a07edcf5d317f0ccaa0e2497ef1916209d4a8c3a2 +DIST REL-2_5_3.tar.gz 42804 BLAKE2B abefcaf890453ec842e80ace850b0faaf1468bda3717c50a4ef6e39324bc9c1a4a6997a6f057a33bfe4db313b84011ebc8a9e7b581678128676b57c6991ae58a SHA512 d9e74ac98003215d8a2e27e955c2d82faca6d1bf22884c9b3ed998fe88513d4a9003a8fe6e2eafb9d6df4e99a5a92db9612426afae27f1692d8807d478cfc912 EBUILD postgresql-fdw-mysql-2.5.1-r1.ebuild 592 BLAKE2B d6b33c57d39450b3b45a9c77f893863cda6f9443649ce3690aef1bbac97ab0013867a13fb5a31738efc96f3788071c098de56fbc01440e808b846cc3a5958927 SHA512 1c65d9ef97f3642e42ac05f2152661b68321de395a946c93b23c1950b078a0e6d8b6105ba6725ecac3d01c6a07edcf5d317f0ccaa0e2497ef1916209d4a8c3a2 +EBUILD postgresql-fdw-mysql-2.5.3.ebuild 588 BLAKE2B 064b8a52c6146ce3ae5517289142ce94a8d839c3b6bdcbd60ca443e95c320ee6d2957488f47e633b5834749ee5dbdae79d43d96d02462119d7af2ff2f6406259 SHA512 e0316048b05d961fe7112868dd68890c4fcb769a2c8d75e66afcb3fec80699668a534beae073f2a6ab4d6c8fb2d123d1e99952e1004c3dfca7da1544649d52e1 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.5.3.ebuild index 4ee6701..b2b81ca 100644 --- a/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.2.0-r1.ebuild +++ b/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.5.3.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=7 +EAPI=5 DESCRIPTION="PostgreSQL foreign data wrapper for MySQL" HOMEPAGE="https://github.com/EnterpriseDB/mysql_fdw" @@ -16,16 +16,16 @@ IUSE="" S="${WORKDIR}/mysql_fdw-REL-${PV//./_}" DEPEND=" - dev-db/mysql-connector-c + virtual/libmysqlclient >=dev-db/postgresql-9.4 " RDEPEND="${DEPEND}" src_compile() { - emake USE_PGXS=1 + make USE_PGXS=1 } src_install() { - emake USE_PGXS=1 install DESTDIR="${D}" + make USE_PGXS=1 install DESTDIR="${D}" } |