diff options
author | ashish <ashish@FreeBSD.org> | 2015-04-27 18:28:00 +0800 |
---|---|---|
committer | ashish <ashish@FreeBSD.org> | 2015-04-27 18:28:00 +0800 |
commit | d63d9c1d054a702d22635c31e8bf6b396fe0b64c (patch) | |
tree | 051d603e0bed60bcd0d916f1ebb0ad78600d2b2f /editors/emacs | |
parent | d2952c0873bb12fb20e3c5ef57fc75b7d7f110a6 (diff) | |
download | freebsd-ports-gnome-d63d9c1d054a702d22635c31e8bf6b396fe0b64c.tar.gz freebsd-ports-gnome-d63d9c1d054a702d22635c31e8bf6b396fe0b64c.tar.zst freebsd-ports-gnome-d63d9c1d054a702d22635c31e8bf6b396fe0b64c.zip |
GNU Emacs Updates
editors/emacs:
- Update to 24.5
- Remove dependency on GCC for i386 platform, if the bug is fixed
in the version in use
- Remove upstreamed diff
editors/emacs-devel:
- Update to git snapshot def0df01
- Remove git revision from PORTVERSION, rather encode it in
DISTNAME
- Remove dependency on GCC for i386 platform, if the bug is fixed
in the version in use
- Fix portlint warnings
Mk/bsd.emacs.mk:
- Update version number for editors/emacs
- Remove deprecated block for emacs23
PR: 199553
Diffstat (limited to 'editors/emacs')
-rw-r--r-- | editors/emacs/Makefile | 6 | ||||
-rw-r--r-- | editors/emacs/distinfo | 4 | ||||
-rw-r--r-- | editors/emacs/files/patch-c117653.diff | 39 | ||||
-rw-r--r-- | editors/emacs/pkg-plist | 34 |
4 files changed, 24 insertions, 59 deletions
diff --git a/editors/emacs/Makefile b/editors/emacs/Makefile index 7b9a1a8e1b4c..5f81dbb5dc5e 100644 --- a/editors/emacs/Makefile +++ b/editors/emacs/Makefile @@ -3,7 +3,6 @@ PORTNAME= emacs PORTVERSION= ${EMACS_VER} -PORTREVISION= 6 PORTEPOCH= 3 CATEGORIES= editors ipv6 MASTER_SITES= ${MASTER_SITE_GNU} @@ -24,7 +23,7 @@ CONFLICTS= emacs-19.* emacs21-[0-9]* emacs22-[0-9]* emacs23-[0-9]* \ xemacs-devel-mule-[0-9]* \ emacs-devel-[0-9]* -EMACS_VER= 24.4 +EMACS_VER= 24.5 GNU_CONFIGURE= yes USES= cpe gmake makeinfo ncurses pkgconfig shebangfix tar:xz CPPFLAGS+= -I${LOCALBASE}/include @@ -179,9 +178,12 @@ FILENOTIFY_USE= GNOME=glib20 # clang is broken on i386 platform in -O2, due to use of alloca, and stack realignment # and %esi as frame pointer register # http://llvm.org/bugs/show_bug.cgi?id=18171 +# fixed in r263312 (11-CURRENT), and fixed in r263765 (10-STABLE) .if ${ARCH} == "i386" +.if (${OSVERSION} < 1000706) || (${OSVERSION} >= 1100000 && ${OSVERSION} < 1100015) USE_GCC= any .endif +.endif DBUS_PTHREAD_LIBS= ${CC} -dumpspecs | ${GREP} -m 1 pthread: | ${SED} -e 's|^.*%{\!pg: %{pthread:||' -e 's|}.*$$||' || ${TRUE} diff --git a/editors/emacs/distinfo b/editors/emacs/distinfo index c151153b5991..3735f166834e 100644 --- a/editors/emacs/distinfo +++ b/editors/emacs/distinfo @@ -1,4 +1,4 @@ -SHA256 (emacs-24.4.tar.xz) = 47e391170db4ca0a3c724530c7050655f6d573a711956b4cd84693c194a9d4fd -SIZE (emacs-24.4.tar.xz) = 39733124 +SHA256 (emacs-24.5.tar.xz) = dd47d71dd2a526cf6b47cb49af793ec2e26af69a0951cc40e43ae290eacfc34e +SIZE (emacs-24.5.tar.xz) = 39759804 SHA256 (emacs24.4canna-20141030.diff.gz) = 3c49cbdf9bf822c8d682568b63328c959a79edafa2ac73aa4e5c2d27059fcfa0 SIZE (emacs24.4canna-20141030.diff.gz) = 31687 diff --git a/editors/emacs/files/patch-c117653.diff b/editors/emacs/files/patch-c117653.diff deleted file mode 100644 index 9b8dd450bf1c..000000000000 --- a/editors/emacs/files/patch-c117653.diff +++ /dev/null @@ -1,39 +0,0 @@ -$FreeBSD$ - -From the commit r117653, bug #18858 - -=== modified file 'lisp/ChangeLog' ---- lisp/ChangeLog 2014-11-01 13:34:45 +0000 -+++ lisp/ChangeLog 2014-11-01 14:08:00 +0000 -@@ -1,3 +1,8 @@ -+2014-11-01 Wolfgang Jenkner <wjenkner@inode.at> -+ -+ * net/tramp-sh.el (tramp-send-command): Fix the case where the -+ remote-echo connection property is non-nil (bug#18858). -+ - 2014-11-01 Michael Albinus <michael.albinus@gmx.de> - - Backport Tramp changes from trunk. - -=== modified file 'lisp/net/tramp-sh.el' ---- lisp/net/tramp-sh.el 2014-11-01 13:34:45 +0000 -+++ lisp/net/tramp-sh.el 2014-11-01 14:08:00 +0000 -@@ -4769,6 +4769,17 @@ - (when (tramp-get-connection-property p "remote-echo" nil) - ;; We mark the command string that it can be erased in the output buffer. - (tramp-set-connection-property p "check-remote-echo" t) -+ ;; If we put `tramp-echo-mark' after a trailing newline (which -+ ;; is assumed to be unquoted) `tramp-send-string' doesn't see -+ ;; that newline and adds `tramp-rsh-end-of-line' right after -+ ;; `tramp-echo-mark', so the remote shell sees two consecutive -+ ;; trailing line endings and sends two prompts after executing -+ ;; the command, which confuses `tramp-wait-for-output'. -+ (when (and (not (string= command "")) -+ (string-equal (substring command -1) "\n")) -+ (setq command (substring command 0 -1))) -+ ;; No need to restore a trailing newline here since `tramp-send-string' -+ ;; makes sure that the string ends in `tramp-rsh-end-of-line', anyway. - (setq command (format "%s%s%s" tramp-echo-mark command tramp-echo-mark))) - ;; Send the command. - (tramp-message vec 6 "%s" command) - diff --git a/editors/emacs/pkg-plist b/editors/emacs/pkg-plist index 2caf6432d0ba..c5ff62411e0d 100644 --- a/editors/emacs/pkg-plist +++ b/editors/emacs/pkg-plist @@ -1646,8 +1646,6 @@ share/applications/emacs.desktop %%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lisp/warnings.elc %%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lock.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lock.elc -%%DATADIR%%/%%EMACS_VER%%/lisp/emulation/crisp.el.gz -%%DATADIR%%/%%EMACS_VER%%/lisp/emulation/crisp.elc %%DATADIR%%/%%EMACS_VER%%/lisp/emulation/cua-base.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/emulation/cua-base.elc %%DATADIR%%/%%EMACS_VER%%/lisp/emulation/cua-gmrk.el.gz @@ -1666,16 +1664,6 @@ share/applications/emacs.desktop %%DATADIR%%/%%EMACS_VER%%/lisp/emulation/edt.elc %%DATADIR%%/%%EMACS_VER%%/lisp/emulation/keypad.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/emulation/keypad.elc -%%DATADIR%%/%%EMACS_VER%%/lisp/emulation/tpu-edt.el.gz -%%DATADIR%%/%%EMACS_VER%%/lisp/emulation/tpu-edt.elc -%%DATADIR%%/%%EMACS_VER%%/lisp/emulation/tpu-extras.el.gz -%%DATADIR%%/%%EMACS_VER%%/lisp/emulation/tpu-extras.elc -%%DATADIR%%/%%EMACS_VER%%/lisp/emulation/tpu-mapper.el.gz -%%DATADIR%%/%%EMACS_VER%%/lisp/emulation/tpu-mapper.elc -%%DATADIR%%/%%EMACS_VER%%/lisp/emulation/vi.el.gz -%%DATADIR%%/%%EMACS_VER%%/lisp/emulation/vi.elc -%%DATADIR%%/%%EMACS_VER%%/lisp/emulation/vip.el.gz -%%DATADIR%%/%%EMACS_VER%%/lisp/emulation/vip.elc %%DATADIR%%/%%EMACS_VER%%/lisp/emulation/viper-cmd.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/emulation/viper-cmd.elc %%DATADIR%%/%%EMACS_VER%%/lisp/emulation/viper-ex.el.gz @@ -1692,8 +1680,6 @@ share/applications/emacs.desktop %%DATADIR%%/%%EMACS_VER%%/lisp/emulation/viper-util.elc %%DATADIR%%/%%EMACS_VER%%/lisp/emulation/viper.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/emulation/viper.elc -%%DATADIR%%/%%EMACS_VER%%/lisp/emulation/ws-mode.el.gz -%%DATADIR%%/%%EMACS_VER%%/lisp/emulation/ws-mode.elc %%DATADIR%%/%%EMACS_VER%%/lisp/env.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/env.elc %%DATADIR%%/%%EMACS_VER%%/lisp/epa-dired.el.gz @@ -2268,6 +2254,7 @@ share/applications/emacs.desktop %%DATADIR%%/%%EMACS_VER%%/lisp/international/ucs-normalize.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/international/ucs-normalize.elc %%DATADIR%%/%%EMACS_VER%%/lisp/international/uni-bidi.el +%%DATADIR%%/%%EMACS_VER%%/lisp/international/uni-brackets.el %%DATADIR%%/%%EMACS_VER%%/lisp/international/uni-category.el %%DATADIR%%/%%EMACS_VER%%/lisp/international/uni-combining.el %%DATADIR%%/%%EMACS_VER%%/lisp/international/uni-comment.el @@ -2848,10 +2835,14 @@ share/applications/emacs.desktop %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/awk-mode.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/awk-mode.elc %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/bruce.el +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/cc-compat.el.gz +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/cc-compat.elc %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/cl-compat.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/cl-compat.elc %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/complete.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/complete.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/crisp.el.gz +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/crisp.elc %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/cust-print.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/cust-print.elc %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/erc-hecomplete.el.gz @@ -2930,8 +2921,20 @@ share/applications/emacs.desktop %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/sym-comp.elc %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/terminal.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/terminal.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/tpu-edt.el.gz +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/tpu-edt.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/tpu-extras.el.gz +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/tpu-extras.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/tpu-mapper.el.gz +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/tpu-mapper.elc %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/vc-mcvs.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/vc-mcvs.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/vi.el.gz +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/vi.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/vip.el.gz +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/vip.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/ws-mode.el.gz +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/ws-mode.elc %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/xesam.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/xesam.elc %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/yow.el.gz @@ -3251,8 +3254,6 @@ share/applications/emacs.desktop %%DATADIR%%/%%EMACS_VER%%/lisp/progmodes/cc-bytecomp.elc %%DATADIR%%/%%EMACS_VER%%/lisp/progmodes/cc-cmds.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/progmodes/cc-cmds.elc -%%DATADIR%%/%%EMACS_VER%%/lisp/progmodes/cc-compat.el.gz -%%DATADIR%%/%%EMACS_VER%%/lisp/progmodes/cc-compat.elc %%DATADIR%%/%%EMACS_VER%%/lisp/progmodes/cc-defs.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/progmodes/cc-defs.elc %%DATADIR%%/%%EMACS_VER%%/lisp/progmodes/cc-engine.el.gz @@ -4041,3 +4042,4 @@ share/icons/hicolor/32x32/apps/emacs.png share/icons/hicolor/48x48/apps/emacs.png share/icons/hicolor/scalable/apps/emacs.svg share/icons/hicolor/scalable/mimetypes/emacs-document.svg +@dir %%DATADIR%%/%%EMACS_VER%%/lisp/emacs-parallel |