Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 908106 - media-sound/qtractor: support Qt 6
Summary: media-sound/qtractor: support Qt 6
Status: UNCONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Professional Audio Applications Maintainers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2023-06-09 10:44 UTC by jospezial
Modified: 2023-06-10 13:52 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
build.log (build.log,47.59 KB, text/plain)
2023-06-09 10:48 UTC, jospezial
Details

Note You need to log in before you can comment on or make changes to this bug.
Description jospezial 2023-06-09 10:44:31 UTC
The current qtractor ebuilds have QT5 dependencies only.
But if dev-qt/qtbase-6.x is installed then configure phase picks that version and compile phase fails.

-- Checking for module 'gtkmm-2.4'
--   Found gtkmm-2.4, version 2.24.5

  Qtractor 0.9.33 (Qt 6.6.0)


FAILED: src/CMakeFiles/qtractor.dir/qtractorAudioEngine.cpp.o 
/usr/lib/ccache/bin/x86_64-pc-linux-gnu-g++ -DQT_CORE_LIB -DQT_DISABLE_DEPRECATED_UP_TO=0x050000 -DQT_GUI_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WARN_DEPRECATED_UP_TO=0x070000 -DQT_WIDGETS_LIB -DQT_XML_LIB -I/var/tmp/portage/media-sound/qtractor-0.9.34/work/qtractor-0.9.34_build/src -I/var/tmp/portage/media-sound/qtractor-0.9.34/work/qtractor-0.9.34/src -I/var/tmp/portage/media-sound/qtractor-0.9.34/work/qtractor-0.9.34_build/src/qtractor_autogen/include -I/var/tmp/portage/media-sound/qtractor-0.9.34/work/qtractor-0.9.34/src/vestige -I/var/tmp/portage/media-sound/qtractor-0.9.34/work/qtractor-0.9.34/src/lv2 -I/usr/include/gtkmm-2.4 -I/usr/lib64/gtkmm-2.4/include -I/usr/include/atkmm-1.6 -I/usr/lib64/atkmm-1.6/include -I/usr/include/glibmm-2.4 -I/usr/lib64/glibmm-2.4/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/lib64/libffi/include -I/usr/include/sigc++-2.0 -I/usr/lib64/sigc++-2.0/include -I/usr/include/atk-1.0 -I/usr/include/giomm-2.4 -I/usr/lib64/giomm-2.4/include -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/pangomm-1.4 -I/usr/lib64/pangomm-1.4/include -I/usr/include/cairomm-1.0 -I/usr/lib64/cairomm-1.0/include -I/usr/include/cairo -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/harfbuzz -I/usr/include/pixman-1 -I/usr/include/pango-1.0 -I/usr/include/fribidi -I/usr/include/gtk-2.0 -I/usr/lib64/gtk-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/webp -I/usr/include/gtk-unix-print-2.0 -I/usr/include/gdkmm-2.4 -I/usr/lib64/gdkmm-2.4/include -I/var/tmp/portage/media-sound/qtractor-0.9.34/work/qtractor-0.9.34/src/clap/include -isystem /usr/include/qt6/QtWidgets -isystem /usr/include/qt6 -isystem /usr/include/qt6/QtCore -isystem /usr/lib64/qt6/mkspecs/linux-g++ -isystem /usr/include/qt6/QtGui -isystem /usr/include/qt6/QtXml -isystem /usr/include/qt6/QtSvg -isystem /usr/include/opus -isystem /usr/include/lilv-0 -isystem /usr/include/serd-0 -isystem /usr/include/sord-0 -isystem /usr/include/sratom-0  -march=native -mtune=native -O2 -pipe -std=gnu++17 -msse -mfpmath=sse -ffast-math -fPIC -MD -MT src/CMakeFiles/qtractor.dir/qtractorAudioEngine.cpp.o -MF src/CMakeFiles/qtractor.dir/qtractorAudioEngine.cpp.o.d -o src/CMakeFiles/qtractor.dir/qtractorAudioEngine.cpp.o -c /var/tmp/portage/media-sound/qtractor-0.9.34/work/qtractor-0.9.34/src/qtractorAudioEngine.cpp
In file included from /var/tmp/portage/media-sound/qtractor-0.9.34/work/qtractor-0.9.34/src/qtractorAudioEngine.h:25,
                 from /var/tmp/portage/media-sound/qtractor-0.9.34/work/qtractor-0.9.34/src/qtractorAudioEngine.cpp:23:
/var/tmp/portage/media-sound/qtractor-0.9.34/work/qtractor-0.9.34/src/qtractorAtomic.h:41:35: error: missing binary operator before token "("
   41 | #if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
      |                                   ^
/var/tmp/portage/media-sound/qtractor-0.9.34/work/qtractor-0.9.34/src/qtractorAtomic.h:44:37: error: missing binary operator before token "("
   44 | #elif QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
      |                                     ^

Tested media-sound/qtractor-0.9.34 and media-sound/qtractor-0.9.33.

This could also be a gcc-13 incompatibility.

Since
https://github.com/rncbc/qtractor/commit/3d1830d5d3d60ca7045b4d5cf81322e0ae2e6ebd
CONFIG_QT6 option defaults to "yes".
If QT6 is not installed than QT5 is used.

Please make the ebuild qt6-ready and add that config option.
Comment 1 jospezial 2023-06-09 10:48:10 UTC
Created attachment 863603 [details]
build.log

[ebuild     U  ] media-sound/qtractor-0.9.34::gentoo [0.9.33::gentoo] USE="ladspa libsamplerate mad rubberband vorbis zlib -aubio -debug -dssi -osc" CPU_FLAGS_X86="sse" 0 KiB

Portage 3.0.48.1 (python 3.12.0-beta-2, default/linux/amd64/17.1, gcc-13, glibc-2.37-r3, 6.4.0-rc5 x86_64)
=================================================================
                         System Settings
=================================================================
System uname: Linux-6.4.0-rc5-x86_64-AMD_Athlon-tm-_II_X2_240_Processor-with-glibc2.37
KiB Mem:     4026708 total,   1146356 free
KiB Swap:   11010040 total,  10841848 free
Timestamp of repository FireBurn: Thu, 08 Jun 2023 16:16:53 +0000
Head commit of repository FireBurn: 1bc387e2590b3a4906f652c80c689fabdae16944

Timestamp of repository gamerlay: Sat, 03 Jun 2023 07:02:19 +0000
Head commit of repository gamerlay: 4137be22dc65c6bd831ba40c9384288e7e3e9b31

Timestamp of repository gerislay: Thu, 08 Jun 2023 11:46:55 +0000
Head commit of repository gerislay: 72c95f4f88245b9d8f3be028fed9e51911a5d250

Timestamp of repository java: Wed, 07 Jun 2023 09:16:59 +0000
Head commit of repository java: 6fcdb2ad25cb67df8926067a19723f482a3d44dc

Head commit of repository kde: 6ce36e4f6ce576b2ee6eaa09b279ef33fe16a894

Head commit of repository netfab-overlay: 78987ad09e0805ed22e434d0be963940e35040f5

Timestamp of repository pg_overlay: Thu, 08 Jun 2023 11:46:55 +0000
Head commit of repository pg_overlay: acaf9a272ceed946b3753589a29808f2321998bc

Timestamp of repository poly-c: Thu, 08 Jun 2023 16:48:52 +0000
Timestamp of repository qt: Tue, 06 Jun 2023 19:02:08 +0000
Head commit of repository qt: 811316350d48b6eb80ed9d56698a4115106d38a5

Timestamp of repository seden: Wed, 07 Jun 2023 09:17:02 +0000
Head commit of repository seden: 3bdb1c8f848939e0faf022331cbe41315a8f69fa

Timestamp of repository stefantalpalaru: Thu, 08 Jun 2023 08:46:53 +0000
Head commit of repository stefantalpalaru: d9edcf7bfb608d40d85557eb26ea2c28da770e7c

Timestamp of repository x11: Wed, 07 Jun 2023 09:17:02 +0000
Head commit of repository x11: f26994aa77e8a133ba959880dd86a08a3fe04aaf

Timestamp of repository gentoo: Fri, 09 Jun 2023 09:02:00 +0000
Head commit of repository gentoo: 1b1c92b20d967ebaadbc9d222249bd7841dbfdfd

Timestamp of repository edgets: Wed, 07 Jun 2023 09:17:10 +0000
Head commit of repository edgets: c054ff0f57d2aae8275961d4a8ff74994e5df347

sh bash 5.2_p15-r3
ld GNU ld (Gentoo 2.40 p5) 2.40.0
ccache version 4.8 [enabled]
app-misc/pax-utils:        1.3.7::gentoo
app-shells/bash:           5.2_p15-r3::gentoo
dev-java/java-config:      2.3.1-r1::gentoo
dev-lang/perl:             5.36.1-r2::gentoo
dev-lang/python:           3.11.4::gentoo, 3.12.0_beta2::gentoo
dev-lang/rust-bin:         1.69.0::gentoo
dev-util/ccache:           4.8-r2::gentoo
dev-util/cmake:            3.26.4-r1::gentoo
dev-util/meson:            1.1.1::gentoo
sys-apps/baselayout:       2.13-r1::gentoo
sys-apps/openrc:           0.47.1::gentoo
sys-apps/sandbox:          2.30-r1::gentoo
sys-devel/autoconf:        2.71-r6::gentoo
sys-devel/automake:        1.16.5-r1::gentoo
sys-devel/binutils:        2.40-r5::gentoo
sys-devel/binutils-config: 5.5::gentoo
sys-devel/clang:           16.0.5::gentoo
sys-devel/gcc:             13.1.1_p20230603::gentoo
sys-devel/gcc-config:      2.11::gentoo
sys-devel/libtool:         2.4.7-r1::gentoo
sys-devel/lld:             16.0.5::gentoo
sys-devel/llvm:            16.0.5::gentoo
sys-devel/make:            4.4.1-r1::gentoo
sys-kernel/linux-headers:  6.3::gentoo (virtual/os-headers)
sys-libs/glibc:            2.37-r3::gentoo
Repositories:

FireBurn
    location: /var/db/repos/FireBurn
    sync-type: git
    sync-uri: https://github.com/gentoo-mirror/FireBurn.git
    masters: gentoo
    priority: -1001
    volatile: False

gamerlay
    location: /var/db/repos/gamerlay
    sync-type: git
    sync-uri: https://github.com/gentoo-mirror/gamerlay.git
    masters: gentoo
    priority: -1001
    volatile: False

gerislay
    location: /var/db/repos/gerislay
    sync-type: git
    sync-uri: https://github.com/gentoo-mirror/gerislay.git
    masters: gentoo
    priority: -1001
    volatile: False

java
    location: /var/db/repos/java
    sync-type: git
    sync-uri: https://github.com/gentoo-mirror/java.git
    masters: gentoo
    priority: -1001
    volatile: False

kde
    location: /var/db/repos/kde
    sync-type: git
    sync-uri: https://anongit.gentoo.org/git/proj/kde.git
    masters: gentoo
    priority: -1001
    volatile: False

netfab-overlay
    location: /var/db/repos/netfab-overlay
    sync-type: git
    sync-uri: https://github.com/netfab/overlay
    masters: gentoo
    priority: -1001
    volatile: False

overlay_jl
    location: /var/db/repos/overlay_jl
    masters: gentoo
    priority: -1001
    volatile: False

pg_overlay
    location: /var/db/repos/pg_overlay
    sync-type: git
    sync-uri: https://github.com/gentoo-mirror/pg_overlay.git
    masters: gentoo
    priority: -1001
    volatile: False

poly-c
    location: /var/db/repos/poly-c
    sync-type: rsync
    sync-uri: rsync://rsync.gentoofan.org/poly-c
    masters: gentoo
    priority: -1001
    volatile: False
    sync-rsync-extra-opts: 

qt
    location: /var/db/repos/qt
    sync-type: git
    sync-uri: https://github.com/gentoo-mirror/qt.git
    masters: gentoo
    priority: -1001
    volatile: False

seden
    location: /var/db/repos/seden
    sync-type: git
    sync-uri: https://github.com/gentoo-mirror/seden.git
    masters: gentoo
    priority: -1001
    volatile: False

stefantalpalaru
    location: /var/db/repos/stefantalpalaru
    sync-type: git
    sync-uri: https://github.com/gentoo-mirror/stefantalpalaru.git
    masters: gentoo
    priority: -1001
    volatile: False

x11
    location: /var/db/repos/x11
    sync-type: git
    sync-uri: https://github.com/gentoo-mirror/x11.git
    masters: gentoo
    priority: -1001
    volatile: False

gentoo
    location: /var/db/repos/gentoo
    sync-type: git
    sync-uri: https://github.com/gentoo-mirror/gentoo.git
    priority: -1000
    volatile: False

edgets
    location: /var/db/repos/edgets
    sync-type: git
    sync-uri: https://github.com/gentoo-mirror/edgets.git
    masters: gentoo
    volatile: False

ACCEPT_KEYWORDS="amd64 ~amd64"
ACCEPT_LICENSE="*"
CBUILD="x86_64-pc-linux-gnu"
CFLAGS="-march=native -mtune=native -O2 -pipe"
CHOST="x86_64-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/lib64/libreoffice/program/sofficerc /usr/share/config /usr/share/gnupg/qualified.txt"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo"
CXXFLAGS="-march=native -mtune=native -O2 -pipe"
DISTDIR="/var/cache/distfiles"
EMERGE_DEFAULT_OPTS="--autounmask=y --autounmask-write=y --keep-going --quiet-build=y --verbose-conflicts"
ENV_UNSET="CARGO_HOME DBUS_SESSION_BUS_ADDRESS DISPLAY GDK_PIXBUF_MODULE_FILE GOBIN GOPATH PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR XDG_STATE_HOME"
FCFLAGS="-march=native -mtune=native -O2 -pipe"
FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs binpkg-multi-instance buildpkg-live ccache config-protect-if-modified distlocks ebuild-locks fixlafiles ipc-sandbox merge-sync multilib-strict network-sandbox news parallel-fetch pid-sandbox preserve-libs protect-owned qa-unresolved-soname-deps sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr"
FFLAGS="-march=native -mtune=native -O2 -pipe"
GENTOO_MIRRORS="http://ftp.halifax.rwth-aachen.de/gentoo/ https://mirrors.dotsrc.org/gentoo/ https://mirror.leaseweb.com/gentoo/"
LANG="de_DE.utf8"
LDFLAGS="-Wl,-O1 -Wl,--as-needed"
LEX="flex"
LINGUAS="de"
MAKEOPTS="-j2"
PKGDIR="/var/cache/binpkgs"
PORTAGE_CONFIGROOT="/"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git"
PORTAGE_TMPDIR="/var/tmp"
SHELL="/bin/bash"
USE="X Xaw3d a52 aac aacplus aacs aalib acl acpi activefilter admin adns aften alsa amd64 ap apm apng archive arping atahpt atapromise audiofile automount avif bash bazaar bdplus bluray boost btrfs bzip2 cairo ccache cdda cddb cdio cdr cdrom chm chroot cjk clang cli client colordiff colorpicker compress corefonts cpio cpuload crypt css cue cups curl custom-modes d3d9 dav1d dbus declarative dga dhcp dom dri dri3 drm dts duktape dump dv dvb dvd dvdnav eap eap-sim eap-tls ebook egl elogind encode enscript epub equalizer exif extensions extras faac faad farstream fat fax fbcon fdformat fdk ffmpeg fftw firefox flac flashrom fluidsynth fontconfig foomatic freedoom ft2232-spi ftd2xx ftdi ftp fuse gadu gd gegl geoip gif git gpg gphoto2 graphite grub gstreamer gtk gtk3 gtk4 gui gusb gzip haptic hddtemp hdf hdf5 hid highlight history hpcups hpijs http http2 iconv icu id3tag idn imagemagick initramfs inotify introspection ipc ipod ipv6 iso jack jbootstrap jit jpeg jpeg2k jpegxl kde keyfinder ladspa lame lcms legacy-systray lensfun libaom libass libcanberra libdrm libinput libmpv libnotify libplacebo librtmp libsamplerate libssh2 libtirpc libv4l libwww linux-mtd linux-spi live lm-sensors logitech logrotate lua lv2 lximage lz4 lzma lzo mad magic man matroska md5sum meanwhile mediatek-i2c-spi mercurial metalink midi mikmod mime minizip mixer mjpeg mmap mms mng mobi mod modern-top modplug mono mount mouse mp3 mp4 mpeg mpeg2 mplayer mstarddc-spi mtp multilib multimedia musepack musicbrainz nano-syntax ncat ncurses network networkmonitor newnet ngspice nls normalize nowlistening nping nptl ntfs ntfsprogs ntp nvidia nvme obex ocr odbc odf offload ogg ogm openal opencl opengl openh264 openmp openssl opus osdmenu otr p2p pam pango panorama parse-clocks pcap pci pcre pcre16 pcre32 pdf pdfimport phonon pipes pkcs11 plasma plugins png policykit postproc postscript powermanagement ppds printsupport privacy projectm pulseaudio pvr python qalculate qml qrcode qt5 qt6 qtkeychain quicktime radio rar raw readline realtek-mst-i2c-spi replaygain rtc rtmp rubberband rust rustfmt sbsms scanner screencast screensaver scripttools sdl seccomp secure-delete sensors serial serialport sftp sha512 shorten sixel skins slang smi sndfile sockets socks socks5 sound source-highlight speech speex spell spi spirv split-usr sql sqlite sqlite3 squashfs ssh ssl staging startup-notification statistics statusnotifier stk stream subtitles sudo svg symlink sync-plugin-portage syslog sysstat system-ffmpeg system-harfbuzz system-icu system-jpeg system-libvpx system-sqlite sysv-utils szip taglib test-rust text texteffect tftp themes theora threads thumbnail tiff timidity tracepath translator truetype twolame udev udf udisks unicode upower urlpicpreview usb utils v4l v4l2 vaapi vala vamp vdpau vector-icons video videos virtualbox vkd3d vnc vorbis vpx vroot vst vulkan vulkaninfo wad wav wavpack wayland webp webpresence widgets winbind winpopup wmf worldclock wps wxwidgets x264 x265 xattr xcb xcomposite xfs xine xinerama xkb xml xmp xorg xosd xpm xrandr xscreensaver xv xvid yahoo zink zip zlib zstd zvbi" ABI_X86="64" ADA_TARGET="gnat_2021" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="karbon sheets words" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="mmx mmxext popcnt sse sse2 sse3 sse4a" CURL_SSL="openssl" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" INPUT_DEVICES="libinput" KERNEL="linux" L10N="de" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LLVM_TARGETS="AMDGPU" LUA_SINGLE_TARGET="lua5-1" LUA_TARGETS="lua5-1" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-4 php8-0" POSTGRES_TARGETS="postgres12 postgres13" PYTHON_SINGLE_TARGET="python3_11" PYTHON_TARGETS="python3_11 python3_12" RUBY_TARGETS="ruby32" VIDEO_CARDS="radeon amdgpu radeonsi" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq proto steal rawnat logmark ipmark dhcpmac delude chaos account"
Unset:  ADDR2LINE, AR, ARFLAGS, AS, ASFLAGS, CC, CCLD, CONFIG_SHELL, CPP, CPPFLAGS, CTARGET, CXX, CXXFILT, ELFEDIT, EXTRA_ECONF, F77FLAGS, FC, GCOV, GPROF, INSTALL_MASK, LC_ALL, LD, LFLAGS, LIBTOOL, MAKE, MAKEFLAGS, NM, OBJCOPY, OBJDUMP, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, RANLIB, READELF, RUSTFLAGS, SIZE, STRINGS, STRIP, YACC, YFLAGS

=================================================================
                        Package Settings
=================================================================

dev-qt/qtbase-6.9999::qt was built with the following:
USE="X concurrent cups dbus egl gtk gui icu jpeg libinput network odbc opengl sql sqlite ssl udev vnc vulkan widgets xml zstd -accessibility -brotli -debug -eglfs -evdev -freetds -gles2-only -gssapi -libproxy -mysql -oci8 -postgres -sctp -systemd -test -tslib -tuio" ABI_X86="(64)"
FEATURES="assume-digests usersync parallel-fetch xattr binpkg-dostrip binpkg-multi-instance ebuild-locks unmerge-orphans qa-unresolved-soname-deps strict userpriv unknown-features-warn multilib-strict merge-sync userfetch network-sandbox unmerge-logs sfperms usersandbox distlocks ccache config-protect-if-modified binpkg-docompress fixlafiles sandbox buildpkg-live ipc-sandbox news binpkg-logs protect-owned preserve-libs pid-sandbox"


dev-qt/qtcore-5.15.9::gentoo was built with the following:
USE="icu userland_GNU -debug -old-kernel -systemd -test" ABI_X86="(64)"
CFLAGS="-march=native -mtune=native -O2 -pipe -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2"
CXXFLAGS="-march=native -mtune=native -O2 -pipe -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2"
FEATURES="sfperms network-sandbox qa-unresolved-soname-deps xattr multilib-strict binpkg-dostrip pid-sandbox ccache userfetch ebuild-locks binpkg-multi-instance merge-sync ipc-sandbox protect-owned binpkg-logs distlocks strict config-protect-if-modified unknown-features-warn preserve-libs userpriv binpkg-docompress usersync unmerge-logs sandbox unmerge-orphans buildpkg-live assume-digests usersandbox news parallel-fetch fixlafiles"


media-sound/qtractor-0.9.33::gentoo was built with the following:
USE="ladspa libsamplerate mad rubberband userland_GNU vorbis zlib -aubio -debug -dssi -osc" ABI_X86="(64)" CPU_FLAGS_X86="sse"


sys-devel/gcc-13.1.1_p20230603::gentoo was built with the following:
USE="(cxx) graphite jit (multilib) nls nptl openmp (pie) sanitize ssp zstd -ada (-cet) (-custom-cflags) -d -debug -default-stack-clash-protection -default-znow -doc (-fixed-point) -fortran -go -hardened (-ieee-long-double) (-libssp) -lto -modula2 -objc -objc++ -objc-gc (-pch) -pgo -systemtap -test -valgrind -vanilla -vtv" ABI_X86="(64)"
CFLAGS="-march=native -mtune=native -pipe -O2"
CXXFLAGS="-march=native -mtune=native -pipe -O2"
FEATURES="parallel-fetch merge-sync news binpkg-logs binpkg-docompress binpkg-dostrip qa-unresolved-soname-deps strict buildpkg-live network-sandbox fixlafiles ipc-sandbox usersandbox preserve-libs assume-digests multilib-strict userpriv distlocks xattr binpkg-multi-instance config-protect-if-modified usersync unknown-features-warn userfetch unmerge-logs sandbox pid-sandbox unmerge-orphans sfperms protect-owned ebuild-locks"
Comment 2 Larry the Git Cow gentoo-dev 2023-06-10 13:50:40 UTC
The bug has been referenced in the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=998536d84e36ad62cc2b63236b6086edaeb55b60

commit 998536d84e36ad62cc2b63236b6086edaeb55b60
Author:     Sam James <sam@gentoo.org>
AuthorDate: 2023-06-10 13:50:03 +0000
Commit:     Sam James <sam@gentoo.org>
CommitDate: 2023-06-10 13:50:10 +0000

    media-sound/qtractor: don't automagically use Qt 6
    
    Bug: https://bugs.gentoo.org/908106
    Signed-off-by: Sam James <sam@gentoo.org>

 .../qtractor/{qtractor-0.9.34.ebuild => qtractor-0.9.34-r1.ebuild}       | 1 +
 1 file changed, 1 insertion(+)
Comment 3 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2023-06-10 13:52:40 UTC
Automagic fixed, retitling to add proper Qt 6 support.