It's still not building properly. What's the difference betwen tenacity-git and tenacity-wxgtk3-git? Which one should I get?
Search Criteria
Package Details: tenacity-git 1:r14921.g8119cb11c-2
Package Actions
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)
- expat (expat-gitAUR)
- flac (flac-gitAUR)
- gcc-libs (gcc-libs-gitAUR, gccrs-libs-gitAUR, gcc11-libsAUR, gcc-libs-snapshotAUR)
- glib2 (glib2-gitAUR, glib2-selinuxAUR, glib2-patched-thumbnailerAUR)
- glibc (glibc-gitAUR, glibc-linux4AUR, glibc-eacAUR, glibc-eac-binAUR)
- gtk3 (gtk3-no_deadkeys_underlineAUR, gtk3-classicAUR, gtk3-classic-xfceAUR, gtk3-patched-filechooser-icon-viewAUR)
- hicolor-icon-theme (hicolor-icon-theme-gitAUR)
- jackAUR (jack2-gitAUR, pipewire-full-jack-gitAUR, pipewire-jack-gitAUR, jack2, pipewire-jack)
- jsoncpp (jsoncpp-cmake-gitAUR, jsoncpp-cmakeAUR, jsoncpp-gitAUR)
- lame (lame-svnAUR, lame-altivecAUR)
- libebml (libebml-gitAUR)
- libid3tag (libid3tag-gitAUR)
- libmad
- libmatroska (libmatroska-gitAUR)
- libogg (libogg-gitAUR)
- libsndfile (libsndfile-gitAUR)
- libsoxr
- libvorbis (libvorbis-aotuvAUR, libvorbis-aotuv-lancerAUR, libvorbis-gitAUR)
- libzip (libzip-gitAUR)
- lilv (lilv-gitAUR)
- lv2 (lv2-gitAUR)
- portaudio
- portmidi
- portsmf (portsmf-gitAUR)
- soundtouch (soundtouch-gitAUR)
- sqlite (sqlite-fossilAUR)
- suil (suil-gitAUR)
- twolame (twolame-gitAUR)
- vamp-plugin-sdk
- wxwidgets-common (wxwidgets-common-gitAUR, wxwidgets-common-lightAUR)
- wxwidgets-gtk3 (wxwidgets-gtk3-gitAUR, wxwidgets-gtk3-lightAUR)
- chrpath (chrpath-gitAUR) (make)
- clang (llvm-gitAUR, clang-minimal-gitAUR, clang17-binAUR) (make)
- cmake (cmake-gitAUR) (make)
- ffmpeg (ffmpeg-nvcodec-11-1-gitAUR, ffmpeg-cudaAUR, ffmpeg-decklinkAUR, ffmpeg-amd-fullAUR, ffmpeg-ffplayoutAUR, ffmpeg-gitAUR, ffmpeg-amd-full-gitAUR, ffmpeg-fullAUR, ffmpeg-full-gitAUR, ffmpeg-libfdk_aacAUR, ffmpeg-headlessAUR, ffmpeg-obsAUR) (make)
- git (git-gitAUR, git-glAUR) (make)
- gst-plugins-bad-libs (gst-plugins-bad-libs-gitAUR) (make)
- gstreamer (gstreamer-gitAUR) (make)
- libnotify (libnotify-gitAUR) (make)
- libsoup (make)
- nasm (nasm-gitAUR) (make)
- python (python37AUR, python311AUR, python310AUR) (make)
- sdl2AUR (sdl2-compat-gitAUR, sdl2-gitAUR, sdl2-compat) (make)
- ffmpeg (ffmpeg-nvcodec-11-1-gitAUR, ffmpeg-cudaAUR, ffmpeg-decklinkAUR, ffmpeg-amd-fullAUR, ffmpeg-ffplayoutAUR, ffmpeg-gitAUR, ffmpeg-amd-full-gitAUR, ffmpeg-fullAUR, ffmpeg-full-gitAUR, ffmpeg-libfdk_aacAUR, ffmpeg-headlessAUR, ffmpeg-obsAUR) (optional) – additional import/export capabilities
Required by (0)
Sources (2)
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 .. 17 Next › Last »
xavierbaez commented on 2022-05-04 11:31 (UTC)
ImperatorStorm commented on 2022-04-26 21:05 (UTC) (edited on 2022-04-26 21:06 (UTC) by ImperatorStorm)
Again, I can't reproduce this issue, and it works just fine with clean docker instances (https://github.com/ImperatorStorm/PKGBUILDs/actions/workflows/makepkg%20tenacity-wxgtk3-git.yml) and on my own system.
Have you tried updating your system?
EricKotato commented on 2022-04-22 14:02 (UTC) (edited on 2022-04-22 14:08 (UTC) by EricKotato)
Here is the patch I made for GitHub mirror (https://github.com/tenacityteam/tenacity) to enable compatibility with WxWidgets 3.1.6+:
diff --git a/src/TenacityApp.cpp b/src/TenacityApp.cpp
index 8136aa48b..cb0bfb629 100644
--- a/src/TenacityApp.cpp
+++ b/src/TenacityApp.cpp
@@ -862,7 +862,12 @@ void TenacityApp::OnTimer(wxTimerEvent &WXUNUSED(event)) {
#define WL(lang, sublang)
#endif
-#if wxCHECK_VERSION(3, 0, 1)
+#if wxCHECK_VERSION(3, 1, 6)
+wxLanguageInfo userLangs[] =
+ {
+ {wxLANGUAGE_USER_DEFINED, wxT("eu"), wxT("eu"), wxT(""), WL(0, SUBLANG_DEFAULT) wxT("Basque"), wxT("Euskara"), wxLayout_LeftToRight},
+};
+#elif wxCHECK_VERSION(3, 0, 1)
wxLanguageInfo userLangs[] =
{
// Bosnian is defined in wxWidgets already
Should work for SourceHut mirror too, but it should be applied to src/AudacityApp.cpp instead.
maderios commented on 2022-04-22 11:06 (UTC)
Build issue is solved: tenacity-wxgtk3-git needs portsmf-git dependency, not portsmf. Please change this dependency.
ImperatorStorm commented on 2022-04-20 20:44 (UTC)
Can't reproduce, try building in a clean chroot https://wiki.archlinux.org/title/DeveloperWiki:Building_in_a_clean_chroot
xavierbaez commented on 2022-04-20 20:39 (UTC)
Same error happend to me:
[ 53%] Building CXX object src/CMakeFiles/Tenacity.dir/Legacy.cpp.o
make[1]: [CMakeFiles/Makefile2:526: src/CMakeFiles/Tenacity.dir/all] Error 2 make: [Makefile:156: all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... -> error making: tenacity-git
maderios commented on 2022-04-20 10:24 (UTC)
Same error after updating
silverhikari commented on 2022-04-18 23:32 (UTC)
@maid i can not seem to replicate the error on my side, you may want to send this issue upstream if this is happening.
FabioLolix commented on 2022-04-17 20:50 (UTC)
Seems it isn't compatible with wxgtk 3.1.6
Pinned Comments