Bug#439423:

2007-08-25 Thread Marc Poulhiès
Thanks. I applied provided patch and it works like a charm!

Marc



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



libxpm: Changes to 'upstream-unstable'

2007-08-25 Thread Julien Cristau
 acinclude.m4 |   47 +
 configure.ac |   22 +++
 cxpm/Makefile.am |   11 +++
 cxpm/cxpm.c  |   50 ---
 src/Makefile.am  |5 +--
 src/RdFToI.c |4 ++
 src/WrFFrI.c |   15 +-
 src/XpmI.h   |4 ++
 src/data.c   |2 -
 src/parse.c  |2 -
 src/simx.h   |   17 +++-
 sxpm/Makefile.am |   12 +++-
 sxpm/sxpm.c  |   77 +++
 13 files changed, 225 insertions(+), 43 deletions(-)

New commits:
commit 3e37dd39b6169af9928d5b959c40ba79a07450ee
Author: Alan Coopersmith [EMAIL PROTECTED]
Date:   Wed Aug 22 13:23:30 2007 -0700

Version bump: 3.5.7

diff --git a/configure.ac b/configure.ac
index ff7e245..2f56e4d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
 # $Id$
 
 AC_PREREQ(2.57)
-AC_INIT([libXpm], 3.5.6, 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], libXpm)
+AC_INIT([libXpm], 3.5.7, 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], libXpm)
 AC_CONFIG_SRCDIR([Makefile.am])
 AM_INIT_AUTOMAKE([dist-bzip2])
 

commit d82244497b54889f91c78585374d1ad6a0cef2cf
Author: Alan Coopersmith [EMAIL PROTECTED]
Date:   Wed Aug 22 13:08:42 2007 -0700

Replace strcpy with strncpy to match previous code block

diff --git a/src/WrFFrI.c b/src/WrFFrI.c
index 6477188..15043e8 100644
--- a/src/WrFFrI.c
+++ b/src/WrFFrI.c
@@ -139,7 +139,8 @@ XpmWriteFileFromXpmImage(filename, image, info)
}
if (strchr(name, '-')) {
if (name != new_name) {
-   strcpy(new_name, name);
+   strncpy(new_name, name, sizeof(new_name));
+   new_name[sizeof(new_name)-1] = '\0';
name = new_name;
}
/* change '-' to '_' */

commit 47c974872b51b8c1d6965eff4599f8ce739bcedc
Author: Alan Coopersmith [EMAIL PROTECTED]
Date:   Mon Aug 6 14:22:48 2007 -0700

Use srcdir in paths passed to xgettext when making .po files

diff --git a/cxpm/Makefile.am b/cxpm/Makefile.am
index 158facb..097a640 100644
--- a/cxpm/Makefile.am
+++ b/cxpm/Makefile.am
@@ -41,8 +41,8 @@ SUFFIXES = .$(APP_MAN_SUFFIX) .man
 if USE_GETTEXT
 noinst_DATA = cxpm.po
 
-cxpm.po: $(cxpm_SOURCES)
-   xgettext -cL10N_Comments -d cxpm -n $(cxpm_SOURCES)
+cxpm.po: $(cxpm_SOURCES:%=$(srcdir)/%)
+   xgettext -cL10N_Comments -d cxpm -n $(cxpm_SOURCES:%=$(srcdir)/%)
 
 CLEANFILES += cxpm.po
 endif
diff --git a/sxpm/Makefile.am b/sxpm/Makefile.am
index 0b9771a..7780bd8 100644
--- a/sxpm/Makefile.am
+++ b/sxpm/Makefile.am
@@ -45,8 +45,8 @@ SUFFIXES = .$(APP_MAN_SUFFIX) .man
 if USE_GETTEXT
 noinst_DATA = sxpm.po
 
-sxpm.po: $(sxpm_SOURCES)
-   xgettext -cL10N_Comments -d sxpm -n $(sxpm_SOURCES)
+sxpm.po: $(sxpm_SOURCES:%=$(srcdir)/%)
+   xgettext -cL10N_Comments -d sxpm -n $(sxpm_SOURCES:%=$(srcdir)/%)
 
 CLEANFILES += sxpm.po
 endif

commit 6e003fd5f174a8e312d799d7f8812c2a5b87e433
Author: Alan Coopersmith [EMAIL PROTECTED]
Date:   Mon Aug 6 12:59:04 2007 -0700

Replace index/rindex with C89 standard strchr/strrchr

diff --git a/src/WrFFrI.c b/src/WrFFrI.c
index 363f6c4..6477188 100644
--- a/src/WrFFrI.c
+++ b/src/WrFFrI.c
@@ -117,9 +117,9 @@ XpmWriteFileFromXpmImage(filename, image, info)
 #ifdef VMS
name = filename;
 #else
-   if (!(name = rindex(filename, '/'))
+   if (!(name = strrchr(filename, '/'))
 #ifdef AMIGA
-!(name = rindex(filename, ':'))
+!(name = strrchr(filename, ':'))
 #endif
  )
name = filename;
@@ -127,24 +127,24 @@ XpmWriteFileFromXpmImage(filename, image, info)
name++;
 #endif
/* let's try to make a valid C syntax name */
-   if (index(name, '.')) {
+   if (strchr(name, '.')) {
strncpy(new_name, name, sizeof(new_name));
new_name[sizeof(new_name)-1] = '\0';
/* change '.' to '_' */
name = s = new_name;
-   while ((dot = index(s, '.'))) {
+   while ((dot = strchr(s, '.'))) {
*dot = '_';
s = dot;
}
}
-   if (index(name, '-')) {
+   if (strchr(name, '-')) {
if (name != new_name) {
strcpy(new_name, name);
name = new_name;
}
/* change '-' to '_' */
s = name;
-   while ((dot = index(s, '-'))) {
+   while ((dot = strchr(s, '-'))) {
*dot = '_';
s = dot;
}
diff --git a/src/data.c b/src/data.c
index d0b86ee..87f4b3f 100644
--- a/src/data.c
+++ b/src/data.c
@@ -422,7 +422,7 @@ xpmParseHeader(data)
if (!l)
return (XpmFileInvalid);
buf[l] = '\0';
-   ptr = rindex(buf, '_');
+   ptr = strrchr(buf, '_');
if (!ptr || strncmp(_format, ptr, l - (ptr - buf)))
return XpmFileInvalid;
/* this is definitely an XPM 1 file 

libxpm: Changes to 'debian-unstable'

2007-08-25 Thread Julien Cristau
 .gitignore   |1 
 ChangeLog|  406 +---
 INSTALL  |   50 +-
 Makefile.in  |  137 +++--
 acinclude.m4 |   47 +
 aclocal.m4   |  699 +++--
 config.guess |   34 +
 config.h.in  |   15 
 config.sub   |   36 +
 configure| 1319 +--
 configure.ac |   22 
 cxpm/Makefile.am |   11 
 cxpm/Makefile.in |  151 +++---
 cxpm/cxpm.c  |   50 +-
 debian/changelog |9 
 debian/control   |6 
 debian/copyright |3 
 depcomp  |   64 ++
 install-sh   |  348 +++---
 ltmain.sh|  233 ++---
 missing  |   61 +-
 mkinstalldirs|5 
 src/Makefile.am  |5 
 src/Makefile.in  |  134 ++---
 src/RdFToI.c |4 
 src/WrFFrI.c |   15 
 src/XpmI.h   |4 
 src/data.c   |2 
 src/parse.c  |2 
 src/simx.h   |   17 
 sxpm/Makefile.am |   12 
 sxpm/Makefile.in |  153 +++---
 sxpm/sxpm.c  |   77 ++-
 33 files changed, 2831 insertions(+), 1301 deletions(-)

New commits:
commit 89d8a2b252e7b68106067c8f8723c68f3a2140f1
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sat Aug 25 10:51:03 2007 +0200

Prepare changelog for upload.

diff --git a/debian/changelog b/debian/changelog
index 774733c..1341822 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,11 @@
-libxpm (1:3.5.7-1) UNRELEASED; urgency=low
+libxpm (1:3.5.7-1) unstable; urgency=low
 
   * New upstream release.
   * Add the upstream URL to debian/copyright.
   * Use binary:Version instead of the deprecated Source-Version.
   * Add myself to uploaders, and remove Branden with his permission.
 
- -- Julien Cristau [EMAIL PROTECTED]  Sat, 25 Aug 2007 10:49:11 +0200
+ -- Julien Cristau [EMAIL PROTECTED]  Sat, 25 Aug 2007 10:50:50 +0200
 
 libxpm (1:3.5.6-3) unstable; urgency=low
 

commit 4fb5dbb537906d03dbbad90b98a1e3cfe011dec9
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sat Aug 25 10:50:39 2007 +0200

debian/control updates

- replace the deprecated Source-Version with binary:Version
- remove Branden from Uploaders and add myself.

diff --git a/debian/changelog b/debian/changelog
index bf515b5..774733c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,8 +2,10 @@ libxpm (1:3.5.7-1) UNRELEASED; urgency=low
 
   * New upstream release.
   * Add the upstream URL to debian/copyright.
+  * Use binary:Version instead of the deprecated Source-Version.
+  * Add myself to uploaders, and remove Branden with his permission.
 
- -- Julien Cristau [EMAIL PROTECTED]  Sat, 25 Aug 2007 10:39:45 +0200
+ -- Julien Cristau [EMAIL PROTECTED]  Sat, 25 Aug 2007 10:49:11 +0200
 
 libxpm (1:3.5.6-3) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 3c33207..0d6a2a4 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: libxpm
 Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force debian-x@lists.debian.org
-Uploaders: David Nusinow [EMAIL PROTECTED], Branden Robinson [EMAIL 
PROTECTED]
+Uploaders: David Nusinow [EMAIL PROTECTED], Julien Cristau [EMAIL 
PROTECTED]
 Build-Depends: debhelper (= 5.0.0), libx11-dev (= 1:0.99.2-1), libxt-dev (= 
1:0.99.1-5), x11proto-core-dev (= 7.0.1-1), libxext-dev (= 1:0.99.1-1), 
pkg-config
 Standards-Version: 3.7.2
 XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/lib/libxpm
@@ -25,7 +25,7 @@ Package: libxpm4-dbg
 Section: libdevel
 Architecture: any
 Priority: extra
-Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, libxpm4 (= 
${Source-Version})
+Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, libxpm4 (= 
${binary:Version})
 Description: X11 pixmap library (debug package)
  libXpm provides support and common operation for the XPM pixmap format, which
  is commonly used in legacy X applications.  XPM is an extension of the
@@ -41,7 +41,7 @@ Description: X11 pixmap library (debug package)
 Package: libxpm-dev
 Section: libdevel
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, libxpm4 (= ${Source-Version}), 
libx11-dev, x11proto-core-dev
+Depends: ${shlibs:Depends}, ${misc:Depends}, libxpm4 (= ${binary:Version}), 
libx11-dev, x11proto-core-dev
 Pre-Depends: x11-common (= 1:7.0.0)
 Description: X11 pixmap library (development headers)
  libXpm provides support and common operation for the XPM pixmap format, which

commit 25d93f59b2b60de332f244aa8c9a243ffb3db1d1
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sat Aug 25 10:40:26 2007 +0200

* Add the upstream URL to debian/copyright.

diff --git a/debian/changelog b/debian/changelog
index 939ceee..bf515b5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
 libxpm (1:3.5.7-1) UNRELEASED; urgency=low
 
   * New upstream release.
+  * Add the upstream URL to debian/copyright.
 
- -- Julien Cristau [EMAIL PROTECTED]  Sat, 25 Aug 2007 10:39:18 +0200
+ -- Julien Cristau [EMAIL PROTECTED]  Sat, 25 Aug 2007 10:39:45 +0200
 
 libxpm (1:3.5.6-3) 

Bug#439419: bad reference in /usr/lib/libXcursor.la

2007-08-25 Thread Erwan MAS
On Sat, Aug 25, 2007 at 02:02:40AM +0200, Julien Cristau wrote:
| On Sat, Aug 25, 2007 at 00:15:48 +0200, Erwan MAS wrote:
| 
|  Package: libxcursor-dev
|  Severity: normal
|  
|  the file /usr/lib/libXcursor.la contains a reference to the 
|  file /usr/lib/libXrender.la .
|  
| there's no libXcursor.la in libxcursor-dev afaik.  Which
| version/architecture of the package are you looking at?
| 
| Cheers,
| Julien
| 

Sorry.

My package was a very old package ( 1.1.3-1 / amd64 ) .

-- 
 
/ Erwan MAS /\
   | mailto:[EMAIL PROTECTED]   |_/
___|   |
\___\__/


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



Bug#439419: marked as done (bad reference in /usr/lib/libXcursor.la)

2007-08-25 Thread Debian Bug Tracking System
Your message dated Sat, 25 Aug 2007 10:52:33 +0200
with message-id [EMAIL PROTECTED]
and subject line Bug#439419: bad reference in /usr/lib/libXcursor.la
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: libxcursor-dev
Severity: normal

the file /usr/lib/libXcursor.la contains a reference to the 
file /usr/lib/libXrender.la .

But this file is not in the current distribution .
So you must 



--- /usr/lib/libXcursor.la  2007-08-25 00:09:43.0 +0200
+++ /usr/lib/libXcursor.la~ 2004-05-15 13:02:38.0 +0200
@@ -14,7 +14,7 @@
 old_library='libXcursor.a'
 
 # Libraries that this one depends upon.
-dependency_libs=' -L/usr/X11R6/lib -lXrender -lX11'
+dependency_libs=' -L/usr/X11R6/lib /usr/lib/libXrender.la -lX11'
 
 # Version information for libXcursor.
 current=1



-- 
 
/ Erwan MAS /\
   | mailto:[EMAIL PROTECTED]   |_/
___|   |
\___\__/

---End Message---
---BeginMessage---
On Sat, Aug 25, 2007 at 10:53:18 +0200, Erwan MAS wrote:

 On Sat, Aug 25, 2007 at 02:02:40AM +0200, Julien Cristau wrote:
 | On Sat, Aug 25, 2007 at 00:15:48 +0200, Erwan MAS wrote:
 | 
 |  Package: libxcursor-dev
 |  Severity: normal
 |  
 |  the file /usr/lib/libXcursor.la contains a reference to the 
 |  file /usr/lib/libXrender.la .
 |  
 | there's no libXcursor.la in libxcursor-dev afaik.  Which
 | version/architecture of the package are you looking at?
 | 
 | Cheers,
 | Julien
 | 
 
 Sorry.
 
 My package was a very old package ( 1.1.3-1 / amd64 ) .
 
Thanks for following up, closing the bug.

Cheers,
Julien
---End Message---


libxpm: Changes to 'refs/tags/libxpm-1_3.5.7-1'

2007-08-25 Thread Julien Cristau
Tag 'libxpm-1_3.5.7-1' created by Julien Cristau [EMAIL PROTECTED] at 
2007-08-25 08:55 +

Tagging upload of libxpm 1:3.5.7-1 to unstable.

Changes since libxpm-1_3.5.6-3:
Alan Coopersmith (8):
  Add *~ to .gitignore to skip over emacs/patch droppings
  Sun bug 4486226: Xpm is not internationalized
  Use AM_CFLAGS  AM_CPPFLAGS to replace per-program and obsolete macros
  Include comment/copyright/license for AC_DEFINE_DIR in acinclude.m4
  Replace index/rindex with C89 standard strchr/strrchr
  Use srcdir in paths passed to xgettext when making .po files
  Replace strcpy with strncpy to match previous code block
  Version bump: 3.5.7

Jason Rumney (1):
  X.Org Bug #11863: Build libXpm on MS Windows (with MinGW)

Julien Cristau (6):
  Merge tag 'libXpm-3.5.7' into debian-unstable
  autoreconf.
  Update changelogs for new upstream release.
  * Add the upstream URL to debian/copyright.
  debian/control updates
  Prepare changelog for upload.

---
 .gitignore   |1 
 ChangeLog|  406 +---
 INSTALL  |   50 +-
 Makefile.in  |  137 +++--
 acinclude.m4 |   47 +
 aclocal.m4   |  699 +++--
 config.guess |   34 +
 config.h.in  |   15 
 config.sub   |   36 +
 configure| 1319 +--
 configure.ac |   22 
 cxpm/Makefile.am |   11 
 cxpm/Makefile.in |  151 +++---
 cxpm/cxpm.c  |   50 +-
 debian/changelog |9 
 debian/control   |6 
 debian/copyright |3 
 depcomp  |   64 ++
 install-sh   |  348 +++---
 ltmain.sh|  233 ++---
 missing  |   61 +-
 mkinstalldirs|5 
 src/Makefile.am  |5 
 src/Makefile.in  |  134 ++---
 src/RdFToI.c |4 
 src/WrFFrI.c |   15 
 src/XpmI.h   |4 
 src/data.c   |2 
 src/parse.c  |2 
 src/simx.h   |   17 
 sxpm/Makefile.am |   12 
 sxpm/Makefile.in |  153 +++---
 sxpm/sxpm.c  |   77 ++-
 33 files changed, 2831 insertions(+), 1301 deletions(-)
---


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



Processing of libxpm_3.5.7-1_i386.changes

2007-08-25 Thread Archive Administrator
libxpm_3.5.7-1_i386.changes uploaded successfully to localhost
along with the files:
  libxpm_3.5.7-1.dsc
  libxpm_3.5.7.orig.tar.gz
  libxpm_3.5.7-1.diff.gz
  libxpm4_3.5.7-1_i386.deb
  libxpm4-dbg_3.5.7-1_i386.deb
  libxpm-dev_3.5.7-1_i386.deb
  xpmutils_3.5.7-1_i386.deb

Greetings,

Your Debian queue daemon


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



libxpm_3.5.7-1_i386.changes ACCEPTED

2007-08-25 Thread Debian Installer

Accepted:
libxpm-dev_3.5.7-1_i386.deb
  to pool/main/libx/libxpm/libxpm-dev_3.5.7-1_i386.deb
libxpm4-dbg_3.5.7-1_i386.deb
  to pool/main/libx/libxpm/libxpm4-dbg_3.5.7-1_i386.deb
libxpm4_3.5.7-1_i386.deb
  to pool/main/libx/libxpm/libxpm4_3.5.7-1_i386.deb
libxpm_3.5.7-1.diff.gz
  to pool/main/libx/libxpm/libxpm_3.5.7-1.diff.gz
libxpm_3.5.7-1.dsc
  to pool/main/libx/libxpm/libxpm_3.5.7-1.dsc
libxpm_3.5.7.orig.tar.gz
  to pool/main/libx/libxpm/libxpm_3.5.7.orig.tar.gz
xpmutils_3.5.7-1_i386.deb
  to pool/main/libx/libxpm/xpmutils_3.5.7-1_i386.deb


Override entries for your package:
libxpm-dev_3.5.7-1_i386.deb - optional libdevel
libxpm4-dbg_3.5.7-1_i386.deb - extra libdevel
libxpm4_3.5.7-1_i386.deb - optional libs
libxpm_3.5.7-1.dsc - source x11
xpmutils_3.5.7-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#399204: bug still present in 0.2.2

2007-08-25 Thread Paolo Cavallini
The bug is still present in the new version of the package.
This puzzles me, as it seems to have been been fixed upstream since long
(see previous reports).
-- 
Paolo Cavallini, see: http://www.faunalia.it/pc



signature.asc
Description: OpenPGP digital signature


libxcursor: Changes to 'upstream-unstable'

2007-08-25 Thread Julien Cristau
 .gitignore|1 
 configure.ac  |   11 ++-
 include/X11/Xcursor/Xcursor.h |4 -
 man/Makefile.am   |   57 +
 man/Xcursor.man   |   15 ++--
 src/library.c |  135 +-
 6 files changed, 172 insertions(+), 51 deletions(-)

New commits:
commit a4f29e6deef2bf46cae811aaac1f535945cd9fee
Author: Alan Coopersmith [EMAIL PROTECTED]
Date:   Fri Aug 24 14:01:07 2007 -0700

Version bump: 1.1.9

diff --git a/configure.ac b/configure.ac
index 18ca5db..25e63f0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -30,7 +30,7 @@ dnl version.  This same version number must appear in 
Xcursor.h
 dnl Yes, it is a pain to synchronize version numbers.  Unfortunately, it's
 dnl not possible to extract the version number here from Xcursor.h
 dnl
-AC_INIT([libXcursor],1.1.8,[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],[libXcursor])
+AC_INIT([libXcursor],1.1.9,[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],[libXcursor])
 AM_INIT_AUTOMAKE([dist-bzip2])
 AC_CONFIG_SRCDIR([Makefile.am])
 AM_MAINTAINER_MODE
diff --git a/include/X11/Xcursor/Xcursor.h b/include/X11/Xcursor/Xcursor.h
index 22b057a..90bfdd6 100644
--- a/include/X11/Xcursor/Xcursor.h
+++ b/include/X11/Xcursor/Xcursor.h
@@ -1,6 +1,4 @@
 /*
- * $Id$
- *
  * Copyright © 2002 Keith Packard
  *
  * Permission to use, copy, modify, distribute, and sell this software and its
@@ -78,7 +76,7 @@ typedef XcursorUInt   XcursorPixel;
 
 #define XCURSOR_LIB_MAJOR  1
 #define XCURSOR_LIB_MINOR  1
-#define XCURSOR_LIB_REVISION   7
+#define XCURSOR_LIB_REVISION   9
 #define XCURSOR_LIB_VERSION((XCURSOR_LIB_MAJOR * 1) + \
 (XCURSOR_LIB_MINOR * 100) + \
 (XCURSOR_LIB_REVISION))

commit 5a2601740d04d4180e77695c4b60f2cf5c84be6c
Author: Alan Coopersmith [EMAIL PROTECTED]
Date:   Wed Aug 22 19:40:55 2007 -0700

Make shadow man pages for each function

diff --git a/man/Makefile.am b/man/Makefile.am
index e8ddd70..abb555d 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -25,3 +25,49 @@ MAN_SUBSTS = \
 .man.$(LIB_MAN_SUFFIX):
-rm -f $@
sed $(MAN_SUBSTS)  $  $@
+
+# Generate man page shadow files
+
+LIB_MAN_DIR_SUFFIX = $(LIB_MAN_DIR:@mandir@/man%=%)
+libman_DATA += $(Xcursor_shadows:[EMAIL PROTECTED]@)
+BUILT_SOURCES = shadows.DONE
+CLEANFILES += shadows.DONE
+
+Xcursor_shadows = \
+   XcursorImageCreate \
+   XcursorImageDestroy \
+   XcursorImagesCreate \
+   XcursorImagesDestroy \
+   XcursorCursorsCreate \
+   XcursorCursorsDestroy \
+   XcursorXcFileLoadImage \
+   XcursorXcFileLoadImages \
+   XcursorXcFileLoadAllImages \
+   XcursorXcFileLoad \
+   XcursorXcFileSave \
+   XcursorFilenameLoadImage \
+   XcursorFilenameLoadImages \
+   XcursorFilenameLoadAllImages \
+   XcursorFilenameLoad \
+   XcursorFilenameSaveImages \
+   XcursorFilenameSave \
+   XcursorLibraryLoadImage \
+   XcursorLibraryLoadImages \
+   XcursorFilenameLoadCursor \
+   XcursorLibraryLoadCursor \
+   XcursorLibraryLoadCursors \
+   XcursorShapeLoadImage \
+   XcursorShapeLoadImages \
+   XcursorShapeLoadCursor \
+   XcursorShapeLoadCursors \
+   XcursorSupportsARGB \
+   XcursorSetDefaultSize \
+   XcursorGetDefaultSize \
+   XcursorSetTheme \
+   XcursorGetTheme
+
+shadows.DONE:
+   -rm -f $(Xcursor_shadows:[EMAIL PROTECTED]@)
+   (for i in $(Xcursor_shadows:[EMAIL PROTECTED]@) ; do \
+echo .so man$(LIB_MAN_DIR_SUFFIX)/Xcursor.$(LIB_MAN_SUFFIX)  $$i; \
+done)

commit fef474da694ea3c1fd184d93cc07bf8d95f89327
Author: Alan Coopersmith [EMAIL PROTECTED]
Date:   Tue Aug 21 19:45:35 2007 -0700

Add XCURSOR_PATH to man page

diff --git a/man/Xcursor.man b/man/Xcursor.man
index 610452d..a16a7c1 100644
--- a/man/Xcursor.man
+++ b/man/Xcursor.man
@@ -355,7 +355,7 @@ mapped to a core X cursor.
 .TP
 XcursorBool XcursorSetDefaultSize (Display *dpy, int size)
 Sets the default size for cursors on the specified display. When loading
-cursors, those who's nominal size is closest to this size will be preferred.
+cursors, those whose nominal size is closest to this size will be preferred.
 
 .TP
 int XcursorGetDefaultSize (Display *dpy)
@@ -369,6 +369,12 @@ Sets the current theme name.
 char *XcursorGetTheme (Display *dpy)
 Gets the current theme name.
 
+.SH ENVIRONMENT VARIABLES
+.TP 15
+.B XCURSOR_PATH
+This variable sets the list of paths to look for cursors in.   
+Directories in this path are separated by colons (:).
+
 .SH RESTRICTIONS
 .B Xcursor
 will probably change radically in the future; weak attempts will be made to

commit a9ccf1bd91ad6e06f7b7116efe836c365b68645b
Author: Alan Coopersmith [EMAIL PROTECTED]
Date:   Tue Aug 21 19:33:00 2007 -0700

Use cursorpath found by configure in man page

diff --git 

libxcursor: Changes to 'debian-unstable'

2007-08-25 Thread Julien Cristau
 .gitignore|1 
 ChangeLog |  478 ++---
 INSTALL   |   50 -
 Makefile.in   |  134 ++--
 aclocal.m4|  698 
 config.guess  |   34 -
 config.h.in   |9 
 config.sub|   36 -
 configure | 1174 ++
 configure.ac  |   11 
 debian/changelog  |   11 
 debian/control|6 
 debian/copyright  |7 
 depcomp   |   64 ++
 include/X11/Xcursor/Xcursor.h |4 
 install-sh|  348 +---
 ltmain.sh |  233 +---
 man/Makefile.am   |   57 ++
 man/Makefile.in   |  158 +++--
 man/Xcursor.man   |   15 
 missing   |   61 +-
 mkinstalldirs |5 
 src/Makefile.in   |  124 ++--
 src/library.c |  135 +++-
 24 files changed, 2546 insertions(+), 1307 deletions(-)

New commits:
commit ab8107aefff6ef321d9c265069ac57d088786f79
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sat Aug 25 11:43:08 2007 +0200

Prepare changelog for upload.

Also drop obsolete svn id tag.

diff --git a/debian/changelog b/debian/changelog
index d32c78b..200284a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,11 @@
-libxcursor (1:1.1.9-1) UNRELEASED; urgency=low
+libxcursor (1:1.1.9-1) unstable; urgency=low
 
   * New upstream release.
   * Update URL in debian/copyright.
   * Add myself to Uploaders, and remove ISHIKAWA Mutsumi and Branden.
   * Replace deprecated Source-Version with binary:Version.
 
- -- Julien Cristau [EMAIL PROTECTED]  Sat, 25 Aug 2007 11:28:19 +0200
+ -- Julien Cristau [EMAIL PROTECTED]  Sat, 25 Aug 2007 11:37:23 +0200
 
 libxcursor (1:1.1.8-2) unstable; urgency=low
 
@@ -332,6 +332,4 @@ xcursor (1.0.2-0beta1) unstable; urgency=low
 
  -- ISHIKAWA Mutsumi [EMAIL PROTECTED]  Thu, 22 May 2003 02:31:37 +0900
 
-  $Id: changelog 61 2004-04-19 20:40:20Z branden $
-
   vim:set ai et sts=2 sw=2 tw=78:

commit 1eec32b2bf80d36d6b17f13d42de11a0feb9d95d
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sat Aug 25 11:30:09 2007 +0200

debian/control updates

- remove ISHIKAWA Mutsumi and Branden from uploaders, and add myself
- use binary:Version instead of Source-Version

diff --git a/debian/changelog b/debian/changelog
index 7b0b8a5..d32c78b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,8 +2,10 @@ libxcursor (1:1.1.9-1) UNRELEASED; urgency=low
 
   * New upstream release.
   * Update URL in debian/copyright.
+  * Add myself to Uploaders, and remove ISHIKAWA Mutsumi and Branden.
+  * Replace deprecated Source-Version with binary:Version.
 
- -- Julien Cristau [EMAIL PROTECTED]  Sat, 25 Aug 2007 11:20:01 +0200
+ -- Julien Cristau [EMAIL PROTECTED]  Sat, 25 Aug 2007 11:28:19 +0200
 
 libxcursor (1:1.1.8-2) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index adf7491..b335739 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: libxcursor
 Section: devel
 Priority: optional
 Maintainer: Debian X Strike Force debian-x@lists.debian.org
-Uploaders: Branden Robinson [EMAIL PROTECTED], ISHIKAWA Mutsumi [EMAIL 
PROTECTED], David Nusinow [EMAIL PROTECTED], Drew Parsons [EMAIL PROTECTED]
+Uploaders: David Nusinow [EMAIL PROTECTED], Drew Parsons [EMAIL 
PROTECTED], Julien Cristau [EMAIL PROTECTED]
 Build-Depends: debhelper (= 5.0.0), x11proto-core-dev (= 
6.2.1+cvs.20050722-1), libx11-dev (= 1:6.2.1+cvs.20050722-1), libxrender-dev 
(= 1:0.9.0-1), libxfixes-dev (= 1:3.0.0-2), pkg-config, quilt
 Standards-Version: 3.7.2
 XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/lib/libxcursor
@@ -25,7 +25,7 @@ Package: libxcursor1-dbg
 Section: libdevel
 Priority: extra
 Architecture: any
-Depends: libxcursor1 (= ${Source-Version}), ${shlibs:Depends}
+Depends: libxcursor1 (= ${binary:Version}), ${shlibs:Depends}
 Description: X cursor management library (unstripped)
  This package provides an unstripped shared object with debugging symbols,
  useful to provide a backtrace with symbol names in a debugger; this
@@ -41,7 +41,7 @@ Description: X cursor management library (unstripped)
 Package: libxcursor-dev
 Section: libdevel
 Architecture: any
-Depends: libxcursor1 (= ${Source-Version}), x11proto-core-dev, libx11-dev, 
libxrender-dev, libxfixes-dev
+Depends: libxcursor1 (= ${binary:Version}), x11proto-core-dev, libx11-dev, 
libxrender-dev, libxfixes-dev
 Pre-Depends: x11-common (= 1:7.0.0)
 Description: X cursor management library (development files)
  Header files and a static version of the X cursor management library are

commit cbf239e5e3d002f44b3e8eb2d4abd46b36c94d9f
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sat Aug 25 11:21:48 2007 +0200

autoreconf

diff --git a/INSTALL b/INSTALL
index 

libxcursor: Changes to 'refs/tags/libxcursor-1_1.1.9-1'

2007-08-25 Thread Julien Cristau
Tag 'libxcursor-1_1.1.9-1' created by Julien Cristau [EMAIL PROTECTED] at 
2007-08-25 09:56 +

Tagging upload of libxcursor 1:1.1.9-1 to unstable.

Changes since libxcursor-1_1.1.8-2:
Alan Coopersmith (4):
  Use cursorpath found by configure in man page
  Add XCURSOR_PATH to man page
  Make shadow man pages for each function
  Version bump: 1.1.9

Julien Cristau (6):
  Merge tag 'libXcursor-1.1.9' into debian-unstable
  New upstream release; update changelogs.
  Update URL in debian/copyright.
  autoreconf
  debian/control updates
  Prepare changelog for upload.

Tilman Sauerbeck (2):
  Store the cursor names in one large string.
  Added object files to .gitignore.

---
 .gitignore|1 
 ChangeLog |  478 ++---
 INSTALL   |   50 -
 Makefile.in   |  134 ++--
 aclocal.m4|  698 
 config.guess  |   34 -
 config.h.in   |9 
 config.sub|   36 -
 configure | 1174 ++
 configure.ac  |   11 
 debian/changelog  |   11 
 debian/control|6 
 debian/copyright  |7 
 depcomp   |   64 ++
 include/X11/Xcursor/Xcursor.h |4 
 install-sh|  348 +---
 ltmain.sh |  233 +---
 man/Makefile.am   |   57 ++
 man/Makefile.in   |  158 +++--
 man/Xcursor.man   |   15 
 missing   |   61 +-
 mkinstalldirs |5 
 src/Makefile.in   |  124 ++--
 src/library.c |  135 +++-
 24 files changed, 2546 insertions(+), 1307 deletions(-)
---


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



libxrender: Changes to 'upstream-unstable'

2007-08-25 Thread Brice Goglin
 configure.ac  |2 +-
 src/Picture.c |   12 +---
 2 files changed, 10 insertions(+), 4 deletions(-)

New commits:
commit 3fcca95b2628167be4c908a9a315f070eb195660
Author: David Reveman [EMAIL PROTECTED]
Date:   Mon Aug 20 14:40:44 2007 -0400

Bump to 0.9.3

diff --git a/configure.ac b/configure.ac
index a6bbb2a..8e1e6d2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -32,7 +32,7 @@ dnl try to keep these the same.  Note that the library has an 
extra
 dnl digit in the version number to track changes which don't affect the
 dnl protocol, so Xrender version l.n.m corresponds to protocol version l.n
 dnl
-AC_INIT(libXrender, 0.9.2, 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], libXrender)
+AC_INIT(libXrender, 0.9.3, 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], libXrender)
 AM_INIT_AUTOMAKE([dist-bzip2])
 AM_MAINTAINER_MODE
 

commit 5b38b2d9b981d425587a4eb440acb2f0d6b0db13
Author: David Reveman [EMAIL PROTECTED]
Date:   Mon Aug 20 14:38:33 2007 -0400

Properly set length field in gradient requests (bug 9526).

diff --git a/src/Picture.c b/src/Picture.c
index 0b18f5c..509a835 100644
--- a/src/Picture.c
+++ b/src/Picture.c
@@ -277,6 +277,7 @@ Picture XRenderCreateLinearGradient(Display *dpy,
 XRenderExtDisplayInfo  *info = XRenderFindDisplay (dpy);
 Picturepid;
 xRenderCreateLinearGradientReq *req;
+long  len;
 
 RenderCheckExtension (dpy, info, 0);
 LockDisplay(dpy);
@@ -291,9 +292,10 @@ Picture XRenderCreateLinearGradient(Display *dpy,
 req-p2.y = gradient-p2.y;
 
 req-nStops = nStops;
+len = (long) nStops * 3;
+SetReqLen (req, len, 6);
 DataInt32(dpy, stops, nStops * 4);
 Data16(dpy, colors, nStops * 8);
-req-length += nStops*3;
 
 UnlockDisplay(dpy);
 SyncHandle();
@@ -309,6 +311,7 @@ Picture XRenderCreateRadialGradient(Display *dpy,
 XRenderExtDisplayInfo  *info = XRenderFindDisplay (dpy);
 Picturepid;
 xRenderCreateRadialGradientReq *req;
+long  len;
 
 RenderCheckExtension (dpy, info, 0);
 LockDisplay(dpy);
@@ -325,9 +328,10 @@ Picture XRenderCreateRadialGradient(Display *dpy,
 req-outer_radius = gradient-outer.radius;
 
 req-nStops = nStops;
+len = (long) nStops * 3;
+SetReqLen (req, len, 6);
 DataInt32(dpy, stops, nStops * 4);
 Data16(dpy, colors, nStops * 8);
-req-length += nStops*3;
 
 UnlockDisplay(dpy);
 SyncHandle();
@@ -343,6 +347,7 @@ Picture XRenderCreateConicalGradient(Display *dpy,
 XRenderExtDisplayInfo  *info = XRenderFindDisplay (dpy);
 Picturepid;
 xRenderCreateConicalGradientReq *req;
+long   len;
 
 RenderCheckExtension (dpy, info, 0);
 LockDisplay(dpy);
@@ -356,9 +361,10 @@ Picture XRenderCreateConicalGradient(Display *dpy,
 req-angle = gradient-angle;
 
 req-nStops = nStops;
+len = (long) nStops * 3;
+SetReqLen (req, len, 6);
 DataInt32(dpy, stops, nStops * 4);
 Data16(dpy, colors, nStops * 8);
-req-length += nStops*3;
 
 UnlockDisplay(dpy);
 SyncHandle();


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



libxrender: Changes to 'debian-unstable'

2007-08-25 Thread Brice Goglin
 ChangeLog|   12 
 INSTALL  |  236 ++-
 Makefile.in  |  131 +++---
 aclocal.m4   |  698 ++---
 config.guess |   34 +
 config.h.in  |9 
 config.sub   |   36 +
 configure| 1161 ++-
 configure.ac |2 
 debian/changelog |   10 
 debian/control   |6 
 debian/copyright |3 
 depcomp  |   64 ++-
 install-sh   |  348 
 ltmain.sh|  233 +++
 missing  |   61 +-
 src/Makefile.in  |  121 +++--
 src/Picture.c|   12 
 18 files changed, 2178 insertions(+), 999 deletions(-)

New commits:
commit efb51832f801be0d196143121ad71e325b4fcdcf
Author: Brice Goglin [EMAIL PROTECTED]
Date:   Sat Aug 25 11:46:34 2007 +0200

Prepare changelog for upload

diff --git a/debian/changelog b/debian/changelog
index a55a052..22cadfd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libxrender (1:0.9.3-1) UNRELEASED; urgency=low
+libxrender (1:0.9.3-1) unstable; urgency=low
 
   * New upstream release.
   * Add myself to Uploaders, and remove Branden and Fabio with their

commit a1467f51a1caabb545343ef8eb4f198b50d93186
Author: Brice Goglin [EMAIL PROTECTED]
Date:   Sat Aug 25 11:45:27 2007 +0200

Add upstream URL to debian/copyright

diff --git a/debian/changelog b/debian/changelog
index 0b07446..a55a052 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ libxrender (1:0.9.3-1) UNRELEASED; urgency=low
   * Add myself to Uploaders, and remove Branden and Fabio with their
 permission.
   * Replace ${Source-Version}) with ${binary:Version}.
+  * Add upstream URL to debian/copyright.
 
  -- Brice Goglin [EMAIL PROTECTED]  Sat, 25 Aug 2007 11:41:18 +0200
 
diff --git a/debian/copyright b/debian/copyright
index 08c925f..1b22b80 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,3 +1,6 @@
+This package was downloaded from
+http://xorg.freedesktop.org/releases/individual/lib/
+
 $Id: COPYING,v 1.1 2005/05/19 19:58:24 sandmann Exp $
 
 Copyright © 2001,2003 Keith Packard

commit 959b3722e418300ba25389830681b5e49aeb0f57
Author: Brice Goglin [EMAIL PROTECTED]
Date:   Sat Aug 25 11:44:06 2007 +0200

Replace ${Source-Version}) with ${binary:Version}

diff --git a/debian/changelog b/debian/changelog
index 6bc516f..0b07446 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ libxrender (1:0.9.3-1) UNRELEASED; urgency=low
   * New upstream release.
   * Add myself to Uploaders, and remove Branden and Fabio with their
 permission.
+  * Replace ${Source-Version}) with ${binary:Version}.
 
  -- Brice Goglin [EMAIL PROTECTED]  Sat, 25 Aug 2007 11:41:18 +0200
 
diff --git a/debian/control b/debian/control
index e230141..4d54ed0 100644
--- a/debian/control
+++ b/debian/control
@@ -28,7 +28,7 @@ Package: libxrender1-dbg
 Section: libdevel
 Priority: extra
 Architecture: any
-Depends: libxrender1 (= ${Source-Version}), ${shlibs:Depends}
+Depends: libxrender1 (= ${binary:Version}), ${shlibs:Depends}
 Description: X Rendering Extension client library (unstripped)
  The X Rendering Extension (Render) introduces digital image composition as
  the foundation of a new rendering model within the X Window System.
@@ -52,7 +52,7 @@ Description: X Rendering Extension client library (unstripped)
 Package: libxrender-dev
 Section: libdevel
 Architecture: any
-Depends: libxrender1 (= ${Source-Version}), libx11-dev (= 2:1.0.0), 
x11proto-render-dev, x11proto-core-dev
+Depends: libxrender1 (= ${binary:Version}), libx11-dev (= 2:1.0.0), 
x11proto-render-dev, x11proto-core-dev
 Pre-Depends: x11-common (= 1:7.0.0)
 Description: X Rendering Extension client library (development files)
  The X Rendering Extension (Render) introduces digital image composition as

commit a8075878fd4081205eb7251120fdb53bada887d0
Author: Brice Goglin [EMAIL PROTECTED]
Date:   Sat Aug 25 11:43:03 2007 +0200

Add myself to Uploaders, and remove Branden and Fabio

diff --git a/debian/changelog b/debian/changelog
index 6d59827..6bc516f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
 libxrender (1:0.9.3-1) UNRELEASED; urgency=low
 
   * New upstream release.
+  * Add myself to Uploaders, and remove Branden and Fabio with their
+permission.
 
  -- Brice Goglin [EMAIL PROTECTED]  Sat, 25 Aug 2007 11:41:18 +0200
 
diff --git a/debian/control b/debian/control
index 462a736..e230141 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: libxrender
 Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force debian-x@lists.debian.org
-Uploaders: David Nusinow [EMAIL PROTECTED], Branden Robinson [EMAIL 
PROTECTED], Fabio M. Di Nitto [EMAIL PROTECTED], Andres Salomon [EMAIL 
PROTECTED]
+Uploaders: David Nusinow [EMAIL PROTECTED], Andres Salomon [EMAIL 
PROTECTED], Brice Goglin [EMAIL PROTECTED]
 Build-Depends: debhelper (= 5.0.0), pkg-config, libx11-dev (= 1:0.99.2-1), 

libxrender: Changes to 'refs/tags/libxrender-1_0.9.3-1'

2007-08-25 Thread Brice Goglin
Tag 'libxrender-1_0.9.3-1' created by Brice Goglin [EMAIL PROTECTED] at 
2007-08-25 10:01 +

Tagging upload of libxrender 1:0.9.3-1 to unstable.

Changes since libxrender-1_0.9.2-1:
Brice Goglin (6):
  Merge tag 'libXrender-0.9.3' into debian-unstable
  New upstream release
  Add myself to Uploaders, and remove Branden and Fabio
  Replace ${Source-Version}) with ${binary:Version}
  Add upstream URL to debian/copyright
  Prepare changelog for upload

David Reveman (2):
  Properly set length field in gradient requests (bug 9526).
  Bump to 0.9.3

---
 ChangeLog|   12 
 INSTALL  |  236 ++-
 Makefile.in  |  131 +++---
 aclocal.m4   |  698 ++---
 config.guess |   34 +
 config.h.in  |9 
 config.sub   |   36 +
 configure| 1161 ++-
 configure.ac |2 
 debian/changelog |   10 
 debian/control   |6 
 debian/copyright |3 
 depcomp  |   64 ++-
 install-sh   |  348 
 ltmain.sh|  233 +++
 missing  |   61 +-
 src/Makefile.in  |  121 +++--
 src/Picture.c|   12 
 18 files changed, 2178 insertions(+), 999 deletions(-)
---


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



Processing of libxrender_0.9.3-1_i386.changes

2007-08-25 Thread Archive Administrator
libxrender_0.9.3-1_i386.changes uploaded successfully to localhost
along with the files:
  libxrender_0.9.3-1.dsc
  libxrender_0.9.3.orig.tar.gz
  libxrender_0.9.3-1.diff.gz
  libxrender1_0.9.3-1_i386.deb
  libxrender1-dbg_0.9.3-1_i386.deb
  libxrender-dev_0.9.3-1_i386.deb

Greetings,

Your Debian queue daemon


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



Processing of libxcursor_1.1.9-1_i386.changes

2007-08-25 Thread Archive Administrator
libxcursor_1.1.9-1_i386.changes uploaded successfully to localhost
along with the files:
  libxcursor_1.1.9-1.dsc
  libxcursor_1.1.9.orig.tar.gz
  libxcursor_1.1.9-1.diff.gz
  libxcursor1_1.1.9-1_i386.deb
  libxcursor1-dbg_1.1.9-1_i386.deb
  libxcursor-dev_1.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]



libxcursor_1.1.9-1_i386.changes ACCEPTED

2007-08-25 Thread Debian Installer

Accepted:
libxcursor-dev_1.1.9-1_i386.deb
  to pool/main/libx/libxcursor/libxcursor-dev_1.1.9-1_i386.deb
libxcursor1-dbg_1.1.9-1_i386.deb
  to pool/main/libx/libxcursor/libxcursor1-dbg_1.1.9-1_i386.deb
libxcursor1_1.1.9-1_i386.deb
  to pool/main/libx/libxcursor/libxcursor1_1.1.9-1_i386.deb
libxcursor_1.1.9-1.diff.gz
  to pool/main/libx/libxcursor/libxcursor_1.1.9-1.diff.gz
libxcursor_1.1.9-1.dsc
  to pool/main/libx/libxcursor/libxcursor_1.1.9-1.dsc
libxcursor_1.1.9.orig.tar.gz
  to pool/main/libx/libxcursor/libxcursor_1.1.9.orig.tar.gz


Override entries for your package:
libxcursor-dev_1.1.9-1_i386.deb - optional libdevel
libxcursor1-dbg_1.1.9-1_i386.deb - extra libdevel
libxcursor1_1.1.9-1_i386.deb - optional libs
libxcursor_1.1.9-1.dsc - source devel

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]



libxrender_0.9.3-1_i386.changes ACCEPTED

2007-08-25 Thread Debian Installer

Accepted:
libxrender-dev_0.9.3-1_i386.deb
  to pool/main/libx/libxrender/libxrender-dev_0.9.3-1_i386.deb
libxrender1-dbg_0.9.3-1_i386.deb
  to pool/main/libx/libxrender/libxrender1-dbg_0.9.3-1_i386.deb
libxrender1_0.9.3-1_i386.deb
  to pool/main/libx/libxrender/libxrender1_0.9.3-1_i386.deb
libxrender_0.9.3-1.diff.gz
  to pool/main/libx/libxrender/libxrender_0.9.3-1.diff.gz
libxrender_0.9.3-1.dsc
  to pool/main/libx/libxrender/libxrender_0.9.3-1.dsc
libxrender_0.9.3.orig.tar.gz
  to pool/main/libx/libxrender/libxrender_0.9.3.orig.tar.gz


Override entries for your package:
libxrender-dev_0.9.3-1_i386.deb - optional libdevel
libxrender1-dbg_0.9.3-1_i386.deb - extra libdevel
libxrender1_0.9.3-1_i386.deb - optional libs
libxrender_0.9.3-1.dsc - source libs

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]



libxtst: Changes to 'upstream-unstable'

2007-08-25 Thread Brice Goglin
 configure.ac|2 +-
 man/Makefile.am |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 4a5ac6a63c22bdfac9a873803f3a0fa3d6e20a5b
Author: Alan Coopersmith [EMAIL PROTECTED]
Date:   Fri Aug 17 14:57:22 2007 -0700

Version bump: 1.0.3

diff --git a/configure.ac b/configure.ac
index a2e1c65..9e84341 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@ dnl Process this file with autoconf to create configure.
 
 AC_PREREQ([2.57])
 
-AC_INIT(libXtst, 1.0.2, 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], libXtst)
+AC_INIT(libXtst, 1.0.3, 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], libXtst)
 AM_INIT_AUTOMAKE([dist-bzip2])
 AM_MAINTAINER_MODE
 

commit fe206f87078c90afaa5eba42a4bbe1c0ea300e9b
Author: zoka [EMAIL PROTECTED]
Date:   Mon Jul 2 20:34:52 2007 -0700

libXtst man pages generation fails if srcdir != builddir

diff --git a/man/Makefile.am b/man/Makefile.am
index 318e137..845061f 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -28,7 +28,7 @@ libmandir = $(LIB_MAN_DIR)
 
 LIB_MAN_DIR_SUFFIX = $(LIB_MAN_DIR:@mandir@/man%=%)
 
-libman_xml = XTest.xml
+libman_xml = $(srcdir)/XTest.xml
 
 XTest_manpages =   \
XTestQueryExtension \


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



libxtst: Changes to 'debian-unstable'

2007-08-25 Thread Brice Goglin
 INSTALL |   50 -
 Makefile.in |  143 +--
 aclocal.m4  |  676 ++--
 config.guess|6 
 config.sub  |   10 
 configure   | 1146 +---
 configure.ac|2 
 debian/changelog|   14 
 debian/control  |2 
 debian/copyright|3 
 debian/patches/01_build_manpages.diff   |   24 
 debian/patches/01_fix_date_in_manpages.diff |   14 
 debian/patches/series   |2 
 depcomp |   64 +
 install-sh  |  348 ++--
 ltmain.sh   |  233 +++--
 man/Makefile.am |2 
 man/Makefile.in |   94 +-
 missing |   61 -
 mkinstalldirs   |5 
 src/Makefile.in |  125 +--
 21 files changed, 1925 insertions(+), 1099 deletions(-)

New commits:
commit d11a139027eea0f67f169462837b6c5da3179c02
Author: Brice Goglin [EMAIL PROTECTED]
Date:   Sat Aug 25 12:16:53 2007 +0200

Update 01_build_manpages.diff and rename it accordingly

diff --git a/debian/changelog b/debian/changelog
index ee15a37..23cb65b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libxtst (2:1.0.3-1) UNRELEASED; urgency=low
+libxtst (2:1.0.3-1) unstable; urgency=low
 
   [ Julien Cristau ]
   * Sync package sections with the override.
@@ -9,8 +9,11 @@ libxtst (2:1.0.3-1) UNRELEASED; urgency=low
   * Add myself to Uploaders, and remove Branden and Fabio with their
 permission.
   * Add upstream URL to debian/copyright.
+  * Update 01_build_manpages.diff since its first half has been merged
+upstream, and rename it to 01_fix_date_in_manpages.diff to match
+the remaining part.
 
- -- Brice Goglin [EMAIL PROTECTED]  Sat, 25 Aug 2007 11:57:32 +0200
+ -- Brice Goglin [EMAIL PROTECTED]  Sat, 25 Aug 2007 11:58:00 +0200
 
 libxtst (1:1.0.2-1) unstable; urgency=low
 
diff --git a/debian/patches/01_build_manpages.diff 
b/debian/patches/01_build_manpages.diff
deleted file mode 100644
index eb06721..000
--- a/debian/patches/01_build_manpages.diff
+++ /dev/null
@@ -1,24 +0,0 @@
 a/man/Makefile.am  2007-06-07 16:32:46.0 +0200
-+++ b/man/Makefile.am  2007-06-07 16:33:11.0 +0200
-@@ -28,7 +28,7 @@
- 
- LIB_MAN_DIR_SUFFIX = $(LIB_MAN_DIR:@mandir@/man%=%)
- 
--libman_xml = XTest.xml
-+libman_xml = $(srcdir)/XTest.xml
- 
- XTest_manpages =  \
-   XTestQueryExtension \
-diff --git a/man/XTest.xml b/man/XTest.xml
-index a80ab22..4637a7e 100644
 a/man/XTest.xml
-+++ b/man/XTest.xml
-@@ -43,7 +43,7 @@ X Consortium.
- !-- $Xorg: xtestlib.ms,v 1.3 2000/08/17 19:42:37 cpqbld Exp $ --
-  refentryinfo
-   productname__vendorversion__/productname
--  pubdate6 June 2007/pubdate
-+  date6 June 2007/date
-authorfirstnameKieron/firstnamesurnameDrake/surname
-affiliationorgnameUniSoft Ltd./orgname/affiliation
-/author
diff --git a/debian/patches/01_fix_date_in_manpages.diff 
b/debian/patches/01_fix_date_in_manpages.diff
new file mode 100644
index 000..bdd77be
--- /dev/null
+++ b/debian/patches/01_fix_date_in_manpages.diff
@@ -0,0 +1,14 @@
+Make sure the manpage footer contains the date, not the date within
+pubdate/pubdate.
+
+--- a/man/XTest.xml
 b/man/XTest.xml
+@@ -43,7 +43,7 @@ X Consortium.
+ !-- $Xorg: xtestlib.ms,v 1.3 2000/08/17 19:42:37 cpqbld Exp $ --
+  refentryinfo
+   productname__vendorversion__/productname
+-  pubdate6 June 2007/pubdate
++  date6 June 2007/date
+authorfirstnameKieron/firstnamesurnameDrake/surname
+affiliationorgnameUniSoft Ltd./orgname/affiliation
+/author
diff --git a/debian/patches/series b/debian/patches/series
index 88c7f12..b93a37a 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1 @@
-01_build_manpages.diff
+01_fix_date_in_manpages.diff

commit d4c4545a7fbcedf8066c2b68896ea78242293c5c
Author: Brice Goglin [EMAIL PROTECTED]
Date:   Sat Aug 25 11:57:57 2007 +0200

Add upstream URL to debian/copyright

diff --git a/debian/changelog b/debian/changelog
index 7b195b5..ee15a37 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,8 +8,9 @@ libxtst (2:1.0.3-1) UNRELEASED; urgency=low
   * New upstream release.
   * Add myself to Uploaders, and remove Branden and Fabio with their
 permission.
+  * Add upstream URL to debian/copyright.
 
- -- Brice Goglin [EMAIL PROTECTED]  Sat, 25 Aug 2007 11:54:26 +0200
+ -- Brice Goglin [EMAIL PROTECTED]  Sat, 25 Aug 2007 11:57:32 +0200
 
 libxtst (1:1.0.2-1) unstable; urgency=low
 
diff --git a/debian/copyright b/debian/copyright
index 4169e17..313e438 100644
--- 

libxtst: Changes to 'refs/tags/libxtst-2_1.0.3-1'

2007-08-25 Thread Brice Goglin
Tag 'libxtst-2_1.0.3-1' created by Brice Goglin [EMAIL PROTECTED] at 
2007-08-25 10:32 +

Tagging upload of libxtst 2:1.0.3-1 to unstable.

Changes since libxtst-1_1.0.2-1:
Alan Coopersmith (1):
  Version bump: 1.0.3

Brice Goglin (5):
  Merge tag 'libXtst-1.0.3' into debian-unstable
  New upstream release
  Add myself to Uploaders, and remove Branden and Fabio
  Add upstream URL to debian/copyright
  Update 01_build_manpages.diff and rename it accordingly

Julien Cristau (2):
  Sync package sections with the override.
  Bump epoch so Ubuntu can sync this package.

zoka (1):
  libXtst man pages generation fails if srcdir != builddir

---
 INSTALL |   50 -
 Makefile.in |  143 +--
 aclocal.m4  |  676 ++--
 config.guess|6 
 config.sub  |   10 
 configure   | 1146 +---
 configure.ac|2 
 debian/changelog|   17 
 debian/control  |5 
 debian/copyright|3 
 debian/patches/01_build_manpages.diff   |   24 
 debian/patches/01_fix_date_in_manpages.diff |   14 
 debian/patches/series   |2 
 depcomp |   64 +
 install-sh  |  348 ++--
 ltmain.sh   |  233 +++--
 man/Makefile.am |2 
 man/Makefile.in |   94 +-
 missing |   61 -
 mkinstalldirs   |5 
 src/Makefile.in |  125 +--
 21 files changed, 1933 insertions(+), 1097 deletions(-)
---


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



Processing of libxtst_1.0.3-1_i386.changes

2007-08-25 Thread Archive Administrator
libxtst_1.0.3-1_i386.changes uploaded successfully to localhost
along with the files:
  libxtst_1.0.3-1.dsc
  libxtst_1.0.3.orig.tar.gz
  libxtst_1.0.3-1.diff.gz
  libxtst6_1.0.3-1_i386.deb
  libxtst6-dbg_1.0.3-1_i386.deb
  libxtst-dev_1.0.3-1_i386.deb

Greetings,

Your Debian queue daemon


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



libxtst_1.0.3-1_i386.changes ACCEPTED

2007-08-25 Thread Debian Installer

Accepted:
libxtst-dev_1.0.3-1_i386.deb
  to pool/main/libx/libxtst/libxtst-dev_1.0.3-1_i386.deb
libxtst6-dbg_1.0.3-1_i386.deb
  to pool/main/libx/libxtst/libxtst6-dbg_1.0.3-1_i386.deb
libxtst6_1.0.3-1_i386.deb
  to pool/main/libx/libxtst/libxtst6_1.0.3-1_i386.deb
libxtst_1.0.3-1.diff.gz
  to pool/main/libx/libxtst/libxtst_1.0.3-1.diff.gz
libxtst_1.0.3-1.dsc
  to pool/main/libx/libxtst/libxtst_1.0.3-1.dsc
libxtst_1.0.3.orig.tar.gz
  to pool/main/libx/libxtst/libxtst_1.0.3.orig.tar.gz


Override entries for your package:
libxtst-dev_1.0.3-1_i386.deb - optional libdevel
libxtst6-dbg_1.0.3-1_i386.deb - extra libdevel
libxtst6_1.0.3-1_i386.deb - optional libs
libxtst_1.0.3-1.dsc - source 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]



xorg-server: Changes to 'debian-experimental'

2007-08-25 Thread Brice Goglin
 debian/changelog|9 ++-
 debian/xserver-xorg-core.bug.script |   90 ++--
 2 files changed, 53 insertions(+), 46 deletions(-)

New commits:
commit 769b6ff5bc50a30e37a529ac4264c84e9736dbbe
Author: Brice Goglin [EMAIL PROTECTED]
Date:   Sat Aug 25 14:19:23 2007 +0200

Simplify output redirections in the reportbug script

diff --git a/debian/changelog b/debian/changelog
index 2b18add..07a3cc5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,16 @@
 xorg-server (2:1.3.99.0-3) unreleased; urgency=low
 
+  [ David Nusinow ]
   * Refactor auto_load_driver patch to allow the same method to be used when
 there is no xorg.conf present
   * Add 04_auto_load_driver_no_config.diff to use my auto_load_driver method
-when there's no xorg.conf present 
+when there's no xorg.conf present
+
+  [ Brice Goglin ]
+  * Simplify output redirections in the reportbug script,
+thanks Justin Pryzby, closes: #358390.
 
- -- David Nusinow [EMAIL PROTECTED]  Thu, 23 Aug 2007 22:37:41 -0400
+ -- Brice Goglin [EMAIL PROTECTED]  Sat, 25 Aug 2007 14:18:07 +0200
 
 xorg-server (2:1.3.99.0-2) experimental; urgency=low
 
diff --git a/debian/xserver-xorg-core.bug.script 
b/debian/xserver-xorg-core.bug.script
index d1f471d..739cdd3 100644
--- a/debian/xserver-xorg-core.bug.script
+++ b/debian/xserver-xorg-core.bug.script
@@ -12,109 +12,111 @@ 
SERVER_SYMLINK_ROSTER=$CONFIG_AUX_DIR/${SERVER_SYMLINK##*/}.roster
 XORGCONFIG_CHECKSUM=$CONFIG_AUX_DIR/${XORGCONFIG##*/}.md5sum
 XORGCONFIG_ROSTER=$CONFIG_AUX_DIR/${XORGCONFIG##*/}.roster
 
+exec 3
+
 if [ -e $SERVER_SYMLINK_ROSTER ]; then
-printf Contents of $SERVER_SYMLINK_ROSTER:\n 3
-cat $SERVER_SYMLINK_ROSTER 3
+printf Contents of $SERVER_SYMLINK_ROSTER:\n
+cat $SERVER_SYMLINK_ROSTER
 else
-printf $SERVER_SYMLINK_ROSTER does not exist.\n 3
+printf $SERVER_SYMLINK_ROSTER does not exist.\n
 fi
 
-printf \n 3
+printf \n
 
 if [ -e $SERVER_SYMLINK ]; then
 if [ -e $SERVER_SYMLINK_CHECKSUM ]; then
 if [ $(readlink $SERVER_SYMLINK | md5sum) = \
  $(cat $SERVER_SYMLINK_CHECKSUM) ]; then
 printf %s target unchanged from checksum in %s.\n \
-  $SERVER_SYMLINK $SERVER_SYMLINK_CHECKSUM 3
+  $SERVER_SYMLINK $SERVER_SYMLINK_CHECKSUM
 else
 printf %s target does not match checksum in %s.\n \
-  $SERVER_SYMLINK $SERVER_SYMLINK_CHECKSUM 3
+  $SERVER_SYMLINK $SERVER_SYMLINK_CHECKSUM
 fi
 else
-printf $SERVER_SYMLINK_CHECKSUM does not exist.\n 3
+printf $SERVER_SYMLINK_CHECKSUM does not exist.\n
 fi
-printf \n 3
-printf X server symlink status:\n 3
-ls -dl $SERVER_SYMLINK 3
-ls -dl $(readlink $SERVER_SYMLINK) 3
+printf \n
+printf X server symlink status:\n
+ls -dl $SERVER_SYMLINK
+ls -dl $(readlink $SERVER_SYMLINK)
 else
-printf $SERVER_SYMLINK does not exist.\n 3
+printf $SERVER_SYMLINK does not exist.\n
 fi
 
 if ! [ -L $SERVER_SYMLINK ]; then
-printf $SERVER_SYMLINK is not a symlink.\n 3
+printf $SERVER_SYMLINK is not a symlink.\n
 fi
 
 if ! [ -x $SERVER_SYMLINK ]; then
-printf $SERVER_SYMLINK is not executable.\n 3
+printf $SERVER_SYMLINK is not executable.\n
 fi
 
-printf \n 3
+printf \n
 
 if [ -e $XORGCONFIG_ROSTER ]; then
-printf Contents of $XORGCONFIG_ROSTER:\n 3
-cat $XORGCONFIG_ROSTER 3
+printf Contents of $XORGCONFIG_ROSTER:\n
+cat $XORGCONFIG_ROSTER
 else
-printf $XORGCONFIG_ROSTER does not exist.\n 3
+printf $XORGCONFIG_ROSTER does not exist.\n
 fi
 
-printf \n 3
+printf \n
 
 if which lspci  /dev/null 21; then
-printf VGA-compatible devices on PCI bus:\n 3
-LC_ALL=C lspci | grep 'VGA compatible controller:' 3
-LC_ALL=C lspci -n | grep 'Class 0300:' 3
+printf VGA-compatible devices on PCI bus:\n
+LC_ALL=C lspci | grep 'VGA compatible controller:'
+LC_ALL=C lspci -n | grep 'Class 0300:'
 else
-printf The lspci command was not found; not including PCI data.\n 3
+printf The lspci command was not found; not including PCI data.\n
 fi
 
-printf \n 3
+printf \n
 
 if [ -e $XORGCONFIG ]; then
 if [ -e $XORGCONFIG_CHECKSUM ]; then
 if [ $(md5sum $XORGCONFIG) = $(cat $XORGCONFIG_CHECKSUM) ]; 
then
 printf %s unchanged from checksum in %s.\n $XORGCONFIG \
-  $XORGCONFIG_CHECKSUM 3
+  $XORGCONFIG_CHECKSUM
 else
 printf %s does not match checksum in %s.\n $XORGCONFIG \
-  $XORGCONFIG_CHECKSUM 3
+  $XORGCONFIG_CHECKSUM
 fi
 else
-printf $XORGCONFIG_CHECKSUM does not exist.\n 3
+printf $XORGCONFIG_CHECKSUM does not exist.\n
 fi
-printf \n 3
-printf Xorg X server configuration file status:\n 3
-ls -dl $XORGCONFIG 3
-printf \n 3
-printf Contents of $XORGCONFIG:\n 3
-iconv -c -t ascii $XORGCONFIG 3
-printf \n 3
+  

Processed: tagging 358390

2007-08-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.7
 tags 358390 + pending
Bug#358390: xserver-xorg: /usr/share/bug script patch for readability, 
portability, and extensibility
Tags were: patch
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]



Processed: reassign 358390 to xserver-xorg-core

2007-08-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.7
 reassign 358390 xserver-xorg-core
Bug#358390: xserver-xorg: /usr/share/bug script patch for readability, 
portability, and extensibility
Bug reassigned from package `xserver-xorg' to `xserver-xorg-core'.


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#439522: xserver-xorg-video-intel: Not more than 640x680 on i845 (regression)

2007-08-25 Thread Daniel Baumann
Package: xserver-xorg-video-intel
Severity: important

Hi,

xserver-xorg-video-intel fails to display more than 640x680 on Intel
845GL Brookdale-G mainboards with i845 on-board graphic chips, whereas
xserver-xorg-video-i810 did previously work well.

Regards,
Daniel

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Bug#439210: Display corruption with EXA

2007-08-25 Thread Jos van Wolput

Hi Michel,

There is something strange with this EXA problem. After booting and login the 
screen always looks corrupted
but sometimes it becomes clear after restarting X. This behaviour seems 
unpredictable.
I also started glxgears in a corrupted screen which suddenly  became clear, 
first only the terminal running glxgears
and then the whole screen!
Anyway I now add an Xorg.0.log after a clear login.
I compared the good and the bad logs. The only differences are found in 
some memory addrsesses.

Jos
--
website: http://homepages.onsneteindhoven.nl/~wolput
-
Debian GNU/Linux: the Universal Operating System


X Window System Version 1.3.0
Release Date: 19 April 2007
X Protocol Version 11, Revision 0, Release 1.3
Build Operating System: Linux Debian (xorg-server 2:1.3.0.0.dfsg-12)
Current Operating System: Linux 5-33-ftth 2.6.22-1-686 #1 SMP Sun Jul 29 14:37:42 UTC 2007 i686
Build Date: 09 August 2007
	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Sat Aug 25 10:28:51 2007
(==) Using config file: /etc/X11/xorg.conf
(==) ServerLayout Default Layout
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Generic Monitor
(**) |   |--Device Intel Corporation 82852/855GM Integrated Graphics Device
(**) |--Input Device Generic Keyboard
(**) |--Input Device Configured Mouse
(**) |--Input Device Synaptics Touchpad
(WW) Including the default font path /usr/share/fonts/X11/misc,/usr/share/fonts/X11/cyrillic,/usr/share/fonts/X11/100dpi/:unscaled,/usr/share/fonts/X11/75dpi/:unscaled,/usr/share/fonts/X11/Type1,/usr/share/fonts/X11/100dpi,/usr/share/fonts/X11/75dpi,/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType.
(**) FontPath set to:
	unix/:7100,
	/usr/share/fonts/X11/misc:unscaled,
	/usr/share/fonts/X11/misc:scaled,
	/usr/share/fonts/X11/100dpi:unscaled,
	/usr/share/fonts/X11/75dpi:unscaled,
	/usr/share/fonts/X11/100dpi:scaled,
	/usr/share/fonts/X11/75dpi:scaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/cyrillic,
	/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
	/usr/share/fonts/truetype,
	/usr/local/share/fonts,
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/cyrillic,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi,
	/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
(==) RgbPath set to /etc/X11/rgb
(==) ModulePath set to /usr/lib/xorg/modules
(**) Extension Composite is enabled
(**) Extension RENDER is enabled
(**) Extension DAMAGE is enabled
(**) Extension XFIXES is enabled
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Loader magic: 0x81e5140
(II) Module ABI versions:
	X.Org ANSI C Emulation: 0.3
	X.Org Video Driver: 1.2
	X.Org XInput driver : 0.7
	X.Org Server Extension : 0.3
	X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: pcidata
(II) Loading /usr/lib/xorg/modules//libpcidata.so
(II) Module pcidata: vendor=X.Org Foundation
	compiled for 1.3.0, module version = 1.0.0
	ABI class: X.Org Video Driver, version 1.2
(++) using VT number 9

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,3580 card 1584,9022 rev 02 class 06,00,00 hdr 80
(II) PCI: 00:00:1: chip 8086,3584 card 1584,9022 rev 02 class 08,80,00 hdr 00
(II) PCI: 00:00:3: chip 8086,3585 card 1584,9022 rev 02 class 08,80,00 hdr 80
(II) PCI: 00:02:0: chip 8086,3582 card 1584,9500 rev 02 class 03,00,00 hdr 80
(II) PCI: 00:02:1: chip 8086,3582 card 1584,9500 rev 02 class 03,80,00 hdr 80
(II) PCI: 00:1d:0: chip 8086,24c2 card 1584,9022 rev 03 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 1584,9022 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 1584,9022 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 1584,9022 rev 03 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,2448 card , rev 83 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24cc card , rev 03 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24ca card 1584,9022 rev 03 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,24c3 card 1584,9022 rev 03 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 1584,8401 rev 03 class 04,01,00 hdr 00
(II) PCI: 01:03:0: chip 104c,ac50 card c000, rev 02 class 06,07,00 hdr 02
(II) PCI: 01:07:0: chip 8086,4220 card 8086,2702 rev 05 class 02,80,00 hdr 00
(II) PCI: 01:0a:0: chip 104c,8023 card 1584,7000 rev 00 class 0c,00,10 hdr 00
(II) PCI: 01:0c:0: chip 10ec,8139 card 1584,9700 rev 10 class 02,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Intel Bridge workaround enabled
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
	[0] -1	0	

Bug#439522: xserver-xorg-video-intel: Not more than 640x680 on i845 (regression)

2007-08-25 Thread Brice Goglin
Daniel Baumann wrote:
 xserver-xorg-video-intel fails to display more than 640x680 on Intel
 845GL Brookdale-G mainboards with i845 on-board graphic chips, whereas
 xserver-xorg-video-i810 did previously work well.
   

Please use the 'reportbug' tool when reporting bugs, it will take care
of including all information we need. As a workaround, please send the
_whole_ output of /usr/share/bug/xserver-xorg/script 31.

What do you mean by fails to display ? It refuses the mode? You get a
blank screen? Are other modes available (look at the output of xrandr)?
Did you try to change the mode with something like with xrandr --output
VGA --mode 800x600? Please also send the output of xrandr.

Thanks,
Brice



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



Re: xserver-xorg (1:7.2.ds3-1) to 1:7.3~rc1 fails with orig. NVIDIA 9639 driver.

2007-08-25 Thread Michel Dänzer
On Fri, 2007-08-24 at 20:39 +0200, Norbert Breun wrote:
 
 not sure what your intention is. Mine never was or is to blame
 anybody.

Neither is mine, just to rectify factually incorrect claims.


 Fact is on the other hand: My system runs since 7 years and it runs
 more or less comfortably with nvidia drivers. GLX was created by
 Silicon Graphics. GLX, with both DRI and Mesa, is included in the
 X.Org Foundation's version of the X Window System since X11R6.7.0,
 that means actually April 6, 2004. 

That's because before then, the only widely usable distribution of the X
Window System (and the only one supported by the nvidia driver) was
XFree86.


 And: You are perfectly right. Debian driver packages exist and they
 worked comfortably even to me until this spring. I did not find a way
 to make them work again. Installing the NVIDIA stuff as delivered by
 NVIDIA was the easiest way to me to solve this. 

That's your choice, but again you have to accept the consequences.
There's just no way for the packaging system to accommodate unpackaged
software working around it.


-- 
Earthling Michel Dänzer   |  http://tungstengraphics.com
Libre software enthusiast |  Debian, X and DRI developer



Bug#439522: xserver-xorg-video-intel: Not more than 640x680 on i845 (regression)

2007-08-25 Thread Daniel Baumann
Brice Goglin wrote:
 Please use the 'reportbug' tool when reporting bugs, it will take care
 of including all information we need. As a workaround, please send the
 _whole_ output of /usr/share/bug/xserver-xorg/script 31.

didn't know that. output is attached.

 What do you mean by fails to display ? It refuses the mode?

it refuses the mode and, whatever is written in xorg.conf, only displays
640x680.

 Are other modes available (look at the output of xrandr)?
 Did you try to change the mode with something like with xrandr --output
 VGA --mode 800x600? Please also send the output of xrandr.

attached.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/
Contents of /var/lib/x11/X.roster:
xserver-xorg

/etc/X11/X target does not match checksum in /var/lib/x11/X.md5sum.

X server symlink status:
lrwxrwxrwx 1 root root 13 2007-08-21 17:14 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1736632 2007-08-09 19:39 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 01)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1694 2007-08-25 15:43 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type man xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section Files
EndSection

Section InputDevice
	Identifier	Generic Keyboard
	Driver		kbd
	Option		CoreKeyboard
	Option		XkbRules	xorg
	Option		XkbModel	pc105
	Option		XkbLayout	ch
EndSection

Section InputDevice
	Identifier	Configured Mouse
	Driver		mouse
	Option		CorePointer
	Option		Device		/dev/input/mice
	Option		Protocol		ExplorerPS/2
EndSection

Section Device
	Identifier	Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device
	Driver		intel
	Option		UseFBDev		true
EndSection

Section Monitor
	Identifier	Standardbildschirm
	Option		DPMS
	HorizSync	31-61
	VertRefresh	56-75
EndSection

Section Screen
	Identifier	Default Screen
	Device		Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device
	Monitor		Standardbildschirm
	DefaultDepth	16
	SubSection Display
		Modes		1024x768
	EndSubSection
EndSection

Section ServerLayout
	Identifier	Default Layout
	Screen		Default Screen
	InputDevice	Generic Keyboard
	InputDevice	Configured Mouse
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 37673 2007-08-25 14:46 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 39647 2007-08-25 15:43 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X Window System Version 1.3.0
Release Date: 19 April 2007
X Protocol Version 11, Revision 0, Release 1.3
Build Operating System: Linux Debian (xorg-server 2:1.3.0.0.dfsg-12)
Current Operating System: Linux debian 2.6.21-2-686 #1 SMP Wed Jul 11 03:53:02 UTC 2007 i686
Build Date: 09 August 2007
	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Sat Aug 25 15:43:38 2007
(==) Using config file: /etc/X11/xorg.conf
(==) ServerLayout Default Layout
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Standardbildschirm
(**) |   |--Device Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device
(**) |--Input Device Generic Keyboard
(**) |--Input Device Configured Mouse
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
	Entry deleted from font path.
(WW) The directory /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType does not exist.
	Entry deleted from font path.
(==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi
(==) RgbPath set to /etc/X11/rgb
(==) ModulePath set to /usr/lib/xorg/modules
(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
(II) No APM support in BIOS or kernel
(II) Loader magic: 0x81e5140
(II) 

Bug#439540: xterm locks up when I run who -a

2007-08-25 Thread Justin Piszcz

Package: xterm
Version: 229-1

Running: Debian Testing
Kernel: 2.6.22

Running who -a freezes the terminal window, see below:

ca   + pts/18   2007-08-18 18:42 00:036240 (:1.0)
   pts/19   2007-08-25 09:59  6244 id=p19   term=0 
exit=2
ca   + pts/20   2007-08-18 18:42  old 6248 (:1.0)
ca   + pts/21   2007-08-18 18:42  old 6252 (:1.0)
bob  + pts/23   2007-08-03 13:46  old 3107 (xx)
bob  + pts/24   2007-08-25 10:07   .  1717 (xxx.)
   l4:0 2007-08-10 19:32 0 id=:Ô
   ^ it stops
 printing here

Running the same command with rxvt works fine.

Justin.

Bug#389007: Regression: Radeon 9200 powers off Apple Cinema Display connected via DVI

2007-08-25 Thread Brice Goglin
On Fri, Aug 10, 2007 at 08:29:10AM +0200, Brice Goglin wrote:
 
  NoDDC set to true or false has no effect.  The monitor is powered off
  with all combination of this option with either or both of the PanelSize
  and MonitorLayout commented out.
 
  NoDDC set to true or false with both PanelSize and MonitorLayout
  enabled result in a working monitor.

 
 This bug should be forwarded in the upstream bugzilla to get good care,
 especially if it still does not work with latest 1:6.6.193-1 in
 experimental.
 
 Before I do so, you could test the randr-1.2 branch of the upstream git
 repository in case it helps.

Hi Roger,

The randr-1.2 branch has been merged, it is now available in Debian in
xserver-xorg-video-ati 1:6.7.191-1 (in experimental). Please let me
know whether it helps.

If not, does xrandr report that the cinema display is connected? Are any
modes detected? Please the xrandr output and the new Xorg.0.log.

Brice



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



Bug#439522: xserver-xorg-video-intel: Not more than 640x680 on i845 (regression)

2007-08-25 Thread Brice Goglin
Daniel Baumann wrote:
 What do you mean by fails to display ? It refuses the mode?
 

 it refuses the mode and, whatever is written in xorg.conf, only displays
 640x680.
   

Your xorg.conf uses the old syntax, you are now using a randr-1.2-aware
driver, the way to select a mode has changed, see below.

 Section Device
   Identifier  Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset 
 Integrated Graphics Device
   Driver  intel
   Option  UseFBDev  true
 EndSection
   

(your log says that UseFBDev is ignored)

 Section Monitor
   Identifier  Standardbildschirm
   Option  DPMS
   HorizSync   31-61
   VertRefresh 56-75
 EndSection
   

You should drop HorizSync and VertRefresh.

 Section Screen
   Identifier  Default Screen
   Device  Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset 
 Integrated Graphics Device
   Monitor Standardbildschirm
   DefaultDepth16
   SubSection Display
   Modes   1024x768
   EndSubSection
 EndSection
   

You should drop the Modes line, it's probably ignored with your
server/driver.

 (II) intel(0): Modeline 640x350x70.1   25.18  640 688 784 800  350 410 412 
 449 -hsync +vsync (31.5 kHz)
 (II) intel(0): Modeline 1024x768x74.9   82.00  1024 1088 1192 1360  768 771 
 775 805 -hsync +vsync (60.3 kHz)
 (II) intel(0): Modeline 1024x768x69.8   75.25  1024 1080 1184 1344  768 771 
 775 802 -hsync +vsync (56.0 kHz)
 (II) intel(0): Modeline 1024x768x70.1   75.00  1024 1048 1184 1328  768 771 
 777 806 -hsync -vsync (56.5 kHz)
 (II) intel(0): Modeline 1024x768x60.0   65.00  1024 1048 1184 1344  768 771 
 777 806 -hsync -vsync (48.4 kHz)
 (II) intel(0): Modeline 1024x768x59.9   63.50  1024 1072 1176 1328  768 771 
 775 798 -hsync +vsync (47.8 kHz)
 (II) intel(0): Modeline 800x600x72.2   50.00  800 856 976 1040  600 637 643 
 666 +hsync +vsync (48.1 kHz)
 (II) intel(0): Modeline 800x600x75.0   49.50  800 816 896 1056  600 601 604 
 625 +hsync +vsync (46.9 kHz)
 (II) intel(0): Modeline 800x600x74.9   49.00  800 840 920 1040  600 603 607 
 629 -hsync +vsync (47.1 kHz)
 (II) intel(0): Modeline 800x600x72.0   47.00  800 840 920 1040  600 603 607 
 628 -hsync +vsync (45.2 kHz)
 (II) intel(0): Modeline 800x600x60.3   40.00  800 840 968 1056  600 601 605 
 628 +hsync +vsync (37.9 kHz)
 (II) intel(0): Modeline 800x600x59.9   38.25  800 832 912 1024  600 603 607 
 624 -hsync +vsync (37.4 kHz)
 (II) intel(0): Modeline 800x600x56.2   36.00  800 824 896 1024  600 601 603 
 625 +hsync +vsync (35.2 kHz)
 (II) intel(0): Modeline 640x480x75.0   31.50  640 656 720 840  480 481 484 
 500 -hsync -vsync (37.5 kHz)
 (II) intel(0): Modeline 640x480x72.8   31.50  640 664 704 832  480 489 491 
 520 -hsync -vsync (37.9 kHz)
 (II) intel(0): Modeline 640x480x74.8   30.75  640 664 728 816  480 483 487 
 504 -hsync +vsync (37.7 kHz)
 (II) intel(0): Modeline 640x480x71.9   29.50  640 664 728 816  480 483 487 
 503 -hsync +vsync (36.2 kHz)
 (II) intel(0): Modeline 640x480x60.0   25.20  640 656 752 800  480 490 492 
 525 -hsync -vsync (31.5 kHz)
 (II) intel(0): Modeline 720x400x70.1   28.32  720 738 846 900  400 412 414 
 449 -hsync +vsync (31.5 kHz)
 (II) intel(0): Output VGA connected
 (II) intel(0): Output VGA using initial mode 640x350
   

There seem to be plenty of video modes that are available.

 Screen 0: minimum 320 x 200, current 640 x 350, maximum 1024 x 1024
 VGA connected 640x350+0+0 (normal left inverted right) 304mm x 228mm
640x35070.1*+
1024x768   74.9 69.8 70.1 60.0 59.9  
800x60072.2 75.0 74.9 72.0 60.3 59.9 56.2  
640x48075.0 72.8 74.8 71.9 60.0  
720x40070.1  
   


What does *exactly* happen if you do
xrandr --output VGA --mode 800x600
? or 1024x768 ?
What kind of monitor is connected to which port?

Brice



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



Bug#431098: Blender crash with 7.0.1-1 version

2007-08-25 Thread Aurélien PROVIN
I upgraded to 7.0.1-1 but blender crash again.

With gdb:

#0  0xb74a6e7d in ?? () from /usr/lib/dri/radeon_dri.so
#1  0x0018 in ?? ()
#2  0x092f06d8 in ?? ()
#3  0x0020 in ?? ()
#4  0xb7e1a8dc in ?? () from /usr/lib/libGL.so.1
#5  0x080c6b15 in ?? ()
#6  0xb8a0c74a in ?? ()
#7  0x080c6b1d in ?? ()
#8  0xbff773f4 in ?? ()
#9  0x0001 in ?? ()
#10 0x in ?? ()

I tried to install libgl1-mesa-dri-dbg due to get debug symbols in gdb but
X doesn't start... I can just do Ctrl Alt BackSpace and Ctrl Alt Sup
to restart my laptop.

tail Xorg.0.log :

(II) Initializing built-in extension XEVIE
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenByBusid: Searching for BusID pci::01:05.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenByBusid: drmOpenMinor returns 8
drmOpenByBusid: drmGetBusid reports pci::01:05.0

Backtrace:






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



Re: xserver-xorg (1:7.2.ds3-1) to 1:7.3~rc1 fails with orig. NVIDIA 9639 driver.

2007-08-25 Thread Norbert Breun
Michel,


read my posting and do not answer your own thoughts.


Cheers

Norbert




Michel Dänzer wrote:



 That's your choice, but again you have to accept the consequences.
 There's just no way for the packaging system to accommodate unpackaged
 software working around it.
   


Bug#431098: Blender crash with 7.0.1-1 version

2007-08-25 Thread Brice Goglin
Aurélien PROVIN wrote:
 I upgraded to 7.0.1-1 but blender crash again.
   

Bug#431098 is not about a crash of blender, it's about a display
corruption. Since you are experiencing a completely different issue,
please stop replying to #431098 and open a new bug report with all the
relevant information.


 With gdb:

 #0  0xb74a6e7d in ?? () from /usr/lib/dri/radeon_dri.so
 #1  0x0018 in ?? ()
 #2  0x092f06d8 in ?? ()
 #3  0x0020 in ?? ()
 #4  0xb7e1a8dc in ?? () from /usr/lib/libGL.so.1
 #5  0x080c6b15 in ?? ()
 #6  0xb8a0c74a in ?? ()
 #7  0x080c6b1d in ?? ()
 #8  0xbff773f4 in ?? ()
 #9  0x0001 in ?? ()
 #10 0x in ?? ()

 I tried to install libgl1-mesa-dri-dbg due to get debug symbols in gdb but
 X doesn't start...

I don't see how X could fail start because you installed
libgl1-mesa-dri-dbg, this package only contains debugging symbols for a
library that X clients uses, not the X server. Please try this again and
make sure something else is not preventing X from starting. We can't do
anything with a backtrace like the above one.

 tail Xorg.0.log :

 (II) Initializing built-in extension XEVIE
 drmOpenDevice: node name is /dev/dri/card0
 drmOpenDevice: open result is 8, (OK)
 drmOpenByBusid: Searching for BusID pci::01:05.0
 drmOpenDevice: node name is /dev/dri/card0
 drmOpenDevice: open result is 8, (OK)
 drmOpenByBusid: drmOpenMinor returns 8
 drmOpenByBusid: drmGetBusid reports pci::01:05.0
   

Nothing bad to see here. If it could help, we would need the whole
xorg.conf and Xorg.0.log.

Brice




Bug#208683: Bug #127 SAVE AS

2007-08-25 Thread Ramona Britton
An incredible press release is expected out of the company very soon.   
This will be backed up by a PR blitz and I'm sure you can guess what will 
happen to the price! 

CHINA YOUTV CORP (CYTV) 
Get in now .40 

Recent News 

China YouTV's JV Partner Signed Agreement for a Chinese Provincial Portal's DV 
Shorts Channel 
Tuesday August 21, 12:30 pm ET 

China YouTV's CnBoo Web Site Ranks No.1 on Google.com 
Friday August 17, 11:25 am ET 

China YouTV Corp.: Strong Growth Trend in Internet Video in China Continues 
Tuesday August 14, 10:54 am ET 

China YouTV's CnBoo Web Site Ranks No.1 on Microsoft Live Search Engine 
Wednesday August 8, 3:24 pm ET 



As I write this, they should be thinking about a new policy, you know, that 
kind of policy that if you think very hard it would justify the deletion of The 
Inquirer. 

Friends began emailing Talinda and referring to messages they had received from 
her — messages that she had never sent. When they forwarded the emails to her, 
she saw that they came from a Yahoo account she hadn't used in months. 

Having said that every Mac user dumps Safari as soon as they can, he then says 
he doesn't give 2 shits about the actual figures for Safari use, just that 'it 
doesn't mean there aren't problems with them'. 



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



Processed: reassign 439276 xserver-xorg-video-intel

2007-08-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reassign 439276 xserver-xorg-video-intel
Bug#439276: idesk: X11/Xorg testing crash with intel driver 865G hardware.
Bug reassigned from package `idesk' to `xserver-xorg-video-intel'.

 --
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]



Processed: severity of 439276 is important

2007-08-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.7
 severity 439276 important
Bug#439276: idesk: X11/Xorg testing crash with intel driver 865G hardware.
Severity set to `important' from `critical'


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]