summaryrefslogtreecommitdiff
path: root/dev-db
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-09-18 15:41:29 -0500
committerroot <root@alpha.trunkmasters.com>2026-09-18 15:41:29 -0500
commit201b1a5f202628742bb2b602acc1147303f503ab (patch)
tree48d6c9d5754ae1d1a7078e37bc40e108cecf4fbf /dev-db
parent4f24a5a81ceb5b88ec46c27b34f371d5a8e30152 (diff)
downloadbaldeagleos-repo-201b1a5f202628742bb2b602acc1147303f503ab.tar.gz
baldeagleos-repo-201b1a5f202628742bb2b602acc1147303f503ab.tar.xz
baldeagleos-repo-201b1a5f202628742bb2b602acc1147303f503ab.zip
Adding metadata
Diffstat (limited to 'dev-db')
-rw-r--r--dev-db/barman/Manifest1
-rw-r--r--dev-db/barman/barman-3.20.0.ebuild48
2 files changed, 49 insertions, 0 deletions
diff --git a/dev-db/barman/Manifest b/dev-db/barman/Manifest
index 62a8e6049c59..732bbb23dea2 100644
--- a/dev-db/barman/Manifest
+++ b/dev-db/barman/Manifest
@@ -1,3 +1,4 @@
DIST barman-3.15.0.tar.gz 1942470 BLAKE2B 23dd66dd1912524a30aff881609f61a5b17d43b4c5941404e9d47e6d4475640066309067cf97fbb73dd9a90b3fd3664dd120d88432ba2c2749e32a0d7d3acfa3 SHA512 86e840ded02509017c1339f552eec210b380996988cfb6588ce9c543c1bae04d67d29e483653c98ec50cb483259c5c6e8caae1eea2c4c3ba119ea548f6606c82
DIST barman-3.16.1.tar.gz 1959902 BLAKE2B b6376d1acf1e82916085b273ce65673f577f2ccbffc100f47fb6245d19cd3d94b4847f97790611ab9072609d91d5284f035e9c70637454c2bbac7e90964d0bb2 SHA512 bbd6e888dd19bc348885d1f3280d6567950a44ec6e62c9a2de33850c141370ecc6ab3d0095a58ea0c4626b77d4ceba0b7cc491057b9cc34250732399b42c2493
DIST barman-3.17.0.tar.gz 1975909 BLAKE2B 0023d703ef87e4b26a174425d3abdc4124171f1cc5aa897b47101d2ccf1b878a69126f5f71ba8e59368fc70c336fada675c88fe01c727a6636e2e46b9f0c20c2 SHA512 cc714bde10cd4eb303ddbb99eb302a3cfaf7b27d303c49f652094da0832b4efd1c50006d76735f2d54895b529afc41925882660d2d3b88f880e417793c58eb99
+DIST barman-3.20.0.tar.gz 2256031 BLAKE2B 30089da30e37d05995dcb44b32154c1b998e80947367d05b05cff102677786565793f6e5c1088515cc5de9e0a66d506f19b58e82f2b9c768d940d8b004479b8e SHA512 f9d32c9a90fbf53415f837d095adfbce9205cca0ef545c485bece9eabce76ec9c243dff0032363f96fcc2969083ed19773b33ccdee8ec4190012746f6c4a50a2
diff --git a/dev-db/barman/barman-3.20.0.ebuild b/dev-db/barman/barman-3.20.0.ebuild
new file mode 100644
index 000000000000..5defea7d5c9d
--- /dev/null
+++ b/dev-db/barman/barman-3.20.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517="uv-build"
+PYTHON_COMPAT=( python3_{13..14} )
+
+RESTRICT="test" # missing azure sdk
+
+inherit distutils-r1
+
+DESCRIPTION="Administration tool for disaster recovery of PostgreSQL servers"
+HOMEPAGE="https://www.pgbarman.org https://sourceforge.net/projects/pgbarman/"
+SRC_URI="https://github.com/2ndquadrant-it/barman/archive/release/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-release-${PV}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ dev-python/boto3[${PYTHON_USEDEP}]
+ dev-python/argh[${PYTHON_USEDEP}]
+ dev-python/psycopg:2[${PYTHON_USEDEP}]
+ dev-python/python-dateutil[${PYTHON_USEDEP}]
+ dev-python/argcomplete[${PYTHON_USEDEP}]
+ net-misc/rsync
+ dev-db/postgresql[server]
+"
+
+BDEPEND="
+ test? (
+ dev-python/mock[${PYTHON_USEDEP}]
+ dev-python/pytest-timeout[${PYTHON_USEDEP}]
+ dev-python/python-snappy[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ default
+
+ sed -i -e \
+ "s/^ def test_xlog_segment_mask(.*:/ @pytest.mark.xfail(reason='Test fails on Gentoo')\n\0/" \
+ tests/test_xlog.py || die
+}