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: 88
Popularity: 0.127550
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 .. 11 12 13 14 15 16 17 Next › Last »

FredBezies commented on 2021-08-15 12:43 (UTC) (edited on 2021-08-15 12:48 (UTC) by FredBezies)

There is a bug. PKGVER cannot be generated with sr.ht URL.

==> Making package: tenacity-git 3.0.2.r595.g04609bba0-1 (Sun Aug 15 14:42:53 2021)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Updating tenacity git repo...
Fetching origin
  -> Found tenacity.patch
==> Validating source files with sha256sums...
    tenacity ... Skipped
    tenacity.patch ... Passed
==> Extracting sources...
  -> Creating working copy of tenacity git repo...
Reset branch 'makepkg'
==> Starting prepare()...
patching file lib-src/portaudio-v19/src/hostapi/alsa/pa_linux_alsa.c
==> Starting pkgver()...
fatal: No names found, cannot describe anything.
==> ERROR: pkgver is not allowed to be empty.
==> ERROR: pkgver() generated an invalid version:

Icecube63 commented on 2021-07-29 14:57 (UTC) (edited on 2021-07-29 14:59 (UTC) by Icecube63)

Last Updates i've got the message that directory tenacity/build already exists. After deleting the directory update works

I think thats a problem with

build() { mkdir tenacity/build....

akya commented on 2021-07-26 03:27 (UTC)

Yup same as @Popolon build fails

ancaro commented on 2021-07-23 19:43 (UTC)

Description: An easy-to-use multi-track audio editor and recorder

Please add some reference to Audacity, makes easier to find.

Popolon commented on 2021-07-23 09:06 (UTC)

Build currently fail in libmp3lame

ERROR: libmp3lame/3.100: Error in build() method, line 81
    self._apply_patch()
while calling '_apply_patch', line 43
    tools.patch(base_path=self._source_subfolder, patch_file='%s.patch' % patch, strip=3)
    FileNotFoundError: [Errno 2] No such file or directory: '6410.patch'
CMake Error at cmake-proxies/cmake-modules/conan.cmake:631 (message):
  Conan install failed='1'
Call Stack (most recent call first):
  cmake-proxies/cmake-modules/AudacityDependencies.cmake:233 (conan_cmake_install)
  cmake-proxies/cmake-modules/AudacityDependencies.cmake:254 (_conan_install)
  CMakeLists.txt:490 (resolve_conan_dependencies)

Darkpelz commented on 2021-07-22 16:35 (UTC)

@FredBezies Thanks for the cleanup, I've updated the PKGBUILD.

FredBezies commented on 2021-07-22 16:04 (UTC)

Here is a cleaned-up PKGBUILD. I used namcap to shorten depends list.

# Maintainer: Luke Huckman (Darkpelz) <lukeh@outlook.my>
# Maintainer: Fabio 'Lolix' Loli <fabio.loli@disroot.org> -> https://github.com/FabioLolix
# Maintainer: fossdd <fossdd@tutanota.com>
# Contributor: Ong Yong Xin <ongyongxin2020+github AT gmail DOT com>
# Contributor: Bernhard Landauer <oberon@manjaro.org>
# Contributor: Eric Bélanger <eric@archlinux.org>

pkgname=tenacity-git
pkgver=3.0.2.r523.g79d7db6aa
pkgrel=1
pkgdesc="FLOSS Audacity Fork. No telemetry, crash reports and other shenanigans like that!"
arch=(i686 x86_64)
url="https://github.com/tenacityteam/tenacity"
license=(GPL2 CCPL)
groups=(pro-audio)
depends=(gtk2 gtk3 qt5-base libid3tag lilv lv2 portsmf suil libmad twolame vamp-plugin-sdk libsoxr soundtouch)
makedepends=(git cmake clang sdl2 libsoup libnotify gstreamer gst-plugins-bad-libs
             ffmpeg jack nasm conan)
# can't find system lame portmidi
optdepends=('ffmpeg: additional import/export capabilities')
provides=(audacity)
conflicts=(audacity)
source=(
  "git+https://github.com/tenacityteam/tenacity.git"
  "tenacity.patch"
)
sha256sums=('SKIP' 'c06c60a9ae17b9265840fcd619d2c7a5668f26a94cec80c8785c7997afd4bc96')

pkgver() {
  cd tenacity
  git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' | cut -d'.' -f2-
}

prepare() {
  cd tenacity
  patch --forward --strip=1 --input="${srcdir}/tenacity.patch"
}

build() {
  mkdir tenacity/build
  cd tenacity/build
  CC=clang cmake \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DwxBUILD_TOOLKIT:STRING=gtk3 \
    -Daudacity_use_wxwidgets=local \
    audacity_use_ffmpeg:STRING=loaded \
    ..
  cmake --build .
  make .
}

package() {
  cd tenacity/build
  make DESTDIR="${pkgdir}" install
}