[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

xserver-xorg-video-suncg3: Changes to 'upstream-unstable'



 .cvsignore       |   19 -------------------
 .gitignore       |   20 ++++++++++++++++++++
 README           |   20 ++++++++++++++++++++
 configure.ac     |    2 +-
 man/Makefile.am  |    1 -
 man/suncg3.man   |    2 +-
 src/cg3_driver.c |    8 +++-----
 7 files changed, 45 insertions(+), 27 deletions(-)

New commits:
commit 45f3d1f8aa8c3ad9ca2486935f2888343b6d1732
Author: Julien Cristau <jcristau@debian.org>
Date:   Mon May 4 14:38:04 2009 +0200

    Bump to 1.1.1

diff --git a/configure.ac b/configure.ac
index 3db869d..c4c43af 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
 
 AC_PREREQ(2.57)
 AC_INIT([xf86-video-suncg3],
-        1.1.0,
+        1.1.1,
         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
         xf86-video-suncg3)
 

commit 7e2f6255d9ab74859a7a90b0ac88d2a43a743cbd
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Fri Jan 30 21:04:18 2009 -0800

    Add README with pointers to mailing list, bugzilla & git repos

diff --git a/README b/README
new file mode 100644
index 0000000..b806f8c
--- /dev/null
+++ b/README
@@ -0,0 +1,20 @@
+xf86-video-suncg3 - CG3 video driver for the Xorg X server
+
+Please submit bugs & patches to the Xorg bugzilla:
+
+        https://bugs.freedesktop.org/enter_bug.cgi?product=xorg
+
+All questions regarding this software should be directed at the
+Xorg mailing list:
+
+        http://lists.freedesktop.org/mailman/listinfo/xorg
+
+The master development code repository can be found at:
+
+        git://anongit.freedesktop.org/git/xorg/driver/xf86-video-suncg3
+
+        http://cgit.freedesktop.org/xorg/driver/xf86-video-suncg3
+
+For more information on the git code manager, see:
+
+        http://wiki.x.org/wiki/GitPage

commit ab1cdb9d393dcf57c983ba7504a7749a9438ace7
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Fri Jan 9 16:35:21 2009 -0800

    Remove xorgconfig & xorgcfg from See Also list in man page

diff --git a/man/suncg3.man b/man/suncg3.man
index a4f6bb0..2cabe9e 100644
--- a/man/suncg3.man
+++ b/man/suncg3.man
@@ -25,6 +25,6 @@ Please refer to __xconfigfile__(__filemansuffix__) for general configuration
 details.  This section only covers configuration details specific to this
 driver.
 .SH "SEE ALSO"
-__xservername__(1), __xconfigfile__(__filemansuffix__), xorgconfig(1), Xserver(1), X(__miscmansuffix__)
+__xservername__(1), __xconfigfile__(__filemansuffix__), Xserver(1), X(__miscmansuffix__)
 .SH AUTHORS
 Authors include: Jakub Jelinek <jakub@redhat.com>

commit 01ce02338e2a1aff9dae3b0e23799378c3321ac0
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Aug 19 10:24:32 2008 -0400

    Uninclude xf86Version.h

diff --git a/src/cg3_driver.c b/src/cg3_driver.c
index 9b1b187..571e1f4 100644
--- a/src/cg3_driver.c
+++ b/src/cg3_driver.c
@@ -20,7 +20,6 @@
  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  */
-/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/suncg3/cg3_driver.c,v 1.4 2001/05/16 06:48:10 keithp Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -29,7 +28,6 @@
 #define PSZ 8
 #include "xf86.h"
 #include "xf86_OSproc.h"
-#include "xf86Version.h"
 #include "mipointer.h"
 #include "mibstore.h"
 #include "micmap.h"

commit 5ac8e89e493aedeeafe7e06a5dd03493995af034
Author: Matthieu Herrb <matthieu.herrb@laas.fr>
Date:   Sat Mar 8 23:56:30 2008 +0100

    Makefile.am: nuke RCS Id

diff --git a/man/Makefile.am b/man/Makefile.am
index bf7ec17..f0eb29b 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -1,4 +1,3 @@
-# $Id$
 #
 # Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
 # 

commit 68e06fd13a9026b9b679ae32a76a33813a8b0ee9
Author: Brice Goglin <bgoglin@debian.org>
Date:   Tue Aug 7 13:48:28 2007 +0200

    Define CG3_*_VERSION using PACKAGE_VERSION*

diff --git a/src/cg3_driver.c b/src/cg3_driver.c
index 0aa3fba..9b1b187 100644
--- a/src/cg3_driver.c
+++ b/src/cg3_driver.c
@@ -64,9 +64,9 @@ void CG3Sync(ScrnInfoPtr pScrn);
 #define CG3_VERSION 4000
 #define CG3_NAME "SUNCG3"
 #define CG3_DRIVER_NAME "suncg3"
-#define CG3_MAJOR_VERSION 1
-#define CG3_MINOR_VERSION 1
-#define CG3_PATCHLEVEL 0
+#define CG3_MAJOR_VERSION PACKAGE_VERSION_MAJOR
+#define CG3_MINOR_VERSION PACKAGE_VERSION_MINOR
+#define CG3_PATCHLEVEL PACKAGE_VERSION_PATCHLEVEL
 
 /* 
  * This contains the functions needed by the server after loading the driver

commit 5a3ad382ab98e126320fa93d3b11d4249a9cf0cd
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Thu Mar 1 11:01:01 2007 -0800

    renamed: .cvsignore -> .gitignore

diff --git a/.cvsignore b/.cvsignore
deleted file mode 100644
index fb1befd..0000000
--- a/.cvsignore
+++ /dev/null
@@ -1,19 +0,0 @@
-Makefile
-Makefile.in
-*.la
-*.lo
-aclocal.m4
-autom4te.cache
-config.guess
-config.h
-config.h.in
-config.log
-config.status
-config.sub
-configure
-depcomp
-install-sh
-libtool
-ltmain.sh
-missing
-stamp-h1
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..2df4a8d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,20 @@
+Makefile
+Makefile.in
+*.la
+*.lo
+aclocal.m4
+autom4te.cache
+config.guess
+config.h
+config.h.in
+config.log
+config.status
+config.sub
+configure
+depcomp
+install-sh
+libtool
+ltmain.sh
+missing
+stamp-h1
+*~


Reply to: