Package Details: duplicacy-web 1.8.0-1

Git Clone URL: https://aur.archlinux.org/duplicacy-web.git (read-only, click to copy)
Package Base: duplicacy-web
Description: Cross-platform cloud backup tool with a web GUI
Upstream URL: https://duplicacy.com/
Licenses: custom
Submitter: elanglois
Maintainer: elanglois
Last Packager: elanglois
Votes: 5
Popularity: 0.000001
First Submitted: 2020-04-05 17:26 (UTC)
Last Updated: 2024-03-14 04:24 (UTC)

Latest Comments

elanglois commented on 2023-06-27 16:37 (UTC)

Thanks for the report, should be fixed now. Looks like the issue was the shared name for the source binary between versions. makepkg wasn't downloading the new one if the old one was still in the package directory. I've updated the package to include the version number in the source name.

geefy commented on 2023-06-27 08:01 (UTC) (edited on 2023-06-27 10:42 (UTC) by geefy)

1.7.2-1 fails on update from 1.6.3-1 via yay:

==> Validating source_x86_64 files with sha256sums...
    duplicacy-web ... FAILED
==> ERROR: One or more files did not pass the validity check!

elanglois commented on 2023-05-07 02:41 (UTC)

Status update on the version: this was flagged out-of-date based on a version release announced on the forum (https://forum.duplicacy.com/t/duplicacy-web-edition-1-7-2-releases/7323/14) but the download page still lists 1.6.3, I am keeping this package tied to the download page since that is more likely to be the stable version.

elanglois commented on 2022-01-07 05:44 (UTC)

Thanks for report! I must have accidentally clobbered those checksums with updpkgsums. It should be fixed now, same with armv7h. I didn't update pkgrel because most people won't have to update so you might have to force an update if you want to use this new version.

greenfuse commented on 2022-01-04 04:50 (UTC)

Couple of things. - My pi is armv7h which is not listed as an architecture. Easy enough though to modify the PKGBUILD to use the armv7 one. - The sha256sum for the armv7 download of duplicacy-web does not match the one in the PKGBUILD.

elanglois commented on 2021-01-12 21:40 (UTC)

It's a bit confusing but I believe that the existing install locations are correct. In both cases the goal is to have duplicacy-web running as a particular user (as far as I'm aware duplicacy-web is meant to be run as a user and maintains configurations in that user's $HOME).

system/duplicacy-web@.service is a system-level service so it has to be templated to a specific user in order to run as that user. You would run it as systemctl start duplicacy-web@$USER.

user/duplicacy-web.service is a user-level service so it does not require templating since it is already run from a user-specific systemd instance. You would run it as systemctl start --user duplicacy-web.

OndraM commented on 2021-01-12 20:02 (UTC) (edited on 2021-01-12 20:02 (UTC) by OndraM)

Aren't duplicacy-web@.service and duplicacy-web.service swapped in pkgfile?

install -m644 -D -t "$pkgdir/usr/lib/systemd/system" "$pkgname@.service"
install -m644 -D -t "$pkgdir/usr/lib/systemd/user" "$pkgname.service"

But duplicacy-web@.service is the user version (but it is installed into systemd/system/), while duplicacy-web.service is the system version (however it is installed into systemd/user/).