Search Criteria
Package Details: qbittorrent-enhanced-ua 5.2.3.10-1
Package Actions
| Git Clone URL: | https://aur.archlinux.org/qbittorrent-enhanced-ua.git (read-only, click to copy) |
|---|---|
| Package Base: | qbittorrent-enhanced-ua |
| Description: | An advanced BitTorrent client programmed in C++, based on Qt toolkit and libtorrent-rasterbar (Enhanced Edition with original user-agent) |
| Upstream URL: | https://github.com/c0re100/qBittorrent-Enhanced-Edition |
| Licenses: | GPL-3.0-or-later, GPL-2.0-or-later |
| Conflicts: | qbittorrent |
| Provides: | qbittorrent |
| Submitter: | Hanabishi |
| Maintainer: | Hanabishi |
| Last Packager: | Hanabishi |
| Votes: | 9 |
| Popularity: | 0.45 |
| First Submitted: | 2021-12-20 13:41 (UTC) |
| Last Updated: | 2026-07-19 18:29 (UTC) |
Dependencies (14)
- glibc (glibc-gitAUR, glibc-git-native-pgoAUR, glibc-eacAUR)
- hicolor-icon-theme (hicolor-icon-theme-gitAUR)
- libgcc (libgcc-fast-optimizedAUR, libgcc-snapshotAUR)
- libstdc++ (libstdc++-fast-optimizedAUR, libstdc++-snapshotAUR)
- libtorrent-rasterbar (libtorrent-rasterbar-1AUR, libtorrent-rasterbar-gitAUR, libtorrent-rasterbar-2_0-gitAUR, libtorrent-rasterbar-2_0-gitAUR, libtorrent-rasterbar-1_2-gitAUR, libtorrent-rasterbar-1_2-gitAUR, libtorrent-rasterbar-1_1-gitAUR, libtorrent-rasterbar-1_1-gitAUR, libtorrent-rasterbar-2_1-gitAUR)
- openssl (openssl-gitAUR, openssl-aegisAUR, openssl-staticAUR)
- qt6-base (qt6-base-gitAUR, qt6-base-hifpsAUR, qt6-base-headlessAUR)
- qt6-svg
- zlib (zlib-gitAUR, zlib-ng-compat-gitAUR, zlib-ng-compat)
- boost (boost-gitAUR) (make)
- cmake (cmake3AUR, cmake-gitAUR) (make)
- qt6-svg (make)
- qt6-tools (make)
- python (optional) – needed for torrent search tab
Required by (37)
- autoanimedownloader-bin (requires qbittorrent)
- autoanimedownloader-git (requires qbittorrent)
- autobrr (requires qbittorrent) (optional)
- cli-torrent-dl (requires qbittorrent) (optional)
- lidarr (requires qbittorrent) (optional)
- lidarr-bin (requires qbittorrent) (optional)
- lidarr-develop (requires qbittorrent) (optional)
- lidarr-develop-bin (requires qbittorrent) (optional)
- lidarr-git (requires qbittorrent) (optional)
- lidarr-nightly-bin (requires qbittorrent) (optional)
- lidarr-plugins (requires qbittorrent) (optional)
- lidarr-plugins-bin (requires qbittorrent) (optional)
- mylar3 (requires qbittorrent) (optional)
- nodejs-cross-seed (requires qbittorrent) (optional)
- prowlarr (requires qbittorrent) (optional)
- prowlarr-bin (requires qbittorrent) (optional)
- prowlarr-develop (requires qbittorrent) (optional)
- prowlarr-develop-bin (requires qbittorrent) (optional)
- prowlarr-nightly-bin (requires qbittorrent) (optional)
- qbittorrent-nightwalker (requires qbittorrent) (optional)
- Show 17 more...
Latest Comments
1 2 Next › Last »
Hanabishi commented on 2026-07-16 12:42 (UTC)
Done in
-2.Hanabishi commented on 2026-07-16 12:33 (UTC)
But actually there is a patch already merged upstream. So could use that I guess. It won't be my responsibility if it breaks. 🙂️
Hanabishi commented on 2026-07-16 12:26 (UTC)
I can't update the package because I'm not the developer. So ask upstream.
Dirty patching it also doesn't sound like a good idea, there could be more subtle ways of breakage even if it compiles.
koop231 commented on 2026-07-16 12:14 (UTC)
Build fails with current Arch libtorrent-rasterbar. Package: qbittorrent-enhanced-ua 5.2.1.10-1 System: Arch Linux x86_64 libtorrent-rasterbar: 2.1.0 Qt: 6.x Compiler: GCC 16.1.1 Error: src/base/bittorrent/customstorage.cpp:68:44: error: no matching function for call to 'Path::Path(<brace-enclosed initializer list>)' 68 | const Path savePath {storageParams.path}; | ^ src/base/bittorrent/customstorage.cpp:72:23: error: 'const struct libtorrent::storage_params' has no member named 'mapped_files' 72 | storageParams.mapped_files ? *storageParams.mapped_files : storageParams.files, | ^
~~~ It looks like qBittorrent-Enhanced-Edition 5.2.1.10 is not compatible with the current libtorrent-rasterbar API in Arch.storage_params::pathis nowstd::string_view, andstorage_params::mapped_filesno longer exists. A local workaround is: ```cpp const Path savePath {std::string {storageParams.path}}; and replacing:storageParams.mapped_files ? *storageParams.mapped_files : storageParams.files, with:
storageParams.files,
Could you please update the package or apply a compatibility patch for libtorrent-rasterbar 2.1?
Hanabishi commented on 2025-05-17 13:54 (UTC)
Upstream retagged the release. https://github.com/c0re100/qBittorrent-Enhanced-Edition/activity
Fixed checksums in
-2.lapsus commented on 2025-05-17 13:44 (UTC)
escape0707 commented on 2024-04-03 12:28 (UTC)
Oh, yes. I made a very dumb mistake lol. After you pointed it out, it seems so obvious now... Thank you!
Hanabishi commented on 2024-04-03 12:25 (UTC) (edited on 2024-04-03 12:26 (UTC) by Hanabishi)
Of course it doesn't work, because the syntax is wrong. Type
echo "$((nproc / 2 - 1))"into your shell and see the output.It should be
$(($(nproc) / 2 - 1)).nprocis an executable.escape0707 commented on 2024-04-03 12:18 (UTC)
Sorry, I think it's caused by one of my changes to
MAKEFLAGSpreviously. I wanted to useMAKEFLAGS="-j $((nproc / 2 - 1))"to calculate core counts on my different machines, but it seems that cmake can't be used with this? Anyway, I'll use$nprocnow.Hanabishi commented on 2024-04-03 12:11 (UTC)
No idea. Check your
MAKEFLAGSI guess. Try a clean build usingmakepkgmanually.1 2 Next › Last »