* [gentoo-commits] repo/gentoo:master commit in: dev-db/pglogical/
@ 2022-03-12 17:54 Alexey Shvetsov
0 siblings, 0 replies; 5+ messages in thread
From: Alexey Shvetsov @ 2022-03-12 17:54 UTC (permalink / raw
To: gentoo-commits
commit: cd737a0f0bcf377b3b36294b05343541ad60d6eb
Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 12 17:54:18 2022 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Sat Mar 12 17:54:32 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd737a0f
dev-db/pglogical: Initial import
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>
dev-db/pglogical/Manifest | 1 +
dev-db/pglogical/metadata.xml | 11 +++++++++++
dev-db/pglogical/pglogical-2.4.1.ebuild | 33 +++++++++++++++++++++++++++++++++
3 files changed, 45 insertions(+)
diff --git a/dev-db/pglogical/Manifest b/dev-db/pglogical/Manifest
new file mode 100644
index 000000000000..e276cb38f5fe
--- /dev/null
+++ b/dev-db/pglogical/Manifest
@@ -0,0 +1 @@
+DIST REL2_4_1.tar.gz 277428 BLAKE2B 51319e3b1491e1857e63e63640f2e6d2315ab72a0aabcfe7869456822a294bdb53fd0f4cc9bca0c60bfcf9e0926249acad86f09327c5656735b508851037ccaf SHA512 0d673e1a2b696e2cfbb94d8350bb15c280947f69b6512aa80f8ef7497e30cbd407a01b9a4f8fa9844b4ccb39377a6b2bee390a7887f3050074c2e6a11e6f3e3f
diff --git a/dev-db/pglogical/metadata.xml b/dev-db/pglogical/metadata.xml
new file mode 100644
index 000000000000..f94345495aef
--- /dev/null
+++ b/dev-db/pglogical/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>alexxy@gentoo.org</email>
+ <name>Alexey Shvetsov</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">2ndQuadrant/pglogical</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-db/pglogical/pglogical-2.4.1.ebuild b/dev-db/pglogical/pglogical-2.4.1.ebuild
new file mode 100644
index 000000000000..d886bbb793cf
--- /dev/null
+++ b/dev-db/pglogical/pglogical-2.4.1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+POSTGRES_COMPAT=( 9.6 {10..14} )
+
+inherit postgres-multi
+
+MY_PV=$(ver_rs 1- '_')
+MY_P="${PN}-${MY_PV}"
+S="${WORKDIR}/${PN}-REL${MY_PV}"
+
+DESCRIPTION="Logical replication for PostgreSQL"
+HOMEPAGE="https://www.2ndquadrant.com/en/resources/pglogical/"
+SRC_URI="https://github.com/2ndQuadrant/pglogical/archive/REL${MY_PV}.tar.gz"
+
+LICENSE="POSTGRESQL"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="${POSTGRES_DEP}"
+RDEPEND="${DEPEND}"
+
+src_compile() {
+ postgres-multi_foreach emake USE_PGXS=1 || die "emake failed"
+}
+
+src_install() {
+ postgres-multi_foreach emake DESTDIR="${D}" USE_PGXS=1 install
+ postgres-multi_foreach dobin pglogical_create_subscriber
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-db/pglogical/
@ 2024-01-19 14:05 罗百科
0 siblings, 0 replies; 5+ messages in thread
From: 罗百科 @ 2024-01-19 14:05 UTC (permalink / raw
To: gentoo-commits
commit: a7c3ba6bbccc7d6d881d7562d771c5bfed3a8b94
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 19 13:57:25 2024 +0000
Commit: 罗百科 <patrick <AT> gentoo <DOT> org>
CommitDate: Fri Jan 19 14:05:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7c3ba6b
dev-db/pglogical: Remove empty IUSE
Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>
dev-db/pglogical/pglogical-2.4.1.ebuild | 3 +--
dev-db/pglogical/pglogical-2.4.4.ebuild | 1 -
2 files changed, 1 insertion(+), 3 deletions(-)
diff --git a/dev-db/pglogical/pglogical-2.4.1.ebuild b/dev-db/pglogical/pglogical-2.4.1.ebuild
index d886bbb793cf..75619daafadd 100644
--- a/dev-db/pglogical/pglogical-2.4.1.ebuild
+++ b/dev-db/pglogical/pglogical-2.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
@@ -18,7 +18,6 @@ SRC_URI="https://github.com/2ndQuadrant/pglogical/archive/REL${MY_PV}.tar.gz"
LICENSE="POSTGRESQL"
SLOT="0"
KEYWORDS="~amd64"
-IUSE=""
DEPEND="${POSTGRES_DEP}"
RDEPEND="${DEPEND}"
diff --git a/dev-db/pglogical/pglogical-2.4.4.ebuild b/dev-db/pglogical/pglogical-2.4.4.ebuild
index fa477e29562f..27bba65b9239 100644
--- a/dev-db/pglogical/pglogical-2.4.4.ebuild
+++ b/dev-db/pglogical/pglogical-2.4.4.ebuild
@@ -20,7 +20,6 @@ SRC_URI="https://github.com/2ndQuadrant/pglogical/archive/REL${MY_PV}.tar.gz"
LICENSE="POSTGRESQL"
SLOT="0"
KEYWORDS="~amd64"
-IUSE=""
DEPEND="${POSTGRES_DEP}"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-db/pglogical/
@ 2024-01-19 14:05 罗百科
0 siblings, 0 replies; 5+ messages in thread
From: 罗百科 @ 2024-01-19 14:05 UTC (permalink / raw
To: gentoo-commits
commit: f06b8701194b06031a9cf87c9efb18714a5f8331
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 19 13:56:56 2024 +0000
Commit: 罗百科 <patrick <AT> gentoo <DOT> org>
CommitDate: Fri Jan 19 14:05:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f06b8701
dev-db/pglogical: add 2.4.4
Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>
dev-db/pglogical/Manifest | 1 +
dev-db/pglogical/pglogical-2.4.4.ebuild | 35 +++++++++++++++++++++++++++++++++
2 files changed, 36 insertions(+)
diff --git a/dev-db/pglogical/Manifest b/dev-db/pglogical/Manifest
index e276cb38f5fe..5741701297c1 100644
--- a/dev-db/pglogical/Manifest
+++ b/dev-db/pglogical/Manifest
@@ -1 +1,2 @@
DIST REL2_4_1.tar.gz 277428 BLAKE2B 51319e3b1491e1857e63e63640f2e6d2315ab72a0aabcfe7869456822a294bdb53fd0f4cc9bca0c60bfcf9e0926249acad86f09327c5656735b508851037ccaf SHA512 0d673e1a2b696e2cfbb94d8350bb15c280947f69b6512aa80f8ef7497e30cbd407a01b9a4f8fa9844b4ccb39377a6b2bee390a7887f3050074c2e6a11e6f3e3f
+DIST REL2_4_4.tar.gz 280564 BLAKE2B 67d9cf090117875f58d671987fcd5593b9db5b78b31c79fc44c23d4ce5ebfcb1eb7b970ebb026ca6dedefd958081a3bc4ef7ce502e7edda027a5d082f879e385 SHA512 163b5f6ea61fd83eadbde843745d72ebe7f1fb401d5506c9bbf3689871e5b81c85e7536103080a71fa6567942f4278326a0fb232e19f432665757e23132be94d
diff --git a/dev-db/pglogical/pglogical-2.4.4.ebuild b/dev-db/pglogical/pglogical-2.4.4.ebuild
new file mode 100644
index 000000000000..fa477e29562f
--- /dev/null
+++ b/dev-db/pglogical/pglogical-2.4.4.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+POSTGRES_COMPAT=( {12..16} )
+
+RESTRICT="test" # connects to :5432 by default, not good
+
+inherit postgres-multi
+
+MY_PV=$(ver_rs 1- '_')
+MY_P="${PN}-${MY_PV}"
+S="${WORKDIR}/${PN}-REL${MY_PV}"
+
+DESCRIPTION="Logical replication for PostgreSQL"
+HOMEPAGE="https://github.com/2ndQuadrant/pglogical"
+SRC_URI="https://github.com/2ndQuadrant/pglogical/archive/REL${MY_PV}.tar.gz"
+
+LICENSE="POSTGRESQL"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="${POSTGRES_DEP}"
+RDEPEND="${DEPEND}"
+
+src_compile() {
+ postgres-multi_foreach emake USE_PGXS=1 || die "emake failed"
+}
+
+src_install() {
+ postgres-multi_foreach emake DESTDIR="${D}" USE_PGXS=1 install
+ postgres-multi_foreach dobin pglogical_create_subscriber
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-db/pglogical/
@ 2024-06-13 8:46 Patrick Lauer
0 siblings, 0 replies; 5+ messages in thread
From: Patrick Lauer @ 2024-06-13 8:46 UTC (permalink / raw
To: gentoo-commits
commit: 43db963ea097d859137a1cb6cda8320b1034cdf1
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 13 08:44:32 2024 +0000
Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Thu Jun 13 08:44:32 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43db963e
dev-db/pglogical: drop 2.4.1
Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>
dev-db/pglogical/Manifest | 1 -
dev-db/pglogical/pglogical-2.4.1.ebuild | 32 --------------------------------
2 files changed, 33 deletions(-)
diff --git a/dev-db/pglogical/Manifest b/dev-db/pglogical/Manifest
index 5741701297c1..a4d86d4a6f96 100644
--- a/dev-db/pglogical/Manifest
+++ b/dev-db/pglogical/Manifest
@@ -1,2 +1 @@
-DIST REL2_4_1.tar.gz 277428 BLAKE2B 51319e3b1491e1857e63e63640f2e6d2315ab72a0aabcfe7869456822a294bdb53fd0f4cc9bca0c60bfcf9e0926249acad86f09327c5656735b508851037ccaf SHA512 0d673e1a2b696e2cfbb94d8350bb15c280947f69b6512aa80f8ef7497e30cbd407a01b9a4f8fa9844b4ccb39377a6b2bee390a7887f3050074c2e6a11e6f3e3f
DIST REL2_4_4.tar.gz 280564 BLAKE2B 67d9cf090117875f58d671987fcd5593b9db5b78b31c79fc44c23d4ce5ebfcb1eb7b970ebb026ca6dedefd958081a3bc4ef7ce502e7edda027a5d082f879e385 SHA512 163b5f6ea61fd83eadbde843745d72ebe7f1fb401d5506c9bbf3689871e5b81c85e7536103080a71fa6567942f4278326a0fb232e19f432665757e23132be94d
diff --git a/dev-db/pglogical/pglogical-2.4.1.ebuild b/dev-db/pglogical/pglogical-2.4.1.ebuild
deleted file mode 100644
index 75619daafadd..000000000000
--- a/dev-db/pglogical/pglogical-2.4.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-POSTGRES_COMPAT=( 9.6 {10..14} )
-
-inherit postgres-multi
-
-MY_PV=$(ver_rs 1- '_')
-MY_P="${PN}-${MY_PV}"
-S="${WORKDIR}/${PN}-REL${MY_PV}"
-
-DESCRIPTION="Logical replication for PostgreSQL"
-HOMEPAGE="https://www.2ndquadrant.com/en/resources/pglogical/"
-SRC_URI="https://github.com/2ndQuadrant/pglogical/archive/REL${MY_PV}.tar.gz"
-
-LICENSE="POSTGRESQL"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="${POSTGRES_DEP}"
-RDEPEND="${DEPEND}"
-
-src_compile() {
- postgres-multi_foreach emake USE_PGXS=1 || die "emake failed"
-}
-
-src_install() {
- postgres-multi_foreach emake DESTDIR="${D}" USE_PGXS=1 install
- postgres-multi_foreach dobin pglogical_create_subscriber
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-db/pglogical/
@ 2024-06-13 8:46 Patrick Lauer
0 siblings, 0 replies; 5+ messages in thread
From: Patrick Lauer @ 2024-06-13 8:46 UTC (permalink / raw
To: gentoo-commits
commit: 68d32bc53a1a134e78b27f9f6c6e3dde54d94ff4
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 13 08:42:25 2024 +0000
Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Thu Jun 13 08:42:25 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68d32bc5
dev-db/pglogical: update EAPI 7 -> 8
Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>
dev-db/pglogical/pglogical-2.4.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-db/pglogical/pglogical-2.4.4.ebuild b/dev-db/pglogical/pglogical-2.4.4.ebuild
index 27bba65b9239..9354bae60f33 100644
--- a/dev-db/pglogical/pglogical-2.4.4.ebuild
+++ b/dev-db/pglogical/pglogical-2.4.4.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="7"
+EAPI="8"
POSTGRES_COMPAT=( {12..16} )
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-06-13 8:46 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-19 14:05 [gentoo-commits] repo/gentoo:master commit in: dev-db/pglogical/ 罗百科
-- strict thread matches above, loose matches on Subject: below --
2024-06-13 8:46 Patrick Lauer
2024-06-13 8:46 Patrick Lauer
2024-01-19 14:05 罗百科
2022-03-12 17:54 Alexey Shvetsov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox