Hello community,
here is the log from the commit of package xorg-x11-driver-video-unichrome for openSUSE:Factory
checked in at Fri Oct 30 17:39:04 CET 2009.
--------
--- xorg-x11-driver-video-unichrome/xorg-x11-driver-video-unichrome.changes 2009-10-18 23:19:21.000000000 +0200
+++ /mounts/work_src_done/STABLE/xorg-x11-driver-video-unichrome/xorg-x11-driver-video-unichrome.changes 2009-10-30 12:50:13.000000000 +0100
@@ -1,0 +2,18 @@
+Fri Oct 30 12:04:52 CET 2009 - sndirsch(a)suse.de
+
+- update to git commit 4ce10d4 (2009-10-20)
+ * adds chip support for VX800 (VT1122)
+ * removes chip support for non-existing CN750/CN800 (VT3225)
+ * support for MSI K9VGM-V (VT3108)
+ * support for MSI P4M890M (VT3343)
+ * support for Foxconn P4M9007MB (VT3371)
+ * support for Asus M2V-MX SE (VT3230)
+ * support for Quanta IL1 (VT1122)
+ * support for MSI Fuzzy CN700 (VT3344)
+- obsoletes sles10.diff
+- commit-18bcba7.diff (reverse applied)
+ * revert openchrome wrapper
+- removed no longer existing "--enable-experimental" configure
+ option
+
+-------------------------------------------------------------------
calling whatdependson for head-i586
Old:
----
sles10.diff
xf86-video-unichrome-5d542c6.tar.bz2
New:
----
commit-18bcba7.diff
xf86-video-unichrome-4ce10d4.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ xorg-x11-driver-video-unichrome.spec ++++++
--- /var/tmp/diff_new_pack.IGqIRF/_old 2009-10-30 17:38:55.000000000 +0100
+++ /var/tmp/diff_new_pack.IGqIRF/_new 2009-10-30 17:38:55.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package xorg-x11-driver-video-unichrome (Version 20090829)
+# spec file for package xorg-x11-driver-video-unichrome (Version 20091020)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -55,18 +55,19 @@
#Supplements: modalias(pci:v00001106d00003230sv*sd*bc*sc*i*)
#Supplements: modalias(pci:v00001106d00003343sv*sd*bc*sc*i*)
#Supplements: modalias(pci:v00001106d00003371sv*sd*bc*sc*i*)
+#Supplements: modalias(pci:v00001106d00001122sv*sd*bc*sc*i*)
%endif
AutoReqProv: on
-Version: 20090829
-Release: 2
+Version: 20091020
+Release: 1
Summary: The Unichrome Project
PreReq: coreutils
Requires: xorg-x11-server
Provides: xorg-x11-driver-video:%{_libdir}/xorg/modules/drivers/unichrome_drv.so
-Source: xf86-video-unichrome-5d542c6.tar.bz2
+Source: xf86-video-unichrome-4ce10d4.tar.bz2
Source1: pci_ids
-Patch0: sles10.diff
Patch1: mandriva2007.diff
+Patch2: commit-18bcba7.diff
ExclusiveArch: %ix86 ia64 ppc ppc64 x86_64
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -86,17 +87,17 @@
%prep
%setup -n xf86-video-unichrome
-%if 0%{?suse_version} < 1020
-%patch0
-%endif
%if 0%{?mandriva_version} > 2006
%patch1
%endif
+%if 0%{?suse_version}
+%patch2 -p1 -R
+%endif
%build
%if 0%{?suse_version} > 1010 || 0%{?fedora_version} >= 6 || 0%{?mandriva_version} > 2006
autoreconf -fi
-%configure --enable-experimental CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
+%configure CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
make
%else
xmkmf -a
++++++ commit-18bcba7.diff ++++++
commit 18bcba718d6ffa845a63617fe9be83388e37b2bb
Author: Luc Verhaegen <libv(a)skynet.be>
Date: Mon Oct 12 17:09:58 2009 +0200
Wrapper: Add openchrome.
Xorg autoloads openchrome, but the infrastructure is there to
easily beat bigotry.
diff --git a/wrapper/Makefile.am b/wrapper/Makefile.am
index 71cbe62..66b08ac 100644
--- a/wrapper/Makefile.am
+++ b/wrapper/Makefile.am
@@ -24,7 +24,27 @@ VIA_MAN_SUBSTS = \
via.$(DRIVER_MAN_SUFFIX): wrapper.man
$(SED) $(VIA_MAN_SUBSTS) < wrapper.man > $@
+#
+# Secondly; openchrome.
+#
+# driver.
+openchrome_drv_la_LTLIBRARIES = openchrome_drv.la
+openchrome_drv_la_LDFLAGS = -module -avoid-version
+openchrome_drv_ladir = @moduledir@/drivers
+openchrome_drv_la_SOURCES = wrapper.c
+openchrome_drv_la_CFLAGS = $(AM_CFLAGS) -D WRAP_NAME=\"openchrome\" -D WRAP_REPLACE\(name\)=NAME_CAT\(openchrome,name\)
+# manpage.
+OPENCHROME_MAN_SUBSTS = \
+ -e 's|__xservername__|Xorg|g' \
+ -e 's|__drivermansuffix__|$(DRIVER_MAN_SUFFIX)|g' \
+ -e 's|__vendorversion__|0\.0\.0|g' \
+ -e 's|__wrappernamebig__|OPENCHROME|g' \
+ -e 's|__wrappernamesmall__|openchrome|g'
+
+openchrome.$(DRIVER_MAN_SUFFIX): wrapper.man
+ $(SED) $(OPENCHROME_MAN_SUBSTS) < wrapper.man > $@
+
# manpage general
-driverman_DATA = via.$(DRIVER_MAN_SUFFIX)
+driverman_DATA = via.$(DRIVER_MAN_SUFFIX) openchrome.$(DRIVER_MAN_SUFFIX)
CLEANFILES = $(driverman_DATA)
++++++ pci_ids ++++++
--- /var/tmp/diff_new_pack.IGqIRF/_old 2009-10-30 17:38:55.000000000 +0100
+++ /var/tmp/diff_new_pack.IGqIRF/_new 2009-10-30 17:38:55.000000000 +0100
@@ -7,3 +7,4 @@
0x1106#0x3230#VT3230: K8M890
0x1106#0x3343#VT3343: P4M890
0x1106#0x3371#VT3371: P4M900
+0x1106#0x1122#VT1122: VX800
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org