Package Details: mumble-git 1:1.6.870.r72.g7fba6df0e-1

Git Clone URL: https://aur.archlinux.org/mumble-git.git (read-only, click to copy)
Package Base: mumble-git
Description: An Open Source, low-latency, high quality voice chat software (git version)
Upstream URL: https://www.mumble.info
Keywords: audio communication multimedia network voip
Licenses: BSD
Conflicts: mumble
Provides: mumble
Submitter: None
Maintainer: Radioactiveman
Last Packager: Radioactiveman
Votes: 45
Popularity: 0.000000
First Submitted: 2009-05-30 19:46 (UTC)
Last Updated: 2026-05-29 21:04 (UTC)

Required by (8)

Sources (14)

Pinned Comments

Radioactiveman commented on 2020-06-02 17:17 (UTC)

If you experience the problem below when updating packages, first remove mumble-git, then update all packages including protobuf and finally compile mumble-git again.

# pacman -Syu
:: Starting full system upgrade...
resolving dependencies...
looking for conflicting packages...
error: failed to prepare transaction (could not satisfy dependencies)
:: installing protobuf (3.12.0-1) breaks dependency 'libprotobuf.so=22-64' required by mumble-git

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 Next › Last »

Radioactiveman commented on 2016-10-26 18:29 (UTC)

No, this is a different problem. Reported at https://github.com/mumble-voip/mumble/issues/2600.

dmp1ce commented on 2016-10-26 14:18 (UTC)

I'm getting a number of errors when building. Am I mssing a dependency? /usr/include/qt/QtWidgets/qstyleoption.h: In member function ‘QStyleOptionGraphicsItem& QStyleOptionGraphicsItem::operator=(const QStyleOptionGraphicsItem&)’: /usr/include/qt/QtWidgets/qstyleoption.h:647:24: error: ambiguous overload for ‘operator=’ (operand types are ‘QMatrix’ and ‘const QMatrix’) class Q_WIDGETS_EXPORT QStyleOptionGraphicsItem : public QStyleOption ^~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/qt/QtGui/qtransform.h:42:0, from /usr/include/qt/QtGui/qimage.h:47, from /usr/include/qt/QtGui/qpixmap.h:48, from /usr/include/qt/QtGui/qbitmap.h:43, from /usr/include/qt/QtGui/QtGui:8, from mumble_pch.hpp:30: /usr/include/qt/QtGui/qmatrix.h:66:14: note: candidate: QMatrix& QMatrix::operator=(QMatrix) QMatrix &operator=(QMatrix &&other) Q_DECL_NOTHROW // = default ^~~~~~~~ /usr/include/qt/QtGui/qmatrix.h:68:14: note: candidate: QMatrix& QMatrix::operator=(const QMatrix&) QMatrix &operator=(const QMatrix &) Q_DECL_NOTHROW; // = default ^~~~~~~~ In file included from /usr/include/qt/QtWidgets/qabstractitemdelegate.h:44:0, from /usr/include/qt/QtWidgets/QtWidgets:29, from mumble_pch.hpp:33: /usr/include/qt/QtWidgets/qstyleoption.h: In copy constructor ‘QStyleOptionGraphicsItem::QStyleOptionGraphicsItem(const QStyleOptionGraphicsItem&)’: /usr/include/qt/QtWidgets/qstyleoption.h:658:109: note: synthesized method ‘QStyleOptionGraphicsItem& QStyleOptionGraphicsItem::operator=(const QStyleOptionGraphicsItem&)’ first required here QStyleOptionGraphicsItem(const QStyleOptionGraphicsItem &other) : QStyleOption(Version, Type) { *this = other; } ^~~~~ In file included from /usr/include/qt/QtWidgets/QtWidgets:46:0, from mumble_pch.hpp:33: /usr/include/qt/QtWidgets/qaction.h: At global scope: /usr/include/qt/QtWidgets/qaction.h:93:40: error: ‘nullptr’ was not declared in this scope explicit QAction(QObject *parent = nullptr); ^~~~~~~ /usr/include/qt/QtWidgets/qaction.h:94:61: error: ‘nullptr’ was not declared in this scope explicit QAction(const QString &text, QObject *parent = nullptr); ^~~~~~~ /usr/include/qt/QtWidgets/qaction.h:95:80: error: ‘nullptr’ was not declared in this scope explicit QAction(const QIcon &icon, const QString &text, QObject *parent = nullptr); ^~~~~~~ make[2]: *** [Makefile.Release:729: release/mumble.gch/c++] Error 1 make[2]: Leaving directory '/home/dmp1ce/.cache/pacaur/mumble-git/src/mumble/src/mumble' make[1]: *** [Makefile:38: release] Error 2 make[1]: Leaving directory '/home/dmp1ce/.cache/pacaur/mumble-git/src/mumble/src/mumble' make: *** [Makefile:538: sub-src-mumble-release_ordered] Error 2 ==> ERROR: A failure occurred in build(). Aborting... :: qt5-tools is a new orphan package :: failed to build mumble-git package(s)

Radioactiveman commented on 2015-12-11 17:25 (UTC) (edited on 2015-12-11 17:25 (UTC) by Radioactiveman)

Hi, sorry for the late reply. I have not gotten an email notification. Without libxkbcommon-x11 Mumble does not run on X11. But most users are on X11 and packages like transmission-qt and qmmp also depend on qt5-base and libxkbcommon-x11.

linkmauve commented on 2015-11-05 22:03 (UTC)

Hi, it seems the libxkbcommon-x11 isn’t required to run this program, and is already suggested by qt5-base, it should either be dropped or at least set as an optional dependency, as it is only required for X11 support.

cookiecaper commented on 2015-05-14 02:42 (UTC)

FYI, upon completely removing /tmp/makepkg/mumble-git and rebuilding, the error listed below has been rectified. I can now build successfully. Unsure what happened to the tree before, but completely removing it and calling the build again fixed the problem.

cookiecaper commented on 2015-05-13 18:58 (UTC)

######################################################################### # ARCHITECTURE, COMPILE FLAGS ######################################################################### # CARCH="x86_64" CHOST="x86_64-unknown-linux-gnu" #-- Compiler and Linker Flags # -march (or -mcpu) builds exclusively for an architecture # -mtune optimizes for an architecture, but builds for whole processor family CPPFLAGS="-D_FORTIFY_SOURCE=2" CFLAGS="-march=x86-64 -mtune=native -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -funroll-loops -funit-at-a-time" CXXFLAGS="-march=x86-64 -mtune=native -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -funroll-loops -funit-at-a-time" LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro" #-- Make Flags: change this for DistCC/SMP systems MAKEFLAGS="-j9" #-- Debugging flags DEBUG_CFLAGS="-g -fvar-tracking-assignments" DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"

Naypam commented on 2015-05-13 08:26 (UTC)

Out of interest cookiecaper what are your makeflags in /etc/makepkg.conf? I have "MAKEFLAGS="-j5" as I have a quad core processor? But it seems like your CFLAGS may be messed up too?

cookiecaper commented on 2015-05-13 05:16 (UTC)

Failing here. g++ -c -include release/mumble -pipe -Wfatal-errors -fvisibility=hidden -Wshadow -Woverloaded-virtual -Wold-style-cast -Wconversion -Wsign-compare -Wall -Wextra -O2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -Wall -W -D_REENTRANT -fPIC -DPLUGIN_PATH=/usr/lib/mumble -DRESTRICT=__restrict__ -D_FORTIFY_SOURCE=2 -DMUMBLE_VERSION_STRING=1.3.0 -DMUMBLE_VERSION=1.3.0 -DMUMBLE -DNO_CRASH_REPORT -DUSE_OPUS -DUSE_NO_TTS -DUSE_ALSA -DUSE_OSS -DUSE_PULSEAUDIO -DUSE_BONJOUR -DUSE_DBUS -DNO_UPDATE_CHECK -D_REENTRANT -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_SQL_LIB -DQT_XML_LIB -DQT_DBUS_LIB -DQT_CORE_LIB -I. -I../../src -I. -I../bonjour -I../../3rdparty/celt-0.7.0-src/libcelt -I/usr/lib/oss/include -isystem /usr/include/opus -isystem /usr/include/alsa -isystem /usr/include/avahi-compat-libdns_sd -isystem /usr/include/qt -isystem /usr/include/qt/QtSvg -isystem /usr/include/qt/QtWidgets -isystem /usr/include/qt/QtGui -isystem /usr/include/qt/QtNetwork -isystem /usr/include/qt/QtSql -isystem /usr/include/qt/QtXml -isystem /usr/include/qt/QtDBus -isystem /usr/include/qt/QtCore -Irelease -I. -I/usr/lib/qt/mkspecs/linux-g++ -o release/SocketRPC.o SocketRPC.cpp In file included from <command-line>:0:0: /usr/include/stdc-predef.h:59:1: error: one or more PCH files were found, but they were invalid #endif ^ compilation terminated due to -Wfatal-errors. In file included from <command-line>:0:0: /usr/include/stdc-predef.h:59:1: error: one or more PCH files were found, but they were invalid #endif ^ compilation terminated due to -Wfatal-errors. In file included from <command-line>:0:0: /usr/include/stdc-predef.h:59:1: error: one or more PCH files were found, but they were invalid #endif ^ compilation terminated due to -Wfatal-errors. Makefile.Release:2642: recipe for target 'release/ConnectDialog.o' failed make[2]: *** [release/ConnectDialog.o] Error 1 make[2]: *** Waiting for unfinished jobs.... Makefile.Release:3155: recipe for target 'release/Overlay.o' failed make[2]: *** [release/Overlay.o] Error 1 Makefile.Release:3604: recipe for target 'release/SocketRPC.o' failed make[2]: *** [release/SocketRPC.o] Error 1 make[2]: Leaving directory '/tmp/makepkg/mumble-git/src/mumble/src/mumble' Makefile:38: recipe for target 'release' failed make[1]: *** [release] Error 2 make[1]: Leaving directory '/tmp/makepkg/mumble-git/src/mumble/src/mumble' Makefile:602: recipe for target 'sub-src-mumble-release_ordered' failed make: *** [sub-src-mumble-release_ordered] Error 2 Not sure if my mirror just hasn't synced some QT changes or what.

Radioactiveman commented on 2015-05-12 21:16 (UTC)

Why do you think this is needed? All four cores of my CPU are used while compiling Mumble.