all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#40655: 28.0.50; Build broken in net/tramp-archive.el: D-Bus error: "Method List is not implemented on interface org.gtk.Private.RemoteVolumeMonitor"
@ 2020-04-16  9:02 Ashish SHUKLA
  2020-04-16 11:59 ` Michael Albinus
  0 siblings, 1 reply; 4+ messages in thread
From: Ashish SHUKLA @ 2020-04-16  9:02 UTC (permalink / raw)
  To: 40655; +Cc: ashish.is


While trying to build Emacs revision 490f279 on FreeBSD 12.1 (amd64)
with following configure flags:

  --disable-build-details  --localstatedir=/var --with-x --enable-acl
  --with-cairo --with-dbus --with-gconf --with-gif --with-gnutls
  --with-gsettings --with-x-toolkit=gtk3 --with-harfbuzz --with-jpeg
  --with-json --with-file-notification=kqueue --with-lcms2
  --with-m17n-flt --without-imagemagick --with-mailutils --with-modules
  --with-sound=oss --with-libotf --with-png --with-toolkit-scroll-bars
  --with-rsvg --with-threads --with-tiff --with-xft --with-xim
  --with-xml2 --with-xpm --without-xwidgets --x-libraries=/usr/local/lib
  --x-includes=/usr/local/include --prefix=/usr/local

Build aborted with:

EMACSLOADPATH= '../src/emacs' -batch --no-site-file --no-site-lisp --eval '(setq load-prefer-newer t)'  -f batch-byte-compile net/tramp-archive.el

In toplevel form:
net/tramp-archive.el:113:1: Error: D-Bus error: "Method List is not implemented on interface org.gtk.Private.RemoteVolumeMonitor"
gmake[4]: *** [Makefile:296: net/tramp-archive.elc] Error 1
gmake[4]: Leaving directory 'emacs-490f279/lisp'
gmake[3]: *** [Makefile:319: compile-main] Error 2
gmake[3]: Leaving directory 'emacs-490f279/lisp'
gmake[2]: *** [Makefile:411: lisp] Error 2
gmake[2]: Leaving directory 'emacs-490f279'


-- 
Ashish SHUKLA

Sent via Gnus from GNU Emacs





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

* bug#40655: 28.0.50; Build broken in net/tramp-archive.el: D-Bus error: "Method List is not implemented on interface org.gtk.Private.RemoteVolumeMonitor"
  2020-04-16  9:02 bug#40655: 28.0.50; Build broken in net/tramp-archive.el: D-Bus error: "Method List is not implemented on interface org.gtk.Private.RemoteVolumeMonitor" Ashish SHUKLA
@ 2020-04-16 11:59 ` Michael Albinus
  2020-04-16 13:12   ` Ashish SHUKLA
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Albinus @ 2020-04-16 11:59 UTC (permalink / raw)
  To: Ashish SHUKLA; +Cc: 40655

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

Ashish SHUKLA <ashish.is@lostca.se> writes:

Hi,

> In toplevel form:
> net/tramp-archive.el:113:1: Error: D-Bus error: "Method List is not
> implemented on interface org.gtk.Private.RemoteVolumeMonitor"
> gmake[4]: *** [Makefile:296: net/tramp-archive.elc] Error 1
> gmake[4]: Leaving directory 'emacs-490f279/lisp'
> gmake[3]: *** [Makefile:319: compile-main] Error 2
> gmake[3]: Leaving directory 'emacs-490f279/lisp'
> gmake[2]: *** [Makefile:411: lisp] Error 2
> gmake[2]: Leaving directory 'emacs-490f279'

Does the appended patch on tramp-gvfs.el fixes this?

Best regards, Michael.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 602 bytes --]

diff --git a/lisp/net/tramp-gvfs.el b/lisp/net/tramp-gvfs.el
index 526c564ee3..ffcf7c9451 100644
--- a/lisp/net/tramp-gvfs.el
+++ b/lisp/net/tramp-gvfs.el
@@ -912,7 +912,7 @@ with-tramp-dbus-call-method
 		   #'dbus-call-method #'dbus-call-method-asynchronously))
 	 (args (append (list ,bus ,service ,path ,interface ,method)
 		       (if ,synchronous (list ,@args) (list 'ignore ,@args)))))
-     (tramp-dbus-function ,vec func args)))
+     (dbus-ignore-errors (tramp-dbus-function ,vec func args))))

 (font-lock-add-keywords 'emacs-lisp-mode '("\\<with-tramp-dbus-call-method\\>"))


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

* bug#40655: 28.0.50; Build broken in net/tramp-archive.el: D-Bus error: "Method List is not implemented on interface org.gtk.Private.RemoteVolumeMonitor"
  2020-04-16 11:59 ` Michael Albinus
@ 2020-04-16 13:12   ` Ashish SHUKLA
  2020-04-16 17:54     ` Michael Albinus
  0 siblings, 1 reply; 4+ messages in thread
From: Ashish SHUKLA @ 2020-04-16 13:12 UTC (permalink / raw)
  To: Michael Albinus; +Cc: 40655


[-- Attachment #1.1: Type: text/plain, Size: 700 bytes --]

On 4/16/20 5:29 PM, Michael Albinus wrote:
> Ashish SHUKLA <ashish.is@lostca.se> writes:
> 
> Hi,
> 
>> In toplevel form:
>> net/tramp-archive.el:113:1: Error: D-Bus error: "Method List is not
>> implemented on interface org.gtk.Private.RemoteVolumeMonitor"
>> gmake[4]: *** [Makefile:296: net/tramp-archive.elc] Error 1
>> gmake[4]: Leaving directory 'emacs-490f279/lisp'
>> gmake[3]: *** [Makefile:319: compile-main] Error 2
>> gmake[3]: Leaving directory 'emacs-490f279/lisp'
>> gmake[2]: *** [Makefile:411: lisp] Error 2
>> gmake[2]: Leaving directory 'emacs-490f279'
> 
> Does the appended patch on tramp-gvfs.el fixes this?
> 

Thank you, that works.

-- 
Ashish SHUKLA


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* bug#40655: 28.0.50; Build broken in net/tramp-archive.el: D-Bus error: "Method List is not implemented on interface org.gtk.Private.RemoteVolumeMonitor"
  2020-04-16 13:12   ` Ashish SHUKLA
@ 2020-04-16 17:54     ` Michael Albinus
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Albinus @ 2020-04-16 17:54 UTC (permalink / raw)
  To: Ashish SHUKLA; +Cc: 40655-done

Version: 28.1

Ashish SHUKLA <ashish.is@lostca.se> writes:

Hi,

>> Does the appended patch on tramp-gvfs.el fixes this?
>>
> Thank you, that works.

Thanks for the feedback, I've pushed it to master. Closing the bug.

Best regards, Michael.





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

end of thread, other threads:[~2020-04-16 17:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-16  9:02 bug#40655: 28.0.50; Build broken in net/tramp-archive.el: D-Bus error: "Method List is not implemented on interface org.gtk.Private.RemoteVolumeMonitor" Ashish SHUKLA
2020-04-16 11:59 ` Michael Albinus
2020-04-16 13:12   ` Ashish SHUKLA
2020-04-16 17:54     ` Michael Albinus

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.