From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: joakim@verona.se Newsgroups: gmane.emacs.devel Subject: Re: summer of code results Date: Sat, 27 Sep 2014 22:26:21 +0200 Message-ID: References: <9lzjdk6fzz.fsf@fencepost.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1411849638 11497 80.91.229.3 (27 Sep 2014 20:27:18 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 27 Sep 2014 20:27:18 +0000 (UTC) Cc: emacs-devel@gnu.org To: Glenn Morris Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Sep 27 22:27:13 2014 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XXyaH-0001mK-6W for ged-emacs-devel@m.gmane.org; Sat, 27 Sep 2014 22:27:13 +0200 Original-Received: from localhost ([::1]:57365 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XXyaG-0004QF-PL for ged-emacs-devel@m.gmane.org; Sat, 27 Sep 2014 16:27:12 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:39177) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XXya8-0004Q8-Qi for emacs-devel@gnu.org; Sat, 27 Sep 2014 16:27:09 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XXya3-0001Oc-KO for emacs-devel@gnu.org; Sat, 27 Sep 2014 16:27:04 -0400 Original-Received: from mx1.bahnhof.se ([213.80.101.11]:59354) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XXya3-0001MH-DZ; Sat, 27 Sep 2014 16:26:59 -0400 Original-Received: from localhost (mf.bahnhof.se [213.80.101.20]) by mx1-reinject (Postfix) with ESMTP id 52A1440B87; Sat, 27 Sep 2014 22:26:51 +0200 (CEST) X-Virus-Scanned: by amavisd-new using ClamAV at bahnhof.se (MF3) Original-Received: from mf3.bahnhof.se ([127.0.0.1]) by localhost (mf3.bahnhof.se [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id pvTEeoHIbM3z; Sat, 27 Sep 2014 22:26:40 +0200 (CEST) Original-Received: from mta.verona.se (h-235-102.a149.priv.bahnhof.se [85.24.235.102]) by mf3.bahnhof.se (Postfix) with ESMTP id 8EC343E8CBB; Sat, 27 Sep 2014 22:26:38 +0200 (CEST) Original-Received: from localhost (unknown [127.0.0.1]) by mta.verona.se (Postfix) with ESMTP id 3EEE851ACB4; Sat, 27 Sep 2014 20:26:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at verona.se Original-Received: from mta.verona.se ([127.0.0.1]) by localhost (exodia.verona.se [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id movn5LcFnpOV; Sat, 27 Sep 2014 22:26:21 +0200 (CEST) Original-Received: from exodia.verona.se (www.verona.se [192.168.200.15]) by mta.verona.se (Postfix) with ESMTP id 454A551ACA5; Sat, 27 Sep 2014 22:26:21 +0200 (CEST) In-Reply-To: <9lzjdk6fzz.fsf@fencepost.gnu.org> (Glenn Morris's message of "Sat, 27 Sep 2014 15:05:36 -0400") User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/24.4.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 213.80.101.11 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:174753 Archived-At: Glenn Morris writes: > Answering my own question (a bit), I see there was (?) an Xwidgets project > again. > > https://www.google-melange.com/gsoc/project/details/google/gsoc2014/nick7s/5724160613416960 > > I wonder if it is any closer to being merged to trunk. > I see a single non-merge-from-trunk change in the xwidgets branch this year. > I'm in the process of collating the patches atm. I'm preparing a Docker image with the xwidget branch build environment to enable people to try it out more easily. The docker file and other things were moved to a new repo: https://github.com/jave/xwidget-aux I hope to prepare a better report when I verified that the images are good enough for public consumption. Menwhile, the Dockerfile looks like this: ----------- FROM fedora:20 # install things we need to build the emacsxwidget branch RUN yum -y install git RUN yum -y groupinstall "Development Tools" RUN yum -y install gobject-introspection-devel webkitgtk3-devel libjpeg-turbo libXpm-devel libungif-devel libjpeg-devel libnsurses-devel texinfo libncurses-devel RUN yum -y install libtiff-devel RUN yum -y install ncurses-devel RUN yum -y install xorg-x11-apps #this is just for debugging run yum -y install gdb RUN git clone --depth 1 -b xwidget git://git.savannah.gnu.org/emacs.git xwidget RUN cd xwidget && git checkout xwidget && export CFLAGS=" -g" && ./autogen.sh && ./configure --with-xwidgets --with-x-toolkit=gtk3 && make -j4 ------------ And you could try it with this unsecure xforward hack: xhost + docker run -it -v /tmp/.X11-unix/X76:/tmp/.X11-unix/X76 --env DISPLAY=:76 d18554142086 /xwidget/src/emacs of course using your own display numbers and docker image hash. -- Joakim Verona