svn commit: r544801 - in head/textproc/uim-el: . files
MANTANI Nobutaka
nobutaka at FreeBSD.org
Thu Aug 13 11:27:01 UTC 2020
Author: nobutaka
Date: Thu Aug 13 11:27:00 2020
New Revision: 544801
URL: https://svnweb.freebsd.org/changeset/ports/544801
Log:
- Fix breakage with emacs27.
- Regenerate patch-emacs_Makefile.in with make makepatch.
Added:
head/textproc/uim-el/files/patch-emacs_uim-helper.el (contents, props changed)
head/textproc/uim-el/files/patch-emacs_uim.el (contents, props changed)
Modified:
head/textproc/uim-el/Makefile
head/textproc/uim-el/files/patch-emacs_Makefile.in
Modified: head/textproc/uim-el/Makefile
==============================================================================
--- head/textproc/uim-el/Makefile Thu Aug 13 10:48:56 2020 (r544800)
+++ head/textproc/uim-el/Makefile Thu Aug 13 11:27:00 2020 (r544801)
@@ -3,7 +3,7 @@
PORTNAME= uim-el
PORTVERSION= 1.8.8
-PORTREVISION= 4
+PORTREVISION= 5
CATEGORIES= textproc
MASTER_SITES= https://github.com/uim/uim/releases/download/${PORTVERSION}/
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
Modified: head/textproc/uim-el/files/patch-emacs_Makefile.in
==============================================================================
--- head/textproc/uim-el/files/patch-emacs_Makefile.in Thu Aug 13 10:48:56 2020 (r544800)
+++ head/textproc/uim-el/files/patch-emacs_Makefile.in Thu Aug 13 11:27:00 2020 (r544801)
@@ -1,15 +1,15 @@
---- emacs/Makefile.in.orig Fri Jun 9 10:47:01 2006
-+++ emacs/Makefile.in Mon Jun 12 01:12:29 2006
-@@ -37,8 +37,6 @@
+--- emacs/Makefile.in.orig 2018-05-11 21:27:46 UTC
++++ emacs/Makefile.in
+@@ -89,8 +89,6 @@ PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
- at UIM_EL_TRUE@bin_PROGRAMS = uim-el-agent$(EXEEXT) \
- at UIM_EL_TRUE@ uim-el-helper-agent$(EXEEXT)
subdir = emacs
- DIST_COMMON = README $(am__dist_uimel_lisp_DATA_DIST) \
- $(srcdir)/Makefile.am $(srcdir)/Makefile.in COPYING INSTALL
-@@ -874,7 +872,7 @@
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_have_stl.m4 \
+@@ -1087,7 +1085,7 @@ distdir: $(DISTFILES)
done
check-am: all-am
check: check-am
@@ -17,4 +17,4 @@
+all-am: Makefile $(DATA)
installdirs:
for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(uimel_lispdir)"; do \
- test -z "$$dir" || $(mkdir_p) "$$dir"; \
+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
Added: head/textproc/uim-el/files/patch-emacs_uim-helper.el
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/uim-el/files/patch-emacs_uim-helper.el Thu Aug 13 11:27:00 2020 (r544801)
@@ -0,0 +1,11 @@
+--- emacs/uim-helper.el.orig 2017-08-14 00:07:26 UTC
++++ emacs/uim-helper.el
+@@ -106,7 +106,7 @@
+ (if (not proc)
+ (error "uim.el: Couldn't invoke uim-el-helper-agent."))
+
+- (process-kill-without-query proc)
++ (set-process-query-on-exit-flag proc nil)
+
+ ;; wait "OK"
+ (let ((patience uim-startup-timeout) (ok nil))
Added: head/textproc/uim-el/files/patch-emacs_uim.el
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/uim-el/files/patch-emacs_uim.el Thu Aug 13 11:27:00 2020 (r544801)
@@ -0,0 +1,11 @@
+--- emacs/uim.el.orig 2018-05-08 04:53:27 UTC
++++ emacs/uim.el
+@@ -488,7 +488,7 @@
+ (error "uim.el: Couldn't invoke uim-el-agent."))
+
+ ;; don't ask kill
+- (process-kill-without-query proc)
++ (set-process-query-on-exit-flag proc nil)
+
+ ;; wait "OK"
+ (let ((patience uim-startup-timeout) (ok nil))
More information about the svn-ports-all
mailing list