Stop calling make-local-hook because it is obsolete since 21.1 and removed at 24.1.
Responsible Changed From-To: freebsd-ports-bugs->hrs Over to maintainer (via the GNATS Auto Assign Tool)
State Changed From-To: open->closed Committed a fix. Thank you for your report.
Author: hrs Date: Sat Aug 4 00:45:29 2012 New Revision: 301979 URL: http://svn.freebsd.org/changeset/ports/301979 Log: - Update to 4.0.6.0.20041122.19. - Fix make-local-hook issue in emacs24. PR: ports/170360 > Description of fields to fill in above: 76 columns --| > PR: If a GNATS PR is affected by the change. > Submitted by: If someone else sent in the change. > Reviewed by: If someone else reviewed your modification. > Approved by: If you needed approval for this commit. > Obtained from: If the change is from a third party. > MFC after: N [day[s]|week[s]|month[s]]. Request a reminder email. > Security: Vulnerability reference (one per line) or description. > Empty fields above will be automatically removed. M tamago/distinfo AM tamago/files/post-patch-egg.el AM tamago/files/post-patch-menudiag.el M tamago/Makefile Added: head/editors/tamago/files/post-patch-egg.el (contents, props changed) head/editors/tamago/files/post-patch-menudiag.el (contents, props changed) Modified: head/editors/tamago/Makefile head/editors/tamago/distinfo Modified: head/editors/tamago/Makefile ============================================================================== --- head/editors/tamago/Makefile Fri Aug 3 23:19:19 2012 (r301978) +++ head/editors/tamago/Makefile Sat Aug 4 00:45:29 2012 (r301979) @@ -6,8 +6,7 @@ # PORTNAME= tamago -PORTVERSION= 4.0.6.0.20041122.18 -PORTREVISION= 7 +PORTVERSION= 4.0.6.0.20041122.19 CATEGORIES= editors elisp MASTER_SITES= ${MASTER_SITE_DEBIAN} MASTER_SITE_SUBDIR= pool/main/e/egg @@ -16,7 +15,7 @@ DISTNAME= egg_4.0.6+0.20041122cvs.orig PATCH_SITES= ${MASTER_SITE_DEBIAN:S,%SUBDIR%,pool/main/e/egg,} \ ${MASTER_SITE_LOCAL:S,%SUBDIR%,nork,} -PATCHFILES= egg_4.0.6+0.20041122cvs-18.diff.gz +PATCHFILES= egg_4.0.6+0.20041122cvs-19.diff.gz PATCH_DIST_STRIP= -p1 MAINTAINER= hrs@FreeBSD.org Modified: head/editors/tamago/distinfo ============================================================================== --- head/editors/tamago/distinfo Fri Aug 3 23:19:19 2012 (r301978) +++ head/editors/tamago/distinfo Sat Aug 4 00:45:29 2012 (r301979) @@ -1,4 +1,4 @@ SHA256 (egg_4.0.6+0.20041122cvs.orig.tar.gz) = 722413515f2d60418d98250c8aed2b811e6b5363cdb69899193d454afe425115 SIZE (egg_4.0.6+0.20041122cvs.orig.tar.gz) = 287308 -SHA256 (egg_4.0.6+0.20041122cvs-18.diff.gz) = e6ff6e7e1b52b38ba87cadc0733add1651827366af766bd78719b9ab6fd57e8b -SIZE (egg_4.0.6+0.20041122cvs-18.diff.gz) = 28267 +SHA256 (egg_4.0.6+0.20041122cvs-19.diff.gz) = bd4252d0536c1eeb526789063b822b9b9e75f2bbec9c3db97792ce0ee3b89fb0 +SIZE (egg_4.0.6+0.20041122cvs-19.diff.gz) = 28417 Added: head/editors/tamago/files/post-patch-egg.el ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/tamago/files/post-patch-egg.el Sat Aug 4 00:45:29 2012 (r301979) @@ -0,0 +1,12 @@ +--- egg.el.orig 2012-08-04 09:27:19.000000000 +0900 ++++ egg.el 2012-08-04 09:32:15.000000000 +0900 +@@ -169,7 +169,8 @@ + (setq egg-modeless-mode t)) + (setq inactivate-current-input-method-function 'egg-mode) + (setq describe-current-input-method-function 'egg-help) +- (make-local-hook 'input-method-activate-hook) ++ (if (fboundp 'make-local-hook) ++ (eval '(make-local-hook 'input-method-activate-hook))) + (add-hook 'input-method-activate-hook 'its-set-mode-line-title nil t) + (if (eq (selected-window) (minibuffer-window)) + (add-hook 'minibuffer-exit-hook 'egg-exit-from-minibuffer)) Added: head/editors/tamago/files/post-patch-menudiag.el ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/tamago/files/post-patch-menudiag.el Sat Aug 4 00:45:29 2012 (r301979) @@ -0,0 +1,12 @@ +--- menudiag.el.orig 2001-01-28 03:53:13.000000000 +0900 ++++ menudiag.el 2012-08-04 09:32:34.000000000 +0900 +@@ -503,7 +503,8 @@ + (make-local-variable 'inhibit-read-only) + (setq buffer-read-only t + inhibit-read-only nil) +- (make-local-hook 'post-command-hook) ++ (if (fboundp 'make-local-hook) ++ (eval '(make-local-hook 'post-command-hook))) + (add-hook 'post-command-hook 'menudiag-selection-align-to-item nil t) + (use-local-map menudiag-selection-map) + (setq mode-name "Menudiag Selection") _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"