Re: Patchwork to require git-send-email formatted patches?

2015-11-13 Thread Damien Lespiau
On Thu, Nov 12, 2015 at 06:40:48PM -0800, Bryce Harrington wrote: > On Thu, Nov 12, 2015 at 09:38:48AM +, Ucan, Emre (ADITG/SW1) wrote: > > Hi, > > > > I personally create the patches with git format-patch and then copy to the > > email. > > Because I have to use windows and outlook for my co

Re: Patchwork to require git-send-email formatted patches?

2015-11-12 Thread Damien Lespiau
On Thu, Nov 12, 2015 at 02:20:01PM +0200, Pekka Paalanen wrote: > IMHO, it is less of a burden to prune accidental patches from Patchwork > than cause people grief by rejecting legitimate patches. Or does that > screw up the patch revision or series tracking? That should work, if not, it's probabl

Re: Patchwork to require git-send-email formatted patches?

2015-11-12 Thread Damien Lespiau
On Wed, Nov 11, 2015 at 02:01:38PM +0200, Pekka Paalanen wrote: > On Tue, 10 Nov 2015 11:35:35 + > Damien Lespiau wrote: > > > Something else I noticed on this thead: > > > > In the reply 20151019013047.GA8175@jelly.local from Peter, there's a > > diff

Re: Patchwork missing the rest of the series (Re: [PATCH wayland 0/3] Restore DTD and use wayland-scanner to validate)

2015-11-10 Thread Damien Lespiau
On Mon, Nov 09, 2015 at 11:25:17AM +0200, Pekka Paalanen wrote: > Hi Damien, Hi Pekka, > I just noticed that from this patch series of three, only 1/3 shows up > in Patchwork as http://patchwork.freedesktop.org/patch/64191/ . > The rest are: > http://lists.freedesktop.org/archives/wayland-devel/2

[Patchwork] The infrequent patchwork update #1

2015-09-29 Thread Damien Lespiau
Hi all, You may have noticed already, patchwork.freedesktop.org looks different. That new version includes: - Some re-design. Design is very much an iterative process, thoughts and comments are welcome, - Showing the number of Reviewed-by, Acked-by, Tested-by tags, - Some cleanup of the

Re: Patchwork upgrade?

2015-09-24 Thread Damien Lespiau
On Wed, Sep 23, 2015 at 07:17:20PM +0200, Olivier Blin wrote: > Le 22/09/2015 19:27, Damien Lespiau a écrit : > >On Mon, Jul 27, 2015 at 11:01:43AM -0700, Bryce Harrington wrote: > >> On Mon, Jul 20, 2015 at 11:19:18AM +0100, Daniel Stone wrote: > > > >The other th

Re: Patchwork upgrade?

2015-09-23 Thread Damien Lespiau
On Tue, Sep 22, 2015 at 04:49:59PM -0700, Bryce Harrington wrote: > > You probably want to be a maintainer of cairo in patchwork to change > > patch status, ... If you have a patchwork account I can add you. > > Thanks, I do: account name 'bryce'. Done. -- Damien ___

Re: Patchwork upgrade?

2015-09-22 Thread Damien Lespiau
On Mon, Jul 27, 2015 at 11:01:43AM -0700, Bryce Harrington wrote: > On Mon, Jul 20, 2015 at 11:19:18AM +0100, Daniel Stone wrote: > > Hey Bryce, > > > > On 17 July 2015 at 21:19, Bryce Harrington wrote: > > > Could I bother you to request we update patchwork on fdo? > > > The latest version now d

Re: Patchwork upgrade?

2015-09-18 Thread Damien Lespiau
On Thu, Sep 17, 2015 at 12:14:46PM -0700, Bryce Harrington wrote: > On Thu, Aug 20, 2015 at 04:26:14PM -0700, Bryce Harrington wrote: > > On Thu, Aug 13, 2015 at 03:58:26PM +0200, Damien Lespiau wrote: > > > On Fri, Aug 07, 2015 at 04:40:11PM -0700, Bryce Harrington wrote: >

Re: Patchwork upgrade?

2015-08-13 Thread Damien Lespiau
On Fri, Aug 07, 2015 at 04:40:11PM -0700, Bryce Harrington wrote: > > Damien, would you have time to update Patchwork in the next week or two? > > > > Also, it would be awesome to have Cairo included in patchwork, for > > patches going back maybe 2-3 years. > > > > Bryce > > Hello Damien, just c

[PATCH] gitignore: Ignore test-driver

2013-03-28 Thread Damien Lespiau
Automake (1.12 here) parallel-tests installs a test-driver file, another file to add to .gitignore. While at it, remove the duplicate cscope.out entry and add TAGS (the result of automake's "make tag") --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore

[PATCH] build: Make the X11 compositor explicitely depend on xcb-shm

2013-03-28 Thread Damien Lespiau
Otherwise, it means the X11 compositor depends on another library to pull xcb-shm (cairo?), which is not always the case. Here I end up with: [01:54:38.970] Failed to load module: $prefix/lib/weston/x11-backend.so: undefined symbol: xcb_shm_id --- configure.ac | 2 +- 1 file changed, 1 insertion(

[PATCH] build: Make the X11 compositor explicitely depend on xcb-shm

2013-03-27 Thread Damien Lespiau
From: Damien Lespiau Otherwise, it means the X11 compositor depends on another library to pull xcb-shm (cairo?), which is not always the case. Here I end up with: [01:54:38.970] Failed to load module: $prefix/lib/weston/x11-backend.so: undefined symbol: xcb_shm_id --- configure.ac | 2 +- 1

[PATCH] dnd: Use %zd in the format string for size_t types

2012-10-25 Thread Damien Lespiau
From: Damien Lespiau len i size_t, so is the result of the sizeof operator. --- clients/dnd.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/clients/dnd.c b/clients/dnd.c index 4c070ff..bbfde09 100644 --- a/clients/dnd.c +++ b/clients/dnd.c @@ -517,7 +517,7

[PATCH] tests: Use pkg-config to find setbacklight CFLAGS and libs

2012-07-25 Thread Damien Lespiau
From: Damien Lespiau setbacklight depends on udev and drm, one cannot just add the -l flags if you want to support unusual install paths. --- configure.ac |1 + tests/Makefile.am |3 ++- 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac