* Trouble writing to the emacs repo
@ 2019-01-04 22:50 João Távora
2019-01-05 1:05 ` Paul Eggert
0 siblings, 1 reply; 4+ messages in thread
From: João Távora @ 2019-01-04 22:50 UTC (permalink / raw)
To: emacs-devel
[-- Attachment #1: Type: text/plain, Size: 967 bytes --]
I'm having trouble pushing some changes to the Emacs repo. Half an hour
ago, the server wasn't even responding to "git fetch". Now it does but
pushing results in this:
Enumerating objects: 15, done.
Counting objects: 100% (15/15), done.
Delta compression using up to 4 threads
Compressing objects: 100% (10/10), done.
Writing objects: 100% (10/10), 1.16 KiB | 1.16 MiB/s, done.
Total 10 (delta 8), reused 0 (delta 0)
remote: error: insufficient permission for adding an object to repository database ./objects
remote: fatal: failed to write object
error: remote unpack failed: unpack-objects abnormal exit
To git.sv.gnu.org:/srv/git/emacs.git
! [remote rejected] master -> master (unpacker error)
error: failed to push some refs to 'capitaomorte@git.sv.gnu.org:/srv/git/emacs.git'
Known problem?
João
PS: trying to push these two patches that fix two Flymake bugs, if
anyone can install them
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Unbreak-Flymake-s-diagnostics-buffer-when-revisiting.patch --]
[-- Type: text/x-diff, Size: 1161 bytes --]
From 8dd840bddf10303303987777e4e1aa3a11727687 Mon Sep 17 00:00:00 2001
From: John Shahid <jvshahid@gmail.com>
Date: Fri, 4 Jan 2019 21:28:35 +0000
Subject: [PATCH 1/2] Unbreak Flymake's diagnostics buffer when revisiting
source
Fixes: bug#33881
Copyright-paperwork-exempt: yes
* lisp/progmodes/flymake.el (flymake-show-diagnostics-buffer):
Set flymake--diagnostics-buffer-source before reverting.
---
lisp/progmodes/flymake.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el
index 50a9880a14..14940844a4 100644
--- a/lisp/progmodes/flymake.el
+++ b/lisp/progmodes/flymake.el
@@ -1332,9 +1332,9 @@ flymake-show-diagnostics-buffer
(target (or (get-buffer name)
(with-current-buffer (get-buffer-create name)
(flymake-diagnostics-buffer-mode)
- (setq flymake--diagnostics-buffer-source source)
(current-buffer)))))
(with-current-buffer target
+ (setq flymake--diagnostics-buffer-source source)
(revert-buffer)
(display-buffer (current-buffer)))))
--
2.20.0
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: 0002-Fix-Flymake-tests-for-GCC-8.2.0.patch --]
[-- Type: text/x-diff, Size: 1346 bytes --]
From 2dfdb1e0fabd9147cc1b2f2fdb5e01337515094c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jo=C3=A3o=20T=C3=A1vora?= <joaotavora@gmail.com>
Date: Fri, 4 Jan 2019 22:45:29 +0000
Subject: [PATCH 2/2] Fix Flymake tests for GCC 8.2.0
Fixes: bug#33872
"Now you have two problems..."
* lisp/progmodes/flymake-cc.el (flymake-cc--make-diagnostics):
Adjust regexp.
---
lisp/progmodes/flymake-cc.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lisp/progmodes/flymake-cc.el b/lisp/progmodes/flymake-cc.el
index e8069f5c17..524521d7db 100644
--- a/lisp/progmodes/flymake-cc.el
+++ b/lisp/progmodes/flymake-cc.el
@@ -58,13 +58,13 @@ flymake-cc--make-diagnostics
(cl-loop
while
(search-forward-regexp
- "^\\(In file included from \\)?<stdin>:\\([0-9]+\\):\\([0-9]+\\):\n?\\(.*\\): \\(.*\\)$"
+ "^\\(In file included from \\)?<stdin>:\\([0-9]+\\)\\(?::\\([0-9]+\\)\\)?:\n?\\(.*\\): \\(.*\\)$"
nil t)
for msg = (match-string 5)
for (beg . end) = (flymake-diag-region
source
(string-to-number (match-string 2))
- (string-to-number (match-string 3)))
+ (and (match-string 3) (string-to-number (match-string 3))))
for type = (if (match-string 1)
:error
(assoc-default
--
2.20.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: Trouble writing to the emacs repo
2019-01-04 22:50 Trouble writing to the emacs repo João Távora
@ 2019-01-05 1:05 ` Paul Eggert
2019-01-05 7:09 ` Eli Zaretskii
0 siblings, 1 reply; 4+ messages in thread
From: Paul Eggert @ 2019-01-05 1:05 UTC (permalink / raw)
To: João Távora; +Cc: emacs-devel
On 1/4/19 2:50 PM, João Távora wrote:
> I'm having trouble pushing some changes to the Emacs repo.
You're not alone. I suggest bookmarking this URL:
https://quitter.im/fsfstatus
It currently says "6h ... www.gnu.org is going down for maintenance"
which I take it means that they've been doing sysadmin work for six
hours and things are not up yet.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Trouble writing to the emacs repo
2019-01-05 1:05 ` Paul Eggert
@ 2019-01-05 7:09 ` Eli Zaretskii
2019-01-05 8:41 ` Eli Zaretskii
0 siblings, 1 reply; 4+ messages in thread
From: Eli Zaretskii @ 2019-01-05 7:09 UTC (permalink / raw)
To: Paul Eggert; +Cc: joaotavora, emacs-devel
> From: Paul Eggert <eggert@cs.ucla.edu>
> Date: Fri, 4 Jan 2019 17:05:01 -0800
> Cc: emacs-devel@gnu.org
>
> On 1/4/19 2:50 PM, João Távora wrote:
> > I'm having trouble pushing some changes to the Emacs repo.
>
> You're not alone. I suggest bookmarking this URL:
>
> https://quitter.im/fsfstatus
>
> It currently says "6h ... www.gnu.org is going down for maintenance"
> which I take it means that they've been doing sysadmin work for six
> hours and things are not up yet.
All the GNU servers are being migrated to new IP addresses, and some
breakage is to be expected in the process.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Trouble writing to the emacs repo
2019-01-05 7:09 ` Eli Zaretskii
@ 2019-01-05 8:41 ` Eli Zaretskii
0 siblings, 0 replies; 4+ messages in thread
From: Eli Zaretskii @ 2019-01-05 8:41 UTC (permalink / raw)
To: eggert, joaotavora; +Cc: emacs-devel
> Date: Sat, 05 Jan 2019 09:09:03 +0200
> From: Eli Zaretskii <eliz@gnu.org>
> Cc: joaotavora@gmail.com, emacs-devel@gnu.org
>
> > https://quitter.im/fsfstatus
> >
> > It currently says "6h ... www.gnu.org is going down for maintenance"
> > which I take it means that they've been doing sysadmin work for six
> > hours and things are not up yet.
>
> All the GNU servers are being migrated to new IP addresses, and some
> breakage is to be expected in the process.
Should be over now.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-01-05 8:41 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-04 22:50 Trouble writing to the emacs repo João Távora
2019-01-05 1:05 ` Paul Eggert
2019-01-05 7:09 ` Eli Zaretskii
2019-01-05 8:41 ` Eli Zaretskii
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.