mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
Update podman_backup to version 1.1.0
This commit is contained in:
parent
98a67f28fb
commit
1bc9af3740
3 changed files with 12 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.0.4
|
||||
pkgver = 1.1.0
|
||||
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.0.4.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.0.4.tar.gz
|
||||
b2sums = 0c0579f0075648fd9289fea197859d16a77e17f4ff5d1f3222a8f3cd370c4c6dd4f8f939613adb8bc7c9c9404b9b6daa53ee14a81e3d47e6bea5d58a4bdc5d79
|
||||
source = podman_backup-1.1.0.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.1.0.tar.gz
|
||||
b2sums = dcbfc8b7c45a26577b377dea2dd1d6de01977b2d417823a6ed1f8b6d50e4e7ce0eaff06c34c069320e0f51fc1d4f80e3663e7ac218a88c1da238d7504c307ace
|
||||
|
||||
pkgname = podman_backup
|
||||
|
|
|
|||
|
|
@ -4,6 +4,10 @@ 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.1.0] - 2023-08-04
|
||||
### Added
|
||||
- Add support for detecting pods
|
||||
|
||||
## [1.0.4] - 2023-07-09
|
||||
### Changed
|
||||
- Remove --fsync from rsync call due to compatibility reasons
|
||||
|
|
@ -31,6 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
### Added
|
||||
- Initial release
|
||||
|
||||
[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
|
||||
[1.0.2]: https://github.com/Skycoder42/podman_backup/compare/v1.0.1...v1.0.2
|
||||
|
|
|
|||
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.0.4'
|
||||
pkgver='1.1.0'
|
||||
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.0.4'
|
||||
source=("$_pkgdir.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.0.4.tar.gz")
|
||||
b2sums=('0c0579f0075648fd9289fea197859d16a77e17f4ff5d1f3222a8f3cd370c4c6dd4f8f939613adb8bc7c9c9404b9b6daa53ee14a81e3d47e6bea5d58a4bdc5d79')
|
||||
_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')
|
||||
changelog='CHANGELOG.md'
|
||||
options=('!strip')
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue