Firmware for the Realtek Bluetooth USB devices.
To be downloaded with rtlbtfw(8).
Sponsored by: Future Crew LLC
Reviewed by: arrowd
Differential Revision: https://reviews.freebsd.org/D46740
The source uses uname -m to build a subdirectory, but we used uname -p
to describe it. A fix was already attempted, but only incidentally
correct on ppc. Use the right variable to fix the build on arm64, too.
Approved by: portmgr (build fix blanket)
As a patch release, Qt 6.7.3 does not introduce new features but
contains more than 400 bug fixes, security updates, and other
improvements to the top of the Qt 6.7.2 release. See more information
about the most important changes and bug fixes from Qt 6.7.3 release
note.
PySide6: Update to 6.7.3
New port: devel/qt6-grpc
Qt GRPC is the client-side implementation that, together with the Qt
Protobuf module, allows the definition of messages and services in
.proto files, which then use the provided code generators to generate
client code that allows the access for fields and gRPC services in the
Qt framework. The code generated by Qt GRPC enables the client-side to
communicate with a gRPC server (regardless of whether the server uses
Qt) by sending calls or streaming messages.
Announcement: https://www.qt.io/blog/qt-6.7.3-released
Release note: https://code.qt.io/cgit/qt/qtreleasenotes.git/about/qt/6.7.3/release-note.md
install -m 0644 /wrkdirs/usr/ports/comms/libusbsio/work/libusbsio-8577280966ee91cab606df5b0c64889be71ce7b9/bin/freebsd_powerpc64le/libusbsio.a /wrkdirs/usr/ports/comms/libusbsio/work/stage/usr/local/lib
install: /wrkdirs/usr/ports/comms/libusbsio/work/libusbsio-8577280966ee91cab606df5b0c64889be71ce7b9/bin/freebsd_powerpc64le/libusbsio.a: No such file or directory
Mk/Uses/gstreamer.mk:
- Sort, fix whitespace issues and typos
- Promote several common variables to improve maintainer QOL
* There's now no need to set manually set PORTVERSION nor
SOVERSION in several Makefiles
* This will help to prevent not updating some components
* A note has been added, however, to remind maintainers
to remake distinfo for certain ports
- Improve documentation
multimedia/gstreamer1-plugins-webrtc:
- New port split from multimedia/gstreamer1-plugins-bad
- multimedia/gstreamer1-plugins-rust has been updated
to reflect this change
net/gstreamer1-plugins-sctp:
- New port split from multimedia/gstreamer1-plugins-bad
x11-toolkits/gstreamer1-plugins-qt5:
- Moved here from graphics/gstreamer1-plugins-qt to
align with its new Qt6 counterpart
x11-toolkits/gstreamer1-plugins-qt6:
- New port: GStreamer Qt6 QML videosink plugin
*/*:
- Improve Makefile order and formatting
- Sorry for the repo churn, but not fixing this would just lead to more
poorly formatted gstreamer ports in the future via copypasta
https://gstreamer.freedesktop.org/releases/1.24/#1.24.8
PR: 278914
Reported by: vvd
New beta release with fixes for various long-standing but minor
problems (mainly compliance issues, not functional ones).
Full change log: https://www.kermitproject.org/ckupdates.html
When connecting an Apple device via USB, the device connects, usbmuxd is
started, then for reasons yet unknown, the device instantly disconnects,
and reconnects.
From dmesg when plugging in, for example:
ugen0.5: <Apple Inc. iPhone> at usbus0
<usbmuxd starts here>
ugen0.5: <Apple Inc. iPhone> at usbus0 (disconnected)
ugen0.5: <Apple Inc. iPhone> at usbus0
Due to the disconnect, the instance of usbmuxd that is spawned when the
device is first attached is subsequently killed by the unexplained
detach because the cdce(4) devices have not yet been created, but not
before the second instance of usbmuxd is started by the reattach. The
second instance automatically exits because two instances cannot run
simultaneously. The first instance then exits leaving no running
instances.
Adding a short sleep after the first instance is called to shutdown
gives it enough time to completely exit before the second instance is
spawned. Unfortunately, only one device is supported at a time until
I can figure out why the hotplugging isn't working.
While here, cleanup whitespace.
PR: 280014
Reported by: <fabio.comolli@gmail.com>