obs-studio missing in 15-CURRENT?

As the post title says, there's no obs-studio package available in 15-CURRENT (unless I'm missing something, which is of course entirely possible). My question is: is this normal? Should I expect packages available in 14.1 not to be present in 15?
 
It's present, now.

Code:
% pkg search --repository FreeBSD-ports multimedia/obs-studio
multimedia/obs-studio          Open source streaming/recording software
% pkg -vv | grep -B 1 -e url -e priority
  FreeBSD-ports: {
    url             : "pkg+https://pkg.freebsd.org/FreeBSD:15:amd64/latest",
    enabled         : yes,
    priority        : 2,
--
  FreeBSD-base: {
    url             : "pkg+https://pkg.freebsd.org/FreeBSD:15:amd64/base_latest",
    enabled         : yes,
    priority        : 0,
--
  aninstaller: {
    url             : "file:////media/aninstaller/packages/FreeBSD:15:amd64",
    enabled         : no,
    priority        : 0
--
  local-poudriere: {
    url             : "file:///usr/local/poudriere/data/packages/main-default",
    enabled         : yes,
    priority        : 3
%

… rollback to 14.1-p2 .

After you upgraded to 15.0-CURRENT, did you use force and allow deinstallation of the package?
 
Fair enough :)

Suggestions in the FreeBSD Handbook include:

pkg upgrade

– and in the next paragraph:

pkg-static upgrade -f

The latter is not a requirement (and outdated, but that's different subject).

"… Major versions use different Application Binary Interfaces (ABIs), which will break most third-party applications. …"

If a pkg upgrade of ports will deinstall an application that you want, you can:
  1. cancel the upgrade
  2. lock the package
  3. repeat the upgrade.
You might find that an application built for 14 will work perfectly, or well enough, on 15.0-CURRENT.

IIRC the editors/vscode that I installed with 14.0-CURRENT worked long after an upgrade to 15.0-CURRENT.
 
Back
Top