Package Details: tenacity-git 1:r14921.g8119cb11c-2

Git Clone URL: https://aur.archlinux.org/tenacity-git.git (read-only, click to copy)
Package Base: tenacity-git
Description: An easy-to-use multi-track audio editor and recorder, forked from Audacity
Upstream URL: https://tenacityaudio.org
Keywords: audacity audio audio-applications audio-processing floss libre privacy-friendly privacy-preserving recorder recording-app
Licenses: GPL2, CCPL
Groups: pro-audio
Conflicts: tenacity
Provides: tenacity
Submitter: Darkpelz
Maintainer: FabioLolix
Last Packager: FabioLolix
Votes: 86
Popularity: 0.006160
First Submitted: 2021-07-07 11:51 (UTC)
Last Updated: 2023-12-23 15:01 (UTC)

Dependencies (44)

Required by (0)

Sources (2)

Pinned Comments

Latest Comments

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

lunasophia commented on 2023-09-24 22:46 (UTC)

I just built it and it took less than a minute. Definitely something on your end.

FabioLolix commented on 2023-09-24 21:28 (UTC)

@xAsh have you edited your makepkg.conf? https://wiki.archlinux.org/title/Makepkg#Parallel_compilation anyway this isn't into lightest package to build

xAsh commented on 2023-09-24 21:24 (UTC)

wondering if anyone else has issues with this package taking ages to compile? I'm using yay, and the step "[100%] Built target mod-script-pipe" takes around 10min

FabioLolix commented on 2023-09-17 14:41 (UTC)

makepkg have options to clean caches (-c and -C, don't remember which is src and which is pkg) and you should be able to pass them to your helper in some way, not gonna to add that to any of my pkgbuilds

electricprism commented on 2023-09-16 02:54 (UTC) (edited on 2023-09-16 03:02 (UTC) by electricprism)

I have to manually delete the cache files of ~/.cache/paru/clone/tenacity-git fairly regularly to get this package to not hold up my paru -Syua

Maybe a update to the prepare function is in order to clear out old git files, or build directory similar to

prepare() {
    # Format: cd "${srcdir}/${_gitdirname}"
    cd "${srcdir}"

    # Delete previous git
    if [[ -d tenacity ]]; then
        rm -rf tenacity
    fi
}

Edit:

After a second look, maybe this would be enough:

prepare() {
    # Format: cd "${srcdir}/${_gitdirname}"
    cd "${srcdir}/tenacity"

    # Delete previous git
    if [[ -d build ]]; then
        rm -rf build
    fi
}

FabioLolix commented on 2023-08-09 08:21 (UTC)

@xAsh can confirm, libnyquist is now a git submodule and need to be configured

xAsh commented on 2023-08-09 08:15 (UTC)

won't compile:

CMake Error at CMakeLists.txt:739 (add_subdirectory): The source directory

/home/me/.cache/yay/tenacity-git/src/tenacity/lib-src/libnyquist

does not contain a CMakeLists.txt file.

FabioLolix commented on 2023-08-02 05:32 (UTC)

I just noticed that this package uses Clang instead of GCC, which is neat! Why so?

Seems it has been inherited from the audacity pkgbuild

nor is it a stable package either.

It isn't as the name implies (*-git) and never claimed to be

gperson commented on 2023-08-02 04:57 (UTC)

Oh hey! I just noticed that this package uses Clang instead of GCC, which is neat! Why so? I'm a little curious and don't request any changes since all I want to do is simply fill my curiosity :D

@Neko-san I have also seen your issue upstream and here too. I'm going to investigate further.

Neko-san commented on 2023-08-01 21:15 (UTC)

Opened the issue upstream here:

https://codeberg.org/tenacityteam/tenacity/issues/247