Package Details: syncthingtray-qt6 1.5.3-1

Git Clone URL: https://aur.archlinux.org/syncthingtray-qt6.git (read-only, click to copy)
Package Base: syncthingtray-qt6
Description: Tray application for Syncthing (using Qt 6)
Upstream URL: https://github.com/Martchus/syncthingtray
Licenses: GPL
Submitter: Martchus
Maintainer: Martchus
Last Packager: Martchus
Votes: 14
Popularity: 2.60
First Submitted: 2020-11-07 16:16 (UTC)
Last Updated: 2024-05-08 14:42 (UTC)

Pinned Comments

Martchus commented on 2023-11-21 23:20 (UTC) (edited on 2024-03-06 16:45 (UTC) by Martchus)

All my packages are managed at GitHub where you can also contribute directly: https://github.com/Martchus/PKGBUILDs
There also exist a binary repository: https://wiki.archlinux.org/index.php/Unofficial_user_repositories#ownstuff
The packages within the binary repository are built against the latest packages from Arch Linux and hence might not be compatible with Manjaro. This can be the cause when the Plasmoid doesn't work.
Note that the syncthingtray-qt6 package in my binary repository is even built against Arch Linux's kde-unstable repository in order to include KDE integrations as well. That means you'll need that repository as well - even for the desktop-neutral parts (at least when kde-unstable has a newer version of Qt).** You can still build this package yourself against the normal repositories (without KDE integrations) or use syncthingtray instead for the time being.

Important remarks:

  • Like with any other package a rebuild is required when the soname of a dependency like boost changes (see e.g. https://github.com/Martchus/syncthingtray/issues/98). The package in my binary repository should be rebuilt in a timely manner. I'm usually also updating pkgrel of the AUR package when a rebuild is required (only in accordance with Arch Linux of course, not in accordance with Manjaro).
    • The "dirty" way is forcing the installation/update (leaving syncthingtray-qt6 broken until it has been rebuilt) or to uninstall syncthingtray-qt6 temporarily before the update. After the update syncthingtray-qt6 can be rebuilt and reinstalled again.
    • The correct solution is to use makechrootpkg which is also how official developers build their packages (and how packages in my binary repository are built).
  • It is required to build dependencies (that are not provided by Arch Linux itself) before building this package. So you need to build c++utilities, qtutilities-qt6, qtforkawesome-qt6 and syncthingtray-qt6 in that order.
  • The KDE integrations have been ported to KDE 6. This package builds KDE integrations for KDE 6 by default as KDE 6 is now in the main repositories.
  • Note that the tests of this package might fail despite there's nothing wrong (e. g. because Syncthing is just too slow and the test runs in a timeout). To ignore those false-positives, build the package with makepkg --nocheck or makechrootpkg -- --nocheck. It makes still sense to report failures. But please include the actual error message and not just the last few lines.

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

DanSman commented on 2022-11-10 19:11 (UTC)

So that would mean that at least yay, paru and pikaur are having the same problem?

What's wrong with using that:

depends=('qtutilities-qt6' 'qtforkawesome-qt6' 'c++utilities' 'boost-libs'
         'qt6-svg' 'openssl' 'desktop-file-utils' 'xdg-utils')

Martchus commented on 2022-11-08 22:14 (UTC) (edited on 2022-11-08 22:15 (UTC) by Martchus)

Those dependencies are present in the AUR. The "Dependencies" section on this page shows the packages the dependencies are provided by. Note that the warning message lists certain dependencies but calls them "packages" which is wrong. Dependencies are not the same as packages. You should report a bug on the AUR helper you're using.

DanSman commented on 2022-11-08 18:25 (UTC) (edited on 2022-11-08 18:25 (UTC) by DanSman)

I ran into the following error the since the laetest update:

:: error: Can't resolve dependencies for AUR package 'syncthingtray-qt6':
:: error: Dependencies missing for syncthingtray-qt6
:: warning: Following packages cannot be found in AUR:
    libqtforkawesome-qt6.so    
    libqtutilities-qt6.so    
    libc++utilities.so

Oleg_Andreych commented on 2022-10-05 17:15 (UTC)

Seems like there's a wrong sha256 checksum in the PKGBUILD.

bdd40eee7f16e8d4f53d153db4e0288f83b92a39bc33c96b22568f25712fe3d4 works for me.

cyqsimon commented on 2022-09-26 17:03 (UTC)

@Martchus ah okay makes sense. Thanks!

Martchus commented on 2022-09-26 08:27 (UTC)

@cyqsimon

You cannot build the KDE integrations for the Qt 6 version because KDE frameworks have not been ported to Qt 6 yet. (Maybe you could already build some of the frameworks against Qt 6 and use that instead of officially provided packages but I haven't done it yet and therefore Syncthing Tray itself has not been ported yet to KF6.)

cyqsimon commented on 2022-09-26 06:50 (UTC)

@plague-doctor You want to install c++utilities, qtutilities-qt6, and qtforkawesome-qt6 from AUR first, in that order. Then this package will build.

cyqsimon commented on 2022-09-26 06:46 (UTC)

I am having trouble building with SYNCTHING_TRAY_ENABLE_KIO_PLUGIN=1 and/or SYNCTHING_TRAY_ENABLE_PLASMOID=1. Enabling either gives me errors during build.

With SYNCTHING_TRAY_ENABLE_KIO_PLUGIN=1, this is the error:

CMake Error: The INTERFACE_QT_MAJOR_VERSION property of "Qt5::Core" does
not agree with the value of QT_MAJOR_VERSION already determined
for "syncthingfileitemaction-qt6".

With SYNCTHING_TRAY_ENABLE_PLASMOID=1, this is the error:

-- Linking syncthingplasmoid-qt6 against Qt module Qt6::Network.
CMake Error at /usr/lib64/cmake/Qt6Qml/Qt6QmlMacros.cmake:2092 (message):
  qt_generate_foreign_qml_types() is only available in Qt 6.
Call Stack (most recent call first):
  /usr/lib64/cmake/Qt6Qml/Qt6QmlConfig.cmake:125 (include)
  /usr/share/qtutilities-qt6/cmake/modules/QtLinkage.cmake:67 (find_package)
  /usr/share/qtutilities-qt6/cmake/modules/QtConfig.cmake:80 (use_qt_module)
  plasmoid/lib/CMakeLists.txt:41 (include)

A8PX commented on 2022-09-20 04:23 (UTC) (edited on 2022-09-20 04:24 (UTC) by A8PX)

@FlyingSnake Try to remove syncthingtray-qt6 first, update boost and then install syncthingtray-qt6.

plague-doctor commented on 2022-09-19 22:04 (UTC)

Dependency missing: libqtforkawesome-qt6.so
libqtutilities-qt6.so
libc++utilities.so