mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
Update podman_backup to version 1.0.2
This commit is contained in:
parent
bf1896a0a0
commit
79af892bca
3 changed files with 17 additions and 12 deletions
12
.SRCINFO
12
.SRCINFO
|
|
@ -1,6 +1,6 @@
|
|||
pkgbase = podman_backup
|
||||
pkgdesc = A sample command-line application.
|
||||
pkgver = 1.0.1
|
||||
pkgdesc = A small dart tool to push regular backups of podman volumes to a remote.
|
||||
pkgver = 1.0.2
|
||||
pkgrel = 1
|
||||
url = https://github.com/Skycoder42/podman_backup
|
||||
changelog = CHANGELOG.md
|
||||
|
|
@ -9,13 +9,13 @@ pkgbase = podman_backup
|
|||
arch = armv7h
|
||||
arch = aarch64
|
||||
license = BSD
|
||||
makedepends = dart>=2.19.0
|
||||
makedepends = dart<3.0.0
|
||||
makedepends = dart>=3.0.0
|
||||
makedepends = dart<4.0.0
|
||||
depends = podman
|
||||
depends = xz
|
||||
depends = systemd
|
||||
options = !strip
|
||||
source = podman_backup-1.0.1.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.0.1.tar.gz
|
||||
b2sums = 31e396eee5909cae656e00eb985053e2c54463bf00ec6305412f3e8bae4f712308e5d151478dfd54b79efa9928a5f37622417d97a372a190663d7630d3801a1f
|
||||
source = podman_backup-1.0.2.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.0.2.tar.gz
|
||||
b2sums = 9b9198aafe3ef7efa38269529321d6cb4924a082c708cb265dcbf499d6b797c8202ca2960834f1938d9001f054f71cb7838e46598962cc565a5a70ff9ee62b59
|
||||
|
||||
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.0.2] - 2023-06-09
|
||||
### Changed
|
||||
- Update dependencies
|
||||
|
||||
## [1.0.1] - 2023-04-04
|
||||
### Added
|
||||
- Add support for AUR releases
|
||||
|
|
@ -19,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
### Added
|
||||
- Initial release
|
||||
|
||||
[1.0.2]: https://github.com/Skycoder42/podman_backup/compare/v1.0.1...v1.0.2
|
||||
[1.0.1]: https://github.com/Skycoder42/podman_backup/compare/v1.0.0+1...v1.0.1
|
||||
[1.0.0+1]: https://github.com/Skycoder42/podman_backup/compare/v1.0.0...v1.0.0+1
|
||||
[1.0.0]: https://github.com/Skycoder42/podman_backup/releases/tag/v1.0.0
|
||||
12
PKGBUILD
12
PKGBUILD
|
|
@ -1,16 +1,16 @@
|
|||
# Maintainer: Skycoder42 <Skycoder42@users.noreply.github.com>
|
||||
pkgname='podman_backup'
|
||||
pkgdesc='A sample command-line application.'
|
||||
pkgver='1.0.1'
|
||||
pkgdesc='A small dart tool to push regular backups of podman volumes to a remote.'
|
||||
pkgver='1.0.2'
|
||||
pkgrel=1
|
||||
arch=('x86_64' 'i686' 'armv7h' 'aarch64')
|
||||
url='https://github.com/Skycoder42/podman_backup'
|
||||
license=('BSD')
|
||||
depends=('podman' 'xz' 'systemd')
|
||||
makedepends=('dart>=2.19.0' 'dart<3.0.0')
|
||||
_pkgdir='podman_backup-1.0.1'
|
||||
source=("$_pkgdir.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.0.1.tar.gz")
|
||||
b2sums=('31e396eee5909cae656e00eb985053e2c54463bf00ec6305412f3e8bae4f712308e5d151478dfd54b79efa9928a5f37622417d97a372a190663d7630d3801a1f')
|
||||
makedepends=('dart>=3.0.0' 'dart<4.0.0')
|
||||
_pkgdir='podman_backup-1.0.2'
|
||||
source=("$_pkgdir.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.0.2.tar.gz")
|
||||
b2sums=('9b9198aafe3ef7efa38269529321d6cb4924a082c708cb265dcbf499d6b797c8202ca2960834f1938d9001f054f71cb7838e46598962cc565a5a70ff9ee62b59')
|
||||
changelog='CHANGELOG.md'
|
||||
options=('!strip')
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue