Whoever flagged this package: Just rebuilt it against the new boost version. There's no modification to the PKGBUILD required.
Search Criteria
Package Details: syncthingtray 1.6.3-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/syncthingtray.git (read-only, click to copy) |
---|---|
Package Base: | syncthingtray |
Description: | Tray application for Syncthing |
Upstream URL: | https://github.com/Martchus/syncthingtray |
Licenses: | GPL-2-or-later |
Submitter: | Martchus |
Maintainer: | Martchus |
Last Packager: | Martchus |
Votes: | 92 |
Popularity: | 1.31 |
First Submitted: | 2016-09-14 20:13 (UTC) |
Last Updated: | 2024-10-21 14:22 (UTC) |
Dependencies (21)
- boost-libs
- c++utilitiesAUR
- desktop-file-utils (desktop-file-utils-gitAUR)
- libboost_filesystem.so (boost183-libsAUR, boost-libs)
- libc++utilities.so (c++utilitiesAUR)
- libqtforkawesome.so (qtforkawesomeAUR)
- libqtutilities.so (qtutilitiesAUR)
- openssl (openssl-gitAUR, openssl-staticAUR)
- qt5-base (qt5-base-gitAUR, qt5-base-headlessAUR)
- qt5-declarative (qt5-declarative-gitAUR)
- qt5-svg (qt5-svg-gitAUR)
- qtforkawesomeAUR
- qtutilitiesAUR
- boost (boost-gitAUR) (make)
- cmake (cmake-gitAUR) (make)
- ninja (ninja-kitwareAUR, ninja-memAUR, ninja-fuchsia-gitAUR, ninja-gitAUR, ninja-jobserverAUR) (make)
- qt5-tools (make)
- cppunit (check)
- iproute2 (iproute2-gitAUR, busybox-coreutilsAUR, iproute2-selinuxAUR) (check)
- syncthing (syncthing-gitAUR, syncthing-binAUR) (check)
- gnome-shell-extension-appindicator (gnome-shell-extension-appindicator-gitAUR) (optional) – tray icon support for GNOME Shell
Required by (0)
Sources (1)
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 7 8 .. 13 Next › Last »
Martchus commented on 2023-09-03 20:05 (UTC)
Martchus commented on 2023-09-02 20:47 (UTC)
Just rebuild this package against the new boost package. I'll rebuild the packages in my binary repository as well.
mutt commented on 2023-09-02 20:23 (UTC)
Just a heads up, seems like boost-libs
got updated earlier today, so it cannot be upgraded while having this package installed as of now.
Martchus commented on 2023-08-02 15:40 (UTC)
Your test failure might be fixed by https://github.com/Martchus/syncthingtray/commit/66a8dda244152a6aef48461f83481faf87167210 which will be part of the next release. I tested it by setting TEMP
to a different value and it worked in my environment. In the meantime you can workaround it by ensuring TEMP
and similar variables are cleared in your environment.
Martchus commented on 2023-08-02 11:10 (UTC)
It fails in CPPUNIT_ASSERT(std::ofstream(m_tempPath / "some/path/1/new-file.txt") << "foo");
. I haven't seen that before and find it rather strange. The variable m_tempPath
is initialized via std::filesystem::temp_directory_path()
and therefore supposed to point to a writeable location. It looks like the sub-path some/path/1
is supposed to be created via Syncthing, though. The only potential problem I see is that Syncthing will always create it under /tmp/some/path/1
whereas std::filesystem::temp_directory_path()
might return something different than /tmp
. Could it be that you have set an environment variable in your build environment that changes the behaviour of std::filesystem::temp_directory_path()
? Regardless of whether that's the concrete problem here, I suppose I will ensure that Syncthing and the test code use always the same path (in the next release).
milkii commented on 2023-08-02 05:56 (UTC) (edited on 2023-08-02 05:56 (UTC) by milkii)
A full log would help, sorry!
https://gist.github.com/mxmilkiib/fd70af73a4ca97ca4871ce0895ff1c8a
Martchus commented on 2023-06-25 20:13 (UTC)
@milkii The log you shared only shows that this is a test failure. Without the test logs themselves there's nothing I can do to help. Checkout the pinned comment for how to ignore such errors.
milkii commented on 2023-06-25 05:01 (UTC)
I'm getting this atm;
...
6/6 Test #6: syncthingfileitemaction_appstream_validation ... Passed 0.54 sec
67% tests passed, 2 tests failed out of 6
Total Test time (real) = 12.70 sec
The following tests FAILED:
1 - syncthingconnector_run_tests (Failed)
2 - syncthingctl_run_tests (Failed)
Errors while running CTest
Output from these tests are in: /home/milk/.cache/yay/syncthingtray/src/syncthingtray-1.4.3/Testing/Temporary/LastTest.log
Use "--rerun-failed --output-on-failure" to re-run the failed cases verbosely.
FAILED: syncthingconnector/CMakeFiles/check /home/milk/.cache/yay/syncthingtray/src/syncthingtray-1.4.3/syncthingconnector/CMakeFiles/check
cd /home/milk/.cache/yay/syncthingtray/src/syncthingtray-1.4.3 && /usr/bin/ctest -V
ninja: build stopped: subcommand failed.
==> ERROR: A failure occurred in check().
Aborting...
-> error making: syncthingtray-exit status 4
-> Failed to install the following packages. Manual intervention is required:
syncthingtray - exit status 4
Martchus commented on 2023-02-13 14:54 (UTC)
I filed a ticket about it: https://github.com/syncthing/syncthing/issues/8785
Martchus commented on 2023-02-13 14:38 (UTC)
That tests are failing when HOME
is not defined is simply because Syncthing itself requires that variable to be defined (and otherwise panics). The integration tests are spawning Syncthing with a separate config/home anyways specified via --home
(so your normal Syncthing setup is not affected) so I suppose I could just set home to something to avoid Syncthing from panicing.
Maybe Syncthing itself could also handle the situation better. The current behaviour makes it look more like an internal and unexpected error within Syncthing itself (rather than something the user has forgotten to setup):
$ HOME= syncthing --help
$HOME is not defined
panic: Failed to get user home dir
goroutine 1 [running]:
github.com/syncthing/syncthing/lib/locations.userHomeDir()
github.com/syncthing/syncthing/lib/locations/locations.go:228 +0x7d
github.com/syncthing/syncthing/lib/locations.init.0()
github.com/syncthing/syncthing/lib/locations/locations.go:56 +0x1d
Pinned Comments
Martchus commented on 2016-10-31 11:39 (UTC) (edited on 2024-10-21 15:10 (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
Important remarks:
pkgrel
of the AUR package when a rebuild is required (only in accordance with Arch Linux of course, not in accordance with Manjaro).syncthingtray
broken until it has been rebuilt) or to uninstallsyncthingtray
temporarily before the update. After the updatesyncthingtray
can be rebuilt and reinstalled again.makechrootpkg
which is also how official developers build their packages (and how packages in my binary repository are built).c++utilities
,qtutilities
,qtforkawesome
andsyncthingtray
in that order.syncthingtray-qt6
instead of this package.makepkg --nocheck
ormakechrootpkg -- --nocheck
. It makes still sense to report failures. But please include the actual error message and not just the last few lines.