Bug#676507: xserver-xorg-video-openchrome: new upstream release 0.2.906 available
On Thu, Jun 07, 2012 at 02:06:19PM +0200, Michael Prokop wrote: > Package: xserver-xorg-video-openchrome > Version: 1:0.2.904+svn1050-1+b1 > Severity: wishlist > > > http://www.openchrome.org/releases/ provides: > > xf86-video-openchrome-0.2.906.tar.bz2 15-May-2012 22:01 502K > > Filing this bug report for a user who noticed that a recent VIA > chipset is supposed to be supported by that version. > > regards, > -mika- > Yes I know, this is taking longer than I'd like, I'm really busy right now... The good news is that I fixed my VIA hardware, so now It's just me finding enough time to package the release. Also upstream switched from svn to git, so it's a little more work than usual to prepare this release... I'm planning to upload the release to unstable and the latest git to experimental. This probably between June 16 and June 24. I'm really sorry this is taking so long... Regards, -- Julien Viard de Galbert http://silicone.homelinux.org/ GPG Key ID: D00E52B6 Published on: hkp://keys.gnupg.net Key Fingerprint: E312 A31D BEC3 74CC C49E 6D69 8B30 6538 D00E 52B6 signature.asc Description: Digital signature
xserver-xorg-video-nouveau: Changes to 'upstream-unstable'
src/compat-api.h | 55 ++ src/drmmode_display.c |2 - src/nouveau_exa.c |9 ++ src/nv04_exa.c| 15 +- src/nv50_accel.c | 23 src/nv50_accel.h |5 ++- src/nv50_exa.c| 59 + src/nv_accel_common.c |4 ++ src/nv_const.h|2 + src/nv_dma.c | 38 ++ src/nv_driver.c | 71 +++--- src/nv_proto.h| 10 ++- src/nv_type.h |6 src/nvc0_accel.c | 21 ++ src/nvc0_exa.c| 59 + 15 files changed, 331 insertions(+), 48 deletions(-) New commits: commit 4dbc132f22721e3da30eb2e7fc97dea5b8458df6 Author: Viktor Novotný Date: Sat May 26 22:15:20 2012 +0200 nv04/exa: Reset destination surface offset in the same call of NV04EXACopy Fixes FDO bug #48954. Signed-off-by: Viktor Novotný Reviewed-by: Marcin Slusarz Signed-off-by: Ben Skeggs diff --git a/src/nv04_exa.c b/src/nv04_exa.c index 7ede9d9..ca92868 100644 --- a/src/nv04_exa.c +++ b/src/nv04_exa.c @@ -220,7 +220,7 @@ NV04EXACopy(PixmapPtr pdpix, int srcX, int srcY, int dstX, int dstY, int split_dstY = NOUVEAU_ALIGN(dstY + 1, 64); int split_height = split_dstY - dstY; - if (nouveau_pushbuf_space(push, 16, 1, 0)) + if (nouveau_pushbuf_space(push, 16, 2, 0)) return; if ((width * height) >= 20 && pNv->pspix != pNv->pdpix && @@ -249,7 +249,13 @@ NV04EXACopy(PixmapPtr pdpix, int srcX, int srcY, int dstX, int dstY, height -= split_height; dstY = 0; pNv->pmpix = pdpix; - } else + } + + BEGIN_NV04(push, NV01_BLIT(POINT_IN), 3); + PUSH_DATA (push, (srcY << 16) | srcX); + PUSH_DATA (push, (dstY << 16) | dstX); + PUSH_DATA (push, (height << 16) | width); + if (pNv->pmpix) { struct nouveau_bo *dst_bo = nouveau_pixmap_bo(pdpix); @@ -258,11 +264,6 @@ NV04EXACopy(PixmapPtr pdpix, int srcX, int srcY, int dstX, int dstY, pNv->pmpix = NULL; } - BEGIN_NV04(push, NV01_BLIT(POINT_IN), 3); - PUSH_DATA (push, (srcY << 16) | srcX); - PUSH_DATA (push, (dstY << 16) | dstX); - PUSH_DATA (push, (height << 16) | width); - if ((width * height) >= 512) PUSH_KICK(push); } commit aab58ee9a8025422416458d637c203af5ba008fd Author: Dave Airlie Date: Tue Jun 5 12:34:06 2012 +0100 nouveau: i is used inside the function fixes build, reported by tallica on irc. Signed-off-by: Dave Airlie diff --git a/src/compat-api.h b/src/compat-api.h index d0f8c1d..b1591b1 100644 --- a/src/compat-api.h +++ b/src/compat-api.h @@ -46,7 +46,7 @@ #define SCREEN_ARG_TYPE int #define SCREEN_PTR(arg1) ScreenPtr pScreen = screenInfo.screens[(arg1)] -#define SCREEN_INIT_ARGS_DECL int i, ScreenPtr pScreen, int argc, char **argv +#define SCREEN_INIT_ARGS_DECL int index, ScreenPtr pScreen, int argc, char **argv #define BLOCKHANDLER_ARGS_DECL int arg, pointer blockData, pointer pTimeout, pointer pReadmask #define BLOCKHANDLER_ARGS arg, blockData, pTimeout, pReadmask commit 619e99731f772ff8d9d93cd1d6d83de5d450574b Author: Dave Airlie Date: Tue Jun 5 11:02:54 2012 +0100 nouveau: port to compat server API. This ports to the new server API. Signed-off-by: Dave Airlie diff --git a/src/compat-api.h b/src/compat-api.h index 1bb7724..d0f8c1d 100644 --- a/src/compat-api.h +++ b/src/compat-api.h @@ -38,4 +38,59 @@ #define xf86ScrnToScreen(s) screenInfo.screens[(s)->scrnIndex] #endif +#ifndef XF86_SCRN_INTERFACE + +#define SCRN_ARG_TYPE int +#define SCRN_INFO_PTR(arg1) ScrnInfoPtr pScrn = xf86Screens[(arg1)] + +#define SCREEN_ARG_TYPE int +#define SCREEN_PTR(arg1) ScreenPtr pScreen = screenInfo.screens[(arg1)] + +#define SCREEN_INIT_ARGS_DECL int i, ScreenPtr pScreen, int argc, char **argv + +#define BLOCKHANDLER_ARGS_DECL int arg, pointer blockData, pointer pTimeout, pointer pReadmask +#define BLOCKHANDLER_ARGS arg, blockData, pTimeout, pReadmask + +#define CLOSE_SCREEN_ARGS_DECL int scrnIndex, ScreenPtr pScreen +#define CLOSE_SCREEN_ARGS scrnIndex, pScreen + +#define ADJUST_FRAME_ARGS_DECL int arg, int x, int y, int flags + +#define SWITCH_MODE_ARGS_DECL int arg, DisplayModePtr mode, int flags + +#define FREE_SCREEN_ARGS_DECL int arg, int flags +#define FREE_SCREEN_ARGS(x) (x)->scrnIndex, 0 + +#define VT_FUNC_ARGS_DECL int arg, int flags +#define VT_FUNC_ARGS(flags) pScrn->scrnIndex, (flags) + +#define XF86_ENABLEDISABLEFB_ARG(x) ((x)->scrnIndex) +#else +#define SCRN_ARG_TYPE ScrnInfoPtr +#define SCRN_INFO_PTR(arg1) ScrnInfoPtr pScrn = (arg1) + +#define SCREEN_ARG_TYPE ScreenPtr +#define SCREEN_PTR(arg1) ScreenPtr pScreen = (arg1) + +#define SCREE
xserver-xorg-video-nouveau: Changes to 'debian-unstable'
ChangeLog | 56 +++ debian/changelog |7 src/compat-api.h | 55 ++ src/drmmode_display.c |2 - src/nouveau_exa.c |9 ++ src/nv04_exa.c| 15 +- src/nv50_accel.c | 23 src/nv50_accel.h |5 ++- src/nv50_exa.c| 59 + src/nv_accel_common.c |4 ++ src/nv_const.h|2 + src/nv_dma.c | 38 ++ src/nv_driver.c | 71 +++--- src/nv_proto.h| 10 ++- src/nv_type.h |6 src/nvc0_accel.c | 21 ++ src/nvc0_exa.c| 59 + 17 files changed, 394 insertions(+), 48 deletions(-) New commits: commit 5d58be91954b59bf151c57d55c32df8fee1ee9f6 Author: Maarten Lankhorst Date: Fri Jun 8 10:39:16 2012 +0200 New upstream snapshot. Picks up a EXA fix for pre-nv50 cards. diff --git a/ChangeLog b/ChangeLog index fc76184..b574932 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,59 @@ +commit 4dbc132f22721e3da30eb2e7fc97dea5b8458df6 +Author: Viktor Novotný +Date: Sat May 26 22:15:20 2012 +0200 + +nv04/exa: Reset destination surface offset in the same call of NV04EXACopy + +Fixes FDO bug #48954. + +Signed-off-by: Viktor Novotný +Reviewed-by: Marcin Slusarz +Signed-off-by: Ben Skeggs + +commit aab58ee9a8025422416458d637c203af5ba008fd +Author: Dave Airlie +Date: Tue Jun 5 12:34:06 2012 +0100 + +nouveau: i is used inside the function + +fixes build, reported by tallica on irc. + +Signed-off-by: Dave Airlie + +commit 619e99731f772ff8d9d93cd1d6d83de5d450574b +Author: Dave Airlie +Date: Tue Jun 5 11:02:54 2012 +0100 + +nouveau: port to compat server API. + +This ports to the new server API. + +Signed-off-by: Dave Airlie + +commit d2e16c62b5054f34a439e504bfa261fb71f5d7de +Author: Dave Airlie +Date: Tue Jun 5 10:57:30 2012 +0100 + +nouveau: drop flags arg to adjust frame + +Signed-off-by: Dave Airlie + +commit fadf83d7b373282ccbf0fa0c01928a35ff717a5e +Author: Ben Skeggs +Date: Thu May 31 15:46:57 2012 +1000 + +nvc0/exa: add support for async UTS/DFS copies + +Signed-off-by: Ben Skeggs + +commit 1600f7f202721c4b29c29e94f7fb69dc313b99dc +Author: Ben Skeggs +Date: Thu May 31 15:40:45 2012 +1000 + +nva3/exa: add support for async UTS/DFS copies + +Signed-off-by: Ben Skeggs + commit ace77b6b1304826f4004bde23809b55d476b0615 Author: Ben Skeggs Date: Tue May 29 21:21:57 2012 +1000 diff --git a/debian/changelog b/debian/changelog index 567d430..dcf1498 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +xserver-xorg-video-nouveau (1:0.0.16+git20120608+4dbc132-1) UNRELEASED; urgency=low + + [ Maarten Lankhorst ] + * New upstream snapshot. Picks up a EXA fix for pre-nv50 cards. + + -- Maarten Lankhorst Fri, 08 Jun 2012 10:36:08 +0200 + xserver-xorg-video-nouveau (1:0.0.16+git20120529+ace77b6-1) experimental; urgency=low [ Maarten Lankhorst ] commit 4dbc132f22721e3da30eb2e7fc97dea5b8458df6 Author: Viktor Novotný Date: Sat May 26 22:15:20 2012 +0200 nv04/exa: Reset destination surface offset in the same call of NV04EXACopy Fixes FDO bug #48954. Signed-off-by: Viktor Novotný Reviewed-by: Marcin Slusarz Signed-off-by: Ben Skeggs diff --git a/src/nv04_exa.c b/src/nv04_exa.c index 7ede9d9..ca92868 100644 --- a/src/nv04_exa.c +++ b/src/nv04_exa.c @@ -220,7 +220,7 @@ NV04EXACopy(PixmapPtr pdpix, int srcX, int srcY, int dstX, int dstY, int split_dstY = NOUVEAU_ALIGN(dstY + 1, 64); int split_height = split_dstY - dstY; - if (nouveau_pushbuf_space(push, 16, 1, 0)) + if (nouveau_pushbuf_space(push, 16, 2, 0)) return; if ((width * height) >= 20 && pNv->pspix != pNv->pdpix && @@ -249,7 +249,13 @@ NV04EXACopy(PixmapPtr pdpix, int srcX, int srcY, int dstX, int dstY, height -= split_height; dstY = 0; pNv->pmpix = pdpix; - } else + } + + BEGIN_NV04(push, NV01_BLIT(POINT_IN), 3); + PUSH_DATA (push, (srcY << 16) | srcX); + PUSH_DATA (push, (dstY << 16) | dstX); + PUSH_DATA (push, (height << 16) | width); + if (pNv->pmpix) { struct nouveau_bo *dst_bo = nouveau_pixmap_bo(pdpix); @@ -258,11 +264,6 @@ NV04EXACopy(PixmapPtr pdpix, int srcX, int srcY, int dstX, int dstY, pNv->pmpix = NULL; } - BEGIN_NV04(push, NV01_BLIT(POINT_IN), 3); - PUSH_DATA (push, (srcY << 16) | srcX); - PUSH_DATA (push, (dstY << 16) | dstX); - PUSH_DATA (push, (height << 16) | width); - if ((width * height) >= 512) PUSH_KICK(push); } commi
Bug#676507: xserver-xorg-video-openchrome: new upstream release 0.2.906 available
Julien Viard de Galbert (08/06/2012): > I'm planning to upload the release to unstable and the latest git to > experimental. This probably between June 16 and June 24. Do you mind if I push a package for the last release to unstable right now? We can keep the debian/-specific changes somewhere, and you only have to reapply them when you find your way through this svn/git thingy? Mraw, KiBi. signature.asc Description: Digital signature
Bug#676507: xserver-xorg-video-openchrome: new upstream release 0.2.906 available
On Fri, Jun 08, 2012 at 10:57:33AM +0200, Cyril Brulebois wrote: > Julien Viard de Galbert (08/06/2012): > > I'm planning to upload the release to unstable and the latest git to > > experimental. This probably between June 16 and June 24. > > Do you mind if I push a package for the last release to unstable right > now? We can keep the debian/-specific changes somewhere, and you only > have to reapply them when you find your way through this svn/git thingy? > No, not at all, if you have time for this, just do it ! Please remove the +svn part in the version so I can later just add a +git :) Thanks ! Julien VdG -- Julien Viard de Galbert http://silicone.homelinux.org/ GPG Key ID: D00E52B6 Published on: hkp://keys.gnupg.net Key Fingerprint: E312 A31D BEC3 74CC C49E 6D69 8B30 6538 D00E 52B6 signature.asc Description: Digital signature
xserver-xorg-video-ati: Changes to 'ubuntu'
ChangeLog | 515 configure.ac| 14 debian/changelog| 57 +++ debian/control | 10 man/radeon.man | 20 + src/ati_pciids_gen.h|7 src/bicubic_table.py| 72 + src/drmmode_display.c | 156 +- src/drmmode_display.h |1 src/evergreen_accel.c | 179 ++-- src/evergreen_exa.c | 206 +- src/evergreen_state.h |6 src/evergreen_textured_videofuncs.c |5 src/pcidb/ati_pciids.csv|7 src/r600_exa.c | 246 ++--- src/r600_state.h|6 src/r600_textured_videofuncs.c | 20 + src/r6xx_accel.c| 75 +++-- src/radeon.h| 16 + src/radeon_accel.c |5 src/radeon_chipinfo_gen.h |7 src/radeon_chipset_gen.h|7 src/radeon_commonfuncs.c| 17 - src/radeon_crtc.c | 27 + src/radeon_dri2.c | 154 +- src/radeon_driver.c | 69 ++-- src/radeon_drm.h| 23 + src/radeon_exa.c| 91 ++ src/radeon_exa_render.c | 317 -- src/radeon_exa_shared.c | 38 ++ src/radeon_exa_shared.h |1 src/radeon_kms.c| 94 ++ src/radeon_output.c |4 src/radeon_pci_chipset_gen.h|7 src/radeon_pci_device_match_gen.h |7 src/radeon_probe.h |7 src/radeon_textured_videofuncs.c| 68 ++-- 37 files changed, 1984 insertions(+), 577 deletions(-) New commits: commit c38980f2e49c453d98af0be27237f5f03d3e0e05 Author: Maarten Lankhorst Date: Fri Jun 8 14:28:21 2012 +0200 Merge from debian-unstable * Merge from Debian. Remaining Ubuntu changes: - debian/control: + firmware-linux -> linux-firmware - debian/rules: + Remove reference to radeon-kms.conf - debian/radeon-kms.conf: + Don't install modprobe rule for KMS; the Ubuntu kernel defaults to KMS. - Re-added missing src/bicubic_table.py diff --git a/debian/changelog b/debian/changelog index 7711d95..94cc739 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +xserver-xorg-video-ati (1:6.14.99~git20111219.aacbd629-0ubuntu3) UNRELEASED; urgency=low + + [ Maarten Lankhorst ] + * Merge from Debian. Remaining Ubuntu changes: +- debian/control: + + firmware-linux -> linux-firmware +- debian/rules: + + Remove reference to radeon-kms.conf +- debian/radeon-kms.conf: + + Don't install modprobe rule for KMS; the Ubuntu kernel defaults to KMS. +- Re-added missing src/bicubic_table.py + + -- Maarten Lankhorst Fri, 08 Jun 2012 14:23:31 +0200 + xserver-xorg-video-ati (1:6.14.99~git20111219.aacbd629-0ubuntu2) precise; urgency=low * debian/control: Suggest linux-firmware rather than firmware-linux. diff --git a/src/bicubic_table.py b/src/bicubic_table.py new file mode 100755 index 000..232ccb7 --- /dev/null +++ b/src/bicubic_table.py @@ -0,0 +1,72 @@ +#!/usr/bin/python + +import struct + +def half(i): + fs, fe, fm = ((i >> 31) & 0x1, (i >> 23) & 0xff, i & 0x7f) + s, e, m = (fs, 0, 0) + + if (fe == 0x0): + pass + if ((fe == 0xff) and (fm == 0x0)): + e = 31 + elif (fe == 0xff): + m = 1 + e = 31 + else: + exp = fe - 127; + if (exp < -24): + pass + elif (exp < -14): + temp = 10 - (-14 - exp) + m = 2**temp + (m >> (23 - temp)) + elif (exp > 15): + e = 31 + else: + e = exp + 15 + m = fm >> 13 + + return ((s << 15) | (e << 10) | m) + +def texgen(pix): + + tex = [] + + for i in range(0,pix,4): + + a = i / float(pix) + a2 = a ** 2 + a3 = a ** 3 + + w0 = 1 / 6.0 * (-a3 + 3 * a2 + -3 * a + 1) + w1 = 1 / 6.0 * (3 * a3 + -6 * a2 + 4) + w2 = 1 / 6.0 * (-3 * a3 + 3 * a2 + 3 * a + 1) + w3 = 1 / 6.0 * a3 + + tex.append(-(1 - (w1 / (w0 + w1)) + a)) + tex.append(1 + (w3 / (w2 + w3)) - a) + tex.append(w0 + w1) + tex.append(w2 + w3) + + return tex + +def printrow(l, offset): + + seq = [ struct.unpack(' Date: Sat May 19 21:00:49 2012 + Upload to unstable. diff --git a/debian/changelog b/debian/changelog index aafb2e3..5f16c8b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,11 @@ -xserver-xorg-video-ati (1:6.14.4-4) UNRELEASED; urgency=low +xserver-xorg-video-ati (1:6.14.4-4) unstable; urgency=low * Cherry-pick from upstream to fix regression on UMS (Closes: #670570): - EXA: Attempt to fix solid picture acceleration with UMS. - EXA/UMS: Synchronize to the GPU before writing solid colour to scratch pixmap. - UMS/EXA: Add reminder for potential solid picture performance issue. - -
xserver-xorg-video-ati: Changes to 'ubuntu'
debian/changelog |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit c64e8cc61d5c19819c1b685884283330e022f0d0 Author: Maarten Lankhorst Date: Fri Jun 8 14:32:48 2012 +0200 fix changelog version to use correct upstream diff --git a/debian/changelog b/debian/changelog index 94cc739..022f4a3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -xserver-xorg-video-ati (1:6.14.99~git20111219.aacbd629-0ubuntu3) UNRELEASED; urgency=low +xserver-xorg-video-ati (1:6.14.99~git20120608.9425c50e-0ubuntu1) UNRELEASED; urgency=low [ Maarten Lankhorst ] * Merge from Debian. Remaining Ubuntu changes: -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1scynf-00054n...@vasks.debian.org
Bug#676507: xserver-xorg-video-openchrome: new upstream release 0.2.906 available
Julien Viard de Galbert (08/06/2012): > No, not at all, if you have time for this, just do it ! > > Please remove the +svn part in the version so I can later just add > a +git :) I've just uploaded 0.2.906 to unstable, and pushed a dirty-unstable branch to the git repository for reference, called “dirty” because of the upstream code removal/addition. I've kept urgency=low to give it some exposure in unstable, but if some reporters tell us it's working fine, I might age it a little to get it in testing in less than 10 days. Mraw, KiBi. signature.asc Description: Digital signature
xserver-xorg-video-openchrome: Changes to 'dirty-unstable'
New branch 'dirty-unstable' available with the following commits: commit 07d52746db297264e901bfe8451e7a64e1983cc6 Author: Cyril Brulebois Date: Fri Jun 8 12:49:17 2012 + Upload to unstable. commit 3103fbdf503df2516ac7956932ee66b3df4f459e Author: Cyril Brulebois Date: Fri Jun 8 12:43:56 2012 + Add xutils-dev build-dep. commit 098aae00b71c6d9136ca77c533d917f6256bf962 Author: Cyril Brulebois Date: Fri Jun 8 13:01:53 2012 +0200 Deal with X 1.12 by calling vgaHWSetStdFuncs(). commit cfe1fc2139f90c2fbe84a215e778738f8029e004 Author: Cyril Brulebois Date: Fri Jun 8 12:53:19 2012 +0200 Bump changelog. commit 587ade304b6a46eda36b5f53c28bf802164a77ac Author: Cyril Brulebois Date: Fri Jun 8 12:49:40 2012 +0200 Add upstream files from 0.2.906 tarball. commit a127bbcf7e688b3a2bfd1322402b1a898bcbd3f4 Author: Cyril Brulebois Date: Fri Jun 8 12:43:50 2012 +0200 Remove upstream files. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1scz0f-00021q...@vasks.debian.org
xserver-xorg-video-savage: Changes to 'ubuntu'
ChangeLog| 86 + configure.ac |6 - debian/changelog | 14 src/Makefile.am |1 src/savage_accel.c |4 - src/savage_bci.h |7 -- src/savage_common.h |6 - src/savage_dri.c | 170 +++ src/savage_dri.h |6 - src/savage_dripriv.h |6 - src/savage_driver.c | 46 +++-- src/savage_driver.h | 11 ++- src/savage_drm.h | 12 +-- src/savage_exa.c |8 +- src/savage_hwmc.c|1 src/savage_i2c.c |5 - src/savage_pciids.h | 55 src/savage_regs.h|6 - src/savage_sarea.h | 12 +-- src/savage_streams.h |7 -- src/savage_vbe.h |6 - src/savage_video.c | 12 +-- 22 files changed, 287 insertions(+), 200 deletions(-) New commits: commit f988cfa5407d54c5ba133bbac10ecbf41aa71580 Author: Maarten Lankhorst Date: Fri Jun 8 15:14:43 2012 +0200 Merge from Debian * Merge from Debian Testing. Remaining Ubuntu changes: - 100_bustype_pci_by_default.diff (LP: 33617, 37218) diff --git a/debian/changelog b/debian/changelog index 1832774..7666441 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +xserver-xorg-video-savage (1:2.3.4-1ubuntu1) UNRELEASED; urgency=low + + * Merge from Debian Testing. Remaining Ubuntu changes: +- 100_bustype_pci_by_default.diff (LP: 33617, 37218) + + -- Maarten Lankhorst Fri, 08 Jun 2012 15:13:45 +0200 + xserver-xorg-video-savage (1:2.3.4-1) unstable; urgency=low * New upstream release commit a148cd99785b5312d923ad0df34b56bf1b32063e Author: Julien Cristau Date: Tue May 8 11:44:47 2012 +0200 Upload to unstable diff --git a/debian/changelog b/debian/changelog index b3463ff..e68bc48 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,9 @@ -xserver-xorg-video-savage (1:2.3.4-1) UNRELEASED; urgency=low +xserver-xorg-video-savage (1:2.3.4-1) unstable; urgency=low * New upstream release + Fix for new vgahw ABI (closes: #671800) - -- Julien Cristau Tue, 08 May 2012 11:32:10 +0200 + -- Julien Cristau Tue, 08 May 2012 11:44:31 +0200 xserver-xorg-video-savage (1:2.3.3-1) unstable; urgency=low commit ddf889f135e1df01ea71d36574dcb00084f0cd71 Author: Julien Cristau Date: Tue May 8 11:35:07 2012 +0200 Bump changelogs diff --git a/ChangeLog b/ChangeLog index 9c3d48e..eda84db 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,89 @@ +commit 63dd44674a28263c5d8d6aec8b72e95f94d3fe6c +Author: Alan Coopersmith +Date: Fri Mar 23 19:46:12 2012 -0700 + +xf86-video-savage 2.3.4 + +Signed-off-by: Alan Coopersmith + +commit dfcc325f55d580eb630f3b236eadf99f6b7d6ad6 +Author: Alan Coopersmith +Date: Fri Mar 23 19:38:07 2012 -0700 + +Add savage_pciids.h to src/Makefile.am to fix distcheck + +Signed-off-by: Alan Coopersmith + +commit c4022796ec69bb3223d435d8442f9168aebe9c3d +Author: Peter Hutterer +Date: Tue Jan 17 15:35:39 2012 +1000 + +Untangle XF86DRI from the driver-specific DRI define + +XF86DRI is defined by xorg-server.h, so --disable-dri in the driver +itself does exactly nothing other than not fill in the CFLAGS and thus stop +the driver from compiling. + +Signed-off-by: Peter Hutterer +Signed-off-by: Tormod Volden + +commit 05f74bd80018bc503ff5631b357fc0b02df6187f +Author: Andrew Turner +Date: Fri Oct 14 00:18:40 2011 +0200 + +Merge almost identical code in SAVAGEInitVisualConfigs + +https://bugs.freedesktop.org/show_bug.cgi?id=9961 + +Signed-off-by: Andrew Turner +[Tormod: Rename table to SAVAGEVisuals] +Signed-off-by: Tormod Volden + +commit 0600b7279382c66445506fa98dc50299574a1abd +Author: Tormod Volden +Date: Sun Dec 4 23:36:19 2011 +0100 + +Avoid leading underscores in #include guards + +In a user header file, the macro name should not begin with `_' +http://gcc.gnu.org/onlinedocs/cpp/Once_002dOnly-Headers.html + +Signed-off-by: Tormod Volden + +commit 10f319e43f77fef450aa723eff25bd200600c48d +Author: Tormod Volden +Date: Sun Dec 4 23:36:18 2011 +0100 + +Do not use the deprecated xf86PciInfo.h from xserver + +Instead maintain our own list of supported PCI IDs. + +Signed-off-by: Tormod Volden + +commit c3eaacd25358c225e355a1ea7d64dece8188b69a +Author: Adam Jackson +Date: Mon Dec 19 17:23:35 2011 -0500 + +Fix for new vgahw ABI + +Signed-off-by: Adam Jackson + +commit a0776b675a4a62d972d135508079950b8adbfe28 +Author: Adam Jackson +Date: Mon Dec 19 17:22:53 2011 -0500 + +Fall back to shadowfb if XAA is unavailable + +Signed-off-by: Adam Jackson + +commit 4618374e37674345303b5b44474195def65bba2a +Author: Adam Jackson +Date: Wed Jun 22 17:05:37 2011 -0400 + +Don't include xf86Priv.h + +Signed-off-by: Adam Jackson + commit 8b9c81bacf45a9f56b0ec275e1b48e1407380baf Author: Tormod Volden
Bug#675407: marked as done (xserver-xorg-video-openchrome: openchrome relink against new xserver results in null pointer dereference)
Your message dated Fri, 08 Jun 2012 13:34:06 + with message-id and subject line Bug#675407: fixed in xserver-xorg-video-openchrome 1:0.2.906-1 has caused the Debian Bug report #675407, regarding xserver-xorg-video-openchrome: openchrome relink against new xserver results in null pointer dereference to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 675407: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=675407 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xserver-xorg-video-openchrome Version: 1:0.2.904+svn1050-1+b1 Severity: grave Tags: upstream Justification: renders package unusable Hi, It's not enough to rebuild openchrome against the new X-Server, since the new X-Server does not run vgaHWSetStdFuncs(hwp) anymore: http://cgit.freedesktop.org/xorg/xserver/commit/?id=4bd6579188e718654c35f95623fd4772f9e0ef06 Please update the driver to support the X-Server's ABI change. -- Sebastian --- End Message --- --- Begin Message --- Source: xserver-xorg-video-openchrome Source-Version: 1:0.2.906-1 We believe that the bug you reported is fixed in the latest version of xserver-xorg-video-openchrome, which is due to be installed in the Debian FTP archive: xserver-xorg-video-openchrome-dbg_0.2.906-1_amd64.deb to main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome-dbg_0.2.906-1_amd64.deb xserver-xorg-video-openchrome_0.2.906-1.diff.gz to main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.906-1.diff.gz xserver-xorg-video-openchrome_0.2.906-1.dsc to main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.906-1.dsc xserver-xorg-video-openchrome_0.2.906-1_amd64.deb to main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.906-1_amd64.deb xserver-xorg-video-openchrome_0.2.906.orig.tar.gz to main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.906.orig.tar.gz A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 675...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Cyril Brulebois (supplier of updated xserver-xorg-video-openchrome package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Fri, 08 Jun 2012 12:49:04 + Source: xserver-xorg-video-openchrome Binary: xserver-xorg-video-openchrome xserver-xorg-video-openchrome-dbg Architecture: source amd64 Version: 1:0.2.906-1 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Cyril Brulebois Description: xserver-xorg-video-openchrome - X.Org X server -- VIA display driver xserver-xorg-video-openchrome-dbg - X.Org X server -- VIA display driver -- debugging symbols Closes: 675407 676507 Changes: xserver-xorg-video-openchrome (1:0.2.906-1) unstable; urgency=low . * New upstream release (Closes: #676507). * New patch: 10-Deal-with-xserver-1.12.diff (Closes: #675407), with thanks to Leon Winter for testing the initial patch and proposing a working one. * Add xutils-dev build-dep. Checksums-Sha1: 7fda0e7089c05b13600d88bfee05099ca427032d 2017 xserver-xorg-video-openchrome_0.2.906-1.dsc 1d81160bd9eb8da2d7f2bfbb7eb05ed8a09e7d97 625459 xserver-xorg-video-openchrome_0.2.906.orig.tar.gz 59716d694cae6845d32c12d9116629caa7b79576 11007 xserver-xorg-video-openchrome_0.2.906-1.diff.gz 5212b69bdd9e4277dc6e0296e70adc752560b1ee 204096 xserver-xorg-video-openchrome_0.2.906-1_amd64.deb 3a6661a959013b2b35d9eb3a9127bc5d42a79433 860488 xserver-xorg-video-openchrome-dbg_0.2.906-1_amd64.deb Checksums-Sha256: 4544adbb1d54b4b7297d525a7aa369a429d0395bb5b5e361a9cac34532ab 2017 xserver-xorg-video-openchrome_0.2.906-1.dsc ac0af57015fe176a1a934bf3a1adbbe89747d59ff089b7fdb6bb20e830e02ab4 625459 xserver-xorg-video-openchrome_0.2.906.orig.tar.gz b37909d48624c97f012fa81957ce1a124ed1772867a7eda18307e6f9745cbf29 11007 xserver-xorg-video-openchrome_0.2.906-1.diff.gz eb5109e4af32ae0847dad18f235a0e691e1c54fe1948e9497225e65f1be69580 204096 xserver-xorg-video-openchrome_0.2.906-1_amd64.deb 104e50f7b345f469c88d215c223e378426dff9e7dfd5238907bb6e1a78d84a0b 860488 xserver-xorg-video-openchrome-dbg_0.2.906-1_amd64.deb Files: 9b21c60c1a0273bf1d3fed1ac7fe9b71 2017 x11 optional xserve
Bug#676507: marked as done (xserver-xorg-video-openchrome: new upstream release 0.2.906 available)
Your message dated Fri, 08 Jun 2012 13:34:06 + with message-id and subject line Bug#676507: fixed in xserver-xorg-video-openchrome 1:0.2.906-1 has caused the Debian Bug report #676507, regarding xserver-xorg-video-openchrome: new upstream release 0.2.906 available to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 676507: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=676507 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xserver-xorg-video-openchrome Version: 1:0.2.904+svn1050-1+b1 Severity: wishlist http://www.openchrome.org/releases/ provides: xf86-video-openchrome-0.2.906.tar.bz2 15-May-2012 22:01 502K Filing this bug report for a user who noticed that a recent VIA chipset is supposed to be supported by that version. regards, -mika- --- End Message --- --- Begin Message --- Source: xserver-xorg-video-openchrome Source-Version: 1:0.2.906-1 We believe that the bug you reported is fixed in the latest version of xserver-xorg-video-openchrome, which is due to be installed in the Debian FTP archive: xserver-xorg-video-openchrome-dbg_0.2.906-1_amd64.deb to main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome-dbg_0.2.906-1_amd64.deb xserver-xorg-video-openchrome_0.2.906-1.diff.gz to main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.906-1.diff.gz xserver-xorg-video-openchrome_0.2.906-1.dsc to main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.906-1.dsc xserver-xorg-video-openchrome_0.2.906-1_amd64.deb to main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.906-1_amd64.deb xserver-xorg-video-openchrome_0.2.906.orig.tar.gz to main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.906.orig.tar.gz A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 676...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Cyril Brulebois (supplier of updated xserver-xorg-video-openchrome package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Fri, 08 Jun 2012 12:49:04 + Source: xserver-xorg-video-openchrome Binary: xserver-xorg-video-openchrome xserver-xorg-video-openchrome-dbg Architecture: source amd64 Version: 1:0.2.906-1 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Cyril Brulebois Description: xserver-xorg-video-openchrome - X.Org X server -- VIA display driver xserver-xorg-video-openchrome-dbg - X.Org X server -- VIA display driver -- debugging symbols Closes: 675407 676507 Changes: xserver-xorg-video-openchrome (1:0.2.906-1) unstable; urgency=low . * New upstream release (Closes: #676507). * New patch: 10-Deal-with-xserver-1.12.diff (Closes: #675407), with thanks to Leon Winter for testing the initial patch and proposing a working one. * Add xutils-dev build-dep. Checksums-Sha1: 7fda0e7089c05b13600d88bfee05099ca427032d 2017 xserver-xorg-video-openchrome_0.2.906-1.dsc 1d81160bd9eb8da2d7f2bfbb7eb05ed8a09e7d97 625459 xserver-xorg-video-openchrome_0.2.906.orig.tar.gz 59716d694cae6845d32c12d9116629caa7b79576 11007 xserver-xorg-video-openchrome_0.2.906-1.diff.gz 5212b69bdd9e4277dc6e0296e70adc752560b1ee 204096 xserver-xorg-video-openchrome_0.2.906-1_amd64.deb 3a6661a959013b2b35d9eb3a9127bc5d42a79433 860488 xserver-xorg-video-openchrome-dbg_0.2.906-1_amd64.deb Checksums-Sha256: 4544adbb1d54b4b7297d525a7aa369a429d0395bb5b5e361a9cac34532ab 2017 xserver-xorg-video-openchrome_0.2.906-1.dsc ac0af57015fe176a1a934bf3a1adbbe89747d59ff089b7fdb6bb20e830e02ab4 625459 xserver-xorg-video-openchrome_0.2.906.orig.tar.gz b37909d48624c97f012fa81957ce1a124ed1772867a7eda18307e6f9745cbf29 11007 xserver-xorg-video-openchrome_0.2.906-1.diff.gz eb5109e4af32ae0847dad18f235a0e691e1c54fe1948e9497225e65f1be69580 204096 xserver-xorg-video-openchrome_0.2.906-1_amd64.deb 104e50f7b345f469c88d215c223e378426dff9e7dfd5238907bb6e1a78d84a0b 860488 xserver-xorg-video-openchrome-dbg_0.2.906-1_amd64.deb Files: 9b21c60c1a0273bf1d3fed1ac7fe9b71 2017 x11 optional xserver-xorg-video-openchrome_0.2.906-1.dsc d1831aae8dfcf5b5a5ae2df1143f9eb8 625459 x11 optional xserver-xorg-video-openchrome_0.2.906.orig.tar.gz 00527
Processing of xserver-xorg-video-openchrome_0.2.906-1_amd64.changes
xserver-xorg-video-openchrome_0.2.906-1_amd64.changes uploaded successfully to localhost along with the files: xserver-xorg-video-openchrome_0.2.906-1.dsc xserver-xorg-video-openchrome_0.2.906.orig.tar.gz xserver-xorg-video-openchrome_0.2.906-1.diff.gz xserver-xorg-video-openchrome_0.2.906-1_amd64.deb xserver-xorg-video-openchrome-dbg_0.2.906-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1scz8r-0006zq...@franck.debian.org
xserver-xorg-video-openchrome_0.2.906-1_amd64.changes ACCEPTED into unstable
Accepted: xserver-xorg-video-openchrome-dbg_0.2.906-1_amd64.deb to main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome-dbg_0.2.906-1_amd64.deb xserver-xorg-video-openchrome_0.2.906-1.diff.gz to main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.906-1.diff.gz xserver-xorg-video-openchrome_0.2.906-1.dsc to main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.906-1.dsc xserver-xorg-video-openchrome_0.2.906-1_amd64.deb to main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.906-1_amd64.deb xserver-xorg-video-openchrome_0.2.906.orig.tar.gz to main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.906.orig.tar.gz Changes: xserver-xorg-video-openchrome (1:0.2.906-1) unstable; urgency=low . * New upstream release (Closes: #676507). * New patch: 10-Deal-with-xserver-1.12.diff (Closes: #675407), with thanks to Leon Winter for testing the initial patch and proposing a working one. * Add xutils-dev build-dep. Override entries for your package: xserver-xorg-video-openchrome-dbg_0.2.906-1_amd64.deb - extra debug xserver-xorg-video-openchrome_0.2.906-1.dsc - source x11 xserver-xorg-video-openchrome_0.2.906-1_amd64.deb - optional x11 Announcing to debian-devel-chan...@lists.debian.org Closing bugs: 675407 676507 Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1sczki-ud...@franck.debian.org
xorg-gtest: Changes to 'ubuntu'
aclocal/xorg-gtest.m4 | 14 - configure.ac |2 data/Makefile.am |4 data/X11/xorg.conf.d/99-virtual-test-devices.conf |6 data/xorg/gtest/dummy.conf| 10 + debian/changelog | 15 + debian/libxorg-gtest-data.install |1 examples/Makefile.am |4 examples/xorg-gtest-example.cpp |2 include/Makefile.am |8 include/xorg/gtest/environment.h | 179 - include/xorg/gtest/evemu/device.h | 91 -- include/xorg/gtest/evemu/xorg-gtest_device.h | 91 ++ include/xorg/gtest/process.h | 166 --- include/xorg/gtest/test.h | 104 include/xorg/gtest/xorg-gtest.h |8 include/xorg/gtest/xorg-gtest_environment.h | 184 ++ include/xorg/gtest/xorg-gtest_process.h | 166 +++ include/xorg/gtest/xorg-gtest_test.h | 104 m4/gtest.m4 | 12 - src/Makefile-xorg-gtest.am|3 src/device.cpp|2 src/environment.cpp | 83 - src/process.cpp |2 src/test.cpp |5 src/xorg-gtest_main.cpp | 58 ++ 26 files changed, 742 insertions(+), 582 deletions(-) New commits: commit 135b3816d270a9370e23d7265b576598af6da0c0 Author: Chase Douglas Date: Fri Jun 8 12:38:59 2012 -0700 releasing version 0.3.0-0ubuntu1 diff --git a/debian/changelog b/debian/changelog index b766738..ed75b7f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -xorg-gtest (0.3.0-0ubuntu1) UNRELEASED; urgency=low +xorg-gtest (0.3.0-0ubuntu1) quantal; urgency=low * Ship usr/share/X11/xorg.conf.d/99-virtual-test-devices.conf * Update to version 0.3.0 @@ -11,7 +11,7 @@ xorg-gtest (0.3.0-0ubuntu1) UNRELEASED; urgency=low - Perform checks to see if dummy server could start before attempting - Enable the highest verbosity level for the dummy server log file - -- Chase Douglas Fri, 08 Jun 2012 12:10:26 -0700 + -- Chase Douglas Fri, 08 Jun 2012 12:36:58 -0700 xorg-gtest (0.2.0-0ubuntu2) precise; urgency=low commit 60d672c23db291a8f2f1438be45b7d04608ad540 Author: Chase Douglas Date: Fri Jun 8 12:15:39 2012 -0700 Update to version 0.3.0 * Update to version 0.3.0 - Prevent other X servers from grabbing test devices - Kill dummy server if test program dies - Provide a full X server layout to ensure the dummy video driver is used - Wait for dummy server to shut down before exiting - Namespace header filenames to prevent clashes with other headers - Better logging and error handling - Perform checks to see if dummy server could start before attempting - Enable the highest verbosity level for the dummy server log file diff --git a/debian/changelog b/debian/changelog index 680c4fc..b766738 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,17 @@ -xorg-gtest (0.2.0-0ubuntu3) UNRELEASED; urgency=low +xorg-gtest (0.3.0-0ubuntu1) UNRELEASED; urgency=low * Ship usr/share/X11/xorg.conf.d/99-virtual-test-devices.conf - - -- Chase Douglas Wed, 18 Apr 2012 13:54:02 -0700 + * Update to version 0.3.0 +- Prevent other X servers from grabbing test devices +- Kill dummy server if test program dies +- Provide a full X server layout to ensure the dummy video driver is used +- Wait for dummy server to shut down before exiting +- Namespace header filenames to prevent clashes with other headers +- Better logging and error handling +- Perform checks to see if dummy server could start before attempting +- Enable the highest verbosity level for the dummy server log file + + -- Chase Douglas Fri, 08 Jun 2012 12:10:26 -0700 xorg-gtest (0.2.0-0ubuntu2) precise; urgency=low commit 3774f91ba3722bd56b532dde549aef1df1749a51 Author: Chase Douglas Date: Fri Jun 8 12:01:23 2012 -0700 Release version 0.3.0 Signed-off-by: Chase Douglas diff --git a/configure.ac b/configure.ac index f3dd610..7d7b2e1 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # Initialize Autoconf AC_PREREQ([2.60]) AC_INIT([Dummy X.org Testing Environment for Google Test], -[0.2.0], +[0.3.0], [], [xorg-gtest]) AC_CONFIG_SRCDIR([Makefile.am]) commit 9c8986c3d9854cb9a6f1f5dc39b8c16a1139ae91 Author: Peter Hutterer Date: Tue Jun 5 14:49:34 2012 +1000 Set log verbosity to 10 Might as well get as much data as po
xorg-gtest: Changes to 'refs/tags/xorg-gtest-0.2.0'
Tag 'xorg-gtest-0.2.0' created by Chase Douglas at 2012-03-20 00:02 + xorg-gtest 0.2.0 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) iQIcBAABAgAGBQJPZ8kXAAoJEI3Z6a9pX7cqHokP/iZdgT3IfSsKQxWOFnNjgIwe 5ZHgkRp+v8Vqp1G4sIBt+IB073EVSDmHNqBsoaPJb+KmId1kp0ksVc+cUN6sKnmF o8GUeZ1xIqTOIlp4e5ezfJVCj37gVWHz8TBuB7AyJCetVc3UpSkTT7UQ7y07+962 QWcQL9MQarzAO9h1eex7HXSLQrey0yy6sPEW22WFmMoEfNpR5ster5oB9oUL4YaY YKgwxjH1QMQEH8k5mTXNy86zXY9yk5Mk1QcWeEEEDVmk7w8TZCJf7N60sm9hY34J heANZd7lMLoeO5Q1K7Wup6Yf3X22qQB1BtTw3xaO5m5+mBrrQ2o4NJoWfz+Hr4B7 ec3egy6BUYWJUaskFxDo+KjKna4mlXhPuqlWydf/ND+9KqkfVAov2ZTdlQDXqGfR ubgdQDeCMHMulHMJVerfT3JyilxxpACqyuHHzJahRQ1RJ3gOViSo2iti1siB8Fk+ Iayb9+HSlwoUOwZLEtYvHFtLhqvYDBCV7xcAZ5BApjUNsKN5WDTTRZeyfh1h4p5t 5xie0Xi1/FZ/ZI6UKnIRz8ZLlaUF580ctut0RWlh7C4PkXDmvFMs9SAGkc4fdukB Eaqo+vuXamLP27J9KkxjugF6/SI3n35EjbTetvpHPkshB3189jx4scAnNFV4V98o ymUBuWvpX5p/KxH5jO1O =JSL/ -END PGP SIGNATURE- Changes since xorg-gtest-0.1.1: Chase Douglas (19): Remove xorg-server pkgconfig check Relicense under the X.org preferred license Split data and include build rules out of src build rules Use BASE_CXXFLAGS from xorg macros Define automake CPP warning flags in Makefile.am, not configure.ac Add examples/xorg-gtest-example to .gitignore Fix dummy.conf location definition Add xorg::testing::evemu::Device Move xorg-gtest.cpp to xorg-gtest-example.cpp Install xorg-gtest source code in $(prefix)/src/xorg-gtest Add a meta-header xorg-gtest.h Rename main.cpp to xorg-gtest_main.cpp Provide meta-source file xorg-gtest-all.cpp Build gtest as part of the project Install, but do not build into a library, the xorg-gtest sources Allow user to override default Xorg server binary Print more helpful error message when X server fails to start Ship xorg-gtest.m4 and Makefile-xorg-gtest.am Release version 0.2.0 Gaetan Nadon (15): Use the standard autogen.sh script from xorg Add standard xorg toplevel .gitignore Fix typo in .gitignore comment test.cpp: fatal error: X11/Xlib.h: No such file or directory examples/test.cpp: fatal error: X11/Xlib.h: No such file or directory Revert "Use the standard autogen.sh script from xorg" distcheck fails: cannot open linker script file libxorg-gtest.ver distcheck: cannot create directory `xorg-gtest-0.1.1': Permission denied config: no need to m4_include gtest.m4 config: do not initialize libtool twice config: remove redundant AC_PROG_INSTALL config: support Automake 1.10 config: use existing feature --enable-strict-compilation config: remove unrequired AC_SUBST DUMMY_CONF_PATH statement config: merge both AC_CONFIG_FILES statements. --- .gitignore| 79 COPYING | 693 +- Makefile.am | 35 + README| 72 +++ aclocal/Makefile.am | 27 + aclocal/xorg-gtest.m4 | 110 ++ conf/dummy.conf |4 configure.ac | 81 +++- data/Makefile.am | 26 + data/xorg/gtest/dummy.conf|4 doc/Makefile.am | 46 +- examples/Makefile.am | 70 ++- examples/xorg-gtest-example.cpp | 18 examples/xorg-gtest.cpp | 18 include/Makefile.am | 31 + include/xorg/gtest/environment.h | 33 + include/xorg/gtest/evemu/device.h | 91 include/xorg/gtest/process.h | 35 + include/xorg/gtest/test.h | 32 + include/xorg/gtest/xorg-gtest.h | 34 + m4/gtest.m4 | 71 +++ src/Makefile-xorg-gtest.am| 61 +++ src/Makefile.am | 69 +-- src/defines.h |6 src/device.cpp| 94 + src/environment.cpp | 56 +-- src/libxorg-gtest.ver | 15 src/libxorg-gtest_main.ver|7 src/main.cpp | 125 -- src/process.cpp | 32 + src/test.cpp | 32 + src/xorg-gtest-all.cpp| 34 + src/xorg-gtest_main.cpp | 131 +++ xorg-gtest.pc.in |6 34 files changed, 1223 insertions(+), 1055 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1sd53d-0007bp...@vasks.debian.org
xorg-gtest: Changes to 'ubuntu'
debian/changelog |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 8d8b4615a8744ed597dffb4cb6e22b3e4ae6afb8 Author: Chase Douglas Date: Fri Jun 8 12:40:02 2012 -0700 releasing version 0.3.0-0ubuntu1 diff --git a/debian/changelog b/debian/changelog index ed75b7f..578bcaf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,7 +11,7 @@ xorg-gtest (0.3.0-0ubuntu1) quantal; urgency=low - Perform checks to see if dummy server could start before attempting - Enable the highest verbosity level for the dummy server log file - -- Chase Douglas Fri, 08 Jun 2012 12:36:58 -0700 + -- Chase Douglas Fri, 08 Jun 2012 12:39:52 -0700 xorg-gtest (0.2.0-0ubuntu2) precise; urgency=low -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1sd53d-0007ad...@vasks.debian.org
xorg-gtest: Changes to 'refs/tags/xorg-gtest-0.1.1'
Tag 'xorg-gtest-0.1.1' created by Chase Douglas at 2012-02-24 16:42 + Version 0.1.1 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) iQIcBAABAgAGBQJPR74BAAoJEI3Z6a9pX7cqH/8P/jfoi9lQt1HzffM82dZsEsUK qlo80qhWgP9lnMC6QtmSFwx7GRjV+FO1YODNAWd05eo2J0Wi8yuQEy189M2NcnAc x7cIB/ETQ1+uVlyY/cPeP9bey06YOqlR9BB7QUrStFpvwI1tJXzCXb7/ilwichea ox8fec5xQHjVRQ4mLIsJ4gMUiaeXChjY2EN06MjAnBBg/FFOUxlg9Hulqoa68FYI dWUmT9ljpoMB/MyTKihGRV/9eb2ij0aMbwDr0uV265XLd4vRVvw2t4bwRP+6VtpP 1XqTeR9kUlMH+UcyL5MKFkJsFfulNlh7kGZrf516PBjQd1H8wuJ9Ij1r9RmizMfu zsvpsJZDkz/iNTYhAd9IQoHiDM82F00M9BLOjhcJSiA1vWrAOVLo2oPq5rLDuWZB 7Ia2+iOsKcmkmdbJ1oaK3km9qrlq29Y8MM0P51BWRfkSRJeWv4jVPIUhur1glCDM DRocMsziWH7X/RyZpxOrJq0FA6hTjTTTjd6dsE5P1FletZr3mLjwkX2XlFbWAaK8 B6hA0bERytH9lKSGggHX/mJBsjKG+9GQvz3TT8SNe+DBWcTaBBRHfu/gLY6vHHYx RNHbjObr5hqKtikKEnAGZG824AIcpVX3HtxqtAlGMDq1d08iilqEVZwD0J8FMBvR fOsU8Pb/CdKjxDRWZ3LE =5gUI -END PGP SIGNATURE- Changes since the dawn of time: Chase Douglas (69): Rename to xorg-gtest, move some files around, make some fixes Remove unnecessary c++0x std flag Init gtest before checking for special args so --help works properly Remove autoconf check for C compiler since we only use C++ Remove unused gcov support Add pkg-config file Remove unused fixture.h Rename testing::xorg to xorg::testing Use installed dummy.conf location Make Environment::Private a POD struct Remove dead code in Environment Re-enable X server startup timeout Switch Process::Private to a POD struct Fix Process::Start() and switch to using exceptions Rename Process::pid() to Process::Pid() to follow naming conventions Remove Process::Wait() Throw exception if child process tries to kill itself Let setenv() and getenv() do error handling, and throw exception if they Don't fail the tests if the X server refuses to die Cleanup unnecessary braces in if .. else blocks in Environment::SetUp() Fix comment in environment.h Reorder Process copy constructor declarations Add server executable path option so one can test different servers Add xorg::testing::Test base test fixture Fix a couple usages of C++ line comments In Environment::SetUp, pass std::string into Process::Start Add newlines to end of Environment::TearDown() error messages Use std::auto_ptr for pimpls Remove obsolete Process::SetEnvBehavior enum Use C++ headers, such as cstring, instead of C-compatibility headers Use std::auto_ptr for Test pimpl too Use std::vector to store process arguments passed to execvp Remove strdup from argument parsing in Process::Start() Add initializer for Environment::Private struct since it is not a POD Throw runtime_error if Test::SetUp fails to open connection to server Merge cleanup and fixes branch Make gtest a requirement for successful configuration Remove unnecessary HAVE_GTEST conditional in configure.ac Move check result test to configure.ac and use standard variables Link against pthread when checking for gtest library Use AC_LANG_PUSH(C++)/AC_LANG_POP so as not to contaminate configure.ac Merge gtest configure check fixes Merge in Doxygen branch, which also includes many fixes Remove license header from example Include examples directory when scanning for documented sources Don't link gtest when creating library Remove leftover geistest doc line in doc/Makefile.am Only install documentation if it was created Don't install Doxyfile Move SetUp and TearDown methods to protected sections Make Process::GetEnv and SetEnv static methods Use Process::SetEnv() in Environment::SetUp() Use gtest lib path when checking for gtest library Fix gtest cpp flags Merge example documentation fixes Start the so library version at 0.0.0 Install man pages too Rename xorg_gtest_example to xorg-gtest-example Use "make doc" to build all documentation Merge some miscellaneous fixes And by default point to a location that doesn't require root privileges to be used. Add defines.h to the list of source files Ship conf files Add symbol version scripts Fix linking against X server libs Link libxorg-gtest_main against libxorg-gtest Add GPLv3 license as COPYING Generate ChangeLog at make dist time Release version 0.1.1 Daniel d'Andrada (1): Make Environment API property-based. Jussi Pakkanen (1): Fix build system. Thomas Voß (14): init checkin. Merged. ADDED: Simple and lightweight class to abstract process handling. Added doxygen documentation for public interface classes. Added: Additional doxygen documentation and adjusted build setup to include docs. Fixed whitespace issue. Referenced manpage of execvp in doc
xorg-gtest: Changes to 'refs/tags/debian/0.3.0-0ubuntu1'
Tag 'debian/0.3.0-0ubuntu1' created by Chase Douglas at 2012-06-08 19:40 + tagging version debian/0.3.0-0ubuntu1 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) iQIcBAABAgAGBQJP0lUSAAoJEI3Z6a9pX7cqUkcQAJaJnzp5aycHqaf9wG1wGL4J A5eigSbL3eJjru4R5YphcEcktp+hzbePqCCGDmmOdBJnCfVrztvKveFHVl0acjqy BvQq+ZNCFWJKus6sBwpar/oNINUDc8m8Fk9DoyAqAwDjw6G11RIOe6K7U09H4aeG KsUGrn7UNwDr2qcgCB023lStwEyW/MZWjxNq7L2KO6oTWjOqbDdHlTjYY79s4cBn 8IPN88fLIDsK95oCLxQ/ImcOuy9X2ABxOT5H7e9H1PNwhbF7iiTXh1fdzEO3MyTs EAcbzrF2N1FobvOtBksaX+ugYx4Z1pYMFt1lMy5lQvv7gYlwwYrp+VFo9ktPbraz AuiNS7uDgL7soUJRN0Ii9M90mIgMcNgZzeFsTIEPTCjwBxB/hsYw0mfVfca4tNF0 aafWBMAaCPuldVjjcOiIDp6cf8/w3m6u/WvLc1pjzmbVQRK0Uu5Vqk38zpiilvhv RfqacgmgBdg6WAK6dSmg7aszTofYgR8rGwm8KY1y/9poORma+CVZ721hRawxyYg3 GwsQyi0elURIS/PUkHUCs6KbtWr8+iPPu2KvQYNkCh0mT2vlw4BUPrxIADc8Jlur OIQ7Vihx52sJGWf+k/8vCWytasJm4QriJOLWks1XAoi4XSQV+9lu4mvobJJtuxaD E8smIoBUxJ9S/eeHSpsv =BxGt -END PGP SIGNATURE- Changes since the dawn of time: Chase Douglas (164): Rename to xorg-gtest, move some files around, make some fixes Remove unnecessary c++0x std flag Init gtest before checking for special args so --help works properly Remove autoconf check for C compiler since we only use C++ Remove unused gcov support Add pkg-config file Remove unused fixture.h Rename testing::xorg to xorg::testing Use installed dummy.conf location Make Environment::Private a POD struct Remove dead code in Environment Re-enable X server startup timeout Switch Process::Private to a POD struct Fix Process::Start() and switch to using exceptions Rename Process::pid() to Process::Pid() to follow naming conventions Remove Process::Wait() Throw exception if child process tries to kill itself Let setenv() and getenv() do error handling, and throw exception if they Don't fail the tests if the X server refuses to die Cleanup unnecessary braces in if .. else blocks in Environment::SetUp() Fix comment in environment.h Reorder Process copy constructor declarations Add server executable path option so one can test different servers Add xorg::testing::Test base test fixture Fix a couple usages of C++ line comments In Environment::SetUp, pass std::string into Process::Start Add newlines to end of Environment::TearDown() error messages Use std::auto_ptr for pimpls Remove obsolete Process::SetEnvBehavior enum Use C++ headers, such as cstring, instead of C-compatibility headers Use std::auto_ptr for Test pimpl too Use std::vector to store process arguments passed to execvp Remove strdup from argument parsing in Process::Start() Add initializer for Environment::Private struct since it is not a POD Throw runtime_error if Test::SetUp fails to open connection to server Merge cleanup and fixes branch Make gtest a requirement for successful configuration Remove unnecessary HAVE_GTEST conditional in configure.ac Move check result test to configure.ac and use standard variables Link against pthread when checking for gtest library Use AC_LANG_PUSH(C++)/AC_LANG_POP so as not to contaminate configure.ac Merge gtest configure check fixes Merge in Doxygen branch, which also includes many fixes Remove license header from example Include examples directory when scanning for documented sources Don't link gtest when creating library Remove leftover geistest doc line in doc/Makefile.am Only install documentation if it was created Don't install Doxyfile Move SetUp and TearDown methods to protected sections Make Process::GetEnv and SetEnv static methods Use Process::SetEnv() in Environment::SetUp() Use gtest lib path when checking for gtest library Fix gtest cpp flags Merge example documentation fixes Start the so library version at 0.0.0 Install man pages too Rename xorg_gtest_example to xorg-gtest-example Use "make doc" to build all documentation Merge some miscellaneous fixes And by default point to a location that doesn't require root privileges to be used. Add defines.h to the list of source files Ship conf files Revert to UNRELEASED Fix VCS information Run wrap-and-sort Remove patch for failed build Set the version to 0.1.0+git5b26608 Switch to dh-autoreconf Switch from source format 3.0 (quilt) to 1.0 Add debhelper miscellaneous depends to libxorg-gtest0 Add empty quilt series file to quiet lintian Add README.source to quiet lintian Build libxorg-gtest-doc package Ensure all installed files are packaged Add libxorg-gtest-data package Convert to multi-arch debhelper 9 Add explicit dependency on libgtest-dev Add symbol version scripts Merge branch 'upstream-uns
xorg-gtest: Changes to 'refs/tags/xorg-gtest-0.3.0'
Tag 'xorg-gtest-0.3.0' created by Chase Douglas at 2012-06-08 19:20 + xorg-gtest 0.3.0 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) iQIcBAABAgAGBQJP0lB3AAoJEI3Z6a9pX7cqN88P/icFNCbiMwJJJkG2lvk9qrd2 RuMJd4HbUozsHrlzQrZme7GluW6+bkr/ZdQ1/qiQeQpXgyn4in07YQTJyAnVVxw4 bM2xJNNPTY3/9PEpQiitk1/EMCu13xio6WCYyux9uMtcqGikuxo2lNte8uzoJDre 35okgHNQPqrMNG3KBP3GOYz1ORdh98BSG8BcHnBgU6yU4e6/cLAytXx6fp68rJwc /6IlS7VRnYzdc/KTYP17r9R6aTxcLFlyJYUs9unwwn+NbZpZ4ClhVN15t/kon0gx wwF6YBifZl/tkKWMoyG8JtP1VDuVe8B0OfHc3Gsr+QCd1gN3YJcHhxdjhqRSqA0z v2qM7XAJ3AwBuMbXBNCOKfSnbWPiJDGZj/ENGIbJaW67vyJjOoE7420syLP8dQWc ix3DmlR02iZ6x/6McsXnGWVCSpeJQYSWZYm9uGlxNiLhufp47rcFsiwbBM9/huEn nxL+Ja3P2wnRJX6m/LF3kUqbuYH4WZxEvQ0Z66J/44oP7A9N8Q4BpPnVXlq7Lu6x wcfnWOJniTFdEYBD8z+KGLUFgYXrZhof/IOnEUY0mwmj9CnOyu+Wdwa7KDfuDEh1 1cn4lbM0BYGNn9jFplhr+TxXQW9W144DLQgBDWWZyqulA+fxkJH18OPCXUaBWTgU GeLRaIGR+ZVIs3ehAeTp =7Mvh -END PGP SIGNATURE- Changes since xorg-gtest-0.2.0: Chase Douglas (13): Add missing Identifier name to 99-virtual-test-devices.conf Add Environment::Kill() to forcefully terminate the dummy Xorg server Kill dummy Xorg server when a terminating signal arrives Provide a full server layout in dummy.conf Wait for dummy X server to shut down in Environment::TearDown() Add comment to Makefile-xorg-gtest.am about compiling with -w Namespace xorg-gtest header filenames Add comment to Makefile-xorg-gtest.am about compiling with -w Namespace xorg-gtest header filenames Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/test/xorg-gtest Check if a server is already running on the chosen display name Check if log file and old log file are writable before starting X server Release version 0.3.0 Peter Hutterer (6): m4: if a source is specified, use that for the include path examples: built tests as noinst_PROGRAMS Update source files to use new headers Print the display we were trying to start up on. XCloseDisplay(3) cannot handle NULL Set log verbosity to 10 Thomas Voß (1): Add an xorg configuration file snippet to disable grabbing of test devices. --- aclocal/xorg-gtest.m4 | 14 - configure.ac |2 data/Makefile.am |4 data/X11/xorg.conf.d/99-virtual-test-devices.conf |6 data/xorg/gtest/dummy.conf| 10 + examples/Makefile.am |4 examples/xorg-gtest-example.cpp |2 include/Makefile.am |8 include/xorg/gtest/environment.h | 179 - include/xorg/gtest/evemu/device.h | 91 -- include/xorg/gtest/evemu/xorg-gtest_device.h | 91 ++ include/xorg/gtest/process.h | 166 --- include/xorg/gtest/test.h | 104 include/xorg/gtest/xorg-gtest.h |8 include/xorg/gtest/xorg-gtest_environment.h | 184 ++ include/xorg/gtest/xorg-gtest_process.h | 166 +++ include/xorg/gtest/xorg-gtest_test.h | 104 m4/gtest.m4 | 12 - src/Makefile-xorg-gtest.am|3 src/device.cpp|2 src/environment.cpp | 83 - src/process.cpp |2 src/test.cpp |5 src/xorg-gtest_main.cpp | 58 ++ 24 files changed, 726 insertions(+), 582 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1sd54c-0007e8...@vasks.debian.org