Package Details: insync 3.9.10.60041-1

Git Clone URL: https://aur.archlinux.org/insync.git (read-only, click to copy)
Package Base: insync
Description: An unofficial Dropbox, Google Drive, and OneDrive client that runs on Linux, with support for various desktops
Upstream URL: https://www.insynchq.com/downloads
Keywords: drive dropbox google onedrive
Licenses: custom:insync
Submitter: xzy3186
Maintainer: thenaterhood
Last Packager: thenaterhood
Votes: 323
Popularity: 0.046744
First Submitted: 2012-09-07 17:45 (UTC)
Last Updated: 2026-05-03 16:19 (UTC)

Latest Comments

« First ‹ Previous 1 .. 15 16 17 18 19 20 21 22 23 24 25 .. 66 Next › Last »

achilleas commented on 2019-10-06 13:17 (UTC) (edited on 2019-10-06 13:18 (UTC) by achilleas)

I run Insync headless on a home server and CLI and headless support were dropped in v3. I've created a separate aur package called insync1 from the last commit of this package pre-v3. The official word on this package is that it's community supported and it wont receive any updates.

Insync say they might add CLI/headless support in the future. Until then, we can use 1.5.7 until it stops working. I've added a pinned comment on the package to explain its purpose.

salsergey commented on 2019-10-03 06:01 (UTC)

Seems to work fine on my fresh Manjaro KDE. However, it turned out that the tray icon wasn't shown, though it was responding to mouse clicks. The tray icon appeared only after the installation of lib32-libappindicator-gtk2. Maybe this package should be included in the dependencies of Insync?

giswqs commented on 2019-09-30 12:40 (UTC) (edited on 2019-09-30 12:41 (UTC) by giswqs)

The latest update broke insync on my Manjaro KDE. The insync tray icon is not responding, and files are not being synced. Please help! Thanks.

Kr1ss commented on 2019-09-29 22:36 (UTC)

Thx for the update !

NobbZ commented on 2019-09-29 09:01 (UTC) (edited on 2019-09-29 09:19 (UTC) by NobbZ)

@Kr1ss, yes, still it would be cool if that fix was included in the PKGBUILD from the AUR already…

edit 1:

I made it work after applying the following diff:

diff --git a/PKGBUILD b/PKGBUILD
index 9085d63..d9a6901 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -24,16 +24,19 @@ depends=('xdg-utils'
          'libxcomposite')
 optdepends=()
 arch=('x86_64')
-source=('insync@.service' 'insync.service')
-md5sum=('fbf05bead8c90d5fd18a1ba14147acf7'
-           '7d416b57ed52fe3daf71bae1af563657')
-source=("http://s.insynchq.com/builds/${pkgname}_${pkgver}-${_dist}_amd64.deb")
-sha256sums=('6112df3b92e658606632e853066fda234aba7d72c1417ea4f87978febe729349')
+source=(
+    "http://s.insynchq.com/builds/${pkgname}_${pkgver}-${_dist}_amd64.deb"
+    'insync@.service'
+    'insync.service'
+)
+sha256sums=('6112df3b92e658606632e853066fda234aba7d72c1417ea4f87978febe729349'
+            'cf276c1dbf1592ea63a21c2d61c75f7ad6ec3b13e87b3aaa331e9c14799f4598'
+            '1432141539a6b3c5333631a2ee6696fab9bd2fe8770643bc670d95e4e96203e0')
 package() {
    tar xf data.tar.gz
    cp -rp usr ${pkgdir}/
-   install -Dm644 ../insync@.service ${pkgdir}/usr/lib/systemd/system/insync@.service
-   install -Dm644 ../insync.service ${pkgdir}/usr/lib/systemd/user/insync.service
-   install -dm755  ${pkgdir}/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0
+   install -Dm644 insync@.service ${pkgdir}/usr/lib/systemd/system/insync@.service
+   install -Dm644 insync.service ${pkgdir}/usr/lib/systemd/user/insync.service
+   install -dm755 ${pkgdir}/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0
    ln -s /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache ${pkgdir}/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders.cache
 }

Kr1ss commented on 2019-09-29 08:35 (UTC)

@BrianAllred see my comment below for a fix.

BrianAllred commented on 2019-09-29 06:05 (UTC)

Can't install in a clean chroot.

==> Starting package()...
install: cannot stat '../insync@.service': No such file or directory

<deleted-account> commented on 2019-09-28 20:51 (UTC)

hi guys, dont you have problems with tray icon under gnome ?

Jin23Lee commented on 2019-09-28 17:29 (UTC)

Thanks to the package maintainer! the latest insync is working!

Kr1ss commented on 2019-09-28 14:55 (UTC) (edited on 2019-09-28 17:53 (UTC) by Kr1ss)

Hey @thenaterhood & @erikdubois, thx a lot for packaging this !

Would you consider to change lines #35f in your PKGBUILD like :

   install -Dm644 insync@.service ${pkgdir}/usr/lib/systemd/system/insync@.service
   install -Dm644 insync.service ${pkgdir}/usr/lib/systemd/user/insync.service

i.e. point to insync{,@}.service (inside $srcdir) rather than ../insync{,@}.service.

The latter wouldn't work for a user who has changed their $SRCDEST, (mine is changed to a temp folder for ex.). Since makepkg symlinks all AUR source files to $srcdir/<filename>, omitting the ../ would work for all configurations, default $SRCDEST or not.

EDIT Further on, the service files aren't recognized as sources in the first place because they need to be defined in one source array (as well as one single checksum array) :

source=("http://s.insynchq.com/builds/${pkgname}_${pkgver}-${_dist}_amd64.deb"
        'insync@.service' 'insync.service')
sha256sums=('6112df3b92e658606632e853066fda234aba7d72c1417ea4f87978febe729349'
            'cf276c1dbf1592ea63a21c2d61c75f7ad6ec3b13e87b3aaa331e9c14799f4598'
            '1432141539a6b3c5333631a2ee6696fab9bd2fe8770643bc670d95e4e96203e0')

EDIT 2 FWIW, the current build based on the Debian Buster package works without manually creating symlinks as suggested by @gofree. These libraries are included now, so changing from the Ubuntu package to Buster was a good move !

Cheers and thanks !