diff options
author | Kai Stian Olstad <void@olstad.com> | 2024-11-09 08:42:48 +0000 |
---|---|---|
committer | classabbyamp <5366828+classabbyamp@users.noreply.github.com> | 2024-11-09 19:05:21 +0000 |
commit | fd562a2f7779825903488eba17eec960d4427093 (patch) | |
tree | 90dbcc4e15a59bd4d97bcf1b770d9cdcf3299340 | |
parent | dc38d99c0bc93ba5720a998e5f829e35e0867424 (diff) | |
download | void-packages-fd562a2f7779825903488eba17eec960d4427093.tar void-packages-fd562a2f7779825903488eba17eec960d4427093.tar.gz void-packages-fd562a2f7779825903488eba17eec960d4427093.tar.bz2 void-packages-fd562a2f7779825903488eba17eec960d4427093.tar.lz void-packages-fd562a2f7779825903488eba17eec960d4427093.tar.xz void-packages-fd562a2f7779825903488eba17eec960d4427093.tar.zst void-packages-fd562a2f7779825903488eba17eec960d4427093.zip |
restic: update to 0.17.3.
-rw-r--r-- | srcpkgs/restic/template | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/srcpkgs/restic/template b/srcpkgs/restic/template index 09cbac4ddfc..07143b0a379 100644 --- a/srcpkgs/restic/template +++ b/srcpkgs/restic/template @@ -1,18 +1,25 @@ # Template file for 'restic' pkgname=restic -version=0.17.1 +version=0.17.3 revision=1 build_style=go go_import_path=github.com/restic/restic go_package="${go_import_path}/cmd/restic" go_ldflags="-X 'main.version=${version} (Void Linux)'" +checkdepends="tar python3" short_desc="Backup solution written in Go" maintainer="Florian Eich <flrn@nrmncr.net>" license="BSD-2-Clause" homepage="https://restic.net/" changelog="https://raw.githubusercontent.com/restic/restic/master/CHANGELOG.md" distfiles="https://github.com/restic/restic/releases/download/v${version}/restic-${version}.tar.gz" -checksum=cba3a5759690d11dae4b5620c44f56be17a5688e32c9856776db8a9a93d6d59a +checksum=bf0dd73edfae531c24070e2e7833938613f7b179ed165e6b681098edfdf286c8 + +if [ "${XBPS_BUILD_ENVIRONMENT}" = "void-packages-ci" ]; then + make_check_args="-skip (^TestMount$|^TestMountSameTimestamps$|^TestRestoreWithPermissionFailure$" + make_check_args+="|^TestRestoreLocalLayout$|^TestCheckRestoreNoLock$|^TestBackupErrors$" + make_check_args+="|^TestArchiverErrorReporting$|^TestScannerError$)" +fi post_install() { vlicense LICENSE |