Updated:
https://github.com/fukawi2/aur-packages/commit/ea3eff8cc32724bd295ffd21ca8c6467cf56c80e
Search Criteria
Package Details: backintime 1.5.2-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/backintime.git (read-only, click to copy) |
---|---|
Package Base: | backintime |
Description: | Simple backup system inspired from the Flyback Project and TimeVault. Qt5 GUI version. |
Upstream URL: | https://github.com/bit-team/backintime |
Licenses: | GPL |
Submitter: | None |
Maintainer: | graysky |
Last Packager: | graysky |
Votes: | 296 |
Popularity: | 0.47 |
First Submitted: | 2009-01-09 20:46 (UTC) |
Last Updated: | 2024-08-07 19:55 (UTC) |
Dependencies (11)
- backintime-cliAUR (backintime-cli-gitAUR)
- libnotify (libnotify-gitAUR)
- polkit (polkit-gitAUR, polkit-consolekitAUR)
- python-dbus
- python-pyqt6
- sshfs
- xorg-xdpyinfo
- python (python37AUR, python311AUR, python310AUR) (make)
- kompare (kompare-gitAUR) (optional) – diff/patch frontend
- meld (meld-gitAUR) (optional) – diff/patch frontend
- qt6-translations (optional) – translate BIT dialogs into native language
Required by (1)
- backintime-cli (optional)
Sources (1)
Latest Comments
« First ‹ Previous 1 .. 61 62 63 64 65 66 67 68 69 70 71 .. 73 Next › Last »
fukawi2 commented on 2012-08-29 00:34 (UTC)
k0Do commented on 2012-08-28 14:47 (UTC)
I guess gnome-session is only needed for GnomePlugin which can give you an optional tray icon while a snapshot is working.
So, gnome-session should be a suggestion, no hard dependency.
k0Do commented on 2012-08-28 14:38 (UTC)
Request for out of date: There's version 1.0.10 tagged in bzr, though no offical tarball available.
The configure script for the gnome GUI does not work for --no-check, meaning gnome-session is always enforced. Not good for Xfce, Enlightenment etc.
Here my proposal for the PKGBUILd part:
# Build a custom array of depends based on what DE is installed
GUI_ENFORCE=1 # set to 0 if you don't want a GUI at all
if [ -e '/usr/lib/libkonq.so' ]; then
# KDE is installed
depends=( ${depends[@]} xorg-utils python2-pyqt kdebindings-python)
_type=( ${_type[@]} kde4 )
fi
if [ -n "`which gnome-session 2> /dev/null`" ]; then
# GNOME really
depends=( ${depends[@]} pygtk python-notify gnome-python meld gksu gnome-session )
_type=( ${_type[@]} gnome )
fi
if [ ${GUI_ENFORCE} == 1 -a ${#_type[@]} == 0 ]; then
# other DE like Xfce, Enlightenment etc.
depends=( ${depends[@]} pygtk python-notify gnome-python meld gksu )
_type=( ${_type[@]} gnome )
fi
Replace the line "./configure" with "cp Makefile.template Makefile" as a work around for the gnome section.
The check for gnome-session is useless here.
http://bazaar.launchpad.net/~bit-team/backintime/trunk/view/head:/gnome/configure
capoeira commented on 2012-07-14 14:45 (UTC)
is it neccessary that gvfs runs proccesses the whole time? I'm not using gnome
fukawi2 commented on 2011-12-28 02:02 (UTC)
Very weird... Makes me think even more it's an issue further down the dep chain (ie, somewhere in python) rather than backintime itself. Still keen to fix in the PKGBUILD if possible though :)
graysky commented on 2011-12-28 01:47 (UTC)
Odd thing is that this is only happening on one machine. I have your PKG running just fine on 3 other x86_64 boxes... of course the machine that's causing a problem resides at my parent's house. Gotta coordinate a time with them to ssh in... they power down EVERYTHING including the modem and router when the machine is not in use :p
fukawi2 commented on 2011-12-27 22:44 (UTC)
Hmm, same... Appears to have last been updated 6+ months ago:
$ grep lib32-gnutls /var/log/pacman.log
[2010-04-27 20:04] installed lib32-gnutls (2.8.6-1)
[2010-09-05 09:40] upgraded lib32-gnutls (2.8.6-1 -> 2.8.6-3)
[2010-10-10 17:40] upgraded lib32-gnutls (2.8.6-3 -> 2.8.6-4)
[2011-01-18 18:16] upgraded lib32-gnutls (2.8.6-4 -> 2.10.4-1)
[2011-05-08 11:45] upgraded lib32-gnutls (2.10.4-1 -> 2.12.2-1)
I wonder if it's a python version issue; I see you're running it with 2.7.. There is python-gnutls in the repos, and it depends on python26. Could you try downgrading to 2.6 and see if it works?
graysky commented on 2011-12-27 22:26 (UTC)
@fukaw - wish I knew.
# pacman -S lib32-gnutls
error: target not found: lib32-gnutls
I have multilib enabled. Really odd!
:: Synchronizing package databases...
core is up to date
extra is up to date
community is up to date
multilib is up to date
fukawi2 commented on 2011-12-27 22:14 (UTC)
Hmmm, well I obviously haven't got it as a dep, it just already exists on my system. What do you think is the best solution here?
graysky commented on 2011-12-27 16:23 (UTC)
That's even more fucked up... it's x86_64.
Pinned Comments
graysky commented on 2023-10-07 12:15 (UTC)
Using an AUR helper such as yay to build packages including backintime is HIGHLY discouraged. The recommended build method is to use a clean chroot. See: https://wiki.archlinux.org/title/DeveloperWiki:Building_in_a_clean_chroot
I wrote a script that automates much of that called clean-chroot-manager offered here in the AUR.
Please stop posting build failures because you insist on building with yay or other AUR helpers.