Package Details: transmission-cli-git 4.1.0.beta.2.r0.gac5c9e082-1

Git Clone URL: https://aur.archlinux.org/transmission-cli-git.git (read-only, click to copy)
Package Base: transmission-cli-git
Description: Fast, easy, and free BitTorrent client (CLI tools and daemon and web client)
Upstream URL: https://www.transmissionbt.com/
Licenses: GPL-2.0-or-later
Conflicts: transmission-cli
Provides: transmission-cli
Submitter: lonaowna
Maintainer: EndlessEden (cephian, glitsj16)
Last Packager: EndlessEden
Votes: 6
Popularity: 0.000002
First Submitted: 2018-01-17 23:20 (UTC)
Last Updated: 2025-04-30 06:37 (UTC)

Required by (55)

Sources (3)

Pinned Comments

EndlessEden commented on 2025-04-30 06:42 (UTC)

@afader -- I just built in a clean chroot. Sounds like a issue either with your system or your chroot. tested with a knoppix ISO to verify it functions as intended. If you can create a dump and link to it here, i can take a look.

-- Updated pkgver, updated the maintainers list (@glitsj16 & @cephian | if you want to be listed as a maintainer instead of contributors in pkgbuild, please update your sections in it. Thanks.)

Trying to be more active, apologies for the long hiatus.

Latest Comments

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

rekman commented on 2023-02-11 11:54 (UTC)

Looks like this fails to build with clang 15.0.7 because clang-tidy gets stuck. Builds fine with clang 14.0.6. For a workaround add -DRUN_CLANG_TIDY=OFFto the cmake flags in build() to skip clang-tidy.

cephian commented on 2023-01-05 13:05 (UTC)

Package should be fixed now, let me know if it's not (and the next time it breaks).

test0 commented on 2023-01-05 08:43 (UTC) (edited on 2023-01-05 13:14 (UTC) by test0)

@afader I was getting the same error until I cleaned the build environment and rewritten the prepare() method according to the github instructions. @cephian I guess the PKGBUILD needs to be updated according to the latest build instructions (also dependencies needs to be checked/updated).

afader commented on 2023-01-03 17:51 (UTC)

Can anyone help for this

CMake Error in libtransmission/CMakeLists.txt:
  Imported target "FastFloat::fast_float" includes non-existent path

    "/home/akf/.cache/yay/transmission-cli-git/src/transmission/cmake/../third-party/fast_float/include"

  in its INTERFACE_INCLUDE_DIRECTORIES.  Possible reasons include:

  * The path was deleted, renamed, or moved to another location.

  * An install or uninstall procedure did not complete successfully.

  * The installation package was faulty and references files it does not
  provide.

aramirez commented on 2022-10-17 14:50 (UTC)

Can confirm it still builds and works fine on armv7h (Raspberry Pi 2 B). Thank you.

cephian commented on 2022-10-08 17:59 (UTC)

Added armv7h from aramirez's suggestion, I have no way of testing it myself though.

aramirez commented on 2022-08-28 09:42 (UTC)

Can confirm it builds and works fine on armv7h (Raspberry Pi 2 B). Please, consider adding armv7h to the arch list.

EndlessEden commented on 2022-08-27 03:55 (UTC)

Thanks cephian, if you have any questions you can contact me via my email in the pkgbuild.

Sorry to the community that I have been neglecting this so much.

cephian commented on 2022-08-21 05:48 (UTC)

It seems I've been added as a comaintainer, so I updated the package to fix the wide-integer error. I've never maintained an AUR package before but I'll do my best to keep this updated.

rekman commented on 2022-08-03 21:53 (UTC)

In patch form cephian's fix is

diff --git a/PKGBUILD b/PKGBUILD
index 86ecbfa..e6076a9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -22,7 +22,8 @@ source=(transmission::git+https://github.com/transmission/transmission.git
         "arc4"::"git+https://github.com/transmission/arc4"
         "googletest"::"git+https://github.com/google/googletest.git"
         "utfcpp"::"git+https://github.com/transmission/utfcpp#branch=post-3.2.1-transmission"
-       "libutp"::"git+https://github.com/transmission/libutp#branch=post-3.4-transmission")
+        "libutp"::"git+https://github.com/transmission/libutp#branch=post-3.4-transmission"
+        "wide-integer"::"git+https://github.com/transmission/wide-integer.git")
        #"$_pkgbase/third-party/libnatpmp"::"git+https://github.com/transmission/libnatpmp#branch=post-20151025-transmission"
         #"$_pkgbase/third-party/miniupnpc"::"git+https://github.com/transmission/miniupnpc#branch=post-2.0.20170509-transmission"
         #"$_pkgbase/third-party/libdeflate"::"git+https://github.com/transmission/libdeflate#branch=v1.11-plus-cmake"
@@ -38,6 +39,7 @@ sha256sums=('SKIP'
            'SKIP'
            'SKIP'
            'SKIP'
+           'SKIP'
            'SKIP')

 pkgver() {
@@ -67,6 +69,11 @@ prepare() {
    fi
    ln -s $srcdir/libutp libutp

+   if [ -e wide-integer ]; then
+       rm -r wide-integer
+   fi
+   ln -s $srcdir/wide-integer wide-integer
+
 #  git submodule update --init
 }