aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorJoseph Mingrone <jrm@FreeBSD.org>2020-08-12 18:30:06 +0000
committerJoseph Mingrone <jrm@FreeBSD.org>2020-08-12 18:30:06 +0000
commitbea2b0b80255c7df1a22f967b34299a2bfaad9ca (patch)
tree9cd448f0266d934d79aafc6ae5f7cc25f6b2eaf0 /UPDATING
parentcbd41e1dc155e34115118d440e0d05c2c6c25a65 (diff)
downloadports-bea2b0b80255c7df1a22f967b34299a2bfaad9ca.tar.gz
ports-bea2b0b80255c7df1a22f967b34299a2bfaad9ca.zip
editors/emacs: Update to version 27.1
Please refer to the 20200811 UPDATING entry when upgrading dependent (*-emacs26-*) ports. Port changes: - depend on math/gmp - match upstream by turning CAIRO, HARFBUZZ, and JSON options and on and turning MAGICK off by default - remove OPENMP check for graphics/ImageMagick as the openmp is now included in base - update EMACS_VER in Mk/Uses/emacs.mk - bump USES=emacs ports or remove BROKEN for net-im/jabber.el and deskutils/howm, which now build Submitted by: HIROSE Yuuji <yuuji@gentei.org> (canna patch) Reviewed by: ashish Differential Revision: https://reviews.freebsd.org/D23966
Notes
Notes: svn path=/head/; revision=544763
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING23
1 files changed, 23 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index a27ed7afaeff..90c79f7a96c5 100644
--- a/UPDATING
+++ b/UPDATING
@@ -5,6 +5,29 @@ they are unavoidable.
You should get into the habit of checking this file for changes each time
you update your ports collection, before attempting any port upgrades.
+20200811:
+ AFFECTS: users of *-emacs26-* packages
+ AUTHOR: jrm@FreeBSD.org
+
+ With the release of Emacs version 27.1, the major version of editors/emacs has
+ changed from 26 to 27. This means the names of some dependent packages have
+ also changed, so simply running `pkg upgrade` will not upgrade foo-emacs26-x
+ to foo-emacs27-x. To update these packages, run these commands with superuser
+ privileges.
+
+ Binary package users:
+
+ # sh
+ # for i in $(pkg query -g %n '*-emacs26*'); do \
+ nn=$(echo "$i" | sed -e 's/emacs26/emacs27/'); \
+ pkg set -yn "$i":"$nn"; \
+ done;
+ # pkg upgrade
+
+ portmaster users:
+
+ # portmaster -r emacs
+
20200803:
AFFECTS: users of lang/perl5*
AUTHOR: mat@FreeBSD.org