summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-db/pglogical/Manifest7
-rw-r--r--dev-db/pglogical/files/32bit.patch72
-rw-r--r--dev-db/pglogical/pglogical-1.2.1.ebuild30
-rw-r--r--dev-db/pglogical/pglogical-1.2.2.ebuild30
-rw-r--r--dev-db/pglogical/pglogical-2.0.1.ebuild26
5 files changed, 0 insertions, 165 deletions
diff --git a/dev-db/pglogical/Manifest b/dev-db/pglogical/Manifest
deleted file mode 100644
index 9e94a96..0000000
--- a/dev-db/pglogical/Manifest
+++ /dev/null
@@ -1,7 +0,0 @@
-AUX 32bit.patch 3217 BLAKE2B d319ed65bc3721273c8352d16a3f14ce23b54fec6d33bb22cc12b94b3f025a4e660a0b88393d9e97f8803d115651b3600b327e5616d802e6f5af523ec35dc733 SHA512 87a77b97a827adac2f54961b3a7cbf2c89aa5987dbc2d2eee676eb7fe37ca7eba811df43f6738ba24f4128b1a4b90c8094846e7b6d670a6f8436a83d9ef51ebf
-DIST pglogical-1.2.1.tar.gz 206658 BLAKE2B 872ef3fbb8846fbb9d8505110876ad0b91a2c6e2cf99486678f7fc259607400932acae5d9d65b317bb1e0243736b1ddab75ab159ed32581f41acb338a63cc7a2 SHA512 9fded00d1fce0df86b8cb2d57b03555fa4fa0752b335f50e4a7fab664ab99a803080695a797d60e5efedf705a5302dfc81fec2f3a6618930e680d37892405bd2
-DIST pglogical-1.2.2.tar.gz 207049 BLAKE2B acba5e18b08c1653a05f15036014c0a7153aa37787dda7476677e8a20e2e5518dcbeede55e4684db71580ff74082efa1618eac56aa34ce528a9a10c905814053 SHA512 fbef69f2104d8cecf629f43d0cd7221679adfe142f9eb20b886cc22533469469b6e9eb64007774a6b923f865a50ab5eb4573e956c87bbf2a9764e37242431379
-DIST pglogical-2.0.1.tar.gz 227229 BLAKE2B c8eabe62c7d660148a770b96be70941ad30db8b193b36af6f51c31a88a450933a3dec02ea913f89a7eaa103834110d4e92de53ef447f69e09288c6dcd369c13d SHA512 ed645dd8e2e5119369a9873d71af36e9ea5b16a7ca0638222ea9bb0980bd3b5b63a104c4442ee286f13677cdcc4abb21446b99cb4e939ea4a2a19e03ddc57ce4
-EBUILD pglogical-1.2.1.ebuild 621 BLAKE2B 4eab34c7dc7f328842a791bb5adcc035ce4e8076674ba8f5c59896e343247c1389a027e4d0fc741ae2968852fe9bb2edb17c86748ffcc326853b939dbd756e44 SHA512 1b49f4ab0a6aa1a56d09fe6274f22c022ef04f7f2e107c15fb3b73ed93fc5bb25bfcd20a2ec0707858dd0694bd35d7c5079da6ec8a69fd6181b8ea1449466160
-EBUILD pglogical-1.2.2.ebuild 621 BLAKE2B 4eab34c7dc7f328842a791bb5adcc035ce4e8076674ba8f5c59896e343247c1389a027e4d0fc741ae2968852fe9bb2edb17c86748ffcc326853b939dbd756e44 SHA512 1b49f4ab0a6aa1a56d09fe6274f22c022ef04f7f2e107c15fb3b73ed93fc5bb25bfcd20a2ec0707858dd0694bd35d7c5079da6ec8a69fd6181b8ea1449466160
-EBUILD pglogical-2.0.1.ebuild 565 BLAKE2B 9d62424a4bb10613a1d9bdb64fd3c44e7cc9e6bb0b47fcdf12fe0f7343046c72c8856906262d218ab05dcb305adb596109858f51a76e7e5bf2a2c32a7c29038b SHA512 0ef645463d0141aeaa556b50454d2baed4ba6fedaf51b7bd220db83930cd7f30ecc64e2308552c1f79422809045814f7fc4f90c4d48c9f26a56ba9bd923c9028
diff --git a/dev-db/pglogical/files/32bit.patch b/dev-db/pglogical/files/32bit.patch
deleted file mode 100644
index 22bf335..0000000
--- a/dev-db/pglogical/files/32bit.patch
+++ /dev/null
@@ -1,72 +0,0 @@
-From f0df3fb519835c7b5893fdf3a6583e0aa859f38d Mon Sep 17 00:00:00 2001
-From: Dan Goodliffe <dan@randomdan.homeip.net>
-Date: Mon, 19 Dec 2016 16:14:27 +0000
-Subject: [PATCH] Fix elog format string for 32bit architectures
-
----
- pglogical_manager.c | 2 +-
- pglogical_worker.c | 10 +++++-----
- 2 files changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/pglogical_manager.c b/pglogical_manager.c
-index 6de68ad..74e8356 100644
---- a/pglogical_manager.c
-+++ b/pglogical_manager.c
-@@ -156,7 +156,7 @@ manage_apply_workers(void)
- /* Cleanup old info about crashed apply workers. */
- if (worker && worker->crashed_at != 0)
- {
-- elog(DEBUG2, "cleaning pglogical worker slot %ld",
-+ elog(DEBUG2, "cleaning pglogical worker slot %zu",
- (worker - &PGLogicalCtx->workers[0]));
- worker->worker_type = PGLOGICAL_WORKER_NONE;
- worker->crashed_at = 0;
-diff --git a/pglogical_worker.c b/pglogical_worker.c
-index 040b515..d9cc7da 100644
---- a/pglogical_worker.c
-+++ b/pglogical_worker.c
-@@ -203,7 +203,7 @@ wait_for_worker_startup(PGLogicalWorker *worker,
-
- if (status == BGWH_STARTED && pglogical_worker_running(worker))
- {
-- elog(DEBUG2, "%s worker at slot %ld started with pid %d and attached to shmem",
-+ elog(DEBUG2, "%s worker at slot %zu started with pid %d and attached to shmem",
- pglogical_worker_type_name(worker->worker_type), (worker - &PGLogicalCtx->workers[0]), pid);
- break;
- }
-@@ -241,7 +241,7 @@ wait_for_worker_startup(PGLogicalWorker *worker,
- * attaching to shmem so it didn't set crashed_at. Mark it
- * crashed so the slot can be re-used.
- */
-- elog(DEBUG2, "%s worker at slot %ld exited prematurely",
-+ elog(DEBUG2, "%s worker at slot %zu exited prematurely",
- pglogical_worker_type_name(worker->worker_type), (worker - &PGLogicalCtx->workers[0]));
- worker->crashed_at = GetCurrentTimestamp();
- }
-@@ -252,7 +252,7 @@ wait_for_worker_startup(PGLogicalWorker *worker,
- * replaced. Either way, we don't care, we're only looking for crashes before
- * shmem attach.
- */
-- elog(DEBUG2, "%s worker at slot %ld exited before we noticed it started",
-+ elog(DEBUG2, "%s worker at slot %zu exited before we noticed it started",
- pglogical_worker_type_name(worker->worker_type), (worker - &PGLogicalCtx->workers[0]));
- }
- break;
-@@ -336,7 +336,7 @@ pglogical_worker_detach(bool crash)
- Assert(MyPGLogicalWorker->generation == MyPGLogicalWorkerGeneration);
- MyPGLogicalWorker->proc = NULL;
-
-- elog(LOG, "%s worker [%d] at slot %ld generation %hu %s",
-+ elog(LOG, "%s worker [%d] at slot %zu generation %hu %s",
- pglogical_worker_type_name(MyPGLogicalWorker->worker_type),
- MyProcPid, MyPGLogicalWorker - &PGLogicalCtx->workers[0],
- MyPGLogicalWorkerGeneration,
-@@ -506,7 +506,7 @@ pglogical_worker_kill(PGLogicalWorker *worker)
- Assert(LWLockHeldByMe(PGLogicalCtx->lock));
- if (pglogical_worker_running(worker))
- {
-- elog(DEBUG2, "killing pglogical %s worker [%d] at slot %ld",
-+ elog(DEBUG2, "killing pglogical %s worker [%d] at slot %zu",
- pglogical_worker_type_name(worker->worker_type),
- worker->proc->pid, (worker - &PGLogicalCtx->workers[0]));
- kill(worker->proc->pid, SIGTERM);
diff --git a/dev-db/pglogical/pglogical-1.2.1.ebuild b/dev-db/pglogical/pglogical-1.2.1.ebuild
deleted file mode 100644
index ca7be1b..0000000
--- a/dev-db/pglogical/pglogical-1.2.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="Logical Replication extension for PostgreSQL 9.4, 9.5 and 9.6 (Postgres)"
-HOMEPAGE="https://github.com/2ndQuadrant/pglogical"
-SRC_URI="https://github.com/2ndQuadrant/${PN}/archive/REL${PV//./_}.tar.gz -> ${P}.tar.gz"
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="=dev-db/postgresql-9.6*[server,static-libs]"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}-REL${PV//./_}/"
-
-src_prepare() {
- epatch ${FILESDIR}/32bit.patch
-}
-
-src_compile() {
- emake USE_PGXS=1
-}
-
diff --git a/dev-db/pglogical/pglogical-1.2.2.ebuild b/dev-db/pglogical/pglogical-1.2.2.ebuild
deleted file mode 100644
index ca7be1b..0000000
--- a/dev-db/pglogical/pglogical-1.2.2.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="Logical Replication extension for PostgreSQL 9.4, 9.5 and 9.6 (Postgres)"
-HOMEPAGE="https://github.com/2ndQuadrant/pglogical"
-SRC_URI="https://github.com/2ndQuadrant/${PN}/archive/REL${PV//./_}.tar.gz -> ${P}.tar.gz"
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="=dev-db/postgresql-9.6*[server,static-libs]"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}-REL${PV//./_}/"
-
-src_prepare() {
- epatch ${FILESDIR}/32bit.patch
-}
-
-src_compile() {
- emake USE_PGXS=1
-}
-
diff --git a/dev-db/pglogical/pglogical-2.0.1.ebuild b/dev-db/pglogical/pglogical-2.0.1.ebuild
deleted file mode 100644
index b48d7ec..0000000
--- a/dev-db/pglogical/pglogical-2.0.1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="Logical Replication extension for PostgreSQL 9.4, 9.5 and 9.6 (Postgres)"
-HOMEPAGE="https://github.com/2ndQuadrant/pglogical"
-SRC_URI="https://github.com/2ndQuadrant/${PN}/archive/REL${PV//./_}.tar.gz -> ${P}.tar.gz"
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="=dev-db/postgresql-9.6*[server,static-libs]"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}-REL${PV//./_}/"
-
-src_compile() {
- emake USE_PGXS=1
-}
-