mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
Update podman_backup to version 1.2.1
This commit is contained in:
parent
1bc9af3740
commit
f5c2de52e6
3 changed files with 25 additions and 7 deletions
6
.SRCINFO
6
.SRCINFO
|
|
@ -1,6 +1,6 @@
|
|||
pkgbase = podman_backup
|
||||
pkgdesc = A small dart tool to push regular backups of podman volumes to a remote.
|
||||
pkgver = 1.1.0
|
||||
pkgver = 1.2.1
|
||||
pkgrel = 1
|
||||
url = https://github.com/Skycoder42/podman_backup
|
||||
changelog = CHANGELOG.md
|
||||
|
|
@ -15,7 +15,7 @@ pkgbase = podman_backup
|
|||
depends = xz
|
||||
depends = systemd
|
||||
options = !strip
|
||||
source = podman_backup-1.1.0.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.1.0.tar.gz
|
||||
b2sums = dcbfc8b7c45a26577b377dea2dd1d6de01977b2d417823a6ed1f8b6d50e4e7ce0eaff06c34c069320e0f51fc1d4f80e3663e7ac218a88c1da238d7504c307ace
|
||||
source = podman_backup-1.2.1.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.2.1.tar.gz
|
||||
b2sums = 109b6ba5d5a9eb46ce05800df2c6c9025b8d37d68ec7528d381337d2e562f7184fcef1530df95eb9d65d60c8f146819d16c837299aad520da6873f9546c2eb02
|
||||
|
||||
pkgname = podman_backup
|
||||
|
|
|
|||
18
CHANGELOG.md
18
CHANGELOG.md
|
|
@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [1.2.1] - 2023-08-12
|
||||
### Fixed
|
||||
- Fixup AUR release
|
||||
|
||||
## [1.2.0] - 2023-08-12
|
||||
### Added
|
||||
- Support for running alternative backup services
|
||||
- By setting the backup label to a non empty string, a hook is registered
|
||||
- Is the name of a systemd unit or template unit
|
||||
- Automatically escapes volume names when passed to a template
|
||||
- Can run as preparation or instead of the normal backup
|
||||
- Backup logic (ordering, container-management, etc.) still applies
|
||||
|
||||
### Changed
|
||||
- Improve documentation
|
||||
|
||||
## [1.1.0] - 2023-08-04
|
||||
### Added
|
||||
- Add support for detecting pods
|
||||
|
|
@ -35,6 +51,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
### Added
|
||||
- Initial release
|
||||
|
||||
[1.2.1]: https://github.com/Skycoder42/podman_backup/compare/v1.2.0...v1.2.1
|
||||
[1.2.0]: https://github.com/Skycoder42/podman_backup/compare/v1.1.0...v1.2.0
|
||||
[1.1.0]: https://github.com/Skycoder42/podman_backup/compare/v1.0.4...v1.1.0
|
||||
[1.0.4]: https://github.com/Skycoder42/podman_backup/compare/v1.0.3...v1.0.4
|
||||
[1.0.3]: https://github.com/Skycoder42/podman_backup/compare/v1.0.2...v1.0.3
|
||||
|
|
|
|||
8
PKGBUILD
8
PKGBUILD
|
|
@ -1,16 +1,16 @@
|
|||
# Maintainer: Skycoder42 <Skycoder42@users.noreply.github.com>
|
||||
pkgname='podman_backup'
|
||||
pkgdesc='A small dart tool to push regular backups of podman volumes to a remote.'
|
||||
pkgver='1.1.0'
|
||||
pkgver='1.2.1'
|
||||
pkgrel=1
|
||||
arch=('x86_64' 'i686' 'armv7h' 'aarch64')
|
||||
url='https://github.com/Skycoder42/podman_backup'
|
||||
license=('BSD')
|
||||
depends=('podman' 'xz' 'systemd')
|
||||
makedepends=('dart>=3.0.0' 'dart<4.0.0')
|
||||
_pkgdir='podman_backup-1.1.0'
|
||||
source=("$_pkgdir.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.1.0.tar.gz")
|
||||
b2sums=('dcbfc8b7c45a26577b377dea2dd1d6de01977b2d417823a6ed1f8b6d50e4e7ce0eaff06c34c069320e0f51fc1d4f80e3663e7ac218a88c1da238d7504c307ace')
|
||||
_pkgdir='podman_backup-1.2.1'
|
||||
source=("$_pkgdir.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.2.1.tar.gz")
|
||||
b2sums=('109b6ba5d5a9eb46ce05800df2c6c9025b8d37d68ec7528d381337d2e562f7184fcef1530df95eb9d65d60c8f146819d16c837299aad520da6873f9546c2eb02')
|
||||
changelog='CHANGELOG.md'
|
||||
options=('!strip')
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue