Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] emacs: update to 27.1.
@ 2020-08-11  4:04 sirikid
  2020-08-11  4:41 ` ericonr
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: sirikid @ 2020-08-11  4:04 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 317 bytes --]

There is a new pull request by sirikid against master on the void-packages repository

https://github.com/sirikid/void-packages update/emacs-27.1
https://github.com/void-linux/void-packages/pull/24215

emacs: update to 27.1.


A patch file from https://github.com/void-linux/void-packages/pull/24215.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/emacs-27.1-24215.patch --]
[-- Type: text/x-diff, Size: 5856 bytes --]

From 7934c6c0ff00e7f17871cbd0aa8c3e5f605f9b3e Mon Sep 17 00:00:00 2001
From: Ivan Sokolov <ivan-p-sokolov@ya.ru>
Date: Tue, 11 Aug 2020 06:42:56 +0300
Subject: [PATCH] emacs: update to 27.1.

---
 ...auto-revert-mode-breaks-git-rebase-B.patch | 55 -------------------
 ...sure-bug-21559-applies-to-git-status.patch | 40 --------------
 srcpkgs/emacs/template                        |  4 +-
 3 files changed, 2 insertions(+), 97 deletions(-)
 delete mode 100644 srcpkgs/emacs/patches/0001-Fix-for-25.0.50-auto-revert-mode-breaks-git-rebase-B.patch
 delete mode 100644 srcpkgs/emacs/patches/0002-vc-git.el-make-sure-bug-21559-applies-to-git-status.patch

diff --git a/srcpkgs/emacs/patches/0001-Fix-for-25.0.50-auto-revert-mode-breaks-git-rebase-B.patch b/srcpkgs/emacs/patches/0001-Fix-for-25.0.50-auto-revert-mode-breaks-git-rebase-B.patch
deleted file mode 100644
index c707eae0066..00000000000
--- a/srcpkgs/emacs/patches/0001-Fix-for-25.0.50-auto-revert-mode-breaks-git-rebase-B.patch
+++ /dev/null
@@ -1,55 +0,0 @@
-From 6a11fbebd8459a987a2e5878b468e5f1f9e0dd75 Mon Sep 17 00:00:00 2001
-From: Alexei Khlebnikov <alexei.khlebnikov@gmail.com>
-Date: Thu, 22 Feb 2018 12:21:49 +0100
-Subject: [PATCH 1/2] Fix for: "25.0.50; auto-revert-mode breaks git rebase"
- (Bug#21559)
-
-* lisp/autorevert.el (auto-revert-handler):
-Set "revert-buffer-in-progress-p" flag before calling
-"vc-refresh-state".
-
-* lisp/vc/vc-git.el (vc-git-command):
-If "revert-buffer-in-progress-p" flag is set, prepend
-"GIT_OPTIONAL_LOCKS=0" to "process-environment".  (Bug#21559)
----
- lisp/autorevert.el | 3 ++-
- lisp/vc/vc-git.el  | 9 ++++++++-
- 2 files changed, 10 insertions(+), 2 deletions(-)
-
-diff --git lisp/autorevert.el lisp/autorevert.el
-index 7b8302695f..13cc25043d 100644
---- lisp/autorevert.el
-+++ lisp/autorevert.el
-@@ -719,7 +719,8 @@ This is an internal function used by Auto-Revert Mode."
-     ;; `preserve-modes' avoids changing the (minor) modes.  But we do
-     ;; want to reset the mode for VC, so we do it manually.
-     (when (or revert auto-revert-check-vc-info)
--      (vc-refresh-state))))
-+      (let ((revert-buffer-in-progress-p t))
-+        (vc-refresh-state)))))
- 
- (defun auto-revert-tail-handler (size)
-   (let ((modified (buffer-modified-p))
-diff --git lisp/vc/vc-git.el lisp/vc/vc-git.el
-index efe853e5ee..0cea5334f4 100644
---- lisp/vc/vc-git.el
-+++ lisp/vc/vc-git.el
-@@ -1564,7 +1564,14 @@ The difference to vc-do-command is that this function always invokes
-          (or coding-system-for-read vc-git-log-output-coding-system))
- 	(coding-system-for-write
-          (or coding-system-for-write vc-git-commits-coding-system))
--        (process-environment (cons "GIT_DIR" process-environment)))
-+        (process-environment
-+         (append
-+          `("GIT_DIR"
-+            ;; Avoid repository locking during background operations
-+            ;; (bug#21559).
-+            ,@(when revert-buffer-in-progress-p
-+                '("GIT_OPTIONAL_LOCKS=0")))
-+          process-environment)))
-     (apply 'vc-do-command (or buffer "*vc*") okstatus vc-git-program
- 	   ;; https://debbugs.gnu.org/16897
- 	   (unless (and (not (cdr-safe file-or-list))
--- 
-2.19.0
-
diff --git a/srcpkgs/emacs/patches/0002-vc-git.el-make-sure-bug-21559-applies-to-git-status.patch b/srcpkgs/emacs/patches/0002-vc-git.el-make-sure-bug-21559-applies-to-git-status.patch
deleted file mode 100644
index 89e20d12cd3..00000000000
--- a/srcpkgs/emacs/patches/0002-vc-git.el-make-sure-bug-21559-applies-to-git-status.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 1842a410263aa9d6ddd23efc7603122f9ce6bcb3 Mon Sep 17 00:00:00 2001
-From: Andrew Ruder <andy@aeruder.net>
-Date: Mon, 24 Sep 2018 21:29:00 -0700
-Subject: [PATCH 2/2] vc-git.el: make sure bug#21559 applies to git status
-
-The fix for Bug#21559 is mostly right, but the one command we were
-trying to protect, git status --porcelain, doesn't go through
-vc-git-command and doesn't actually get the GIT_OPTIONAL_LOCKS=0 treatment.
-
-* lisp/vc/vc-git.el (vc-git--call): Override GIT_OPTIONAL_LOCKS=0
-  during revert-buffer-in-progress-p
----
- lisp/vc/vc-git.el | 11 +++++++++--
- 1 file changed, 9 insertions(+), 2 deletions(-)
-
-diff --git lisp/vc/vc-git.el lisp/vc/vc-git.el
-index 0cea5334f4..e779109191 100644
---- lisp/vc/vc-git.el
-+++ lisp/vc/vc-git.el
-@@ -1598,8 +1598,15 @@ The difference to vc-do-command is that this function always invokes
-          (or coding-system-for-read vc-git-log-output-coding-system))
- 	(coding-system-for-write
-          (or coding-system-for-write vc-git-commits-coding-system))
--	(process-environment (cons "PAGER=" process-environment)))
--    (push "GIT_DIR" process-environment)
-+	(process-environment
-+	 (append
-+	  `("GIT_DIR"
-+	    "PAGER="
-+	    ;; Avoid repository locking during background operations
-+	    ;; (bug#21559).
-+	    ,@(when revert-buffer-in-progress-p
-+		'("GIT_OPTIONAL_LOCKS=0")))
-+	  process-environment)))
-     (apply 'process-file vc-git-program nil buffer nil command args)))
- 
- (defun vc-git--out-ok (command &rest args)
--- 
-2.19.0
-
diff --git a/srcpkgs/emacs/template b/srcpkgs/emacs/template
index 93807166e66..467e6a851e2 100644
--- a/srcpkgs/emacs/template
+++ b/srcpkgs/emacs/template
@@ -1,6 +1,6 @@
 # Template file for 'emacs'
 pkgname=emacs
-version=26.3
+version=27.1
 revision=1
 build_style=gnu-configure
 configure_args="--with-file-notification=inotify --with-modules
@@ -21,7 +21,7 @@ maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="GPL-3.0-or-later"
 homepage="http://www.gnu.org/software/emacs/"
 distfiles="${GNU_SITE}/${pkgname}/${pkgname}-${version}.tar.xz"
-checksum=4d90e6751ad8967822c6e092db07466b9d383ef1653feb2f95c93e7de66d3485
+checksum=4a4c128f915fc937d61edfc273c98106711b540c9be3cd5d2e2b9b5b2f172e41
 replaces="emacs>=0"
 nocross=yes
 nopie=yes

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: emacs: update to 27.1.
  2020-08-11  4:04 [PR PATCH] emacs: update to 27.1 sirikid
@ 2020-08-11  4:41 ` ericonr
  2020-08-11  6:35 ` sirikid
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: ericonr @ 2020-08-11  4:41 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 238 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/24215#issuecomment-671720706

Comment:
Smoke tested `emacs-gtk3` with circe, seems to be working fine. WIll be trying other daily usage.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: emacs: update to 27.1.
  2020-08-11  4:04 [PR PATCH] emacs: update to 27.1 sirikid
  2020-08-11  4:41 ` ericonr
@ 2020-08-11  6:35 ` sirikid
  2020-08-11  6:49 ` flexibeast
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: sirikid @ 2020-08-11  6:35 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 273 bytes --]

New comment by sirikid on void-packages repository

https://github.com/void-linux/void-packages/pull/24215#issuecomment-671757862

Comment:
There is a bunch of new options (`--with-json`, `--with-cairo`, `--with-harfbuzz`), Idk if should they be enabled by default or not.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: emacs: update to 27.1.
  2020-08-11  4:04 [PR PATCH] emacs: update to 27.1 sirikid
  2020-08-11  4:41 ` ericonr
  2020-08-11  6:35 ` sirikid
@ 2020-08-11  6:49 ` flexibeast
  2020-08-11  6:52 ` Noah-Huppert
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: flexibeast @ 2020-08-11  6:49 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 476 bytes --]

New comment by flexibeast on void-packages repository

https://github.com/void-linux/void-packages/pull/24215#issuecomment-671763185

Comment:
Haven't tried out this PR, but after downloading the .tar.xz, the .tar.gz, and their associated .sig files (via the links in [the announcement message](https://lists.gnu.org/archive/html/emacs-devel/2020-08/msg00237.html)), then trying to verify with `gpg --verify <file>.sig`, i'm getting "BAD signature"s. Can anyone else confirm?

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: emacs: update to 27.1.
  2020-08-11  4:04 [PR PATCH] emacs: update to 27.1 sirikid
                   ` (2 preceding siblings ...)
  2020-08-11  6:49 ` flexibeast
@ 2020-08-11  6:52 ` Noah-Huppert
  2020-08-11  7:57 ` sirikid
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Noah-Huppert @ 2020-08-11  6:52 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 255 bytes --]

New comment by Noah-Huppert on void-packages repository

https://github.com/void-linux/void-packages/pull/24215#issuecomment-671764214

Comment:
Built, in `eshell` (for extra points :smile:), just fine. Loads my `init.el` and seems to be working. x86_64.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: emacs: update to 27.1.
  2020-08-11  4:04 [PR PATCH] emacs: update to 27.1 sirikid
                   ` (3 preceding siblings ...)
  2020-08-11  6:52 ` Noah-Huppert
@ 2020-08-11  7:57 ` sirikid
  2020-08-11  8:22 ` leahneukirchen
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: sirikid @ 2020-08-11  7:57 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 177 bytes --]

New comment by sirikid on void-packages repository

https://github.com/void-linux/void-packages/pull/24215#issuecomment-671791814

Comment:
@flexibeast nope, just verified them

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: emacs: update to 27.1.
  2020-08-11  4:04 [PR PATCH] emacs: update to 27.1 sirikid
                   ` (4 preceding siblings ...)
  2020-08-11  7:57 ` sirikid
@ 2020-08-11  8:22 ` leahneukirchen
  2020-08-11 10:06 ` [PR PATCH] [Updated] " sirikid
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: leahneukirchen @ 2020-08-11  8:22 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 203 bytes --]

New comment by leahneukirchen on void-packages repository

https://github.com/void-linux/void-packages/pull/24215#issuecomment-671804375

Comment:
I would add gmp, enable jansson, disable cairo for now.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PR PATCH] [Updated] emacs: update to 27.1.
  2020-08-11  4:04 [PR PATCH] emacs: update to 27.1 sirikid
                   ` (5 preceding siblings ...)
  2020-08-11  8:22 ` leahneukirchen
@ 2020-08-11 10:06 ` sirikid
  2020-08-11 10:08 ` sirikid
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: sirikid @ 2020-08-11 10:06 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 322 bytes --]

There is an updated pull request by sirikid against master on the void-packages repository

https://github.com/sirikid/void-packages update/emacs-27.1
https://github.com/void-linux/void-packages/pull/24215

emacs: update to 27.1.


A patch file from https://github.com/void-linux/void-packages/pull/24215.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/emacs-27.1-24215.patch --]
[-- Type: text/x-diff, Size: 7733 bytes --]

From cbc5666ed04151c54cf40054de2f7b5e7ac7ef79 Mon Sep 17 00:00:00 2001
From: Ivan Sokolov <ivan-p-sokolov@ya.ru>
Date: Tue, 11 Aug 2020 06:42:56 +0300
Subject: [PATCH] emacs: update to 27.1.

---
 ...auto-revert-mode-breaks-git-rebase-B.patch | 55 -------------------
 ...sure-bug-21559-applies-to-git-status.patch | 40 --------------
 srcpkgs/emacs/template                        | 15 +++--
 3 files changed, 9 insertions(+), 101 deletions(-)
 delete mode 100644 srcpkgs/emacs/patches/0001-Fix-for-25.0.50-auto-revert-mode-breaks-git-rebase-B.patch
 delete mode 100644 srcpkgs/emacs/patches/0002-vc-git.el-make-sure-bug-21559-applies-to-git-status.patch
 mode change 100644 => 100755 srcpkgs/emacs/template

diff --git a/srcpkgs/emacs/patches/0001-Fix-for-25.0.50-auto-revert-mode-breaks-git-rebase-B.patch b/srcpkgs/emacs/patches/0001-Fix-for-25.0.50-auto-revert-mode-breaks-git-rebase-B.patch
deleted file mode 100644
index c707eae0066..00000000000
--- a/srcpkgs/emacs/patches/0001-Fix-for-25.0.50-auto-revert-mode-breaks-git-rebase-B.patch
+++ /dev/null
@@ -1,55 +0,0 @@
-From 6a11fbebd8459a987a2e5878b468e5f1f9e0dd75 Mon Sep 17 00:00:00 2001
-From: Alexei Khlebnikov <alexei.khlebnikov@gmail.com>
-Date: Thu, 22 Feb 2018 12:21:49 +0100
-Subject: [PATCH 1/2] Fix for: "25.0.50; auto-revert-mode breaks git rebase"
- (Bug#21559)
-
-* lisp/autorevert.el (auto-revert-handler):
-Set "revert-buffer-in-progress-p" flag before calling
-"vc-refresh-state".
-
-* lisp/vc/vc-git.el (vc-git-command):
-If "revert-buffer-in-progress-p" flag is set, prepend
-"GIT_OPTIONAL_LOCKS=0" to "process-environment".  (Bug#21559)
----
- lisp/autorevert.el | 3 ++-
- lisp/vc/vc-git.el  | 9 ++++++++-
- 2 files changed, 10 insertions(+), 2 deletions(-)
-
-diff --git lisp/autorevert.el lisp/autorevert.el
-index 7b8302695f..13cc25043d 100644
---- lisp/autorevert.el
-+++ lisp/autorevert.el
-@@ -719,7 +719,8 @@ This is an internal function used by Auto-Revert Mode."
-     ;; `preserve-modes' avoids changing the (minor) modes.  But we do
-     ;; want to reset the mode for VC, so we do it manually.
-     (when (or revert auto-revert-check-vc-info)
--      (vc-refresh-state))))
-+      (let ((revert-buffer-in-progress-p t))
-+        (vc-refresh-state)))))
- 
- (defun auto-revert-tail-handler (size)
-   (let ((modified (buffer-modified-p))
-diff --git lisp/vc/vc-git.el lisp/vc/vc-git.el
-index efe853e5ee..0cea5334f4 100644
---- lisp/vc/vc-git.el
-+++ lisp/vc/vc-git.el
-@@ -1564,7 +1564,14 @@ The difference to vc-do-command is that this function always invokes
-          (or coding-system-for-read vc-git-log-output-coding-system))
- 	(coding-system-for-write
-          (or coding-system-for-write vc-git-commits-coding-system))
--        (process-environment (cons "GIT_DIR" process-environment)))
-+        (process-environment
-+         (append
-+          `("GIT_DIR"
-+            ;; Avoid repository locking during background operations
-+            ;; (bug#21559).
-+            ,@(when revert-buffer-in-progress-p
-+                '("GIT_OPTIONAL_LOCKS=0")))
-+          process-environment)))
-     (apply 'vc-do-command (or buffer "*vc*") okstatus vc-git-program
- 	   ;; https://debbugs.gnu.org/16897
- 	   (unless (and (not (cdr-safe file-or-list))
--- 
-2.19.0
-
diff --git a/srcpkgs/emacs/patches/0002-vc-git.el-make-sure-bug-21559-applies-to-git-status.patch b/srcpkgs/emacs/patches/0002-vc-git.el-make-sure-bug-21559-applies-to-git-status.patch
deleted file mode 100644
index 89e20d12cd3..00000000000
--- a/srcpkgs/emacs/patches/0002-vc-git.el-make-sure-bug-21559-applies-to-git-status.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 1842a410263aa9d6ddd23efc7603122f9ce6bcb3 Mon Sep 17 00:00:00 2001
-From: Andrew Ruder <andy@aeruder.net>
-Date: Mon, 24 Sep 2018 21:29:00 -0700
-Subject: [PATCH 2/2] vc-git.el: make sure bug#21559 applies to git status
-
-The fix for Bug#21559 is mostly right, but the one command we were
-trying to protect, git status --porcelain, doesn't go through
-vc-git-command and doesn't actually get the GIT_OPTIONAL_LOCKS=0 treatment.
-
-* lisp/vc/vc-git.el (vc-git--call): Override GIT_OPTIONAL_LOCKS=0
-  during revert-buffer-in-progress-p
----
- lisp/vc/vc-git.el | 11 +++++++++--
- 1 file changed, 9 insertions(+), 2 deletions(-)
-
-diff --git lisp/vc/vc-git.el lisp/vc/vc-git.el
-index 0cea5334f4..e779109191 100644
---- lisp/vc/vc-git.el
-+++ lisp/vc/vc-git.el
-@@ -1598,8 +1598,15 @@ The difference to vc-do-command is that this function always invokes
-          (or coding-system-for-read vc-git-log-output-coding-system))
- 	(coding-system-for-write
-          (or coding-system-for-write vc-git-commits-coding-system))
--	(process-environment (cons "PAGER=" process-environment)))
--    (push "GIT_DIR" process-environment)
-+	(process-environment
-+	 (append
-+	  `("GIT_DIR"
-+	    "PAGER="
-+	    ;; Avoid repository locking during background operations
-+	    ;; (bug#21559).
-+	    ,@(when revert-buffer-in-progress-p
-+		'("GIT_OPTIONAL_LOCKS=0")))
-+	  process-environment)))
-     (apply 'process-file vc-git-program nil buffer nil command args)))
- 
- (defun vc-git--out-ok (command &rest args)
--- 
-2.19.0
-
diff --git a/srcpkgs/emacs/template b/srcpkgs/emacs/template
old mode 100644
new mode 100755
index 93807166e66..420ef0fa14f
--- a/srcpkgs/emacs/template
+++ b/srcpkgs/emacs/template
@@ -1,12 +1,13 @@
 # Template file for 'emacs'
 pkgname=emacs
-version=26.3
+version=27.1
 revision=1
 build_style=gnu-configure
 configure_args="--with-file-notification=inotify --with-modules
  $(vopt_with jpeg) $(vopt_with tiff) $(vopt_with gif) $(vopt_with png)
  $(vopt_with xpm) $(vopt_with svg rsvg) $(vopt_with imagemagick)
- $(vopt_with xml xml2) $(vopt_with gnutls) $(vopt_with sound) $(vopt_with m17n m17n-flt)"
+ $(vopt_with xml xml2) $(vopt_with gnutls) $(vopt_with sound) $(vopt_with m17n m17n-flt)
+ $(vopt_with json) $(vopt_with harfbuzz) $(vopt_with cairo) $(vopt_with gmp libgmp)"
 hostmakedepends="pkg-config tar"
 makedepends="ncurses-devel libXaw-devel gtk+-devel gtk+3-devel webkit2gtk-devel
  dbus-devel acl-devel
@@ -14,24 +15,26 @@ makedepends="ncurses-devel libXaw-devel gtk+-devel gtk+3-devel webkit2gtk-devel
  $(vopt_if gif giflib-devel) $(vopt_if png libpng-devel) $(vopt_if xpm libXpm-devel)
  $(vopt_if svg librsvg-devel) $(vopt_if imagemagick libmagick-devel)
  $(vopt_if xml libxml2-devel) $(vopt_if gnutls gnutls-devel)
- $(vopt_if sound alsa-lib-devel) $(vopt_if m17n m17n-lib-devel)"
+ $(vopt_if sound alsa-lib-devel) $(vopt_if m17n m17n-lib-devel)
+ $(vopt_if json jansson-devel) $(vopt_if harfbuzz harfbuzz-devel)
+ $(vopt_if cairo cairo-devel) $(vopt_if gmp gmp-devel)"
 depends="emacs-common-${version}_${revision}"
 short_desc="GNU Emacs editor"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="GPL-3.0-or-later"
 homepage="http://www.gnu.org/software/emacs/"
 distfiles="${GNU_SITE}/${pkgname}/${pkgname}-${version}.tar.xz"
-checksum=4d90e6751ad8967822c6e092db07466b9d383ef1653feb2f95c93e7de66d3485
+checksum=4a4c128f915fc937d61edfc273c98106711b540c9be3cd5d2e2b9b5b2f172e41
 replaces="emacs>=0"
 nocross=yes
 nopie=yes
 
 # Package build options
-build_options="jpeg tiff gif png xpm svg xml imagemagick gnutls sound m17n dbus"
+build_options="jpeg tiff gif png xpm svg xml imagemagick gnutls sound m17n dbus json harfbuzz cairo gmp"
 desc_option_xpm="Enable support for XPM images"
 desc_option_sound="Enable support for sound"
 desc_option_m17n="Enable support for m17n multilingual text processing"
-build_options_default="jpeg tiff gif png xpm svg xml gnutls sound m17n"
+build_options_default="jpeg tiff gif png xpm svg xml gnutls sound m17n json gmp"
 
 pre_configure() {
 	# Just configuring in different directories results in

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: emacs: update to 27.1.
  2020-08-11  4:04 [PR PATCH] emacs: update to 27.1 sirikid
                   ` (6 preceding siblings ...)
  2020-08-11 10:06 ` [PR PATCH] [Updated] " sirikid
@ 2020-08-11 10:08 ` sirikid
  2020-08-11 10:10 ` flexibeast
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: sirikid @ 2020-08-11 10:08 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 231 bytes --]

New comment by sirikid on void-packages repository

https://github.com/void-linux/void-packages/pull/24215#issuecomment-671856670

Comment:
I've added options for gmp, json, cairo and harfbuzz. Gmp and json are enabled by default.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: emacs: update to 27.1.
  2020-08-11  4:04 [PR PATCH] emacs: update to 27.1 sirikid
                   ` (7 preceding siblings ...)
  2020-08-11 10:08 ` sirikid
@ 2020-08-11 10:10 ` flexibeast
  2020-08-11 11:16 ` leahneukirchen
  2020-08-12  8:24 ` [PR PATCH] [Merged]: " leahneukirchen
  10 siblings, 0 replies; 12+ messages in thread
From: flexibeast @ 2020-08-11 10:10 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 227 bytes --]

New comment by flexibeast on void-packages repository

https://github.com/void-linux/void-packages/pull/24215#issuecomment-671857669

Comment:
@sirikid: Thanks. :-) i just downloaded again, and it seems to be fine now .... %-}

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: emacs: update to 27.1.
  2020-08-11  4:04 [PR PATCH] emacs: update to 27.1 sirikid
                   ` (8 preceding siblings ...)
  2020-08-11 10:10 ` flexibeast
@ 2020-08-11 11:16 ` leahneukirchen
  2020-08-12  8:24 ` [PR PATCH] [Merged]: " leahneukirchen
  10 siblings, 0 replies; 12+ messages in thread
From: leahneukirchen @ 2020-08-11 11:16 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 212 bytes --]

New comment by leahneukirchen on void-packages repository

https://github.com/void-linux/void-packages/pull/24215#issuecomment-671884996

Comment:
Runs fine here, will merge tomorrow if nothing shows up. Thanks!

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PR PATCH] [Merged]: emacs: update to 27.1.
  2020-08-11  4:04 [PR PATCH] emacs: update to 27.1 sirikid
                   ` (9 preceding siblings ...)
  2020-08-11 11:16 ` leahneukirchen
@ 2020-08-12  8:24 ` leahneukirchen
  10 siblings, 0 replies; 12+ messages in thread
From: leahneukirchen @ 2020-08-12  8:24 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 156 bytes --]

There's a merged pull request on the void-packages repository

emacs: update to 27.1.
https://github.com/void-linux/void-packages/pull/24215

Description:


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2020-08-12  8:24 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-11  4:04 [PR PATCH] emacs: update to 27.1 sirikid
2020-08-11  4:41 ` ericonr
2020-08-11  6:35 ` sirikid
2020-08-11  6:49 ` flexibeast
2020-08-11  6:52 ` Noah-Huppert
2020-08-11  7:57 ` sirikid
2020-08-11  8:22 ` leahneukirchen
2020-08-11 10:06 ` [PR PATCH] [Updated] " sirikid
2020-08-11 10:08 ` sirikid
2020-08-11 10:10 ` flexibeast
2020-08-11 11:16 ` leahneukirchen
2020-08-12  8:24 ` [PR PATCH] [Merged]: " leahneukirchen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).