Hello community, here is the log from the commit of package xorg-x11-server for openSUSE:Factory checked in at 2013-03-15 10:49:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xorg-x11-server (Old) and /work/SRC/openSUSE:Factory/.xorg-x11-server.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xorg-x11-server", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/xorg-x11-server/xorg-x11-server.changes 2013-03-08 09:58:29.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.xorg-x11-server.new/xorg-x11-server.changes 2013-03-15 10:49:18.000000000 +0100 @@ -1,0 +2,27 @@ +Wed Mar 13 16:46:09 UTC 2013 - [email protected] + +- rebased u_aarch64-support.patch and reenabled it + +------------------------------------------------------------------- +Fri Mar 8 16:16:07 UTC 2013 - [email protected] + +- u_aarch64-support.patch: Basic support for aarch64 disabled for + the initial build of 1.14.0! + +------------------------------------------------------------------- +Wed Mar 6 22:19:38 UTC 2013 - [email protected] + +- Update to version 1.14.0: + Here's the 1.14 X server release; the last couple of weeks + yielded a couple of useful bug fixes, but nothing that earth + shattering. + + a bunch of fixes to the touch device + + a few fixes to the GPU hotplug bits + + software rendering speedups (due to using the new pixman APIs) + + elimination of a lot of warning messages (we've still too many) + + pointer barriers work + +There are lots of other fixes too, as always thanks to all who provided +patches, review and comments for this release! + +------------------------------------------------------------------- @@ -4,0 +32,8 @@ + +------------------------------------------------------------------- +Thu Feb 21 00:41:00 UTC 2013 - [email protected] + +- Update to version 1.14 RC2 1.13.99.902: + + + Remove upstreamed patches: + u_Do-not-use-intel-driver-on-Poulsbo-Oaktrail-Medfield.patch (patch225) Old: ---- u_Do-not-use-intel-driver-on-Poulsbo-Oaktrail-Medfield.patch xorg-server-1.13.2.tar.bz2 New: ---- xorg-server-1.14.0.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xorg-x11-server.spec ++++++ --- /var/tmp/diff_new_pack.QZ2Dmx/_old 2013-03-15 10:49:25.000000000 +0100 +++ /var/tmp/diff_new_pack.QZ2Dmx/_new 2013-03-15 10:49:25.000000000 +0100 @@ -17,7 +17,8 @@ Name: xorg-x11-server -%define dirsuffix 1.13.2 + +%define dirsuffix 1.14.0 %define vnc 0 Summary: X License: GPL-2.0+ and MIT @@ -175,7 +176,7 @@ Patch220: N_Use-external-tool-for-creating-backtraces-on-crashes.patch # PATCH-MISSING-TAG -- See http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines Patch222: N_sync-fix.patch -Patch225: u_Do-not-use-intel-driver-on-Poulsbo-Oaktrail-Medfield.patch + Patch226: u_vgaHW-no-legacy.patch Patch227: u_init_framebuffer_base.patch Patch228: u_aarch64-support.patch @@ -295,7 +296,6 @@ #%patch220 -p1 ### patch222 might not be applicable anymore #%patch222 -p1 -%patch225 -p1 %patch226 -p0 %patch227 -p1 %patch228 -p1 ++++++ N_zap_warning_xserver.diff ++++++ --- /var/tmp/diff_new_pack.QZ2Dmx/_old 2013-03-15 10:49:25.000000000 +0100 +++ /var/tmp/diff_new_pack.QZ2Dmx/_new 2013-03-15 10:49:25.000000000 +0100 @@ -2,7 +2,7 @@ =================================================================== --- xorg-server-1.12.1.orig/hw/xfree86/common/xf86Config.c +++ xorg-server-1.12.1/hw/xfree86/common/xf86Config.c -@@ -685,6 +685,7 @@ typedef enum { +@@ -680,6 +680,7 @@ typedef enum { FLAG_NOTRAPSIGNALS, FLAG_DONTVTSWITCH, FLAG_DONTZAP, @@ -10,7 +10,7 @@ FLAG_DONTZOOM, FLAG_DISABLEVIDMODE, FLAG_ALLOWNONLOCAL, -@@ -721,6 +722,8 @@ static OptionInfoRec FlagOptions[] = { +@@ -717,6 +718,8 @@ static OptionInfoRec FlagOptions[] = { {0}, FALSE}, {FLAG_DONTZAP, "DontZap", OPTV_BOOLEAN, {0}, FALSE}, @@ -19,7 +19,7 @@ {FLAG_DONTZOOM, "DontZoom", OPTV_BOOLEAN, {0}, FALSE}, {FLAG_DISABLEVIDMODE, "DisableVidModeExtension", OPTV_BOOLEAN, -@@ -807,6 +810,7 @@ configServerFlags(XF86ConfFlagsPtr flags +@@ -805,6 +805,7 @@ configServerFlags(XF86ConfFlagsPtr flags xf86GetOptValBool(FlagOptions, FLAG_NOTRAPSIGNALS, &xf86Info.notrapSignals); xf86GetOptValBool(FlagOptions, FLAG_DONTVTSWITCH, &xf86Info.dontVTSwitch); xf86GetOptValBool(FlagOptions, FLAG_DONTZAP, &xf86Info.dontZap); @@ -31,11 +31,12 @@ =================================================================== --- xorg-server-1.12.1.orig/hw/xfree86/common/xf86Events.c +++ xorg-server-1.12.1/hw/xfree86/common/xf86Events.c -@@ -180,12 +180,25 @@ xf86ProcessActionEvent(ActionEvent actio +@@ -182,13 +182,25 @@ xf86ProcessActionEvent(ActionEvent actio DebugF("ProcessActionEvent(%d,%x)\n", (int) action, arg); switch (action) { case ACTION_TERMINATE: - if (!xf86Info.dontZap) { +- xf86Msg(X_INFO, "Server zapped. Shutting down.\n"); + if (xf86Info.dontZap) + break; + @@ -65,7 +66,7 @@ =================================================================== --- xorg-server-1.12.1.orig/hw/xfree86/common/xf86Globals.c +++ xorg-server-1.12.1/hw/xfree86/common/xf86Globals.c -@@ -104,6 +104,7 @@ xf86InfoRec xf86Info = { +@@ -108,6 +108,7 @@ xf86InfoRec xf86Info = { .autoVTSwitch = TRUE, .ShareVTs = FALSE, .dontZap = FALSE, @@ -77,7 +78,7 @@ =================================================================== --- xorg-server-1.12.1.orig/hw/xfree86/common/xf86Privstr.h +++ xorg-server-1.12.1/hw/xfree86/common/xf86Privstr.h -@@ -68,6 +68,7 @@ typedef struct { +@@ -70,6 +70,7 @@ typedef struct { Bool autoVTSwitch; Bool ShareVTs; Bool dontZap; ++++++ u_aarch64-support.patch ++++++ --- /var/tmp/diff_new_pack.QZ2Dmx/_old 2013-03-15 10:49:25.000000000 +0100 +++ /var/tmp/diff_new_pack.QZ2Dmx/_new 2013-03-15 10:49:25.000000000 +0100 @@ -15,24 +15,6 @@ /* * Due to conflicts with "compiler.h", don't rely on <sys/io.h> to declare -@@ -511,7 +512,7 @@ xf86EnableIO(void) - #endif - } - close(fd); --#elif !defined(__mc68000__) && !defined(__sparc__) && !defined(__mips__) && !defined(__sh__) && !defined(__hppa__) && !defined(__s390__) && !defined(__arm__) && !defined(__m32r__) && !defined(__nds32__) -+#elif !defined(__mc68000__) && !defined(__sparc__) && !defined(__mips__) && !defined(__sh__) && !defined(__hppa__) && !defined(__s390__) && !defined(__arm__) && !defined(__m32r__) && !defined(__nds32__) && !defined(__aarch64__) - if (ioperm(0, 1024, 1) || iopl(3)) { - if (errno == ENODEV) - ErrorF("xf86EnableIOPorts: no I/O ports found\n"); -@@ -540,7 +541,7 @@ xf86DisableIO(void) - #if defined(__powerpc__) - munmap(ioBase, 0x20000); - ioBase = NULL; --#elif !defined(__mc68000__) && !defined(__sparc__) && !defined(__mips__) && !defined(__sh__) && !defined(__hppa__) && !defined(__arm__) && !defined(__s390__) && !defined(__m32r__) && !defined(__nds32__) -+#elif !defined(__mc68000__) && !defined(__sparc__) && !defined(__mips__) && !defined(__sh__) && !defined(__hppa__) && !defined(__arm__) && !defined(__s390__) && !defined(__m32r__) && !defined(__nds32__) && !defined(__aarch64__) - iopl(0); - ioperm(0, 1024, 0); - #endif Index: xorg-server-1.13.2/include/servermd.h =================================================================== --- xorg-server-1.13.2.orig/include/servermd.h ++++++ xorg-server-1.13.2.tar.bz2 -> xorg-server-1.14.0.tar.bz2 ++++++ ++++ 62645 lines of diff (skipped) ++++++ xorg-server-provides ++++++ --- /var/tmp/diff_new_pack.QZ2Dmx/_old 2013-03-15 10:49:28.000000000 +0100 +++ /var/tmp/diff_new_pack.QZ2Dmx/_new 2013-03-15 10:49:28.000000000 +0100 @@ -1,4 +1,4 @@ -Provides: X11_ABI_XINPUT = 18.0 -Provides: X11_ABI_VIDEODRV = 13.1 +Provides: X11_ABI_XINPUT = 19.1 +Provides: X11_ABI_VIDEODRV = 14.1 Provides: X11_ABI_ANSIC = 0.4 Provides: X11_ABI_EXTENSION = 7.0 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
