Search Criteria
Package Details: burp-backup 2.2.18-1
Git Clone URL: | https://aur.archlinux.org/burp-backup.git (read-only, click to copy) |
---|---|
Package Base: | burp-backup |
Description: | A backup and restore program that uses librsync to reduce backup size. |
Upstream URL: | https://burp.grke.org/ |
Licenses: | |
Conflicts: | |
Submitter: | PLum |
Maintainer: | srueg |
Last Packager: | srueg |
Votes: | 10 |
Popularity: | 0.000000 |
First Submitted: | 2013-05-14 12:47 |
Last Updated: | 2019-02-27 13:40 |
Latest Comments
« First ‹ Previous 1 2 3
dev_arch commented on 2015-03-09 18:39
Thanks for providing this package! Would you be willing to also package burp-ui? Although only at version 0.6 many features are fully usable. Together it appears they will make an efficient couple.
After having gotten to know burp I really am not sure where all the other votes are.
PLum commented on 2015-01-07 08:09
@sja1440
thanks - package upgraded, and in near future I'll change version to 1.4.x - whenever it will be consider stable.
sja1440 commented on 2015-01-06 13:17
Whilst waiting for an official update I succeeded in installing burp-backup by the following changes PKGBUILD:
replace:
build() {
cd $srcdir/$_pkgname
./configure || return 1
}
with
prepare() {
cd $_pkgname
sed -i 's/\/var\/run/\/run/' Makefile.in
}
build() {
cd $srcdir/$_pkgname
./configure --sbindir=/usr/bin || return 1
}
This enabled installation but I did receive the following warning which probably needs to be followed up:
warning: directory permissions differ on /var/spool/
sja1440 commented on 2015-01-04 08:12
burp-backup 1.3.48-1 fails to install with:
[code]
sudo pacman -U burp-backup-1.3.48-1-any.pkg.tar.xz
[sudo] password for avis:
loading packages...
resolving dependencies...
looking for conflicting packages...
Packages (1) burp-backup-1.3.48-1
Total Installed Size: 0.40 MiB
:: Proceed with installation? [Y/n]
(1/1) checking keys in keyring [#################################################] 100%
(1/1) checking package integrity [#################################################] 100%
(1/1) loading package files [#################################################] 100%
(1/1) checking for file conflicts [#################################################] 100%
error: failed to commit transaction (conflicting files)
burp-backup: /usr/sbin exists in filesystem
burp-backup: /var/run exists in filesystem
Errors occurred, no packages were upgraded.
[/code]
I am told that the PKGBUILD needs to be updated to follow the Directory Symlink Handling introduced by pacman 4.2.
See https://bbs.archlinux.org/viewtopic.php?id=191803