pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

emacs-git: fix PLIST, fix test(1) operator



Module Name:	pkgsrc-wip
Committed By:	Thomas Klausner <wiz%gatalith.at@localhost>
Pushed By:	wiz
Date:		Tue Sep 20 09:07:29 2022 +0200
Changeset:	c8e8b2ca688f83c5294a97b40028f1e36a4bdeff

Modified Files:
	emacs-git/PLIST
	emacs-git/distinfo
Added Files:
	emacs-git/patches/patch-Makefile.in

Log Message:
emacs-git: fix PLIST, fix test(1) operator

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=c8e8b2ca688f83c5294a97b40028f1e36a4bdeff

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 emacs-git/PLIST                     |  2 ++
 emacs-git/distinfo                  |  1 +
 emacs-git/patches/patch-Makefile.in | 13 +++++++++++++
 3 files changed, 16 insertions(+)

diffs:
diff --git a/emacs-git/PLIST b/emacs-git/PLIST
index 2743efd665..2576f89910 100644
--- a/emacs-git/PLIST
+++ b/emacs-git/PLIST
@@ -3372,6 +3372,8 @@ share/emacs/${PKGVERSION}/lisp/org/ox-texinfo.el.gz
 share/emacs/${PKGVERSION}/lisp/org/ox-texinfo.elc
 share/emacs/${PKGVERSION}/lisp/org/ox.el.gz
 share/emacs/${PKGVERSION}/lisp/org/ox.elc
+share/emacs/${PKGVERSION}/lisp/osc.el.gz
+share/emacs/${PKGVERSION}/lisp/osc.elc
 share/emacs/${PKGVERSION}/lisp/outline.el.gz
 share/emacs/${PKGVERSION}/lisp/outline.elc
 share/emacs/${PKGVERSION}/lisp/paren.el.gz
diff --git a/emacs-git/distinfo b/emacs-git/distinfo
index e6314629a5..1ac8e04c25 100644
--- a/emacs-git/distinfo
+++ b/emacs-git/distinfo
@@ -1,3 +1,4 @@
 $NetBSD$
 
+SHA1 (patch-Makefile.in) = 423e632d159b51c93f665c67d7bc4b326f32f940
 SHA1 (patch-configure.ac) = f54d1d1428e25c5320bf166606cd2808d3e4797e
diff --git a/emacs-git/patches/patch-Makefile.in b/emacs-git/patches/patch-Makefile.in
new file mode 100644
index 0000000000..60ff3e16d7
--- /dev/null
+++ b/emacs-git/patches/patch-Makefile.in
@@ -0,0 +1,13 @@
+$NetBSD$
+
+--- Makefile.in.orig	2022-09-19 23:17:34.000000000 +0000
++++ Makefile.in
+@@ -417,7 +417,7 @@ sanity-check:
+ 	@v=$$(src/emacs${EXEEXT} --batch --eval \
+ 	  '(progn (defun f (n) (if (= 0 n) 1 (* n (f (- n 1))))) (princ (f 10)))' \
+ 	  2> /dev/null); \
+-	[ "X$$v" == "X3628800" ] && exit 0; \
++	[ "X$$v" = "X3628800" ] && exit 0; \
+ 	echo; \
+ 	echo "  \"make ${make-target}\" succeeded, but Emacs is not functional."; \
+ 	cat Makefile | \


Home | Main Index | Thread Index | Old Index