This update features hassle-free remote development over ssh.
Prior to this update, users who want to use remote development over
ssh needs to take some manual steps for setting up environment. From
now on, just installing "Open Remote - SSH" extension should be
enough. For more details, follow the instruction shown upon package
installation.
Additional changes to the port include:
- split out target for building remote extension host to Makefile.reh
to avoid excessive dependencies
- populate product.json with useful information mainly for making
popular extensions work out of the box[1]
Changelog: https://code.visualstudio.com/updates/v1_107
Reported by: GitHub (watch releases)
Obtained from: https://github.com/VSCodium/vscodium [1]
* Ports that were pinned to a deprecated version of Go (1.23 or older)
have been unpinned.
* Ports that were pinned to a still-supported version of Go (1.24 or
newer) have been converted to requesting that as their minimum Go
version.
* Ports that had been forcibly deprecated for pinning an expired Go
version have been undeprecated.
Some new etc/NEWS items:
9adb6df788f - Add NEWS and auto-load entry for antlr-mode
251c070dfde - Warn about uses of the 'any' atom in rx
44d47caa86d - New 'R' code letter for 'interactive' forms
a582f2bb577 - hideshow: Deep cleaning. (Bug#79934)
1b931fbe42b - Prepare and load user scripts at startup
1bdf9dd6cd4 - New user option vc-dir-show-outgoing-count
b1882857eee - Rework remote process support for Tramp's "smb" method
02afd1305b4 - Use dedicated minibuffer history for mairix-search
49611cce303 - hideshow.el: New commands 'hs-cycle' and 'hs-toggle-all'. (Bug#79877)
5b07a81beda - New display of outgoing revisions count in VC-Dir
9174bc811a3 - Use treesit-extra-load-path for more values of treesit-auto-install-grammar
Commit log: ef903e0f5a...1e9dca9ba2
Sponsored by: The FreeBSD Foundation
Recent versions of gettext no longer install m4 files in
PREFIX/share/aclocal. They have to be installed in the work
directory by autopoint for aclocal to find them.
Patch devel/autoconf so autoreconf runs autopoint when gettext related
macros are used in configure.ac (e.g. AM_ICONV). Previously it only
ran autopoint when AM_GNU_GETTEXT_(REQUIRE_)VERSION was used.
The following ports now require autopoint (i.e. USES=gettext-tools):
benchmarks/sysbench, devel/libhtp, editors/fxite, filesystems/rar2fs,
graphics/gd, net/ucarp, news/fidogate, sysutils/cdrdao
Other fixes:
emulators/mednafen, misc/lifelines: Use older version of gettext macros.
ftp/axel: Patch Makefile.am and configure.ac to get gettext working and
add NLS option.
ftp/wzdftpd: Use autoreconf 2.72.
mail/sympa: Remove hack from configure.ac.
multimedia/dvdauthor: Use ports autoreconf.
net/asterisk-chan_sccp: Drop autoreconf and gettext-tools dependencies.
security/pam_pkcs11: Patch configure.ac so autoreconf can find the
custom directory with m4 files.
sysutils/grub2-efi, sysutils/grub2-pcbsd: Add patch to run autoreconf
with -f flag so it updates all files.
www/wget2: Patch configure.ac to what autopoint expects.
PR: 287167
Exp-run by: antoine
There are about 75 ports that depend on old, unsupported Go
versions. I've scheduled those Go versions for deletions on
2025/01/01, and so these ports are scheduled for removal on
that same day.
HOWEVER....
Likely NONE or VERY VERY FEW of these ports will actually need
to be deleted! This stems from a misunderstanding:
When go.mod says "go 1.23", it means that it requires AT LEAST
go-1.23. Locking a port to a specific go version should almost
never happen; it is reserved for when a package absolutely
cannot build with any newer version, and it almost means that
the port will only last 1 year (Go releases new minors twice a
year).
Where a port has
USES=go:1.23
maintainers should attempt build with just
USES=go
If that works, please either commit it or submit it in a PR.
Same goes go
USES=go:1.23,modules
to attempt
USES=go,modules
I'll be away from keyboard soon and am not sure if I will return. So
return all ports that I currently maintain to pool hoping new
volunteers take care of them.
Consult provides search and navigation commands based on the Emacs
completion function completing-read documented in the Elisp
manual. Completion allows you to quickly select an item from a list of
candidates. Consult offers asynchronous and interactive consult-grep
and consult-ripgrep commands, and the line-based search command
consult-line. Furthermore Consult provides an advanced buffer
switching command consult-buffer to switch between buffers, recently
opened files, bookmarks and buffer-like candidates from other
sources. Some of the Consult commands are enhanced versions of
built-in Emacs commands. For example the command consult-imenu
presents a flat list of the Imenu with live preview, grouping and
narrowing.
WWW: https://github.com/minad/consult
PR: 290545
The Perspective package provides multiple named workspaces (or
"perspectives") in Emacs, similar to multiple desktops in window
managers like Awesome and XMonad, and Spaces on the Mac.
WWW: https://github.com/nex3/perspective-el
PR: 290544