<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ports/shells, branch 12.4-eol</title>
<subtitle>FreeBSD ports tree</subtitle>
<id>https://cgit-dev.freebsd.org/ports/atom?h=12.4-eol</id>
<link rel='self' href='https://cgit-dev.freebsd.org/ports/atom?h=12.4-eol'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/'/>
<updated>2023-12-30T10:07:34Z</updated>
<entry>
<title>shells/starship: update 1.16.0 → 1.17.0</title>
<updated>2023-12-30T10:07:34Z</updated>
<author>
<name>Yuri Victorovich</name>
<email>yuri@FreeBSD.org</email>
</author>
<published>2023-12-30T09:54:19Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=12d8f6ef9787a13a2025a2c049ea09cc07da93d1'/>
<id>urn:sha1:12d8f6ef9787a13a2025a2c049ea09cc07da93d1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>shells/zsh-syntax-highlighting: Update to 0.8.0</title>
<updated>2023-12-23T17:01:11Z</updated>
<author>
<name>Joseph Mingrone</name>
<email>jrm@FreeBSD.org</email>
</author>
<published>2023-12-23T17:01:11Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=b1486f1d55e8151b45c1c97c3207fd837df62877'/>
<id>urn:sha1:b1486f1d55e8151b45c1c97c3207fd837df62877</id>
<content type='text'>
Changes:	https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/changelog.md#changes-in-080
Sponsored by:	The FreeBSD Foundation
</content>
</entry>
<entry>
<title>shells/ast-ksh: fix a typo, mark broken on 15</title>
<updated>2023-12-11T18:54:34Z</updated>
<author>
<name>Brooks Davis</name>
<email>brooks@FreeBSD.org</email>
</author>
<published>2023-12-05T23:27:25Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=c35a419ccf030333c50808944ea171a8daaa8886'/>
<id>urn:sha1:c35a419ccf030333c50808944ea171a8daaa8886</id>
<content type='text'>
This is broken due to a new compiler on 14 so presumably also on 15.

PR:		275647
Approved by:	Marcin Cieślak &lt;saper@saper.info&gt; (maintainer)
Sponsored by:	DARPA
</content>
</entry>
<entry>
<title>shells/atuin: update 17.0.1 → 17.1.0</title>
<updated>2023-12-11T08:36:59Z</updated>
<author>
<name>Yuri Victorovich</name>
<email>yuri@FreeBSD.org</email>
</author>
<published>2023-12-11T07:59:51Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=52dcbc9da299f29b2d73daf4eb3e93541869421d'/>
<id>urn:sha1:52dcbc9da299f29b2d73daf4eb3e93541869421d</id>
<content type='text'>
Reported by:	portscout
</content>
</entry>
<entry>
<title>lang/rust: Bump revisions after 1.74.1</title>
<updated>2023-12-08T15:04:09Z</updated>
<author>
<name>Mikael Urankar</name>
<email>mikael@FreeBSD.org</email>
</author>
<published>2023-12-08T15:04:09Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=b2afd89fb26437c5d9810b131370525352e63f71'/>
<id>urn:sha1:b2afd89fb26437c5d9810b131370525352e63f71</id>
<content type='text'>
PR:		275243
</content>
</entry>
<entry>
<title>all: Bump PORTREVISION after lang/go* update</title>
<updated>2023-12-07T02:22:10Z</updated>
<author>
<name>Ashish SHUKLA</name>
<email>ashish@FreeBSD.org</email>
</author>
<published>2023-12-07T02:15:46Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=0505b712df3ae2b4bcaba00aecc7c1e9100d8609'/>
<id>urn:sha1:0505b712df3ae2b4bcaba00aecc7c1e9100d8609</id>
<content type='text'>
PR:		274405
</content>
</entry>
<entry>
<title>shells/elvish: Update to v0.19.2</title>
<updated>2023-11-30T11:32:45Z</updated>
<author>
<name>Adam Jimerson</name>
<email>vendion@gmail.com</email>
</author>
<published>2023-11-29T07:56:44Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=442e68c2b0a78189a8cec19f7c665377f023ba16'/>
<id>urn:sha1:442e68c2b0a78189a8cec19f7c665377f023ba16</id>
<content type='text'>
ChangeLog: https://elv.sh/blog/0.19.1-release-notes.html

 * A new doc module provides access to the documentation of builtin modules.
 * A new conj command “appends” values to a list, and has a guaranteed time
   complexity independent of the size of the list.
 * A new inexact-num converts its argument to an inexact number.
 * It is functionally identical to the now deprecated float64 command since the
   Go float64 type is the only underlying inexact number type for now. Its
   behavior may change in future if there are more underlying types for inexact
   numbers.
 * A new type of interactive abbreviation: edit:command-abbr
 * The order and compare commands now support boolean values
 * A new path:join command and path:separator and path:list-separator variables
 * A new runtime: module that contains paths important for the Elvish runtime
 * A new compact command that replaces consecutive runs of equal values with a
   single copy, similar to the Unix uniq command.
 * The order command has a new &amp;key option
 * A new benchmark command has been added
 * When checking compilation errors, Elvish no longer stops after the first
   error found. For example, if $a and $b are both not defined, echo $a $b now
   yields two errors. This applies to both the interactive REPL and elvish
   -compile-only.
 * When using an unimported builtin modules from the REPL, the REPL now shows
   the use command needed to import it, which can be executed from a key
   binding. This functionality is bound to Ctrl-A by default.
 * New variables exposing the terminal and null device in an OS-agnostic
   fashion: $path:dev-tty and $path:dev-null. They are /dev/tty and /dev/null on
   Unix, and CON and NUL on Windows

PR:		275422
Reported by:	vendion@gmail.com (maintainer)
</content>
</entry>
<entry>
<title>shells/bash: Remove unsed makeinfo use flag</title>
<updated>2023-11-29T23:27:05Z</updated>
<author>
<name>firk</name>
<email>firk@cantconnect.ru</email>
</author>
<published>2023-11-29T23:27:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=a4bbf57894ae1faf6c5eacce4662b9ad735ef1f4'/>
<id>urn:sha1:a4bbf57894ae1faf6c5eacce4662b9ad735ef1f4</id>
<content type='text'>
Makeinfo is not actually used because, after patching, it updates the
timestamps of *.info files, preventing doc/Makefile from wanting to
regenerate bash.info.

While here, sort USES.

PR:		275439
</content>
</entry>
<entry>
<title>shells/sheldon: update to 0.7.4</title>
<updated>2023-11-25T02:54:38Z</updated>
<author>
<name>Hiroki Tagato</name>
<email>tagattie@FreeBSD.org</email>
</author>
<published>2023-11-25T02:52:01Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=fd37a2b1e17bff0dc2ce8059340a63c45f56a2dd'/>
<id>urn:sha1:fd37a2b1e17bff0dc2ce8059340a63c45f56a2dd</id>
<content type='text'>
While here, correct license combination.

Changelog: https://github.com/rossmacarthur/sheldon/blob/0.7.4/RELEASES.md

Reported by:	GitHub (watch releases)
</content>
</entry>
<entry>
<title>shells/oksh: update to 7.4</title>
<updated>2023-11-20T14:32:05Z</updated>
<author>
<name>Piotr Kubaj</name>
<email>pkubaj@FreeBSD.org</email>
</author>
<published>2023-11-20T14:29:31Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=5f5f3d7a8808a1611a1247e57021a585ae3d7352'/>
<id>urn:sha1:5f5f3d7a8808a1611a1247e57021a585ae3d7352</id>
<content type='text'>
</content>
</entry>
</feed>
