Bug#480620: xutils-dev: bashism in /bin/sh script

2008-05-10 Thread Raphael Geissert
Package: xutils-dev
Severity: important
Version: 1:7.4+1
User: [EMAIL PROTECTED]
Usertags: goal-dash

Hello maintainer,

While performing an archive wide checkbashisms (from the 'devscripts' package) 
check I've found your package containing one or more /bin/sh scripts making 
use of bashisms.

checkbashisms' output:
> possible bashism in ./usr/bin/ccmakedep line 49 (echo with backslash
> escapes): 
> echo " \c" > $CPPCMD 

Not using bash (or a Debian Policy conformant shell interpreter which does 
provide such an extra feature) as /bin/sh is likely to lead to errors or 
unexpected behaviours.
Please be aware that although bash is currently the default /bin/sh there's a 
release goal for Lenny to make dash the default /bin/sh[1].

If you want more information about dash as /bin/sh, you can read:
http://lists.debian.org/debian-release/2008/01/msg00189.html

For more information please refer to the Debian Policy section 10.4 supporting 
this argument at:
http://www.debian.org/doc/debian-policy/ch-files.html#s-scripts

Hints about how to fix bashisms:
Sometimes these bugs are already fixed in Ubuntu, look at the PTS.
If not already fixed you can read:
https://wiki.ubuntu.com/DashAsBinSh

[1]http://release.debian.org/lenny/goals.txt

Thank you,
-- 
Atomo64 - Raphael

Please avoid sending me Word, PowerPoint or Excel attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#443227: patch for xclock problem

2008-05-10 Thread Jay Berkenbilt

tags 443227 +patch
thanks

I believe the following patch fixes this problem.  I noticed the same
problem some time ago in Fedora 8 (which I used to have to run at
work).  I run Lenny on my main box and didn't see this at home until
today when I got x11-apps.  The problem appears to be a missing set of
braces in Clock.c.  The scope of an "else" was too narrow.

This is a diff -uw just so you can see how small the patch really is.
The real patch is attached.

--- Clock.c.orig2008-05-10 21:46:01.007754048 -0400
+++ Clock.c 2008-05-10 22:11:58.767784897 -0400
@@ -656,6 +656,7 @@
 2 * w->clock.padding;
}
else
+   {
 #endif
 #ifndef NO_I18N 
if (!no_locale) {
@@ -698,6 +699,7 @@
   w->clock.font->descent + 2 * w->clock.padding;
}
 }
+}
 if (w->core.width == 0)
w->core.width = min_width;
 if (w->core.height == 0)

--Jay

-- 
Jay Berkenbilt <[EMAIL PROTECTED]>

--- x11-apps-7.3+1/xclock/Clock.c.orig	2007-09-14 17:18:56.0 -0400
+++ x11-apps-7.3+1/xclock/Clock.c	2008-05-10 22:18:46.147733977 -0400
@@ -656,46 +656,48 @@
 		 2 * w->clock.padding;
}
else
+   {
 #endif
 #ifndef NO_I18N 
-   if (!no_locale) {
-	   XFontSetExtents *fse;
+	  if (!no_locale) {
+	  XFontSetExtents *fse;
 
-	   if(w->clock.fontSet == NULL) {
-	   char **missing, *default_str;
-	   int n_missing;
-	   w->clock.fontSet = XCreateFontSet( XtDisplay(w),
-		 XtDefaultFontSet,
-		 &missing,
-		 &n_missing,
-		 &default_str);
-	   }
-	   if (w->clock.fontSet != NULL)
-	   {
-	   /* don't free this... it's freed with the XFontSet. */
-	   fse = XExtentsOfFontSet(w->clock.fontSet);
-	   
-	   min_width = XmbTextEscapement(w->clock.fontSet,str,
-		 len)
-		 + 2 * w->clock.padding;
-	   min_height = fse->max_logical_extent.height +
-		 3 * w->clock.padding;
-	   } else {
-	   no_locale = True;
-	   }
-   }
+	  if(w->clock.fontSet == NULL) {
+		  char **missing, *default_str;
+		  int n_missing;
+		  w->clock.fontSet = XCreateFontSet( XtDisplay(w),
+		XtDefaultFontSet,
+		&missing,
+		&n_missing,
+		&default_str);
+	  }
+	  if (w->clock.fontSet != NULL)
+	  {
+		  /* don't free this... it's freed with the XFontSet. */
+		  fse = XExtentsOfFontSet(w->clock.fontSet);
+
+		  min_width = XmbTextEscapement(w->clock.fontSet,str,
+		len)
+		+ 2 * w->clock.padding;
+		  min_height = fse->max_logical_extent.height +
+		3 * w->clock.padding;
+	  } else {
+		  no_locale = True;
+	  }
+	  }
 
-   if (!no_locale)
-#endif /* NO_I18N */
-   {
-	   if (w->clock.font == NULL)
-	   w->clock.font = XQueryFont( XtDisplay(w),
-	   XGContextFromGC(
-	DefaultGCOfScreen(XtScreen(w))) );
-	   min_width = XTextWidth(w->clock.font, str, len) +
-	   2 * w->clock.padding;
-	   min_height = w->clock.font->ascent +
-	   w->clock.font->descent + 2 * w->clock.padding;
+	  if (!no_locale)
+   #endif /* NO_I18N */
+	  {
+	  if (w->clock.font == NULL)
+		  w->clock.font = XQueryFont( XtDisplay(w),
+	  XGContextFromGC(
+	   DefaultGCOfScreen(XtScreen(w))) );
+	  min_width = XTextWidth(w->clock.font, str, len) +
+		  2 * w->clock.padding;
+	  min_height = w->clock.font->ascent +
+		  w->clock.font->descent + 2 * w->clock.padding;
+	  }
}
 }
 if (w->core.width == 0)


Processed: patch for xclock problem

2008-05-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 443227 +patch
Bug#443227: xclock: wrong geometry when running -d -norender with LANG=C
There were no tags set.
Tags added: patch

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



xfonts-utils: Changes to 'debian-unstable'

2008-05-10 Thread Julien Cristau
 debian/xsfbs/xsfbs-autoreconf.mk |  150 ---
 debian/xsfbs/xsfbs.mk|4 -
 2 files changed, 1 insertion(+), 153 deletions(-)

New commits:
commit c87ea43906787791a87a659c0a9d6312945ffb32
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sun Apr 13 03:12:18 2008 +0200

Remove xsfbs-autoreconf.mk

It has never been used, and that doesn't look likely to change.

diff --git a/debian/xsfbs/xsfbs-autoreconf.mk b/debian/xsfbs/xsfbs-autoreconf.mk
deleted file mode 100644
index dce8fc8..000
--- a/debian/xsfbs/xsfbs-autoreconf.mk
+++ /dev/null
@@ -1,150 +0,0 @@
-#!/usr/bin/make -f
-# $Id$
-
-# Automagical conversion of autoreconf results into quilt patches.
-
-# Copyright 2006 Eugene Konev
-#
-# Licensed under the GNU General Public License, version 2.  See the file
-# /usr/share/common-licenses/GPL or .
-
-# The idea behind this is storing changes produced by autoreconf as a 
-# separate patch on quilt stack (on top of stack actually).
-# The only usable target here is 'autoreconf`. Other targets are not
-# supposed to be called directly. DO NOT invoke them, unless you know what
-# you are doing.
-# The autoreconf target will check if files with names in $(RECONF_CHECKFILES)
-# were changed during patching (from upstream version or from previously
-# autoreconfed version) and call actual autoreconfing if they were.
-# The actual autoreconfing target (doautoreconf) WILL FAIL after 
-# calling autoreconf and pushing changes into quilt stack by design. It
-# should never be invoked by automatic build process.
-# The proposed use is adding autoreconf into clean's prerequisites before
-# xsfclean like:
-# - clean: xsfclean
-# + clean: autoreconf xsfclean
-# This will ensure it is called when you build package with dpkg-buildpackage.
-
-# This dir will be used for producing diff of autoreconfed tree
-RECONF_DIR := xsfautoreconf
-
-# This files will be checked for changes
-RECONF_CHECKFILES += configure.ac Makefile.am
-
-# This files will not be hardlinked but copied
-RECONF_NOLINKFILES += aclocal.m4
-
-# This files/dirs will be pruned after autoreconf run
-RECONF_PRUNEFILES += autom4te.cache config.h.in~ aclocal.m4~
-
-# Internal target. Never invoke directly.
-stampdir_target+=check.md5sum
-$(STAMP_DIR)/check.md5sum:
-   dh_testdir
-   $(MAKE) -f debian/rules prepare
-   for F in $(RECONF_CHECKFILES); do \
- find . -wholename ./$(STAMP_DIR) -prune -o -name $$F -print | \
-   LC_ALL=C sort | xargs --no-run-if-empty md5sum >>$@; \
-   done
-
-# Internal target. Never invoke directly.
-$(STAMP_DIR)/clean.md5sum:
-   dh_testdir
-   $(MAKE) -f debian/rules unpatch
-   rm -f $(STAMP_DIR)/check.md5sum
-   $(MAKE) -f debian/rules $(STAMP_DIR)/check.md5sum
-   mv $(STAMP_DIR)/check.md5sum $@
-
-# Internal target. Never invoke directly.
-debian/patches/patched.md5sum:
-   dh_testdir
-   [ -f $(STAMP_DIR)/clean.md5sum ] || \
- $(MAKE) -f debian/rules $(STAMP_DIR)/clean.md5sum
-
-   $(MAKE) -f debian/rules patch
-   rm -f $(STAMP_DIR)/check.md5sum
-   $(MAKE) -f debian/rules $(STAMP_DIR)/check.md5sum
-   if ! diff $(STAMP_DIR)/clean.md5sum \
- $(STAMP_DIR)/check.md5sum > /dev/null; then \
- $(MAKE) -f debian/rules doautoreconf; \
-   else \
- mv $(STAMP_DIR)/check.md5sum $@; \
-   fi
-
-# Internal target. Never invoke directly.
-,PHONY: doautoreconf
-doautoreconf: patch
-   quilt push -a >>$(STAMP_DIR)/log/autoreconf 2>&1 || true
-   if quilt applied | grep ^autoreconf.diff$$ > /dev/null; then \
- quilt pop -a >>$(STAMP_DIR)/log/autoreconf 2>&1; \
- quilt rename -p autoreconf.diff autoreconf-old.diff \
-  >>$(STAMP_DIR)/log/autoreconf 2>&1; \
- quilt delete autoreconf-old.diff >>$(STAMP_DIR)/log/autoreconf 2>&1; \
- quilt push -a >>$(STAMP_DIR)/log/autoreconf 2>&1; \
-   fi
-
-   if [ -e $(RECONF_DIR) ]; then \
- echo "ERROR: $(RECONF_DIR) already exists. Cleanup by hand"; \
- exit 1; \
-   fi
-
-   mkdir -p $(RECONF_DIR)/before
-   find . -maxdepth 1 -mindepth 1 ! -wholename ./$(RECONF_DIR) \
--a ! -wholename ./debian -a ! -wholename ./patches \
--a ! -wholename ./.pc -a ! -wholename ./$(STAMP_DIR) | \
- xargs -i{} cp -al {} $(RECONF_DIR)/before/
-
-   for F in $(RECONF_PRUNEFILES); do \
- find $(RECONF_DIR)/before -name $$F -print | \
-   xargs --no-run-if-empty rm -r; \
-   done
-
-   cp -al $(RECONF_DIR)/before $(RECONF_DIR)/after
-
-   for F in $(RECONF_NOLINKFILES); do \
- find . -wholename ./$(RECONF_DIR) -prune -o -wholename ./debian \
-  -prune -o -wholename ./$(STAMP_DIR) -prune -o -name $$F \
-  -print | \
-   xargs --no-run-if-empty -i{} cp --remove-destination {} \
- $(RECONF_DIR)/after/{}; \
- 

xfonts-utils: Changes to 'debian-unstable'

2008-05-10 Thread Julien Cristau
 debian/changelog|3 
 debian/copyright|  299 +-
 debian/rules|6 
 debian/xfonts-utils.install |2 
 fonttosfnt/COPYING  |   19 
 fonttosfnt/ChangeLog|  315 ++
 fonttosfnt/Makefile.am  |   80 
 fonttosfnt/Makefile.in  |  684 
 fonttosfnt/aclocal.m4   | 1555 +++
 fonttosfnt/config.guess | 1526 ++
 fonttosfnt/config.h.in  |   68 
 fonttosfnt/config.sub   | 1658 +++
 fonttosfnt/configure| 6189 
 fonttosfnt/configure.ac |   51 
 fonttosfnt/depcomp  |  589 
 fonttosfnt/env.c|  151 +
 fonttosfnt/fonttosfnt.c |  118 
 fonttosfnt/fonttosfnt.h |  182 +
 fonttosfnt/fonttosfnt.man   |   77 
 fonttosfnt/install-sh   |  519 +++
 fonttosfnt/missing  |  367 ++
 fonttosfnt/read.c   |  318 ++
 fonttosfnt/struct.c |  514 +++
 fonttosfnt/util.c   |  438 +++
 fonttosfnt/write.c  | 1078 +++
 25 files changed, 16750 insertions(+), 56 deletions(-)

New commits:
commit bbe9d54e23cfd8c286bd49ee3b16e59ada283ff5
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sun May 11 02:44:32 2008 +0200

Update FSF address in debian/copyright

diff --git a/debian/copyright b/debian/copyright
index 09d98b6..576098b 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -253,6 +253,6 @@ License: GPL-2
  .
  You should have received a copy of the GNU General Public License with
  the Debian operating system, in /usr/share/common-licenses/GPL-2;  if
- not, write to the Free Software Foundation, Inc., 59 Temple Place,
- Suite 330, Boston, MA 02111-1307 USA
+ not, write to the Free Software Foundation, Inc., 51 Franklin Street,
+ Fifth Floor, Boston, MA 02110-1301 USA.
 

commit 19d6e3d2b74e555320144e5b5b511f246a47cadd
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sun May 11 02:36:25 2008 +0200

Add fonttosfnt, version 1.0.4.

diff --git a/debian/changelog b/debian/changelog
index 617a287..57f8d21 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xfonts-utils (1:7.4+1) UNRELEASED; urgency=low
   * Add Vcs-* fields
   * Switch to machine-interpretable debian/copyright format
 (http://wiki.debian.org/Proposals/CopyrightFormat).
+  * Add fonttosfnt, version 1.0.4.
 
  -- Julien Cristau <[EMAIL PROTECTED]>  Fri, 07 Mar 2008 17:41:15 +0100
 
diff --git a/debian/copyright b/debian/copyright
index 0f0f74f..09d98b6 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -126,6 +126,59 @@ License: BSD-4
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  POSSIBILITY OF SUCH DAMAGE.
 
+Files: fonttosfnt/*.c, fonttosfnt/*.h
+Copyright: Copyright (c) 2002-2008 by Juliusz Chroboczek
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER 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.
+
+Files: fonttosfnt/env.c
+Copyright: Copyright (c) 1987, 1993 The Regents of the University of 
California.
+ All rights reserved.
+License: BSD-4
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+notice, this list of conditions and the following disclaimer in the
+documentation and/or other materials provided with the distribution.
+ 3. All advertising materials mentioning features or use of this software
+must display the following acknowledgement:
+  This product includes software developed by the University of
+  California, Berkeley and its contributors.
+ 4. Neither the name of the University nor the names of its contributors
+may be used to endorse or promote products derived from this software
+without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE REGENT

Bug#480566: compiz: Corrupt window borders after xorg upgrade to 1:7.3+10 with intel drivers

2008-05-10 Thread Yury Arkady Sobolev
Package: compiz
Version: 0.6.3~git20080115.0ea58487-1
Severity: important

After upgrading xorg to 1:7.3+10, black vertical bars cover parts of the
window borders for all windows. A screenshot is available here [1].
Additionally, shadows become more prominent, and all of compiz slows
down significantly. It is still usuable, but operations which were fast
before (even after removing the shadows) are noticeably jerky. This is
with the intel video drivers on an Intel 965GM. Downgrading to 1:7.2-5
fixes the problem.

-Yury
[1] http://www.ocf.berkeley.edu/~yury/Screenshot.png


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.25-yury (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages compiz depends on:
ii  compiz-core 0.6.3~git20080115.0ea58487-1 OpenGL window and compositing mana
ii  compiz-gnom 0.6.3~git20080115.0ea58487-1 OpenGL window and compositing mana
ii  compiz-gtk  0.6.3~git20080115.0ea58487-1 OpenGL window and compositing mana
ii  compiz-plug 0.6.3~git20080115.0ea58487-1 OpenGL window and compositing mana

compiz recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



xfonts-utils: Changes to 'debian-unstable'

2008-05-10 Thread Julien Cristau
 debian/changelog  |2 -
 debian/copyright  |5 +-
 mkfontscale/COPYING   |2 -
 mkfontscale/ChangeLog |   59 
 mkfontscale/aclocal.m4|   22 ++--
 mkfontscale/config.guess  |6 +--
 mkfontscale/configure |   84 +-
 mkfontscale/configure.ac  |2 -
 mkfontscale/hash.c|2 -
 mkfontscale/ident.c   |1 
 mkfontscale/mkfontscale.c |   27 +-
 11 files changed, 146 insertions(+), 66 deletions(-)

New commits:
commit 7b1233bd2226c36fcdb8510e91baae41a7cb6aba
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sun May 11 01:12:45 2008 +0200

mkfontscale 1.0.5

diff --git a/debian/changelog b/debian/changelog
index 760eba1..9626aaa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,7 @@
 xfonts-utils (1:7.4+1) UNRELEASED; urgency=low
 
   * Change versioning to more or less match X.Org katamaris
-  * mkfontscale 1.0.4
+  * mkfontscale 1.0.5
   * mkfontdir 1.0.4
 + drop 001_mkfontdir_location_fix.diff, fixed upstream
   * Bump Standards-Version to 3.7.3
diff --git a/debian/copyright b/debian/copyright
index dec3ee2..54c4517 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,9 +1,10 @@
 This package contains the bdftopcf, font-util, mkfontdir and mkfontscale
 utilities downloaded
-from http://xorg.freedesktop.org/releases/individual/font/
+from http://xorg.freedesktop.org/releases/individual/font/ and
+http://xorg.freedesktop.org/releases/individual/app/
 
 Copyright 1987, 1990, 1991, 1993, 1998  The Open Group
-Copyright (c) 2001-2003 by Juliusz Chroboczek
+Copyright (c) 2001-2008 by Juliusz Chroboczek
 Copyright (c) 2002 by Tomohiro KUBOTA
 Copyright (c) 1993 Quarterdeck Office Systems
 Copyright 2002-2004 by Roland Mainz <[EMAIL PROTECTED]>
diff --git a/mkfontscale/COPYING b/mkfontscale/COPYING
index 31965e8..b706b38 100644
--- a/mkfontscale/COPYING
+++ b/mkfontscale/COPYING
@@ -1,4 +1,4 @@
-Copyright (c) 2002-2003 by Juliusz Chroboczek
+Copyright (c) 2002-2008 by Juliusz Chroboczek
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
diff --git a/mkfontscale/ChangeLog b/mkfontscale/ChangeLog
index c6f8dfb..a0001ad 100644
--- a/mkfontscale/ChangeLog
+++ b/mkfontscale/ChangeLog
@@ -1,3 +1,62 @@
+commit 8126d2b694f48cc8137be05705a125f7d02e7e12
+Author: Julien Cristau <[EMAIL PROTECTED]>
+Date:   Sun May 11 00:03:44 2008 +0200
+
+Bump to 1.0.5
+
+commit f131ff40d2b46692c393346110df2567cfa67c29
+Author: Juliusz Chroboczek <[EMAIL PROTECTED]>
+Date:   Sat May 10 23:58:55 2008 +0200
+
+Update copyright date.
+
+commit c322c79c2b9b8d6075b6782d572033cc50799a49
+Author: Juliusz Chroboczek <[EMAIL PROTECTED]>
+Date:   Sat May 10 23:56:33 2008 +0200
+
+Fix handling of OpenType/CFF fonts with embedded bitmaps.
+The old workaround would trigger with CFF fonts with embedded bitmaps.
+We now explicitly check for the font format being TrueType.
+Reported by Andrey V. Panov.
+
+commit 5db9e13aafbed8c0562838005147ebefb12d08ac
+Author: Juliusz Chroboczek <[EMAIL PROTECTED]>
+Date:   Sat May 10 23:37:14 2008 +0200
+
+Remove doubly included header.
+
+commit b0860282c3229d088840fa0758d8473ea6d8813b
+Author: Juliusz Chroboczek <[EMAIL PROTECTED]>
+Date:   Mon Apr 28 19:53:11 2008 +0200
+
+Add bdf and pcf to font priority table.
+This mirrors the behaviour of the old mkfontdir, which prefers pcf to
+bdf fonts.
+
+commit 9c5594ad13e9143e86a7fd94f90858795ae2970b
+Author: Juliusz Chroboczek <[EMAIL PROTECTED]>
+Date:   Mon Apr 28 19:15:05 2008 +0200
+
+Fix typo in mkfontscale.c.
+This spurious break statement disabled checking for Apple and ISO Unicode
+CMaps in SFNT fonts.  Thanks to Alan Coopersmith and Stefan Dirsch.
+
+commit 5ca409f025fb35a20ab1ef4742a9034a36e3d959
+Author: Paulo Cesar Pereira de Andrade <[EMAIL PROTECTED]>
+Date:   Sat Mar 15 18:44:06 2008 -0300
+
+Compile warning fixes.
+
+Include headers for proper prototypes and "ansify" makeHashTable.
+
+Signed-off-by: Alan Coopersmith <[EMAIL PROTECTED]>
+
+commit 47ec1e2697eb856f823cc1b488c6b5a1d2077df9
+Author: Adam Jackson <[EMAIL PROTECTED]>
+Date:   Thu Mar 6 16:40:41 2008 -0500
+
+mkfontscale 1.0.4
+
 commit 1cb9c0074c5075bbce63ff3601712f34bbb74ca1
 Author: Adam Jackson <[EMAIL PROTECTED]>
 Date:   Sun Feb 24 21:34:00 2008 -0500
diff --git a/mkfontscale/aclocal.m4 b/mkfontscale/aclocal.m4
index e5b3eb6..5a8f292 100644
--- a/mkfontscale/aclocal.m4
+++ b/mkfontscale/aclocal.m4
@@ -87,14 +87,16 @@ fi])
 # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
 # -
 m4_define([_PKG_CONFIG],
-[if test -n "$$1"; then
-pkg_cv_[]$1="$$1"
- elif test -n "$PKG_CONFIG"; then
-PKG_CHECK_EXISTS([$3],
- [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
-   

pixman 0.10.0-2 MIGRATED to testing

2008-05-10 Thread Debian testing watch
FYI: The status of the pixman source package
in Debian's testing distribution has changed.

  Previous version: 0.10.0-1
  Current version:  0.10.0-2

-- 
This email is automatically generated; [EMAIL PROTECTED] is responsible.
See http://people.debian.org/~henning/trille/ for more information.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



xorg: Changes to 'debian-unstable'

2008-05-10 Thread Julien Cristau
 debian/changelog |   10 +-
 debian/local/dexconf |   12 ---
 debian/rules |7 +
 debian/x11-common.manpages   |1 
 debian/xserver-xorg.manpages |1 
 debian/xserver-xorg.postinst.in  |5 -
 debian/xserver-xorg.templates|   18 
 debian/xsfbs/xsfbs-autoreconf.mk |  150 ---
 debian/xsfbs/xsfbs.mk|   80 
 9 files changed, 15 insertions(+), 269 deletions(-)

New commits:
commit 29fbea0762b52a823a286a3ea3a8e2a30b638453
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sat May 10 21:49:48 2008 +0200

Also move the dexconf manpage from x11-common to xserver-xorg.

diff --git a/debian/changelog b/debian/changelog
index c430c88..f90f677 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -28,7 +28,7 @@ xorg (1:7.3+11) UNRELEASED; urgency=low
 This should prevent remote nss lookups and timeouts in some environments.
 Closes: #407788.
   * Add Kurdish debconf translation from Erdal Ronahi (closes: #477492).
-  * Move dexconf from x11-common to xserver-xorg.
+  * Move dexconf and its manpage from x11-common to xserver-xorg.
   * Remove pre-dependency on x11-common from xserver-xorg.
   * Drop the xlibs-data and xlibs-static-dev transitional packages.  These
 were kept around for the sarge->etch upgrade, so it's past time they went
diff --git a/debian/x11-common.manpages b/debian/x11-common.manpages
index 5e6aced..707f2c4 100644
--- a/debian/x11-common.manpages
+++ b/debian/x11-common.manpages
@@ -1,4 +1,3 @@
-debian/local/dexconf.1
 debian/local/Xwrapper.config.5
 debian/local/Xsession.5
 debian/local/Xsession.options.5
diff --git a/debian/xserver-xorg.manpages b/debian/xserver-xorg.manpages
new file mode 100644
index 000..9df885d
--- /dev/null
+++ b/debian/xserver-xorg.manpages
@@ -0,0 +1 @@
+debian/local/dexconf.1

commit 94e76fc9cd31cc3888d8a5c9c6c1051b3ab183b3
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sat May 10 21:42:01 2008 +0200

Run dh_installman in binary-indep as well, as x11-common is now built there.

diff --git a/debian/changelog b/debian/changelog
index 119425a..c430c88 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -39,6 +39,8 @@ xorg (1:7.3+11) UNRELEASED; urgency=low
 don't ask about it and don't add the corresponding option in the generated
 xorg.conf.  The option is on by default, and the only thing we used to do
 in dexconf is to explicitly enable it anyway.
+  * Run dh_installman in binary-indep as well, as x11-common is now built
+there.
 
   [ Christian Perrier ]
   * Debconf translations:
diff --git a/debian/rules b/debian/rules
index 91a85a5..2bc22d5 100755
--- a/debian/rules
+++ b/debian/rules
@@ -94,6 +94,7 @@ binary-indep: build install
dh_installdocs
dh_installchangelogs
dh_installinit -px11-common -u'start 70 S .'
+   dh_installman
dh_link
dh_compress
dh_fixperms

commit 7680630bec4e7a7098aa47c8b1c9cc591483d9f1
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sat May 10 21:40:08 2008 +0200

Handle x11-common in binary-indep instead of binary-arch

x11-common is now arch:all, so the special handling for it in
debian/rules needs to be done in -indep.

diff --git a/debian/rules b/debian/rules
index 28c4755..91a85a5 100755
--- a/debian/rules
+++ b/debian/rules
@@ -93,9 +93,12 @@ binary-indep: build install
dh_installdirs
dh_installdocs
dh_installchangelogs
+   dh_installinit -px11-common -u'start 70 S .'
dh_link
dh_compress
dh_fixperms
+   chown root:root debian/x11-common/etc/X11/Xsession
+   chmod 755 debian/x11-common/etc/X11/Xsession
dh_installdeb
dh_gencontrol -- 
-VF:XServer-Xorg-Detect-Depends=$(XSERVER_XORG_DETECT_DEPENDS)
dh_md5sums
@@ -111,14 +114,11 @@ binary-arch: build install
dh_installdirs
dh_installdocs
dh_installman
-   dh_installinit -px11-common -u'start 70 S .'
dh_installchangelogs
dh_link
dh_strip
dh_compress
dh_fixperms
-   chown root:root debian/x11-common/etc/X11/Xsession
-   chmod 755 debian/x11-common/etc/X11/Xsession
chown root:root debian/xserver-xorg/usr/bin/X
chmod ug+s debian/xserver-xorg/usr/bin/X
dh_installdeb

commit 9015e492693df06051980dffcd1ac598a6869a91
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sat May 10 21:38:12 2008 +0200

Remove all traces of the emulate3buttons stuff

dexconf, xserver-xorg.postinst:
the emulate3buttons question is gone, don't ask about it and don't add the
corresponding option in the generated xorg.conf.  The option is on by 
default,
and the only thing we used to do in dexconf is to explicitly enable it 
anyway.

diff --git a/debian/changelog b/debian/changelog
index f932937..119425a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -35,6 +3

Bug#393709: xserver-xorg-video-newport: video-newport should only exist on mips

2008-05-10 Thread Florian Lohoff
On Sat, May 10, 2008 at 04:46:51PM +0200, Julien Cristau wrote:
> On Tue, Oct 17, 2006 at 16:11:59 +0200, Florian Lohoff wrote:
> 
> > Hi,
> > the video-newport is an hardware grafix options only available on the
> > SGI Indy, Indigo2 and possibly the Indigo. These are architecture mips.
> > 
> > All other archs dont need this packet at all (not even mipsel).
> > 
> Hi Florian, sorry for the late answer,
> 
> we should indeed do this.  One problem though is we can't upload the
> package without binaries, and I don't have mips hardware, so this would
> require someone to build and upload it on mips every time.  Would you be
> willing to do this?  The other option being to build the package on
> casals.

Ahhh - right - i didnt think about that - i only thought it would be
okay to set "Architecture: mips" but there is no such thing as a source
only upload.

Flo
-- 
Florian Lohoff  [EMAIL PROTECTED] +49-171-2280134
Those who would give up a little freedom to get a little 
  security shall soon have neither - Benjamin Franklin


signature.asc
Description: Digital signature


Processed: setting package to xserver-xorg-video-radeonhd xserver-xorg-video-radeonhd-dbg, tagging 477433

2008-05-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.27
> #
> # xserver-xorg-video-radeonhd (1.2.1-2) UNRELEASED; urgency=low
> #
> #  * Build-depend on dpkg-dev >= 1.14.17 for dpkg-shlibdeps --warnings
> #(closes: #477433).
> #
> package xserver-xorg-video-radeonhd xserver-xorg-video-radeonhd-dbg
Ignoring bugs not assigned to: xserver-xorg-video-radeonhd 
xserver-xorg-video-radeonhd-dbg

> tags 477433 + pending
Bug#477433: xserver-xorg-video-radeonhd: depending on new dpkg-dev
There were no tags set.
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#477433: setting package to xserver-xorg-video-radeonhd xserver-xorg-video-radeonhd-dbg, tagging 477433

2008-05-10 Thread Julien Cristau
# Automatically generated email from bts, devscripts version 2.10.27
#
# xserver-xorg-video-radeonhd (1.2.1-2) UNRELEASED; urgency=low
#
#  * Build-depend on dpkg-dev >= 1.14.17 for dpkg-shlibdeps --warnings
#(closes: #477433).
#

package xserver-xorg-video-radeonhd xserver-xorg-video-radeonhd-dbg
tags 477433 + pending




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



xserver-xorg-video-radeonhd: Changes to 'debian-unstable'

2008-05-10 Thread Julien Cristau
 debian/changelog |3 +++
 debian/control   |2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 36ab7d1db901f92ac7622fdb12c1065a7e6f5510
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sat May 10 20:09:21 2008 +0200

Change pciutils-dev build-dep to libpci-dev for gratuitous name change.

diff --git a/debian/changelog b/debian/changelog
index da9ae74..70683e8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ xserver-xorg-video-radeonhd (1.2.1-2) UNRELEASED; urgency=low
 the package.
   * Build-depend on dpkg-dev >= 1.14.17 for dpkg-shlibdeps --warnings
 (closes: #477433).
+  * Change pciutils-dev build-dep to libpci-dev for gratuitous name change.
 
  -- Julien Cristau <[EMAIL PROTECTED]>  Sun, 20 Apr 2008 22:20:21 +0200
 
diff --git a/debian/control b/debian/control
index 402db9c..d2f8ed3 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
 Uploaders: David Nusinow <[EMAIL PROTECTED]>, Julien Cristau <[EMAIL 
PROTECTED]>
-Build-Depends: debhelper (>= 5), quilt, pkg-config, xserver-xorg-dev (>= 
2:1.4), x11proto-video-dev, x11proto-fonts-dev, x11proto-randr-dev (>= 1.2), 
x11proto-render-dev, automake, autoconf, libtool, xutils-dev, pciutils-dev, 
dpkg-dev (>= 1.14.17)
+Build-Depends: debhelper (>= 5), quilt, pkg-config, xserver-xorg-dev (>= 
2:1.4), x11proto-video-dev, x11proto-fonts-dev, x11proto-randr-dev (>= 1.2), 
x11proto-render-dev, automake, autoconf, libtool, xutils-dev, libpci-dev | 
pciutils-dev, dpkg-dev (>= 1.14.17)
 Standards-Version: 3.7.3
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-radeonhd
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-radeonhd.git

commit 3351b1a085447da0be9528ccc5d1870e8e27a18f
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sat May 10 20:01:41 2008 +0200

Build-depend on dpkg-dev >= 1.14.17 for dpkg-shlibdeps --warnings.

diff --git a/debian/changelog b/debian/changelog
index d855e50..da9ae74 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,8 @@ xserver-xorg-video-radeonhd (1.2.1-2) UNRELEASED; urgency=low
 
   * Install the upstream README files for the driver and for rhd_conntest in
 the package.
+  * Build-depend on dpkg-dev >= 1.14.17 for dpkg-shlibdeps --warnings
+(closes: #477433).
 
  -- Julien Cristau <[EMAIL PROTECTED]>  Sun, 20 Apr 2008 22:20:21 +0200
 
diff --git a/debian/control b/debian/control
index df23dfc..402db9c 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
 Uploaders: David Nusinow <[EMAIL PROTECTED]>, Julien Cristau <[EMAIL 
PROTECTED]>
-Build-Depends: debhelper (>= 5), quilt, pkg-config, xserver-xorg-dev (>= 
2:1.4), x11proto-video-dev, x11proto-fonts-dev, x11proto-randr-dev (>= 1.2), 
x11proto-render-dev, automake, autoconf, libtool, xutils-dev, pciutils-dev
+Build-Depends: debhelper (>= 5), quilt, pkg-config, xserver-xorg-dev (>= 
2:1.4), x11proto-video-dev, x11proto-fonts-dev, x11proto-randr-dev (>= 1.2), 
x11proto-render-dev, automake, autoconf, libtool, xutils-dev, pciutils-dev, 
dpkg-dev (>= 1.14.17)
 Standards-Version: 3.7.3
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-radeonhd
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-radeonhd.git


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#478400: marked as done (xserver-xorg-video-radeonhd: FTBFS: libpci-dev replaced pciutils-dev)

2008-05-10 Thread Debian Bug Tracking System

Your message dated Sat, 10 May 2008 20:07:42 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#478400: xserver-xorg-video-radeonhd: FTBFS: libpci-dev 
replaced pciutils-dev
has caused the Debian Bug report #478400,
regarding xserver-xorg-video-radeonhd: FTBFS: libpci-dev replaced pciutils-dev
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 [EMAIL PROTECTED]
immediately.)


-- 
478400: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=478400
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: xserver-xorg-video-radeonhd
Severity: serious
Version: 1.2.1-1
Tags: sid
Justification: fails to build from source

pciutils-dev is now deprecated and uninstallable (strict
versioned-dependency on pciutils).

It was superseded by libpci-dev.


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
On Sun, May  4, 2008 at 18:20:22 +1000, Aníbal Monsalve Salazar wrote:

> The arm build report above has the following lines:
> 
> [...]
> Building dependency tree...
> Note, selecting libpci-dev instead of pciutils-dev
> The following extra packages will be installed:
>   libpci-dev libpci3 libpixman-1-0 libpixman-1-dev libxau-dev libxau6 m4
>   x11-common x11proto-core-dev x11proto-input-dev x11proto-xext-dev zlib1g-dev
> [...]
> 
> So there you have the name backwards-compatibility (for arm so far).
> 
Closing the bug then.

Cheers,
Julien

--- End Message ---


[bts-link] source package xorg-server

2008-05-10 Thread bts-link-upstream
#
# bts-link upstream status pull for source package xorg-server
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user [EMAIL PROTECTED]

# remote status report for #164379
#  * https://bugs.freedesktop.org/show_bug.cgi?id=10015
#  * remote status changed: NEW -> RESOLVED
usertags 164379 - status-NEW
usertags 164379 + status-RESOLVED

# remote status report for #352315
#  * https://bugs.freedesktop.org/show_bug.cgi?id=6842
#  * remote status changed: NEW -> RESOLVED
usertags 352315 - status-NEW
usertags 352315 + status-RESOLVED

# remote status report for #425663
#  * https://bugs.freedesktop.org/show_bug.cgi?id=10015
#  * remote status changed: NEW -> RESOLVED
usertags 425663 - status-NEW
usertags 425663 + status-RESOLVED

thanks


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: setting package to xserver-xorg-video-newport, tagging 402178, tagging 393709

2008-05-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.27
> #
> # xserver-xorg-video-newport (1:0.2.1-5) UNRELEASED; urgency=high
> #
> #  * Fix XAA module loading (closes: #402178).
> #  * Only build on mips, this driver is useless on other architectures
> #(closes: #393709).  Thanks, Florian Lohoff!
> #
> package xserver-xorg-video-newport
Ignoring bugs not assigned to: xserver-xorg-video-newport

> tags 402178 + pending
Bug#402178: Debian MIPS Xorg: server won't start
Tags were: fixed-upstream
Tags added: pending

> tags 393709 + pending
Bug#393709: xserver-xorg-video-newport: video-newport should only exist on mips
There were no tags set.
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#402178: setting package to xserver-xorg-video-newport, tagging 402178, tagging 393709

2008-05-10 Thread Julien Cristau
# Automatically generated email from bts, devscripts version 2.10.27
#
# xserver-xorg-video-newport (1:0.2.1-5) UNRELEASED; urgency=high
#
#  * Fix XAA module loading (closes: #402178).
#  * Only build on mips, this driver is useless on other architectures
#(closes: #393709).  Thanks, Florian Lohoff!
#

package xserver-xorg-video-newport
tags 402178 + pending
tags 393709 + pending




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



xserver-xorg-video-newport: Changes to 'debian-unstable'

2008-05-10 Thread Julien Cristau
 debian/changelog |   11 ++
 debian/control   |2 
 debian/rules |2 
 debian/xsfbs/xsfbs-autoreconf.mk |  150 ---
 debian/xsfbs/xsfbs.mk|  107 ---
 debian/xsfbs/xsfbs.sh|7 -
 src/newport_driver.c |9 +-
 7 files changed, 37 insertions(+), 251 deletions(-)

New commits:
commit 1d193564dd552bbfe2ada16d137031b47d2fb5a3
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sat May 10 16:54:15 2008 +0200

Only build on mips, this driver is useless on other architectures

closes: #393709

diff --git a/debian/changelog b/debian/changelog
index 28ddeb3..a188d69 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,8 @@ xserver-xorg-video-newport (1:0.2.1-5) UNRELEASED; urgency=high
   [ Julien Cristau ]
   * Install the upstream README.
   * Fix XAA module loading (closes: #402178).
+  * Only build on mips, this driver is useless on other architectures
+(closes: #393709).  Thanks, Florian Lohoff!
 
  -- Brice Goglin <[EMAIL PROTECTED]>  Sat, 15 Sep 2007 01:59:43 +0200
 
diff --git a/debian/control b/debian/control
index 286e4d9..60e5d66 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,7 @@ XS-Vcs-Git: 
git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-newport
 XS-Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-newport.git
 
 Package: xserver-xorg-video-newport
-Architecture: alpha amd64 arm armeb armel hppa hurd-i386 i386 ia64 
kfreebsd-i386 m68k mips mipsel netbsd-i386 powerpc
+Architecture: mips
 Depends: ${shlibs:Depends}, ${misc:Depends}, ${xserver:Depends}
 Provides: ${xviddriver:Provides}
 Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-newport

commit c751dfd771e710dc56615c2728beece8bb902a46
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sat May 10 16:35:57 2008 +0200

Update changelog

diff --git a/debian/changelog b/debian/changelog
index 4353e99..28ddeb3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,13 @@
-xserver-xorg-video-newport (1:0.2.1-5) UNRELEASED; urgency=low
+xserver-xorg-video-newport (1:0.2.1-5) UNRELEASED; urgency=high
+
+  * High urgency for RC bug fix.
 
   [ Brice Goglin ]
   * Add upstream URL to debian/copyright.
 
   [ Julien Cristau ]
   * Install the upstream README.
+  * Fix XAA module loading (closes: #402178).
 
  -- Brice Goglin <[EMAIL PROTECTED]>  Sat, 15 Sep 2007 01:59:43 +0200
 

commit 6199170bb3b3179f22e1ba953154e5b3934f7891
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Mon Feb 25 11:52:20 2008 +0100

Bug#11761: Fix xaa initialization

Load the xaa module when NoAccel is unset, so it actually has a chance
to work.
(cherry picked from commit 86b6bb11ffc4bce5886b5bc28b8df41af89f0925)

diff --git a/src/newport_driver.c b/src/newport_driver.c
index 2bb6cab..4b2e0db 100644
--- a/src/newport_driver.c
+++ b/src/newport_driver.c
@@ -593,12 +593,15 @@ NewportScreenInit(int index, ScreenPtr pScreen, int argc, 
char **argv)
pNewport->NoAccel = FALSE;
if (xf86ReturnOptValBool(pNewport->Options, OPTION_NOACCEL, FALSE)) 
{
-   if (!xf86LoadSubModule(pScrn, "xaa"))
-   return FALSE;
-   xf86LoaderReqSymLists(xaaSymbols, NULL);
pNewport->NoAccel = TRUE;
xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, "Acceleration disabled\n");
}
+   if (!pNewport->NoAccel) {
+   if (!xf86LoadSubModule(pScrn, "xaa"))
+   pNewport->NoAccel = TRUE;
+   else
+   xf86LoaderReqSymLists(xaaSymbols, NULL);
+   }
 #if 0
if (pScrn->bitsPerPixel < 24)
{ /* not implemented yet */

commit efb50819c1c7742c834385d34c7d6859d8aaff00
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sat May 10 15:53:38 2008 +0200

Install the upstream README.

diff --git a/debian/changelog b/debian/changelog
index 518d9a1..4353e99 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,11 @@
 xserver-xorg-video-newport (1:0.2.1-5) UNRELEASED; urgency=low
 
+  [ Brice Goglin ]
   * Add upstream URL to debian/copyright.
 
+  [ Julien Cristau ]
+  * Install the upstream README.
+
  -- Brice Goglin <[EMAIL PROTECTED]>  Sat, 15 Sep 2007 01:59:43 +0200
 
 xserver-xorg-video-newport (1:0.2.1-4) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 6ab98fe..c17f63d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -70,7 +70,7 @@ binary-arch: build install serverabi
dh_testdir
dh_testroot
 
-   dh_installdocs
+   dh_installdocs README
dh_installchangelogs ChangeLog
dh_install --sourcedir=debian/tmp --list-missing
dh_link

commit c87ea43906787791a87a659c0a9d6312945ffb32
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sun Apr 13 03:12:18 2008 +0200

Remove xsfbs-autoreconf.mk

It has never been used, and that doesn't look likely to ch

[bts-link] source package xserver-xorg-input-evdev

2008-05-10 Thread bts-link-upstream
#
# bts-link upstream status pull for source package xserver-xorg-input-evdev
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user [EMAIL PROTECTED]

# remote status report for #423090
#  * https://bugs.freedesktop.org/show_bug.cgi?id=13180
#  * remote status changed: NEW -> RESOLVED
usertags 423090 - status-NEW
usertags 423090 + status-RESOLVED

thanks


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



xserver-xorg-video-nv_2.1.9-1_i386.changes ACCEPTED

2008-05-10 Thread Debian Installer

Accepted:
xserver-xorg-video-nv_2.1.9-1.diff.gz
  to pool/main/x/xserver-xorg-video-nv/xserver-xorg-video-nv_2.1.9-1.diff.gz
xserver-xorg-video-nv_2.1.9-1.dsc
  to pool/main/x/xserver-xorg-video-nv/xserver-xorg-video-nv_2.1.9-1.dsc
xserver-xorg-video-nv_2.1.9-1_i386.deb
  to pool/main/x/xserver-xorg-video-nv/xserver-xorg-video-nv_2.1.9-1_i386.deb
xserver-xorg-video-nv_2.1.9.orig.tar.gz
  to pool/main/x/xserver-xorg-video-nv/xserver-xorg-video-nv_2.1.9.orig.tar.gz


Override entries for your package:
xserver-xorg-video-nv_2.1.9-1.dsc - source x11
xserver-xorg-video-nv_2.1.9-1_i386.deb - optional x11

Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#393709: xserver-xorg-video-newport: video-newport should only exist on mips

2008-05-10 Thread Julien Cristau
On Tue, Oct 17, 2006 at 16:11:59 +0200, Florian Lohoff wrote:

> Hi,
> the video-newport is an hardware grafix options only available on the
> SGI Indy, Indigo2 and possibly the Indigo. These are architecture mips.
> 
> All other archs dont need this packet at all (not even mipsel).
> 
Hi Florian, sorry for the late answer,

we should indeed do this.  One problem though is we can't upload the
package without binaries, and I don't have mips hardware, so this would
require someone to build and upload it on mips every time.  Would you be
willing to do this?  The other option being to build the package on
casals.

Cheers,
Julien



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



[bts-link] source package xserver-xorg-video-radeonhd

2008-05-10 Thread bts-link-upstream
#
# bts-link upstream status pull for source package xserver-xorg-video-radeonhd
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user [EMAIL PROTECTED]

# remote status report for #459691
#  * https://bugs.freedesktop.org/show_bug.cgi?id=13983
#  * remote status changed: NEW -> RESOLVED
usertags 459691 - status-NEW
usertags 459691 + status-RESOLVED

thanks


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



[bts-link] source package xdm

2008-05-10 Thread bts-link-upstream
#
# bts-link upstream status pull for source package xdm
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user [EMAIL PROTECTED]

# remote status report for #67086
#  * https://bugs.freedesktop.org/show_bug.cgi?id=10145
#  * remote status changed: REOPENED -> RESOLVED
#  * remote resolution changed: (?) -> FIXED
#  * closed upstream
tags 67086 + fixed-upstream
usertags 67086 - status-REOPENED
usertags 67086 + status-RESOLVED resolution-FIXED

thanks


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: [bts-link] source package xdm

2008-05-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> #
> # bts-link upstream status pull for source package xdm
> # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
> #
> user [EMAIL PROTECTED]
Setting user to [EMAIL PROTECTED] (was [EMAIL PROTECTED]).
> # remote status report for #67086
> #  * https://bugs.freedesktop.org/show_bug.cgi?id=10145
> #  * remote status changed: REOPENED -> RESOLVED
> #  * remote resolution changed: (?) -> FIXED
> #  * closed upstream
> tags 67086 + fixed-upstream
Bug#67086: xdm: passes socket file descriptors to children
Tags were: upstream
Tags added: fixed-upstream

> usertags 67086 - status-REOPENED
Bug#67086: xdm: passes socket file descriptors to children
Usertags were: status-REOPENED.
Usertags are now: .
> usertags 67086 + status-RESOLVED resolution-FIXED
Bug#67086: xdm: passes socket file descriptors to children
There were no usertags set.
Usertags are now: status-RESOLVED resolution-FIXED.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



xorg: Changes to 'debian-unstable'

2008-05-10 Thread Julien Cristau
 debian/changelog  |2 ++
 debian/scripts/vars.alpha |2 +-
 debian/scripts/vars.arm   |2 +-
 debian/scripts/vars.armeb |2 +-
 debian/scripts/vars.armel |2 +-
 debian/scripts/vars.hurd-i386 |2 +-
 debian/scripts/vars.i386  |2 +-
 debian/scripts/vars.ia64  |2 +-
 debian/scripts/vars.kfreebsd-i386 |2 +-
 debian/scripts/vars.m32r  |2 +-
 debian/scripts/vars.m68k  |2 +-
 debian/scripts/vars.mipsel|2 +-
 12 files changed, 13 insertions(+), 11 deletions(-)

New commits:
commit 2e3fa5d9ab13a8a2ec00f8774c8ed01019a1d7ac
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sat May 10 16:52:19 2008 +0200

xserver-xorg-video-newport is mips-only, don't depend on it on other 
architectures.

diff --git a/debian/changelog b/debian/changelog
index e658a5d..d4142a4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -35,6 +35,8 @@ xorg (1:7.3+11) UNRELEASED; urgency=low
   * Drop the xlibs-data and xlibs-static-dev transitional packages.  These
 were kept around for the sarge->etch upgrade, so it's past time they went
 away (closes: #477547, #477550).
+  * xserver-xorg-video-newport is mips-only, don't depend on it on other
+architectures.
 
   [ Christian Perrier ]
   * Debconf translations:
diff --git a/debian/scripts/vars.alpha b/debian/scripts/vars.alpha
index 46368c6..2c64f16 100755
--- a/debian/scripts/vars.alpha
+++ b/debian/scripts/vars.alpha
@@ -3,7 +3,7 @@
 #
 # This file gets included by both debian/rules (make) AND the scripts in
 # debian/scripts (Bourne shell).
-XSERVER_XORG_VIDEO_DEPENDS="xserver-xorg-video-apm, xserver-xorg-video-ark, 
xserver-xorg-video-ati, xserver-xorg-video-chips, xserver-xorg-video-cirrus, 
xserver-xorg-video-cyrix, xserver-xorg-video-dummy, xserver-xorg-video-fbdev, 
xserver-xorg-video-glint, xserver-xorg-video-i128, xserver-xorg-video-i740, 
xserver-xorg-video-imstt, xserver-xorg-video-mga, xserver-xorg-video-neomagic, 
xserver-xorg-video-newport, xserver-xorg-video-nsc, xserver-xorg-video-nv, 
xserver-xorg-video-radeonhd, xserver-xorg-video-rendition, 
xserver-xorg-video-s3, xserver-xorg-video-s3virge, xserver-xorg-video-savage, 
xserver-xorg-video-siliconmotion, xserver-xorg-video-sis, 
xserver-xorg-video-sisusb, xserver-xorg-video-tdfx, xserver-xorg-video-tga, 
xserver-xorg-video-trident, xserver-xorg-video-tseng, xserver-xorg-video-vesa, 
xserver-xorg-video-vga, xserver-xorg-video-via, xserver-xorg-video-voodoo, 
xserver-xorg-video-v4l"
+XSERVER_XORG_VIDEO_DEPENDS="xserver-xorg-video-apm, xserver-xorg-video-ark, 
xserver-xorg-video-ati, xserver-xorg-video-chips, xserver-xorg-video-cirrus, 
xserver-xorg-video-cyrix, xserver-xorg-video-dummy, xserver-xorg-video-fbdev, 
xserver-xorg-video-glint, xserver-xorg-video-i128, xserver-xorg-video-i740, 
xserver-xorg-video-imstt, xserver-xorg-video-mga, xserver-xorg-video-neomagic, 
xserver-xorg-video-nsc, xserver-xorg-video-nv, xserver-xorg-video-radeonhd, 
xserver-xorg-video-rendition, xserver-xorg-video-s3, 
xserver-xorg-video-s3virge, xserver-xorg-video-savage, 
xserver-xorg-video-siliconmotion, xserver-xorg-video-sis, 
xserver-xorg-video-sisusb, xserver-xorg-video-tdfx, xserver-xorg-video-tga, 
xserver-xorg-video-trident, xserver-xorg-video-tseng, xserver-xorg-video-vesa, 
xserver-xorg-video-vga, xserver-xorg-video-via, xserver-xorg-video-voodoo, 
xserver-xorg-video-v4l"
 
 # , xserver-xorg-video-glide,
 
diff --git a/debian/scripts/vars.arm b/debian/scripts/vars.arm
index 9c83e4c..a86a11d 100755
--- a/debian/scripts/vars.arm
+++ b/debian/scripts/vars.arm
@@ -3,7 +3,7 @@
 #
 # This file gets included by both debian/rules (make) AND the scripts in
 # debian/scripts (Bourne shell).
-XSERVER_XORG_VIDEO_DEPENDS="xserver-xorg-video-apm, xserver-xorg-video-ark, 
xserver-xorg-video-ati, xserver-xorg-video-chips, xserver-xorg-video-cirrus, 
xserver-xorg-video-cyrix, xserver-xorg-video-dummy, xserver-xorg-video-fbdev, 
xserver-xorg-video-glint, xserver-xorg-video-i128, xserver-xorg-video-i740, 
xserver-xorg-video-imstt, xserver-xorg-video-mga, xserver-xorg-video-neomagic, 
xserver-xorg-video-newport, xserver-xorg-video-nsc, xserver-xorg-video-nv, 
xserver-xorg-video-radeonhd, xserver-xorg-video-rendition, 
xserver-xorg-video-s3, xserver-xorg-video-s3virge, xserver-xorg-video-savage, 
xserver-xorg-video-siliconmotion, xserver-xorg-video-sis, 
xserver-xorg-video-sisusb, xserver-xorg-video-tdfx, xserver-xorg-video-tga, 
xserver-xorg-video-trident, xserver-xorg-video-tseng, xserver-xorg-video-vesa, 
xserver-xorg-video-vga, xserver-xorg-video-via, xserver-xorg-video-voodoo, 
xserver-xorg-video-v4l"
+XSERVER_XORG_VIDEO_DEPENDS="xserver-xorg-video-apm, xserver-xorg-video-ark, 
xserver-xorg-video-ati, xserver-xorg-video-chips, xserver-xorg-video-cirrus, 
xserver-xorg-video-cyrix, xserver-xorg-video-dummy, xserver-xorg-video-fbdev, 
xserver-xorg-video-glint, xserver-xorg-video-i128, xserver-xorg-vide

Processing of xserver-xorg-video-nv_2.1.9-1_i386.changes

2008-05-10 Thread Archive Administrator
xserver-xorg-video-nv_2.1.9-1_i386.changes uploaded successfully to localhost
along with the files:
  xserver-xorg-video-nv_2.1.9-1.dsc
  xserver-xorg-video-nv_2.1.9.orig.tar.gz
  xserver-xorg-video-nv_2.1.9-1.diff.gz
  xserver-xorg-video-nv_2.1.9-1_i386.deb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



xserver-xorg-video-nv: Changes to 'refs/tags/xserver-xorg-video-nv-1_2.1.9-1'

2008-05-10 Thread Brice Goglin
Tag 'xserver-xorg-video-nv-1_2.1.9-1' created by Brice Goglin <[EMAIL 
PROTECTED]> at 2008-05-10 14:37 +

Tagging upload of xserver-xorg-video-nv 1:2.1.9-1 to unstable.

Changes since xserver-xorg-video-nv-1_2.1.8-3:
Aaron Plattner (8):
  Bug #14885: Add missing static keywords.
  I win at C.
  Sort the IsSupported table.
  Fix a few startup bugs.
  More G80s.
  Add an option to allow validation of dual-link DVI modes.
  Yet more G80s.
  Bump to 2.1.9.

Brice Goglin (2):
  Merge tag 'nv-2.1.9' into debian-unstable
  New upstream release

Matthieu Herrb (1):
  Makefile.am: nuke RCS Id

---
 ChangeLog |   60 ++
 aclocal.m4|2 -
 configure |   20 +-
 configure.ac  |2 -
 debian/changelog  |6 +
 ltmain.sh |2 -
 man/Makefile.am   |1 
 man/Makefile.in   |1 
 man/nv.man|4 +++
 src/g80_dac.c |2 -
 src/g80_display.c |8 +++
 src/g80_driver.c  |   17 +--
 src/g80_output.c  |4 +++
 src/g80_sor.c |7 +++---
 src/g80_type.h|1 
 src/nv_driver.c   |   37 +
 16 files changed, 131 insertions(+), 43 deletions(-)
---


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



xserver-xorg-video-nv: Changes to 'debian-unstable'

2008-05-10 Thread Brice Goglin
 ChangeLog |   60 ++
 aclocal.m4|2 -
 configure |   20 +-
 configure.ac  |2 -
 debian/changelog  |6 +
 ltmain.sh |2 -
 man/Makefile.am   |1 
 man/Makefile.in   |1 
 man/nv.man|4 +++
 src/g80_dac.c |2 -
 src/g80_display.c |8 +++
 src/g80_driver.c  |   17 +--
 src/g80_output.c  |4 +++
 src/g80_sor.c |7 +++---
 src/g80_type.h|1 
 src/nv_driver.c   |   37 +
 16 files changed, 131 insertions(+), 43 deletions(-)

New commits:
commit 5cb93615a7b30e51f8796d245bb4ba2bb41446e8
Author: Brice Goglin <[EMAIL PROTECTED]>
Date:   Sat May 10 16:23:08 2008 +0200

New upstream release

diff --git a/ChangeLog b/ChangeLog
index 220ef60..58afb75 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,63 @@
+commit cca0a00c89730c8338af44e62438babc93f078fb
+Author: Aaron Plattner <[EMAIL PROTECTED]>
+Date:   Fri May 9 18:45:46 2008 -0700
+
+Bump to 2.1.9.
+
+commit 9c98d2ca942049322688b5796a2ed041fd48282d
+Author: Aaron Plattner <[EMAIL PROTECTED]>
+Date:   Fri May 9 18:44:57 2008 -0700
+
+Yet more G80s.
+
+Sometimes I wish we made fewer products.
+
+commit cb83fbdfa22aa408e6692256cd44b78fef53e801
+Author: Aaron Plattner <[EMAIL PROTECTED]>
+Date:   Fri May 9 18:31:07 2008 -0700
+
+Add an option to allow validation of dual-link DVI modes.
+
+These modes don't work at bootup (i.e. power saving) configuration on all 
GPUs,
+so they're still disabled by default.  This option allows users to enable 
them
+in case they actually work.
+
+commit 8db2d4e63508f59299098e092ae85e543cf61d03
+Author: Aaron Plattner <[EMAIL PROTECTED]>
+Date:   Sun Apr 27 16:23:40 2008 -0700
+
+More G80s.
+
+commit 4aa43a2b66e473f9154f1582f5cf0e4b4596e485
+Author: Aaron Plattner <[EMAIL PROTECTED]>
+Date:   Sun Apr 27 16:23:28 2008 -0700
+
+Fix a few startup bugs.
+
+commit 0ddee2347109e8c64bd2cb4693b97c3fa3aab94b
+Author: Aaron Plattner <[EMAIL PROTECTED]>
+Date:   Tue Mar 25 16:35:05 2008 -0700
+
+Sort the IsSupported table.
+
+commit c0c7d610800161976fd7dce064beae05d2d4195b
+Author: Aaron Plattner <[EMAIL PROTECTED]>
+Date:   Mon Apr 28 14:43:12 2008 -0700
+
+I win at C.
+
+commit b62a7cf70db356918aa04fb3f30bf1fd1142b9d5
+Author: Matthieu Herrb <[EMAIL PROTECTED]>
+Date:   Sat Mar 8 23:43:58 2008 +0100
+
+Makefile.am: nuke RCS Id
+
+commit f88ef390985babdb2b489cf52bfa587e1879db38
+Author: Aaron Plattner <[EMAIL PROTECTED]>
+Date:   Fri Mar 7 12:32:40 2008 -0800
+
+Bug #14885: Add missing static keywords.
+
 commit 4965498f238fbe3d8a0d0b84bf8bceb9237e472a
 Author: Aaron Plattner <[EMAIL PROTECTED]>
 Date:   Thu Mar 6 13:53:54 2008 -0800
diff --git a/aclocal.m4 b/aclocal.m4
index ef947f1..62b902b 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -21,7 +21,7 @@ To do so, use the procedure documented by the package, 
typically `autoreconf'.])
 
 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
 
-# serial 52 Debian 1.5.26-1 AC_PROG_LIBTOOL
+# serial 52 Debian 1.5.26-4 AC_PROG_LIBTOOL
 
 
 # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED)
diff --git a/configure b/configure
index eaa73e9..93d3080 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.61 for xf86-video-nv 2.1.8.
+# Generated by GNU Autoconf 2.61 for xf86-video-nv 2.1.9.
 #
 # Report bugs to .
 #
@@ -728,8 +728,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
 # Identity of this package.
 PACKAGE_NAME='xf86-video-nv'
 PACKAGE_TARNAME='xf86-video-nv'
-PACKAGE_VERSION='2.1.8'
-PACKAGE_STRING='xf86-video-nv 2.1.8'
+PACKAGE_VERSION='2.1.9'
+PACKAGE_STRING='xf86-video-nv 2.1.9'
 PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=xorg'
 
 ac_unique_file="Makefile.am"
@@ -1425,7 +1425,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures xf86-video-nv 2.1.8 to adapt to many kinds of systems.
+\`configure' configures xf86-video-nv 2.1.9 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1495,7 +1495,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of xf86-video-nv 2.1.8:";;
+ short | recursive ) echo "Configuration of xf86-video-nv 2.1.9:";;
esac
   cat <<\_ACEOF
 
@@ -1613,7 +1613,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-xf86-video-nv configure 2.1.8
+xf86-video-nv configure 2.1.9
 generated by GNU Autoconf 2.61
 
 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1627,7 +1627,7 @@ ca

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

2008-05-10 Thread Brice Goglin
 configure.ac  |2 +-
 man/Makefile.am   |1 -
 man/nv.man|4 
 src/g80_dac.c |2 +-
 src/g80_display.c |8 
 src/g80_driver.c  |   17 ++---
 src/g80_output.c  |4 
 src/g80_sor.c |7 ---
 src/g80_type.h|1 +
 src/nv_driver.c   |   37 -
 10 files changed, 53 insertions(+), 30 deletions(-)

New commits:
commit cca0a00c89730c8338af44e62438babc93f078fb
Author: Aaron Plattner <[EMAIL PROTECTED]>
Date:   Fri May 9 18:45:46 2008 -0700

Bump to 2.1.9.

diff --git a/configure.ac b/configure.ac
index 1b38183..d20a2f1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
 
 AC_PREREQ(2.57)
 AC_INIT([xf86-video-nv],
-2.1.8,
+2.1.9,
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 xf86-video-nv)
 

commit 9c98d2ca942049322688b5796a2ed041fd48282d
Author: Aaron Plattner <[EMAIL PROTECTED]>
Date:   Fri May 9 18:44:57 2008 -0700

Yet more G80s.

Sometimes I wish we made fewer products.

diff --git a/src/nv_driver.c b/src/nv_driver.c
index 54f8b66..2f1b77e 100644
--- a/src/nv_driver.c
+++ b/src/nv_driver.c
@@ -394,10 +394,13 @@ static SymTabRec NVKnownChipsets[] =
   { 0x10DE0609, "GeForce 8800M GTS" },
   { 0x10DE060C, "GeForce 8800M GTX" },
   { 0x10DE060D, "GeForce 8800 GS" },
+  { 0x10DE0610, "GeForce 9600 GSO" },
   { 0x10DE0611, "GeForce 8800 GT" },
+  { 0x10DE0612, "GeForce 9800 GTX" },
   { 0x10DE061A, "Quadro FX 3700" },
   { 0x10DE061C, "Quadro FX 3600M" },
   { 0x10DE0622, "GeForce 9600 GT" },
+  { 0x10DE0623, "GeForce 9600 GS" },
   { 0x10DE06E4, "GeForce 8400 GS" },
 
   {-1, NULL}

commit cb83fbdfa22aa408e6692256cd44b78fef53e801
Author: Aaron Plattner <[EMAIL PROTECTED]>
Date:   Fri May 9 18:31:07 2008 -0700

Add an option to allow validation of dual-link DVI modes.

These modes don't work at bootup (i.e. power saving) configuration on all 
GPUs,
so they're still disabled by default.  This option allows users to enable 
them
in case they actually work.

diff --git a/man/nv.man b/man/nv.man
index 7a08823..19816bd 100644
--- a/man/nv.man
+++ b/man/nv.man
@@ -162,6 +162,10 @@ Default: XAA.
 Enable or disable flat panel dithering by default.
 Dithering can also be enabled or disabled using the RandR 1.2 \*qdither\*q 
output property.
 Default: off.
+.TP
+.BI "Option \*qAllowDualLinkModes\*q \*q" boolean \*q
+Allow validation of dual-link DVI modes.
+Not all GPUs are configured at boot time to be able to handle dual-link modes, 
so they are disabled by default.
 .
 .\" RandR 1.2
 .PP
diff --git a/src/g80_driver.c b/src/g80_driver.c
index 99ea737..a0182a1 100644
--- a/src/g80_driver.c
+++ b/src/g80_driver.c
@@ -106,14 +106,16 @@ typedef enum {
 OPTION_NOACCEL,
 OPTION_ACCEL_METHOD,
 OPTION_FP_DITHER,
+OPTION_ALLOW_DUAL_LINK,
 } G80Opts;
 
 static const OptionInfoRec G80Options[] = {
-{ OPTION_HW_CURSOR, "HWCursor", OPTV_BOOLEAN,   {0}, FALSE },
-{ OPTION_NOACCEL,   "NoAccel",  OPTV_BOOLEAN,   {0}, FALSE },
-{ OPTION_ACCEL_METHOD,  "AccelMethod",  OPTV_STRING,{0}, FALSE },
-{ OPTION_FP_DITHER, "FPDither", OPTV_BOOLEAN,   {0}, FALSE },
-{ -1,   NULL,   OPTV_NONE,  {0}, FALSE }
+{ OPTION_HW_CURSOR, "HWCursor", OPTV_BOOLEAN,   {0}, 
FALSE },
+{ OPTION_NOACCEL,   "NoAccel",  OPTV_BOOLEAN,   {0}, 
FALSE },
+{ OPTION_ACCEL_METHOD,  "AccelMethod",  OPTV_STRING,{0}, 
FALSE },
+{ OPTION_FP_DITHER, "FPDither", OPTV_BOOLEAN,   {0}, 
FALSE },
+{ OPTION_ALLOW_DUAL_LINK,   "AllowDualLinkModes",   OPTV_BOOLEAN,   {0}, 
FALSE },
+{ -1,   NULL,   OPTV_NONE,  {0}, 
FALSE }
 };
 
 static Bool
@@ -331,6 +333,7 @@ G80PreInit(ScrnInfoPtr pScrn, int flags)
 }
 
 pNv->Dither = xf86ReturnOptValBool(pNv->Options, OPTION_FP_DITHER, FALSE);
+pNv->AllowDualLink = xf86ReturnOptValBool(pNv->Options, 
OPTION_ALLOW_DUAL_LINK, FALSE);
 
 /* Set the bits per RGB for 8bpp mode */
 if(pScrn->depth == 8)
diff --git a/src/g80_sor.c b/src/g80_sor.c
index 02a5f3b..202e838 100644
--- a/src/g80_sor.c
+++ b/src/g80_sor.c
@@ -69,9 +69,10 @@ G80SorDPMSSet(xf86OutputPtr output, int mode)
 static int
 G80TMDSModeValid(xf86OutputPtr output, DisplayModePtr mode)
 {
-// Disable dual-link modes until I can find a way to make them work
-// reliably.
-if (mode->Clock > 165000)
+G80Ptr pNv = G80PTR(output->scrn);
+
+// Disable dual-link modes unless enabled in the config file.
+if (mode->Clock > 165000 && !pNv->AllowDualLink)
 return MODE_CLOCK_HIGH;
 
 return G80OutputModeValid(output, mode);
diff --git a/src/g80_type.h b/src/g80_type.h
index 5f4ee08..30ef3fe 100644
--- a/src/g80_type.h
+++ b/src/g80_type.h
@@ -67,6 +67,7 @@ typedef struct G80Rec {
 Bool

Bug#480285: marked as done (mesa-utils: All programs from package give segmentation fault)

2008-05-10 Thread Debian Bug Tracking System

Your message dated Sat, 10 May 2008 13:01:59 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#480285: More information
has caused the Debian Bug report #480285,
regarding mesa-utils: All programs from package give segmentation fault
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 [EMAIL PROTECTED]
immediately.)


-- 
480285: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=480285
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: mesa-utils
Version: 7.0.3-1
Severity: grave
Justification: renders package unusable


All programs give a segmentation fault when starting (glxinfo, glx,
gears, etc). It seems the problem is caused by the recent upgrade to
xorg 1:7.3+10. Before this upgrade everything went OK!

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-3-k7 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages mesa-utils depends on:
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libgl1-mesa-glx [libgl1]  7.0.3-1A free implementation of the OpenG
ii  libx11-6  2:1.0.3-7  X11 client-side library

mesa-utils recommends no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
On Sat, May 10, 2008 at 12:17:35 +0200, Eeltje de Vries wrote:

> As you can see I have libGL.so.1, which seems to be causing the problem, 
> however I do not know how to get rid of it, so the problems are still there 
> for me. I installed a new NVidia driver using the NVidia installer, maybe  
> that caused my problems...

Yes, probably.  Try removing that libGL.so.1 and reinstalling the
libgl1-mesa-glx package.  Closing this bug.

Cheers,
Julien

--- End Message ---


Bug#480285: More information

2008-05-10 Thread Eeltje de Vries
I am not familiar with backtracing! However with 'gdb' I produced the 
following output, may be it gives you some information:

Program received signal SIGSEGV, Segmentation fault.
0xb7da6adc in malloc () from /lib/i686/cmov/libc.so.6
(gdb) bt
#0  0xb7da6adc in malloc () from /lib/i686/cmov/libc.so.6
#1  0xb7eba65a in ?? () from /usr/lib/libGL.so.1
#2  0x002c in ?? ()
#3  0xb77bc002 in _nv000821gl () from /usr/lib/libGLcore.so.1
#4  0x0007 in ?? ()
#5  0xb7ebc360 in ?? () from /usr/lib/libGL.so.1
#6  0x029a in ?? ()
#7  0x1216 in ?? ()
#8  0x0001 in ?? ()
#9  0xb7ee1730 in ?? () from /usr/lib/libGL.so.1
#10 0xb7efee10 in _nv000510gl () from /usr/lib/libGL.so.1
#11 0x0002 in ?? ()
#12 0x0007 in ?? ()
#13 0x in ?? ()
(gdb)

As you can see I have libGL.so.1, which seems to be causing the problem, 
however I do not know how to get rid of it, so the problems are still there 
for me. I installed a new NVidia driver using the NVidia installer, maybe  
that caused my problems...
-- 
Eeltje de Vries




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]