Package Details: luckybackup 0.5.0-1

Git Clone URL: https://aur.archlinux.org/luckybackup.git (read-only, click to copy)
Package Base: luckybackup
Description: Backup & Sync tool using Rsync and Qt5
Upstream URL: http://luckybackup.sourceforge.net/
Keywords: backup
Licenses: GPL3
Conflicts: luckybackup-git
Provides: luckybackup
Submitter: thanos
Maintainer: thanos
Last Packager: thanos
Votes: 175
Popularity: 0.000000
First Submitted: 2009-01-12 19:26 (UTC)
Last Updated: 2018-11-05 22:22 (UTC)

Latest Comments

1 2 3 Next › Last »

annoyingduck commented on 2022-03-15 19:28 (UTC)

Luckybackup aborts with qt5 5.15.3 even with a clean rebuild. Reverting back to qt5 5.15.2 gets it working again. Package will need a little updating.

mzecher commented on 2018-02-10 19:36 (UTC)

blackhole, wouldn't you like to maintain this package?

blackhole commented on 2017-01-18 16:16 (UTC)

For those interested I have made a draft PKGBUILD for version 4.9 and QT5 pkgname=luckybackup pkgver=0.4.9 pkgrel=1 pkgdesc="Backup & Sync tool using Rsync and Qt5" arch=('any') url="http://luckybackup.sourceforge.net/" license=('GPL3') depends=( 'qt5-base' 'rsync' 'openssh') provides=('luckybackup') conflicts=('luckybackup-git') install=$pkgname.install source=("git+https://git.code.sf.net/p/luckybackup/code") md5sums=('SKIP') build() { cd "${srcdir}/code" qmake make } package() { cd "${srcdir}/code" make INSTALL_ROOT="${pkgdir}" install }

melodie commented on 2015-04-19 13:11 (UTC)

PS3: I tried two options from gksu : with -w, then with -S (first one forces gksu to use the real root mode, the -S forces gksu to use the sudo mode). The -S option is the one which works. About full paths : in the Icon= line, only the name of the icon file needs to be written: Icon=luckybackup The system manages with that.

melodie commented on 2015-04-19 12:57 (UTC)

PS2: in fact I am wrong about gksu. It works from console but not in the desktop file.

melodie commented on 2015-04-19 12:50 (UTC)

PS: you don't need to give the full path to the executable in the desktop file. The system is supposed to know where the applications are located (see "echo $PATH")

melodie commented on 2015-04-19 12:47 (UTC)

Hi, "su-to-root" from the luckybackup-gnome-su.desktop file Exec command line, is an unknown command. ie in console: $ su-to-root -X -c /usr/bin/luckybackup bash: su-to-root : command not found If you fancy using "pkexec" instead, it does not work better: $ pkexec luckybackup QCoreApplication::applicationDirPath: Please instantiate the QApplication object first luckybackup: cannot connect to X server What works here is gksu. (The warnings seem harmless) $ gksu luckybackup QCoreApplication::applicationDirPath: Please instantiate the QApplication object first libpng warning: iCCP: too many profiles libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile I am using Archlinux x86_64 with Openbox +openbox-menu (lxde type menus) all up to date. I am tweaking that desktop file and placing it in my local applications directory for now. Perhaps would you agree on improving this exec command in a next package? Thanks for your work.

thanos commented on 2014-03-25 21:38 (UTC)

Update: - Version 0.4.8 - Changelog http://luckybackup.sourceforge.net/changelog.html

blackhole commented on 2013-11-22 16:17 (UTC)

Progress bar not working: always at 0%

asdil12 commented on 2013-08-31 12:04 (UTC)

I think, you should add a simple 'make' call to the build function - otherwise the pkg gets build in the package function, which is not correct.