<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ports/editors/with-editor, branch main</title>
<subtitle>FreeBSD ports tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/'/>
<entry>
<title>editors/with-editor: Update to 3.5.1</title>
<updated>2026-06-24T18:56:13+00:00</updated>
<author>
<name>Joseph Mingrone</name>
<email>jrm@FreeBSD.org</email>
</author>
<published>2026-06-23T18:08:40+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=afac15e219c103548f6333ecc4b9df7721ba2044'/>
<id>afac15e219c103548f6333ecc4b9df7721ba2044</id>
<content type='text'>
Event:		Halifax Hackathon 202606
Sponsored by:	The FreeBSD Foundation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Event:		Halifax Hackathon 202606
Sponsored by:	The FreeBSD Foundation
</pre>
</div>
</content>
</entry>
<entry>
<title>editors/with-editor: Update to 3.5.0</title>
<updated>2026-05-15T13:36:14+00:00</updated>
<author>
<name>Joseph Mingrone</name>
<email>jrm@FreeBSD.org</email>
</author>
<published>2026-05-10T03:18:42+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=328ebb39c7dbfdb0504b44ef0ad9dcaf4a5e64f0'/>
<id>328ebb39c7dbfdb0504b44ef0ad9dcaf4a5e64f0</id>
<content type='text'>
Changelog:	https://github.com/magit/with-editor/blob/main/CHANGELOG#v350----2026-05-01
Sponsored by:	The FreeBSD Foundation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changelog:	https://github.com/magit/with-editor/blob/main/CHANGELOG#v350----2026-05-01
Sponsored by:	The FreeBSD Foundation
</pre>
</div>
</content>
</entry>
<entry>
<title>editors/with-editor: Update to 3.4.9</title>
<updated>2026-04-20T03:11:02+00:00</updated>
<author>
<name>Joseph Mingrone</name>
<email>jrm@FreeBSD.org</email>
</author>
<published>2026-04-19T23:26:57+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=f1af7dff74dee41974c922137701d5be9cb9f4bb'/>
<id>f1af7dff74dee41974c922137701d5be9cb9f4bb</id>
<content type='text'>
Also, do not byte-compile Elisp since .elc files are no longer packaged.
This means we can remove BUILD_DEPENDS and MAKE_JOBS_UNSAFE.

Sponsored by:	The FreeBSD Foundation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also, do not byte-compile Elisp since .elc files are no longer packaged.
This means we can remove BUILD_DEPENDS and MAKE_JOBS_UNSAFE.

Sponsored by:	The FreeBSD Foundation
</pre>
</div>
</content>
</entry>
<entry>
<title>Emacs Lisp ports framework: Overhaul</title>
<updated>2026-04-11T16:03:58+00:00</updated>
<author>
<name>Joseph Mingrone</name>
<email>jrm@FreeBSD.org</email>
</author>
<published>2026-03-20T04:15:55+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=bc45b7ec889c7662bbbc64d26b00424db8dcb741'/>
<id>bc45b7ec889c7662bbbc64d26b00424db8dcb741</id>
<content type='text'>
This overhaul introduces four key changes to the elisp ports framework:

1. Remove support for packaged byte-compiled elisp.

   The primary motivation is to remove a large number of flavor-specific
   packages and to simplify the ports tree.  As an example, supporting
   byte-compiled elisp for devel/tablist required six packages, one for
   each flavor of editors/emacs and editors/emacs-devel.  With over 100
   elisp ports and requests for new Emacs flavors, this was
   unmanageable.

2. Install configuration to integrate with Emacs's native compilation
   machinery, allowing elisp from ports to be compiled into the standard
   cache under the user's home directory.

   This matches the behavior of GNU ELPA packages and generally results
   in a faster experience.  Speedups vary depending on the
   characteristics of the elisp code, but are often reported to be 2.5
   to 5 times faster than byte-compiled code.

3. Perform byte compilation on the target host, but only when native
   compilation is unavailable.  Compilation is initiated when Emacs
   starts, and the resulting .elc files are cached under the user's
   home directory.

4. Load all autoload files installed by FreeBSD elisp ports.  This
   mirrors what package.el does for ELPA packages, ensuring that
   autoloaded functions are available without requiring users to
   explicitly load each package.

Users with elisp packages (*-emacs_*) installed should consult the
2026-04-11 UPDATING entry for instructions on handling the transition.

Reviewed by:	ashish, Benjamin Jacobs &lt;freebsd@dev.thsi.be&gt;, dinoex,
		mandree, mce, nobutaka, Pat Maddox &lt;pat@patmaddox.com&gt;,
		rhurlin
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D56001
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This overhaul introduces four key changes to the elisp ports framework:

1. Remove support for packaged byte-compiled elisp.

   The primary motivation is to remove a large number of flavor-specific
   packages and to simplify the ports tree.  As an example, supporting
   byte-compiled elisp for devel/tablist required six packages, one for
   each flavor of editors/emacs and editors/emacs-devel.  With over 100
   elisp ports and requests for new Emacs flavors, this was
   unmanageable.

2. Install configuration to integrate with Emacs's native compilation
   machinery, allowing elisp from ports to be compiled into the standard
   cache under the user's home directory.

   This matches the behavior of GNU ELPA packages and generally results
   in a faster experience.  Speedups vary depending on the
   characteristics of the elisp code, but are often reported to be 2.5
   to 5 times faster than byte-compiled code.

3. Perform byte compilation on the target host, but only when native
   compilation is unavailable.  Compilation is initiated when Emacs
   starts, and the resulting .elc files are cached under the user's
   home directory.

4. Load all autoload files installed by FreeBSD elisp ports.  This
   mirrors what package.el does for ELPA packages, ensuring that
   autoloaded functions are available without requiring users to
   explicitly load each package.

Users with elisp packages (*-emacs_*) installed should consult the
2026-04-11 UPDATING entry for instructions on handling the transition.

Reviewed by:	ashish, Benjamin Jacobs &lt;freebsd@dev.thsi.be&gt;, dinoex,
		mandree, mce, nobutaka, Pat Maddox &lt;pat@patmaddox.com&gt;,
		rhurlin
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D56001
</pre>
</div>
</content>
</entry>
<entry>
<title>editors/with-editor: Take maintainership</title>
<updated>2026-04-01T05:26:57+00:00</updated>
<author>
<name>Joseph Mingrone</name>
<email>jrm@FreeBSD.org</email>
</author>
<published>2026-04-01T05:24:14+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=f57164689b5a9b65faae11fa744844dd377548ca'/>
<id>f57164689b5a9b65faae11fa744844dd377548ca</id>
<content type='text'>
Sponsored by:	The FreeBSD Foundation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Sponsored by:	The FreeBSD Foundation
</pre>
</div>
</content>
</entry>
<entry>
<title>editors/with-editor: update to 3.4.8.</title>
<updated>2026-02-20T15:22:15+00:00</updated>
<author>
<name>Vanilla I. Shu</name>
<email>vanilla@FreeBSD.org</email>
</author>
<published>2026-02-20T15:19:24+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=318076e583f28fedc2e12b16f94a327d7870ef66'/>
<id>318076e583f28fedc2e12b16f94a327d7870ef66</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>*/*: Return to pool</title>
<updated>2025-11-30T23:56:55+00:00</updated>
<author>
<name>Yasuhiro Kimura</name>
<email>yasu@FreeBSD.org</email>
</author>
<published>2025-11-30T23:37:25+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=f12c037f5a354e15cd62541300de9ca6325401db'/>
<id>f12c037f5a354e15cd62541300de9ca6325401db</id>
<content type='text'>
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.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.
</pre>
</div>
</content>
</entry>
<entry>
<title>editors/with-editor: Update to 3.4.7</title>
<updated>2025-11-02T05:18:41+00:00</updated>
<author>
<name>Yasuhiro Kimura</name>
<email>yasu@FreeBSD.org</email>
</author>
<published>2025-11-02T04:58:21+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=bf47519b45f72098700586116ad79671c1fc2ce3'/>
<id>bf47519b45f72098700586116ad79671c1fc2ce3</id>
<content type='text'>
ChangeLog:	https://github.com/magit/with-editor/blob/v3.4.7/CHANGELOG
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ChangeLog:	https://github.com/magit/with-editor/blob/v3.4.7/CHANGELOG
</pre>
</div>
</content>
</entry>
<entry>
<title>editors/with-editor: Update to 3.4.6</title>
<updated>2025-09-02T10:50:21+00:00</updated>
<author>
<name>Yasuhiro Kimura</name>
<email>yasu@FreeBSD.org</email>
</author>
<published>2025-09-02T10:31:20+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=407db5eb96180c0acc7f7e5c0ebead5c6e60a8a2'/>
<id>407db5eb96180c0acc7f7e5c0ebead5c6e60a8a2</id>
<content type='text'>
ChangeLog:	https://github.com/magit/with-editor/blob/v3.4.6/CHANGELOG
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ChangeLog:	https://github.com/magit/with-editor/blob/v3.4.6/CHANGELOG
</pre>
</div>
</content>
</entry>
<entry>
<title>editors/emacs: Update to 30.2</title>
<updated>2025-08-16T00:42:54+00:00</updated>
<author>
<name>Yasuhiro Kimura</name>
<email>yasu@FreeBSD.org</email>
</author>
<published>2025-08-15T03:15:13+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=41e3c046e7bca7ea4bb6b98e280b68e922bf4b9d'/>
<id>41e3c046e7bca7ea4bb6b98e280b68e922bf4b9d</id>
<content type='text'>
* Replace '30.1' in Mk/Uses/emacs.mk with '30.2'.
* Bump PORTREVISION of dependent ports.

ChangLog:	https://cgit.git.savannah.gnu.org/cgit/emacs.git/tree/etc/NEWS?h=emacs-30.2
Reviewed by:	jrm
Differential Revision:	https://reviews.freebsd.org/D51906
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Replace '30.1' in Mk/Uses/emacs.mk with '30.2'.
* Bump PORTREVISION of dependent ports.

ChangLog:	https://cgit.git.savannah.gnu.org/cgit/emacs.git/tree/etc/NEWS?h=emacs-30.2
Reviewed by:	jrm
Differential Revision:	https://reviews.freebsd.org/D51906
</pre>
</div>
</content>
</entry>
</feed>
