pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/databases/py-barman
Module Name: pkgsrc
Committed By: adam
Date: Mon Jan 27 09:31:46 UTC 2025
Modified Files:
pkgsrc/databases/py-barman: Makefile PLIST distinfo
Log Message:
py-barman: updated to 3.12.1
3.12.1 (2024-12-09)
Bugfixes
Add isoformat fields for backup start and end times in json output
This patch modifies the json output of the infofile object
adding two new fields: begin_time_iso and end_time_iso.
The new fields allow the use of a more standard and timezone aware
time format, preserving compatibility with previous versions.
It is worth noting that in the future the iso format for dates will be the
standard used by barman for storing dates and will be used everywhere
non human readable output is requested.
As part of the work, this patch reverts BAR-316, which was introduced on Barman
3.12.0.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 pkgsrc/databases/py-barman/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/databases/py-barman/PLIST
cvs rdiff -u -r1.17 -r1.18 pkgsrc/databases/py-barman/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/databases/py-barman/Makefile
diff -u pkgsrc/databases/py-barman/Makefile:1.23 pkgsrc/databases/py-barman/Makefile:1.24
--- pkgsrc/databases/py-barman/Makefile:1.23 Mon Nov 11 07:27:56 2024
+++ pkgsrc/databases/py-barman/Makefile Mon Jan 27 09:31:46 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.23 2024/11/11 07:27:56 wiz Exp $
+# $NetBSD: Makefile,v 1.24 2025/01/27 09:31:46 adam Exp $
-DISTNAME= barman-3.11.1
+DISTNAME= barman-3.12.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= databases python
MASTER_SITES= ${MASTER_SITE_PYPI:=b/barman/}
@@ -43,7 +43,7 @@ OWN_DIRS_PERMS+= ${BARMAN_LOG_DIR} ${BAR
SUBST_CLASSES+= path
SUBST_STAGE.path= pre-configure
-SUBST_FILES.path= barman/config.py doc/barman.conf setup.py
+SUBST_FILES.path= barman/config.py docs/barman.conf setup.py
SUBST_MESSAGE.path= Fixing paths
SUBST_SED.path= -e 's,/etc/,${PKG_SYSCONFDIR}/,g'
SUBST_SED.path+= -e 's,/var/lib/barman,${BARMAN_DIR},g'
@@ -51,7 +51,7 @@ SUBST_SED.path+= -e 's,/var/log/barman,$
SUBST_SED.path+= -e 's,share/man,${PKGMANDIR},g'
post-install:
- ${INSTALL_DATA} ${WRKSRC}/doc/barman.conf \
+ ${INSTALL_DATA} ${WRKSRC}/docs/barman.conf \
${DESTDIR}${PREFIX}/share/examples/barman/barman.conf
.include "../../lang/python/wheel.mk"
Index: pkgsrc/databases/py-barman/PLIST
diff -u pkgsrc/databases/py-barman/PLIST:1.7 pkgsrc/databases/py-barman/PLIST:1.8
--- pkgsrc/databases/py-barman/PLIST:1.7 Fri Feb 16 20:30:15 2024
+++ pkgsrc/databases/py-barman/PLIST Mon Jan 27 09:31:46 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2024/02/16 20:30:15 adam Exp $
+@comment $NetBSD: PLIST,v 1.8 2025/01/27 09:31:46 adam Exp $
bin/barman
bin/barman-cloud-backup
bin/barman-cloud-backup-delete
@@ -171,6 +171,10 @@ ${PYSITELIB}/barman/wal_archiver.pyo
${PYSITELIB}/barman/xlog.py
${PYSITELIB}/barman/xlog.pyc
${PYSITELIB}/barman/xlog.pyo
+man/man1/barman-archive-wal.1
+man/man1/barman-backup.1
+man/man1/barman-check-backup.1
+man/man1/barman-check.1
man/man1/barman-cloud-backup-delete.1
man/man1/barman-cloud-backup-keep.1
man/man1/barman-cloud-backup-list.1
@@ -180,6 +184,33 @@ man/man1/barman-cloud-check-wal-archive.
man/man1/barman-cloud-restore.1
man/man1/barman-cloud-wal-archive.1
man/man1/barman-cloud-wal-restore.1
+man/man1/barman-config-switch.1
+man/man1/barman-config-update.1
+man/man1/barman-cron.1
+man/man1/barman-delete.1
+man/man1/barman-diagnose.1
+man/man1/barman-generate-manifest.1
+man/man1/barman-get-wal.1
+man/man1/barman-keep.1
+man/man1/barman-list-files.1
+man/man1/barman-list-servers.1
+man/man1/barman-list_backups.1
+man/man1/barman-lock-directory-cleanup.1
+man/man1/barman-put-wal.1
+man/man1/barman-rebuild-xlogdb.1
+man/man1/barman-receive-wal.1
+man/man1/barman-replication-status.1
+man/man1/barman-restore.1
+man/man1/barman-show-backup.1
+man/man1/barman-show-servers.1
+man/man1/barman-status.1
+man/man1/barman-switch-wal.1
+man/man1/barman-switch-xlog.1
+man/man1/barman-sync-backup.1
+man/man1/barman-sync-info.1
+man/man1/barman-sync-wals.1
+man/man1/barman-verify-backup.1
+man/man1/barman-verify.1
man/man1/barman-wal-archive.1
man/man1/barman-wal-restore.1
man/man1/barman.1
Index: pkgsrc/databases/py-barman/distinfo
diff -u pkgsrc/databases/py-barman/distinfo:1.17 pkgsrc/databases/py-barman/distinfo:1.18
--- pkgsrc/databases/py-barman/distinfo:1.17 Mon Sep 16 11:47:09 2024
+++ pkgsrc/databases/py-barman/distinfo Mon Jan 27 09:31:46 2025
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.17 2024/09/16 11:47:09 adam Exp $
+$NetBSD: distinfo,v 1.18 2025/01/27 09:31:46 adam Exp $
-BLAKE2s (barman-3.11.1.tar.gz) = e7bb70cc6183b29d421c4832dfca6ffe7fa18608cdc376b36a3aee7511a40d62
-SHA512 (barman-3.11.1.tar.gz) = 768ef8841683d7b5205246fa2ed6013ba755134c922566f14e5f0e356b23af4bfb3256a3056c0a578907449799473dc65755d177cc28c8a4cd484a2ebd41ca9c
-Size (barman-3.11.1.tar.gz) = 1633566 bytes
+BLAKE2s (barman-3.12.1.tar.gz) = e384c8d24fb73ec27713b3e9b1d9307954ae952a68a69666b006395d6a4aabf0
+SHA512 (barman-3.12.1.tar.gz) = 55ff9aa1532d7d34691b54d5407b371ce323881065ba975bf70c4711c95f48220dc2f30f58d478bc82162b3b780e9aba344f3ef97567a645b39c1d0a696f099f
+Size (barman-3.12.1.tar.gz) = 406619 bytes
SHA1 (patch-barman_utils.py) = 0f93835a814bdd41c999dcebb34719312a74bd94
Home |
Main Index |
Thread Index |
Old Index