SHA256
1
0
forked from pool/restic
restic/disable-selfupdate.patch
Martin Pluskal 6b6c4b60cf Accepting request 1060692 from home:hgraeber:branches:Archiving
- Allow build with architectures that do not support -buildmode=pie
- New Patch disable-selfupdate.patch: Disable self-update, because updates
  will be made using package manager
- Replace packageand by conditionals
- Update to version 0.15.0
  * Make mount return exit code 0 after receiving Ctrl-C / SIGINT
  * Make restore replace existing symlinks
  * Don't read password from stdin for backup --stdin
  * Delete files on Backblaze B2 more reliably
  * Make SFTP backend report no space left on device
  * Improve handling of interrupted syscalls in mount command
  * Fix stuck copy command when -o <backend>.connections=1
  * Correct prune statistics for partially compressed repositories
  * Make ls return exit code 1 if snapshot cannot be loaded
  * Make backup no longer hang on Solaris when seeing a FIFO file
  * Support ExFAT-formatted local backends on macOS Ventura
  * Make init ignore "Access Denied" errors when creating S3 buckets
  * Make self-update enabled by default only in release builds
  * Don't generate negative UIDs and GIDs in tar files from dump
  * Include full snapshot ID in JSON output of backup
  * Make unlock display message only when locks were actually removed
  * Don't print skipped snapshots by default in copy command
  * Update dependencies and require Go 1.18 or newer
  * Implement rewrite command
  * Restore files with long runs of zeros as sparse files
  * Support restoring symbolic links on Windows
  * Inform about successful retries after errors
  * Improve handling of directories with duplicate entries
  * Support B2 API keys restricted to hiding but not deleting files
  * Make init open only one connection for the SFTP backend
  * Handle cache corruption on disk and in downloads
  * Stricter repository lock handling
  * Make backup file read concurrency configurable
  * Add support for credential_process to S3 backend
  * Make mount command support macOS using macFUSE 4.x
  * Support JSON output for the init command
  * Optimize prune memory usage
  * Improve speed of parent snapshot detection in backup command
  * Add compression statistics to the stats command
  * Provide command completion for PowerShell
  * Allow backup file tree scanner to be disabled
  * Improve handling of ErrDot errors in rclone and sftp backends
  * Ignore additional/unknown files in repository
  * Improve backup performance for small files

OBS-URL: https://build.opensuse.org/request/show/1060692
OBS-URL: https://build.opensuse.org/package/show/Archiving/restic?expand=0&rev=36
2023-01-25 08:30:27 +00:00

13 lines
887 B
Diff

diff -uNr restic.org/build.go restic/build.go
--- restic.org/build.go 2023-01-16 23:09:42.559283644 +0100
+++ restic/build.go 2023-01-16 23:10:38.002960609 +0100
@@ -56,7 +56,7 @@
Name: "restic", // name of the program executable and directory
Namespace: "github.com/restic/restic", // subdir of GOPATH, e.g. "github.com/foo/bar"
Main: "./cmd/restic", // package name for the main package
- DefaultBuildTags: []string{"selfupdate"}, // specify build tags which are always used
+ //DefaultBuildTags: []string{"selfupdate"}, // specify build tags which are always used
Tests: []string{"./..."}, // tests to run
MinVersion: GoVersion{Major: 1, Minor: 18, Patch: 0}, // minimum Go version supported
}