Coordinating work around X.Org drivers

2011-02-05 Thread Cyril Brulebois
Hi everyone,

I've looked into Maintainer/Uploaders of packages matching
xserver-xorg-* and xf86-*, and tried to gather everyone.

(I also added some Ubuntu folks, for good measure.)

While preparing the xorg-server 1.7 → 1.9 switch, the dependency
handling between the server and the drivers got changed. AFAICT we've
got decent dependencies now, meaning the drivers provide a feature
(xorg-driver-input or xorg-driver-video), with no ABI mentioned
there. They also depend on the server ABI they were built against.

Documentation is available online:
  http://pkg-xorg.alioth.debian.org/reference/dependencies.html

It includes: explanations of upstream- and Debian-side ABI handling;
dependencies between packages; debian/control and debian/rules
examples.

Let me quote the (upcoming) last part:
| ## Staying tuned
| 
| Staying informed of driver-related changes can be a bit difficult in
| the following cases:
| 
|  * If one maintains a single driver within the X Strike Force, one
|might not notice the few mails about drivers in the heavy mail flow
|on debian-x@.
| 
|  * If one maintains a driver outside the X Strike Force, one is
|probably not subscribed to the mailing list at all.
| 
| For those reasons, a mail alias is being set up to gather all
| maintainers interested in receiving driver-related mails.

If you're interested in being added to this alias, please let me know
in a private mail.

I posted a “Status of the drivers” mail to debian-x@ yesterday:
  http://lists.debian.org/debian-x/2011/02/msg00243.html

Basically, for the upcoming weeks/months:
 - 1.9 goes to sid.
 - 1.10 goes to experimental.

If you have stuff you'd like to see mentioned in the “Debian XSF News”
(which appears on Planet Debian), please let me know. Along with other
X-related stuff, news appear on:
  http://blog.ikibiki.org/tags/xorg/

Thanks for your attention.

KiBi.


signature.asc
Description: Digital signature


xsf-docs: Changes to 'master'

2011-02-05 Thread Cyril Brulebois
 reference/dependencies.mdwn |  101 ++--
 1 file changed, 88 insertions(+), 13 deletions(-)

New commits:
commit b80193b9126ba009f70af25d38b87a7b8f9a5d91
Author: Cyril Brulebois 
Date:   Sun Feb 6 07:37:43 2011 +0100

dependencies: Add sample control and rules files.

diff --git a/reference/dependencies.mdwn b/reference/dependencies.mdwn
index dca9156..19d4fdc 100644
--- a/reference/dependencies.mdwn
+++ b/reference/dependencies.mdwn
@@ -123,3 +123,84 @@ To make it easy to compute substvars when using `dh`, a 
`dh` sequence
 (`xsf.pm`) is shipped. As of `2:1.9.4-1`, it inserts
 `dh_xsf_substvars` right before the `dh_gencontrol` call. Other
 repetitive tasks could also be automated this way.
+
+
+## Sample driver packaging
+
+The following assumes:
+
+ * The upstream build system is sane enough, which lets us run
+   `autoreconf` at build time.
+ * It is a `video` driver. For an `input` driver, replace both
+   `xviddriver` occurrences with `xinpdriver`.
+
+### Sample debian/control file
+
+Build-Depends:
+ debhelper (>= 8),
+ dh-autoreconf,
+ quilt,
+ xserver-xorg-dev (>= 2:1.9.4),
+ …
+
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+ ${xviddriver:Depends},
+Provides:
+ ${xviddriver:Provides}
+
+
+### Sample debian/rules file
+
+#!/usr/bin/make -f
+
+# Configuration:
+#override_dh_auto_configure:
+#dh_auto_configure -- --with-FOO --without-BAR
+
+# Install in debian/tmp to retain control through dh_install:
+override_dh_auto_install:
+dh_auto_install --destdir=debian/tmp
+
+# Kill *.la files, and forget no-one:
+override_dh_install:
+find debian/tmp -name '*.la' -delete
+dh_install --fail-missing
+
+## Debug package:
+#override_dh_strip:
+#dh_strip --dbg-package=xserver-xorg-video-DRIVER-dbg
+
+# That's a plugin, use appropriate warning level:
+override_dh_shlibdeps:
+dh_shlibdeps -- --warnings=6
+
+%:
+dh $@ --with quilt,autoreconf,xsf --builddirectory=build/
+
+Some comments:
+
+ * `dh_auto_configure`: Commented out since there’s usually no
+   specific option to pass when building drivers. Sometimes needed to
+   get a related utility built.
+ * `dh_auto_install`: It behaves differently when operating on a
+   single package (it installs under `debian/PACKAGE` instead of
+   `debian/tmp`), so make it use `debian/tmp` in all cases. This way,
+   `dh_install` has to be used (see below). That also means that a
+   binary package (*e.g.* a debug package) can be added without
+   changing this part.
+ * `dh_install`: No point in keeping the `.la` files. Also, using
+   `--fail-missing` makes sure every file installed by upstream is
+   installed in some package, or explicitly ignored.
+ * `dh_strip`: Commented out, there’s only a few drivers shipping a
+   debug package.
+ * `dh_shlibdeps`: The comment really says it all.
+ * `dh`: The order is important! We want patching to happen before
+   autoreconfiguring (both `quilt` and `autoreconf` insert commands
+   before `dh_auto_configure`, and after `dh_clean`). Also, we build
+   out-of-tree. The `xsf` sequence is explained in the previous part.
+
+If one needs to build several flavours,
+[`fbdev`’s rules 
file](http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-fbdev.git;a=blob;f=debian/rules)
+can be used as an example.

commit f87c7dad87aba4c9d0fd507b950afb61cca138ad
Author: Cyril Brulebois 
Date:   Sun Feb 6 07:37:37 2011 +0100

dependencies: Document xsf's dh sequence.

diff --git a/reference/dependencies.mdwn b/reference/dependencies.mdwn
index f6987eb..dca9156 100644
--- a/reference/dependencies.mdwn
+++ b/reference/dependencies.mdwn
@@ -119,13 +119,7 @@ variable” warning messages while building. And since 
there’s a clear
 only input-related variables for input drivers, and only video-related
 variables for video drivers.
 
-
-## Possible improvements
-
-Once we’re done implementing the above stuff in `xorg-server`, and
-getting rid of deprecated features, we can do a bit more.
-
-To make it easy to compute substvars when using `dh`, we can ship a
-`dh` sequence to insert `dh_xsf_substvars` right before the
-`dh_gencontrol` call. That sequence could also be used to automate
-other stuff.
+To make it easy to compute substvars when using `dh`, a `dh` sequence
+(`xsf.pm`) is shipped. As of `2:1.9.4-1`, it inserts
+`dh_xsf_substvars` right before the `dh_gencontrol` call. Other
+repetitive tasks could also be automated this way.

commit ac1cc074195214738677fdc1c9f1a1352f38b0e9
Author: Cyril Brulebois 
Date:   Sun Feb 6 07:37:21 2011 +0100

dependencies: Mention the version where dh_xsf_substvars appeared.

diff --git a/reference/dependencies.mdwn b/reference/dependencies.mdwn
index 8725713..f6987eb 100644
--- a/reference/dependencies.mdwn
+++ b/reference/dependencies.mdwn
@@ -95,7 +95,7 @@ tweaks afterwards if nee

Processing of pixman_0.21.4-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
pixman_0.21.4-2_amd64.changes uploaded successfully to localhost
along with the files:
  pixman_0.21.4-2.dsc
  pixman_0.21.4-2.diff.gz
  libpixman-1-0_0.21.4-2_amd64.deb
  libpixman-1-0-udeb_0.21.4-2_amd64.udeb
  libpixman-1-0-dbg_0.21.4-2_amd64.deb
  libpixman-1-dev_0.21.4-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plxo5-00064t...@franck.debian.org



pixman: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
Rebased ref, commits from common ancestor:
commit fc1b85f2587e666e07a8ce8cfdcdeac0e228dcb4
Author: Cyril Brulebois 
Date:   Sun Feb 6 05:31:27 2011 +0100

Upload to unstable.

diff --git a/debian/changelog b/debian/changelog
index 93f0f5e..03819ff 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+pixman (0.21.4-2) unstable; urgency=low
+
+  * Upload to unstable.
+
+ -- Cyril Brulebois   Sun, 06 Feb 2011 05:31:10 +0100
+
 pixman (0.21.4-1) experimental; urgency=low
 
   * New upstream release.

commit 84bb9a760590d3d5f233510fb28b8103dd958766
Author: Cyril Brulebois 
Date:   Thu Nov 18 15:10:53 2010 +0100

Mention upstream git URL in a comment.

diff --git a/debian/watch b/debian/watch
index b83209f..282b677 100644
--- a/debian/watch
+++ b/debian/watch
@@ -1,2 +1,3 @@
+#git=git://anongit.freedesktop.org/pixman
 version=3
 http://xorg.freedesktop.org/releases/individual/lib/ pixman-(.*)\.tar\.gz

commit 8aeb637bb5e08ff8c0a57fb57cb614df4aa1e6b5
Author: Cyril Brulebois 
Date:   Wed Jan 19 20:31:42 2011 +0100

Upload to experimental.

diff --git a/debian/changelog b/debian/changelog
index f8770bd..93f0f5e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,9 @@
-pixman (0.21.4-1) UNRELEASED; urgency=low
+pixman (0.21.4-1) experimental; urgency=low
 
   * New upstream release.
   * Update debian/copyright from upstream's COPYING.
 
- -- Cyril Brulebois   Wed, 19 Jan 2011 20:24:29 +0100
+ -- Cyril Brulebois   Wed, 19 Jan 2011 20:31:26 +0100
 
 pixman (0.21.2-1) experimental; urgency=low
 

commit 461dacfb5ef3460589cc323e8166e30fda7f71af
Author: Cyril Brulebois 
Date:   Wed Jan 19 20:25:41 2011 +0100

Update debian/copyright from upstream's COPYING.

diff --git a/debian/changelog b/debian/changelog
index 2aeed11..f8770bd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 pixman (0.21.4-1) UNRELEASED; urgency=low
 
   * New upstream release.
+  * Update debian/copyright from upstream's COPYING.
 
  -- Cyril Brulebois   Wed, 19 Jan 2011 20:24:29 +0100
 
diff --git a/debian/copyright b/debian/copyright
index 75b5df5..8b08a4a 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -23,7 +23,8 @@ possible. They may also add themselves to the list below.
  * Copyright 2008 André Tupinambá
  * Copyright 2008 Mozilla Corporation
  * Copyright 2008 Frederic Plourde
- * Copyright 2009 Sun Microsystems, Inc.
+ * Copyright 2009, Oracle and/or its affiliates. All rights reserved.
+ * Copyright 2009, 2010 Nokia Corporation
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),

commit e5816268279a2011a3cdbcac3c9d49f7aea2b7b5
Author: Cyril Brulebois 
Date:   Wed Jan 19 20:24:49 2011 +0100

Bump changelogs.

diff --git a/ChangeLog b/ChangeLog
index 64fdf9c..bb4c999 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,662 @@
+commit 4e56cec5649b7e122ccfc815b4ff45611953afce
+Author: Søren Sandmann Pedersen 
+Date:   Wed Jan 19 07:38:24 2011 -0500
+
+Pre-release version bump to 0.21.4
+
+commit 1d7195dd6c68eab73d063f37de3a9331446111d4
+Author: Søren Sandmann Pedersen 
+Date:   Mon Jan 17 14:12:20 2011 -0500
+
+Fix dangling-pointer bug in bits_image_fetch_bilinear_no_repeat_().
+
+The mask_bits variable is only declared in a limited scope, so the
+pointer to it becomes invalid instantly. Somehow this didn't actually
+trigger any bugs, but Brent Fulgham reported that Bounds Checker was
+complaining about it.
+
+Fix the bug by moving mask_bits to the function scope.
+
+commit 2ac4ae1ae253f7c2efedab036a677dac2f9c9eed
+Author: Andrea Canciani 
+Date:   Wed Jan 12 17:43:40 2011 +0100
+
+Add a test for radial gradients
+
+radial-test is a port of the radial-gradient test from the cairo test
+suite. It has been modified so that some pixels have 0 in both the a
+and b coefficients of the quadratic equation solved by the rasterizer,
+to expose a division by zero in the original implementation.
+
+commit 7f4eabbeec92e55fd8f812c0e5d8568eacbb633d
+Author: Søren Sandmann Pedersen 
+Date:   Sun Dec 12 07:34:42 2010 -0500
+
+Fix destination fetching
+
+When fetching from destinations, we need to ignore transformations,
+repeat and filtering. Currently we don't ignore them, which means all
+kinds of bad things can happen.
+
+This bug fixes this problem by directly calling the scanline fetchers
+for destinations instead of going through the full
+get_scanline_32/64().
+
+commit 9489c2e04a5361fe19a89a0da9d7be28436c0a4b
+Author: Søren Sandmann Pedersen 
+Date:   Sun Dec 12 09:19:13 2010 -0500
+
+Turn on testing for destination transformation
+
+commit fffeda703e40ced90ec5ad6d6cd37a44294d3fe4
+Author: Søren Sandmann Pedersen 
+Date:   Sat Dec 11 08:10:04 2010 -0500
+
+Skip fetching pixels when possible
+
+Add two new iterator flags, ITER_IGNORE_ALPHA and ITER_IGNORE_RGB t

pixman: Changes to 'refs/tags/pixman-0.21.4-2'

2011-02-05 Thread Cyril Brulebois
Tag 'pixman-0.21.4-2' created by Cyril Brulebois  at 
2011-02-06 05:39 +

Tagging upload of pixman 0.21.4-2 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1ONBgACgkQeGfVPHR5Nd1RwgCfZtWcocZY1Ig3BzF9sVlQtpiI
CHQAnigZ5njdien7F7toaJ4yhyodFj9e
=v1do
-END PGP SIGNATURE-

Changes since pixman-0.21.4-1:
Cyril Brulebois (2):
  Mention upstream git URL in a comment.
  Upload to unstable.

---
 debian/changelog |6 ++
 debian/watch |1 +
 2 files changed, 7 insertions(+)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plxlk-0003pk...@alioth.debian.org



pixman: Changes to 'debian-squeeze'

2011-02-05 Thread Cyril Brulebois
New branch 'debian-squeeze' available with the following commits:


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plxli-0003ol...@alioth.debian.org



Processing of xserver-xorg-video-glint_1.2.5-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-glint_1.2.5-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-glint_1.2.5-2.dsc
  xserver-xorg-video-glint_1.2.5-2.diff.gz
  xserver-xorg-video-glint_1.2.5-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhp-0007rr...@franck.debian.org



Processing of xserver-xorg-video-vesa_2.3.0-5_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-vesa_2.3.0-5_amd64.changes uploaded successfully to localhost
along with the files:
  xserver-xorg-video-vesa_2.3.0-5.dsc
  xserver-xorg-video-vesa_2.3.0-5.diff.gz
  xserver-xorg-video-vesa_2.3.0-5_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhp-0007ra...@franck.debian.org



Processing of xserver-xorg-video-apm_1.2.3-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-apm_1.2.3-2_amd64.changes uploaded successfully to localhost
along with the files:
  xserver-xorg-video-apm_1.2.3-2.dsc
  xserver-xorg-video-apm_1.2.3-2.diff.gz
  xserver-xorg-video-apm_1.2.3-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvho-0007qt...@franck.debian.org




Processing of xserver-xorg-video-glide_1.1.0-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-glide_1.1.0-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-glide_1.1.0-2.dsc
  xserver-xorg-video-glide_1.1.0-2.diff.gz
  xserver-xorg-video-glide_1.1.0-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvho-0007qc...@franck.debian.org



Processing of xserver-xorg-video-intel_2.14.0-3_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-intel_2.14.0-3_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-intel_2.14.0-3.dsc
  xserver-xorg-video-intel_2.14.0-3.diff.gz
  xserver-xorg-video-intel_2.14.0-3_amd64.deb
  xserver-xorg-video-intel-dbg_2.14.0-3_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvho-0007pf...@franck.debian.org



Processing of xserver-xorg-video-ivtvdev_1.1.2-1_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-ivtvdev_1.1.2-1_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-ivtvdev_1.1.2-1.dsc
  xserver-xorg-video-ivtvdev_1.1.2.orig.tar.gz
  xserver-xorg-video-ivtvdev_1.1.2-1.diff.gz
  xserver-xorg-video-ivtv_1.1.2-1_amd64.deb
  xserver-xorg-video-ivtv-dbg_1.1.2-1_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvho-0007q0...@franck.debian.org



Processing of xserver-xorg-input-evdev_2.6.0-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-input-evdev_2.6.0-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-input-evdev_2.6.0-2.dsc
  xserver-xorg-input-evdev_2.6.0-2.diff.gz
  xserver-xorg-input-evdev_2.6.0-2_amd64.deb
  xserver-xorg-input-evdev-udeb_2.6.0-2_amd64.udeb
  xserver-xorg-input-evdev-dev_2.6.0-2_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvho-0007ql...@franck.debian.org



Processing of xserver-xorg-video-sis_0.10.3-3_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-sis_0.10.3-3_amd64.changes uploaded successfully to localhost
along with the files:
  xserver-xorg-video-sis_0.10.3-3.dsc
  xserver-xorg-video-sis_0.10.3-3.diff.gz
  xserver-xorg-video-sis_0.10.3-3_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvho-0007pm...@franck.debian.org



Processing of xserver-xorg-video-dummy_0.3.4-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-dummy_0.3.4-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-dummy_0.3.4-2.dsc
  xserver-xorg-video-dummy_0.3.4-2.diff.gz
  xserver-xorg-video-dummy_0.3.4-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhn-0007oo...@franck.debian.org



Processing of xserver-xorg-video-tdfx_1.4.3-4_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-tdfx_1.4.3-4_amd64.changes uploaded successfully to localhost
along with the files:
  xserver-xorg-video-tdfx_1.4.3-4.dsc
  xserver-xorg-video-tdfx_1.4.3-4.diff.gz
  xserver-xorg-video-tdfx_1.4.3-4_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvho-0007p5...@franck.debian.org



Processing of xserver-xorg-video-sisusb_0.9.4-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-sisusb_0.9.4-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-sisusb_0.9.4-2.dsc
  xserver-xorg-video-sisusb_0.9.4-2.diff.gz
  xserver-xorg-video-sisusb_0.9.4-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhn-0007ox...@franck.debian.org



Processing of xserver-xorg-video-trident_1.3.4-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-trident_1.3.4-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-trident_1.3.4-2.dsc
  xserver-xorg-video-trident_1.3.4-2.diff.gz
  xserver-xorg-video-trident_1.3.4-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhn-0007nx...@franck.debian.org



Processing of xserver-xorg-video-nouveau_0.0.16+git20101210+8bb8231-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-nouveau_0.0.16+git20101210+8bb8231-2_amd64.changes uploaded 
successfully to localhost
along with the files:
  xserver-xorg-video-nouveau_0.0.16+git20101210+8bb8231-2.dsc
  xserver-xorg-video-nouveau_0.0.16+git20101210+8bb8231-2.diff.gz
  xserver-xorg-video-nouveau_0.0.16+git20101210+8bb8231-2_amd64.deb
  xserver-xorg-video-nouveau-dbg_0.0.16+git20101210+8bb8231-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhn-0007og...@franck.debian.org



Processing of xserver-xorg-input-keyboard_1.5.0-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-input-keyboard_1.5.0-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-input-keyboard_1.5.0-2.dsc
  xserver-xorg-input-keyboard_1.5.0-2.diff.gz
  xserver-xorg-input-kbd_1.5.0-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhm-0007mm...@franck.debian.org



Processing of xorg-server_1.9.4-1_amd64.changes

2011-02-05 Thread Debian FTP Masters
xorg-server_1.9.4-1_amd64.changes uploaded successfully to localhost
along with the files:
  xorg-server_1.9.4-1.dsc
  xorg-server_1.9.4.orig.tar.gz
  xorg-server_1.9.4-1.diff.gz
  xserver-common_1.9.4-1_all.deb
  xserver-xorg-core_1.9.4-1_amd64.deb
  xserver-xorg-core-udeb_1.9.4-1_amd64.udeb
  xserver-xorg-dev_1.9.4-1_amd64.deb
  xdmx_1.9.4-1_amd64.deb
  xdmx-tools_1.9.4-1_amd64.deb
  xnest_1.9.4-1_amd64.deb
  xvfb_1.9.4-1_amd64.deb
  xserver-xephyr_1.9.4-1_amd64.deb
  xserver-xfbdev_1.9.4-1_amd64.deb
  xserver-xorg-core-dbg_1.9.4-1_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhn-0007ng...@franck.debian.org



Processing of xserver-xorg-video-savage_2.3.2-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-savage_2.3.2-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-savage_2.3.2-2.dsc
  xserver-xorg-video-savage_2.3.2-2.diff.gz
  xserver-xorg-video-savage_2.3.2-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhm-0007n3...@franck.debian.org



Processing of xserver-xorg-input-synaptics_1.3.0-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-input-synaptics_1.3.0-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-input-synaptics_1.3.0-2.dsc
  xserver-xorg-input-synaptics_1.3.0-2.diff.gz
  xserver-xorg-input-synaptics_1.3.0-2_amd64.deb
  xserver-xorg-input-synaptics-dev_1.3.0-2_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhm-0007mv...@franck.debian.org



Processing of xserver-xorg-input-void_1.3.1-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-input-void_1.3.1-2_amd64.changes uploaded successfully to localhost
along with the files:
  xserver-xorg-input-void_1.3.1-2.dsc
  xserver-xorg-input-void_1.3.1-2.diff.gz
  xserver-xorg-input-void_1.3.1-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhm-0007mc...@franck.debian.org



Processing of xserver-xorg-video-vmware_11.0.3-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-vmware_11.0.3-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-vmware_11.0.3-2.dsc
  xserver-xorg-video-vmware_11.0.3-2.diff.gz
  xserver-xorg-video-vmware_11.0.3-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhm-0007lv...@franck.debian.org



Processing of xserver-xorg-video-siliconmotion_1.7.4-3_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-siliconmotion_1.7.4-3_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-siliconmotion_1.7.4-3.dsc
  xserver-xorg-video-siliconmotion_1.7.4-3.diff.gz
  xserver-xorg-video-siliconmotion_1.7.4-3_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhl-0007ln...@franck.debian.org



Processing of xserver-xorg-video-s3_0.6.3-4_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-s3_0.6.3-4_amd64.changes uploaded successfully to localhost
along with the files:
  xserver-xorg-video-s3_0.6.3-4.dsc
  xserver-xorg-video-s3_0.6.3-4.diff.gz
  xserver-xorg-video-s3_0.6.3-4_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhm-0007le...@franck.debian.org



Processing of xserver-xorg-video-i740_1.3.2-4_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-i740_1.3.2-4_amd64.changes uploaded successfully to localhost
along with the files:
  xserver-xorg-video-i740_1.3.2-4.dsc
  xserver-xorg-video-i740_1.3.2-4.diff.gz
  xserver-xorg-video-i740_1.3.2-4_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhl-0007ky...@franck.debian.org



Processing of xserver-xorg-video-neomagic_1.2.5-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-neomagic_1.2.5-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-neomagic_1.2.5-2.dsc
  xserver-xorg-video-neomagic_1.2.5-2.diff.gz
  xserver-xorg-video-neomagic_1.2.5-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhl-0007kp...@franck.debian.org



Processing of xserver-xorg-video-openchrome_0.2.904+svn891-1_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-openchrome_0.2.904+svn891-1_amd64.changes uploaded 
successfully to localhost
along with the files:
  xserver-xorg-video-openchrome_0.2.904+svn891-1.dsc
  xserver-xorg-video-openchrome_0.2.904+svn891.orig.tar.gz
  xserver-xorg-video-openchrome_0.2.904+svn891-1.diff.gz
  xserver-xorg-video-openchrome_0.2.904+svn891-1_amd64.deb
  xserver-xorg-video-via_0.2.904+svn891-1_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhl-0007k0...@franck.debian.org



Processing of xserver-xorg-video-ark_0.7.3-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-ark_0.7.3-2_amd64.changes uploaded successfully to localhost
along with the files:
  xserver-xorg-video-ark_0.7.3-2.dsc
  xserver-xorg-video-ark_0.7.3-2.diff.gz
  xserver-xorg-video-ark_0.7.3-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhl-0007l6...@franck.debian.org



Processing of xserver-xorg-video-rendition_4.2.4-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-rendition_4.2.4-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-rendition_4.2.4-2.dsc
  xserver-xorg-video-rendition_4.2.4-2.diff.gz
  xserver-xorg-video-rendition_4.2.4-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhl-0007kh...@franck.debian.org



Processing of xserver-xorg-video-mach64_6.8.2-5_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-mach64_6.8.2-5_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-mach64_6.8.2-5.dsc
  xserver-xorg-video-mach64_6.8.2-5.diff.gz
  xserver-xorg-video-mach64_6.8.2-5_amd64.deb
  xserver-xorg-video-mach64-dbg_6.8.2-5_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhl-0007jf...@franck.debian.org



Processing of xserver-xorg-video-voodoo_1.2.4-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-voodoo_1.2.4-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-voodoo_1.2.4-2.dsc
  xserver-xorg-video-voodoo_1.2.4-2.diff.gz
  xserver-xorg-video-voodoo_1.2.4-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhk-0007jm...@franck.debian.org



Processing of xserver-xorg-video-tseng_1.2.4-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-tseng_1.2.4-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-tseng_1.2.4-2.dsc
  xserver-xorg-video-tseng_1.2.4-2.diff.gz
  xserver-xorg-video-tseng_1.2.4-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhk-0007iv...@franck.debian.org



Processing of xserver-xorg-input-aiptek_1.3.1-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-input-aiptek_1.3.1-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-input-aiptek_1.3.1-2.dsc
  xserver-xorg-input-aiptek_1.3.1-2.diff.gz
  xserver-xorg-input-aiptek_1.3.1-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhk-0007j5...@franck.debian.org



Processing of xserver-xorg-input-joystick_1.5.0-7_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-input-joystick_1.5.0-7_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-input-joystick_1.5.0-7.dsc
  xserver-xorg-input-joystick_1.5.0-7.diff.gz
  xserver-xorg-input-joystick_1.5.0-7_amd64.deb
  xserver-xorg-input-joystick-dev_1.5.0-7_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhk-0007io...@franck.debian.org



Processing of xserver-xorg-input-vmmouse_12.6.99.901-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-input-vmmouse_12.6.99.901-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-input-vmmouse_12.6.99.901-2.dsc
  xserver-xorg-input-vmmouse_12.6.99.901-2.diff.gz
  xserver-xorg-input-vmmouse_12.6.99.901-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhk-0007hg...@franck.debian.org



Processing of xserver-xorg-input-elographics_1.2.4-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-input-elographics_1.2.4-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-input-elographics_1.2.4-2.dsc
  xserver-xorg-input-elographics_1.2.4-2.diff.gz
  xserver-xorg-input-elographics_1.2.4-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhk-0007hx...@franck.debian.org



Processing of xserver-xorg-video-chips_1.2.3-3_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-chips_1.2.3-3_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-chips_1.2.3-3.dsc
  xserver-xorg-video-chips_1.2.3-3.diff.gz
  xserver-xorg-video-chips_1.2.3-3_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhk-0007ie...@franck.debian.org



Processing of xserver-xorg-video-cirrus_1.3.2-4_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-cirrus_1.3.2-4_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-cirrus_1.3.2-4.dsc
  xserver-xorg-video-cirrus_1.3.2-4.diff.gz
  xserver-xorg-video-cirrus_1.3.2-4_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhj-0007hp...@franck.debian.org



Processing of xorg_7.6+1_amd64.changes

2011-02-05 Thread Debian FTP Masters
xorg_7.6+1_amd64.changes uploaded successfully to localhost
along with the files:
  xorg_7.6+1.dsc
  xorg_7.6+1.tar.gz
  x11-common_7.6+1_all.deb
  xorg-dev_7.6+1_all.deb
  xbase-clients_7.6+1_all.deb
  xutils_7.6+1_all.deb
  xserver-xorg_7.6+1_amd64.deb
  xserver-xorg-video-all_7.6+1_amd64.deb
  xserver-xorg-input-all_7.6+1_amd64.deb
  xorg_7.6+1_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhj-0007h8...@franck.debian.org



Processing of xserver-xorg-input-mouse_1.6.0-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-input-mouse_1.6.0-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-input-mouse_1.6.0-2.dsc
  xserver-xorg-input-mouse_1.6.0-2.diff.gz
  xserver-xorg-input-mouse_1.6.0-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhj-0007fs...@franck.debian.org



Processing of xserver-xorg-video-r128_6.8.1-5_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-r128_6.8.1-5_amd64.changes uploaded successfully to localhost
along with the files:
  xserver-xorg-video-r128_6.8.1-5.dsc
  xserver-xorg-video-r128_6.8.1-5.diff.gz
  xserver-xorg-video-r128_6.8.1-5_amd64.deb
  xserver-xorg-video-r128-dbg_6.8.1-5_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhj-0007gd...@franck.debian.org



Processing of xserver-xorg-video-ati_6.13.2-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-ati_6.13.2-2_amd64.changes uploaded successfully to localhost
along with the files:
  xserver-xorg-video-ati_6.13.2-2.dsc
  xserver-xorg-video-ati_6.13.2-2.diff.gz
  xserver-xorg-video-ati_6.13.2-2_amd64.deb
  xserver-xorg-video-ati-dbg_6.13.2-2_amd64.deb
  xserver-xorg-video-radeon_6.13.2-2_amd64.deb
  xserver-xorg-video-radeon-dbg_6.13.2-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhi-0007fb...@franck.debian.org



Processing of xserver-xorg-input-mutouch_1.2.1-4_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-input-mutouch_1.2.1-4_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-input-mutouch_1.2.1-4.dsc
  xserver-xorg-input-mutouch_1.2.1-4.diff.gz
  xserver-xorg-input-mutouch_1.2.1-4_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhj-0007g1...@franck.debian.org



Processing of xserver-xorg-video-fbdev_0.4.2-4_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-fbdev_0.4.2-4_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-fbdev_0.4.2-4.dsc
  xserver-xorg-video-fbdev_0.4.2-4.diff.gz
  xserver-xorg-video-fbdev_0.4.2-4_amd64.deb
  xserver-xorg-video-fbdev-udeb_0.4.2-4_amd64.udeb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhj-0007gk...@franck.debian.org



Processing of xserver-xorg-input-penmount_1.4.1-4_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-input-penmount_1.4.1-4_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-input-penmount_1.4.1-4.dsc
  xserver-xorg-input-penmount_1.4.1-4.diff.gz
  xserver-xorg-input-penmount_1.4.1-4_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhj-0007fj...@franck.debian.org



Processing of xserver-xorg-input-acecad_1.4.0-4_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-input-acecad_1.4.0-4_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-input-acecad_1.4.0-4.dsc
  xserver-xorg-input-acecad_1.4.0-4.diff.gz
  xserver-xorg-input-acecad_1.4.0-4_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhi-0007ee...@franck.debian.org



Processing of xserver-xorg-video-tga_1.2.1-4_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-tga_1.2.1-4_amd64.changes uploaded successfully to localhost
along with the files:
  xserver-xorg-video-tga_1.2.1-4.dsc
  xserver-xorg-video-tga_1.2.1-4.diff.gz
  xserver-xorg-video-tga_1.2.1-4_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhi-0007eo...@franck.debian.org




Processing of xserver-xorg-video-mga_1.4.13.dfsg-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-mga_1.4.13.dfsg-2_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-mga_1.4.13.dfsg-2.dsc
  xserver-xorg-video-mga_1.4.13.dfsg-2.diff.gz
  xserver-xorg-video-mga_1.4.13.dfsg-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhi-0007df...@franck.debian.org



Processing of xserver-xorg-video-i128_1.3.4-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-i128_1.3.4-2_amd64.changes uploaded successfully to localhost
along with the files:
  xserver-xorg-video-i128_1.3.4-2.dsc
  xserver-xorg-video-i128_1.3.4-2.diff.gz
  xserver-xorg-video-i128_1.3.4-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhi-0007ev...@franck.debian.org



Processing of xserver-xorg-video-s3virge_1.10.4-4_amd64.changes

2011-02-05 Thread Debian FTP Masters
xserver-xorg-video-s3virge_1.10.4-4_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-s3virge_1.10.4-4.dsc
  xserver-xorg-video-s3virge_1.10.4-4.diff.gz
  xserver-xorg-video-s3virge_1.10.4-4_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvhi-0007dw...@franck.debian.org



Processing of libxfont_1.4.3-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
libxfont_1.4.3-2_amd64.changes uploaded successfully to localhost
along with the files:
  libxfont_1.4.3-2.dsc
  libxfont_1.4.3-2.diff.gz
  libxfont1_1.4.3-2_amd64.deb
  libxfont1-udeb_1.4.3-2_amd64.udeb
  libxfont1-dbg_1.4.3-2_amd64.deb
  libxfont-dev_1.4.3-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvcr-00073n...@franck.debian.org



Processing of mesa_7.10-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
mesa_7.10-2_amd64.changes uploaded successfully to localhost
along with the files:
  mesa_7.10-2.dsc
  mesa_7.10-2.diff.gz
  libgl1-mesa-swx11_7.10-2_amd64.deb
  libgl1-mesa-swx11-dbg_7.10-2_amd64.deb
  libgl1-mesa-swx11-dev_7.10-2_amd64.deb
  libegl1-mesa_7.10-2_amd64.deb
  libegl1-mesa-dbg_7.10-2_amd64.deb
  libegl1-mesa-dev_7.10-2_amd64.deb
  libegl1-mesa-drivers_7.10-2_amd64.deb
  libegl1-mesa-drivers-dbg_7.10-2_amd64.deb
  libopenvg1-mesa_7.10-2_amd64.deb
  libopenvg1-mesa-dbg_7.10-2_amd64.deb
  libopenvg1-mesa-dev_7.10-2_amd64.deb
  libgles1-mesa_7.10-2_amd64.deb
  libgles1-mesa-dbg_7.10-2_amd64.deb
  libgles1-mesa-dev_7.10-2_amd64.deb
  libgles2-mesa_7.10-2_amd64.deb
  libgles2-mesa-dbg_7.10-2_amd64.deb
  libgles2-mesa-dev_7.10-2_amd64.deb
  libgl1-mesa-glx_7.10-2_amd64.deb
  libgl1-mesa-glx-dbg_7.10-2_amd64.deb
  libgl1-mesa-dri_7.10-2_amd64.deb
  libgl1-mesa-dri-dbg_7.10-2_amd64.deb
  libgl1-mesa-dri-experimental_7.10-2_amd64.deb
  libgl1-mesa-dri-experimental-dbg_7.10-2_amd64.deb
  libgl1-mesa-dev_7.10-2_amd64.deb
  mesa-common-dev_7.10-2_amd64.deb
  libosmesa6_7.10-2_amd64.deb
  libosmesa6-dev_7.10-2_amd64.deb
  libglu1-mesa_7.10-2_amd64.deb
  libglu1-mesa-dev_7.10-2_amd64.deb
  libglw1-mesa_7.10-2_amd64.deb
  libglw1-mesa-dev_7.10-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvcr-000730...@franck.debian.org



Processing of libdrm_2.4.23-2_amd64.changes

2011-02-05 Thread Debian FTP Masters
libdrm_2.4.23-2_amd64.changes uploaded successfully to localhost
along with the files:
  libdrm_2.4.23-2.dsc
  libdrm_2.4.23-2.diff.gz
  libdrm-dev_2.4.23-2_amd64.deb
  libdrm2_2.4.23-2_amd64.deb
  libdrm2-dbg_2.4.23-2_amd64.deb
  libdrm-intel1_2.4.23-2_amd64.deb
  libdrm-intel1-dbg_2.4.23-2_amd64.deb
  libdrm-nouveau1a_2.4.23-2_amd64.deb
  libdrm-nouveau1a-dbg_2.4.23-2_amd64.deb
  libdrm-radeon1_2.4.23-2_amd64.deb
  libdrm-radeon1-dbg_2.4.23-2_amd64.deb
  libkms1_2.4.23-2_amd64.deb
  libkms1-dbg_2.4.23-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plvcq-00071k...@franck.debian.org



Re: [PATCH/RFC libpciaccess/debian-unstable 0/6] build system nitpicks

2011-02-05 Thread Jonathan Nieder
Hi,

Cyril Brulebois wrote:

> thanks for the patches.

Thanks for looking them over.  A small clarification:

> Jonathan Nieder  (05/02/2011):

>> Patch 3 writes "7" to debian/compat, since debhelper 7 is needed
>> for patch 2 anyway.
>
> it's not a single character change, 5→7 might lead to some changes
> which might not be spotted through debdiff.

None of the constructs listed as affected in debhelper(7) are used in
this debian/rules.  But I don’t mind if you want to delay this for
consistency between the library repos.

> I've just performed a switch to dh in all drivers. Not sure I want to
> do so in the libraries as well.

Yes, I can understand.  The benefit is not immediate.

I’d be interested in writing and testing careful series to switch to
dh in all the libraries fwiw (for experimental, naturally).

Jonathan


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110205205459.GC19486@elie



Bug#493963: xserver-xephyr: Allow starting Xephyr at other than 0,0 location

2011-02-05 Thread Loïc Grenié
2011/1/30 Cyril Brulebois :
> tag 493963 upstream
> thanks
>
> Hi Loïc,
>
> Loïc Grenié  (06/08/2008):
>>      My patch as is does not apply (because a function changed interface
>>   in between) but it is trivial to adapt.
>>
>>     I'll try to submit to Freedesktop.
>
> any news about that, got a link to a bug report or something?

Sorry for the delay. No, no news about that.

   Thanks,

  Loïc



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktikevrf587kyrnhqzbikbf6ovacrlaoan_c2f...@mail.gmail.com



Status of the drivers

2011-02-05 Thread Cyril Brulebois
Hi,

quick update WRT the drivers we have in our git repositories:
 - -newport isn't done, needs to be uploaded from mips.
 - -sun* are done, need to be uploaded from sparc.
 - -qxl not done, need to coordinate with its maintainer.

Others are ready to be uploaded when squeeze releases, along with:
 - libdrm
 - libxfont
 - mesa
 - xorg
 - xorg-server

Unmaintained drivers are going to be moved to attic/, and bugs asking
their removal from the archive will be filed.

I'd like to set some mail alias (or something similar) to gather
everyone involved with drivers, to ease communication on that
particular topic. Following debian-x@ as a whole shouldn't be a
prerequisite for a driver maintainer.

That would gather the maintainers of:
 - geode
 - wacom
 - [others]

and maybe in “our” drivers:
 - ivtvdev
 - openchrome
 - qxl
 - [others]

I'll try and address that later.

KiBi.


signature.asc
Description: Digital signature


libxfont: Changes to 'refs/tags/libxfont-1_1.4.3-2'

2011-02-05 Thread Cyril Brulebois
Tag 'libxfont-1_1.4.3-2' created by Cyril Brulebois  at 
2011-02-05 14:34 +

Tagging upload of libxfont 1:1.4.3-2 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NYA0ACgkQeGfVPHR5Nd1KrgCgwjNjnkWtiF4edFoPprbK5+Sl
AesAoL7Xpcv1PyTcwEJFq3dg/I4g4piD
=MLZq
-END PGP SIGNATURE-

Changes since libxfont-1_1.4.3-1:
Cyril Brulebois (1):
  Upload to unstable.

---
 debian/changelog |6 ++
 1 file changed, 6 insertions(+)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pljdj-0002ok...@alioth.debian.org



libxfont: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
 debian/changelog |   10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

New commits:
commit 3120ec38391d6f78d927b7191cfbcc9b76a8a237
Author: Cyril Brulebois 
Date:   Sat Feb 5 11:48:56 2011 +0100

Upload to unstable.

diff --git a/debian/changelog b/debian/changelog
index 9f62375..6340500 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libxfont (1:1.4.3-2) unstable; urgency=low
+
+  * Upload to unstable.
+
+ -- Cyril Brulebois   Sat, 05 Feb 2011 11:48:49 +0100
+
 libxfont (1:1.4.3-1) experimental; urgency=low
 
   * New upstream release.

commit 9e85911d68e52d7776c22ed3776f7339b4f45921
Author: Cyril Brulebois 
Date:   Fri Nov 19 01:18:02 2010 +0100

Upload to experimental.

diff --git a/debian/changelog b/debian/changelog
index 44f0496..9f62375 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libxfont (1:1.4.3-1) UNRELEASED; urgency=low
+libxfont (1:1.4.3-1) experimental; urgency=low
 
   * New upstream release.
   * Bump xutils-dev build-dep for new macros.
@@ -9,7 +9,7 @@ libxfont (1:1.4.3-1) UNRELEASED; urgency=low
   * Add --fail-missing -XlibXfont.la for the second dh_install call (the
 udeb one), for additional safety.
 
- -- Cyril Brulebois   Sat, 06 Nov 2010 15:05:02 +0100
+ -- Cyril Brulebois   Fri, 19 Nov 2010 01:17:48 +0100
 
 libxfont (1:1.4.2-1) experimental; urgency=low
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pljdj-0002no...@alioth.debian.org



xorg: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
Rebased ref, commits from common ancestor:
commit 6efa646a04f7e004bf2842393fccad3c9d08f738
Author: Cyril Brulebois 
Date:   Sat Feb 5 15:23:28 2011 +0100

Upload to unstable.

diff --git a/debian/changelog b/debian/changelog
index 9fb5018..7fc1152 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xorg (1:7.6+1) UNRELEASED; urgency=low
+xorg (1:7.6+1) unstable; urgency=low
 
   [ Julien Cristau ]
   * x11-common: drop usage of /var/lib/x11/Xwrapper.config.{md5sum,roster}.
@@ -17,7 +17,7 @@ xorg (1:7.6+1) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David & Brice!
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois   Sat, 05 Feb 2011 06:37:59 +0100
+ -- Cyril Brulebois   Sat, 05 Feb 2011 15:23:23 +0100
 
 xorg (1:7.6~2) experimental; urgency=low
 

commit 2686b6b0a9978dbf2e11897bb2697295d13324ff
Author: Cyril Brulebois 
Date:   Sat Feb 5 07:23:30 2011 +0100

Bump Standards-Version to 3.9.1 (no changes needed).

diff --git a/debian/changelog b/debian/changelog
index 9317cd3..9fb5018 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -15,6 +15,7 @@ xorg (1:7.6+1) UNRELEASED; urgency=low
 xserver-xorg-video-all from being installable.
   * xserver-wrapper.c: Fix compilation warnings.
   * Update Uploaders list. Thanks, David & Brice!
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois   Sat, 05 Feb 2011 06:37:59 +0100
 
diff --git a/debian/control b/debian/control
index 404c5fb..397828a 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
 Uploaders: Drew Parsons , Cyril Brulebois 

-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Build-Depends: po-debconf, debhelper (>= 7)
 
 Package: x11-common

commit 8f0b2078dacaffb7818cccb552f8f86befd855d1
Author: Cyril Brulebois 
Date:   Sat Feb 5 07:07:34 2011 +0100

Update Uploaders list. Thanks, David & Brice!

diff --git a/debian/changelog b/debian/changelog
index 773ea79..9317cd3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -14,6 +14,7 @@ xorg (1:7.6+1) UNRELEASED; urgency=low
 maintained by the X Strike Force, and that shouldn't prevent
 xserver-xorg-video-all from being installable.
   * xserver-wrapper.c: Fix compilation warnings.
+  * Update Uploaders list. Thanks, David & Brice!
 
  -- Cyril Brulebois   Sat, 05 Feb 2011 06:37:59 +0100
 
diff --git a/debian/control b/debian/control
index 6a23ba5..404c5fb 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: xorg
 Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
-Uploaders: David Nusinow , Drew Parsons 
, Brice Goglin , Cyril Brulebois 

+Uploaders: Drew Parsons , Cyril Brulebois 

 Standards-Version: 3.8.4
 Build-Depends: po-debconf, debhelper (>= 7)
 

commit 8e24e455289b2f29b0ff05355999dd6458208ba3
Author: Cyril Brulebois 
Date:   Sat Feb 5 07:04:25 2011 +0100

xserver-wrapper.c: Fix compilation warnings.

diff --git a/debian/changelog b/debian/changelog
index 456a1c4..773ea79 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,6 +13,7 @@ xorg (1:7.6+1) UNRELEASED; urgency=low
   * Make xserver-xorg-video-geode a recommended package. It's not
 maintained by the X Strike Force, and that shouldn't prevent
 xserver-xorg-video-all from being installable.
+  * xserver-wrapper.c: Fix compilation warnings.
 
  -- Cyril Brulebois   Sat, 05 Feb 2011 06:37:59 +0100
 
diff --git a/debian/local/xserver-wrapper.c b/debian/local/xserver-wrapper.c
index de040d6..db503b5 100644
--- a/debian/local/xserver-wrapper.c
+++ b/debian/local/xserver-wrapper.c
@@ -213,7 +213,6 @@ main(int argc, char **argv)
   char value[257];
   int length;
   int i;
-  int intval;
   char *val;
   mode_t mask;
   SecurityLevel level = RootOnly;

commit 0bc4965fd055b4fa5e8dcd5b1ccedc11d808badf
Author: Cyril Brulebois 
Date:   Sat Feb 5 06:59:52 2011 +0100

Make xserver-xorg-video-geode a recommended package.

It's not maintained by the X Strike Force, and that shouldn't prevent
xserver-xorg-video-all from being installable.

diff --git a/debian/changelog b/debian/changelog
index 0d6f116..456a1c4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,9 @@ xorg (1:7.6+1) UNRELEASED; urgency=low
 
   [ Cyril Brulebois ]
   * Make xserver-xorg-video-nouveau a dependency again.
+  * Make xserver-xorg-video-geode a recommended package. It's not
+maintained by the X Strike Force, and that shouldn't prevent
+xserver-xorg-video-all from being installable.
 
  -- Cyril Brulebois   Sat, 05 Feb 2011 06:37:59 +0100
 
diff --git a/debian/scripts/vars.i386 b/debian/scripts/vars.i386
index 367471b..0870f4f 100755
--- a/debian/scripts/vars.i386
+++ b/debian/scripts/vars.i386
@@ -9,7 +9,6 @@ XSERVER_XORG_VIDEO_DEPENDS="xserver-xorg-video-apm, \
xserver-xorg-video-chips, \
xserver-xorg-video-cirrus, \
xserver-xorg-video-fbdev, \
-   xser

xorg: Changes to 'refs/tags/xorg-1_7.6+1'

2011-02-05 Thread Cyril Brulebois
Tag 'xorg-1_7.6+1' created by Cyril Brulebois  at 2011-02-05 
14:33 +

Tagging upload of xorg 1:7.6+1 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NX8UACgkQeGfVPHR5Nd2SmQCgrPz3lR9808AFSBEW/Z9aFhMI
qRkAoNBMuR5p1pIcOBaEDcupgeGxOKV5
=sOX+
-END PGP SIGNATURE-

Changes since xorg-1_7.6-2:
Cyril Brulebois (8):
  Bump version, X11R7.6 is out.
  Make xserver-xorg-video-nouveau a dependency again.
  Put xserver-xorg-video-openchrome into place.
  Make xserver-xorg-video-geode a recommended package.
  xserver-wrapper.c: Fix compilation warnings.
  Update Uploaders list. Thanks, David & Brice!
  Bump Standards-Version to 3.9.1 (no changes needed).
  Upload to unstable.

Julien Cristau (1):
  x11-common: drop usage of /var/lib/x11/Xwrapper.config.{md5sum,roster}.

---
 debian/changelog   |   21 
 debian/control |4 +-
 debian/local/xserver-wrapper.c |1 
 debian/scripts/vars.amd64  |5 +-
 debian/scripts/vars.hurd-i386  |2 -
 debian/scripts/vars.i386   |6 +--
 debian/scripts/vars.kfreebsd-amd64 |2 -
 debian/scripts/vars.kfreebsd-i386  |2 -
 debian/scripts/vars.powerpc|3 +
 debian/x11-common.postinst.in  |   62 ++---
 debian/x11-common.postrm.in|   38 +-
 debian/x11-common.preinst.in   |   46 ---
 12 files changed, 61 insertions(+), 131 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pljcv-0002fq...@alioth.debian.org



xorg: Changes to 'debian-squeeze'

2011-02-05 Thread Cyril Brulebois
New branch 'debian-squeeze' available with the following commits:


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pljcv-0002f1...@alioth.debian.org



xorg-server: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
Rebased ref, commits from common ancestor:
commit 2a006327f17f448461aecc715fabef1b0d9caa1f
Author: Cyril Brulebois 
Date:   Sat Feb 5 10:41:02 2011 +0100

Upload to unstable.

diff --git a/debian/changelog b/debian/changelog
index dfb8d61..bee9515 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xorg-server (2:1.9.4-1) UNRELEASED; urgency=low
+xorg-server (2:1.9.4-1) unstable; urgency=low
 
   * The “squeeze is released, target sid!” upload.
   * New upstream release.
@@ -43,7 +43,7 @@ xorg-server (2:1.9.4-1) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David & Steve & Brice!
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois   Tue, 01 Feb 2011 15:14:18 +0100
+ -- Cyril Brulebois   Sat, 05 Feb 2011 10:40:55 +0100
 
 xorg-server (2:1.9.3.902-1) experimental; urgency=low
 

commit 72fa4c902da7083473f2f6adb2195c474545586f
Author: Cyril Brulebois 
Date:   Sat Feb 5 10:40:48 2011 +0100

Bump debhelper build-dep for dh_prep.

diff --git a/debian/changelog b/debian/changelog
index f725594..dfb8d61 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ xorg-server (2:1.9.4-1) UNRELEASED; urgency=low
   * Replace “--remaining-packages” with “-Nfoo -Nbar” in the “dh_strip -s”
 call, to avoid non-stripped binaries if the build is resumed.
   * Use “dh_prep” instead of deprecated “dh_clean -k”.
+  * Bump debhelper build-dep accordingly.
   * Introduce dh_xsf_substvars, to be used in driver packages to set
 appropriate substitution variables for Depends and Provides, before
 calling dh_gencontrol. Ship it in xserver-xorg-dev.
diff --git a/debian/control b/debian/control
index 022e782..53d321d 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,7 @@ Uploaders: Drew Parsons , Cyril Brulebois 

 # x11proto-print-dev and libfreetype6-dev are for Xprint
 # everything on is for the DMX and Xnest servers.
 Build-Depends:
- debhelper (>= 5.0.0),
+ debhelper (>= 7),
  quilt,
  lsb-release,
  pkg-config,

commit e780c528d9fac6599b538de865d9cd9adbba49e3
Author: Cyril Brulebois 
Date:   Sat Feb 5 10:38:46 2011 +0100

Bump Standards-Version to 3.9.1 (no changes needed).

diff --git a/debian/changelog b/debian/changelog
index 9d338e0..f725594 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -40,6 +40,7 @@ xorg-server (2:1.9.4-1) UNRELEASED; urgency=low
   * Cherry-pick, thanks to Samuel Thibault (Closes: #590715):
 - xserver: enable TLS even if AIGLX is not enabled
   * Update Uploaders list. Thanks, David & Steve & Brice!
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois   Tue, 01 Feb 2011 15:14:18 +0100
 
diff --git a/debian/control b/debian/control
index b941013..022e782 100644
--- a/debian/control
+++ b/debian/control
@@ -78,7 +78,7 @@ Build-Depends:
  libglib2.0-dev,
  xkb-data,
  x11-xkb-utils,
-Standards-Version: 3.9.0
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/xserver/xorg-server
 Vcs-Browser: http://git.debian.org/?p=pkg-xorg/xserver/xorg-server.git
 

commit 6ff0cbf4155358200c8e3ee311709aa02380b020
Author: Cyril Brulebois 
Date:   Sat Feb 5 07:28:42 2011 +0100

Update Uploaders list. Thanks, David & Steve & Brice!

diff --git a/debian/changelog b/debian/changelog
index c99a35d..9d338e0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -39,6 +39,7 @@ xorg-server (2:1.9.4-1) UNRELEASED; urgency=low
 (Closes: #585697, #605764).
   * Cherry-pick, thanks to Samuel Thibault (Closes: #590715):
 - xserver: enable TLS even if AIGLX is not enabled
+  * Update Uploaders list. Thanks, David & Steve & Brice!
 
  -- Cyril Brulebois   Tue, 01 Feb 2011 15:14:18 +0100
 
diff --git a/debian/control b/debian/control
index 5e5d922..b941013 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: xorg-server
 Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
-Uploaders: David Nusinow , Steve Langasek 
, Drew Parsons , Brice Goglin 
, Cyril Brulebois 
+Uploaders: Drew Parsons , Cyril Brulebois 

 # all the Build-Depends up to x11proto-xf86-dri-dev are for the normal Xorg
 # server, and common dependencies for the DIX.
 # x11proto-xf86dri-dev and libdrm-dev are for DRI support for the Xorg server.

commit ca355d8640355e1894818c666b575ace31f1d14a
Author: Cyril Brulebois 
Date:   Sat Feb 5 07:26:47 2011 +0100

Fix case.

diff --git a/debian/changelog b/debian/changelog
index 7de52d4..c99a35d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,6 @@
 xorg-server (2:1.9.4-1) UNRELEASED; urgency=low
 
-  * The “Squeeze is released, target sid!” upload.
+  * The “squeeze is released, target sid!” upload.
   * New upstream release.
   * Unfuzzy all patches.
   * Get rid of long obsolete NEWS file.

commit d52858a8339766d95e83ff91802e19275fdb802b
Author: Cyril Brulebois 
Date:   Sat Feb 5 06:28:39 2011 +0100

Unfuzzy all patches.

diff --git a/debian/changelog b/debian/changelog
index 3d9f980..7de52d4 100

xorg-server: Changes to 'refs/tags/xorg-server-2_1.9.4-1'

2011-02-05 Thread Cyril Brulebois
Tag 'xorg-server-2_1.9.4-1' created by Cyril Brulebois  at 
2011-02-05 14:21 +

Tagging upload of xorg-server 2:1.9.4-1 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NXPIACgkQeGfVPHR5Nd2OVQCePQej8exIV0nZJibvV8Fw+yOD
bh4An3XSlnsiobMjoXlhG7V5dS678DoY
=y55S
-END PGP SIGNATURE-

Changes since xorg-server-2_1.9.3.902-1:
Cyril Brulebois (33):
  Introduce dh_xsf_substvars.
  Get rid of inputabiver and videoabiver files.
  Get rid of long obsolete NEWS file.
  rules: Only read the first line of debian/serverminver.
  rules: Keep only the major ABI version for xorg-{input,video}-abi-$ABI.
  Add xorg-video-abi-8.0 and xorg-input-abi-11.0 to the server's Provides.
  Add ${videoabi}, ${inputabi} to the udeb's Provides.
  Add an abibumpcheck target which checks for xinput and videodrv ABI 
updates.
  Add current versions to debian/serverminver accordingly.
  Ship dh_xsf_substvars in xserver-xorg-dev.
  Copy server's substvars as udeb's substvars.
  Replace “--remaining-packages” with “-Nfoo -Nbar” in the “dh_strip -s” 
call.
  Also ship a debhelper sequence: xsf.pm
  Bump changelog.
  Don't set variables for -dev packages.
  Don't set variables for -all meta packages.
  Use “dh_prep” instead of deprecated “dh_clean -k”.
  Merge branch 'upstream-unstable' into debian-unstable
  Bump changelogs.
  Merge branch 'new-dependencies' into debian-unstable
  Remove trailing space.
  Remove “xserver” from Provides, it's deprecated.
  Use architecture wildcards for build-deps.
  Add armhf/powerpcspe support (Closes: #585697, #605764).
  Document the cherry-pick (Closes: #590715).
  Remove trailing whitespaces.
  The “Squeeze is released, target sid!” upload.
  Unfuzzy all patches.
  Fix case.
  Update Uploaders list. Thanks, David & Steve & Brice!
  Bump Standards-Version to 3.9.1 (no changes needed).
  Bump debhelper build-dep for dh_prep.
  Upload to unstable.

Jeremy Huddleston (1):
  xorg-server 1.9.4

Samuel Thibault (1):
  xserver: enable TLS even if AIGLX is not enabled

---
 ChangeLog |8 +
 configure.ac  |6 -
 debian/changelog  |   47 ++
 debian/control|   31 +++
 debian/inputabiver|1 
 debian/local/dh_xsf_substvars |   53 +++
 debian/local/xsf.pm   |8 +
 debian/patches/001_fedora_extramodes.patch|6 -
 debian/patches/02_Add-libnettle-as-option-for-sha1.diff   |   24 ++---
 debian/patches/07-xfree86-fix-build-with-xv-disabled.diff |   20 +---
 debian/patches/15-nouveau.diff|   32 ++-
 debian/patches/16-xaa-fbcomposite-fix-negative-size.diff  |6 -
 debian/rules  |   54 
 debian/serverminver   |2 
 debian/videoabiver|1 
 debian/xserver-xorg-core.NEWS |   62 --
 debian/xserver-xorg-dev.install   |3 
 17 files changed, 210 insertions(+), 154 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plj14-cv...@alioth.debian.org



xorg-server: Changes to 'debian-squeeze'

2011-02-05 Thread Cyril Brulebois
New branch 'debian-squeeze' available with the following commits:


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plj13-by...@alioth.debian.org



mesa: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
Rebased ref, commits from common ancestor:
commit 15bf49a44e62677cf2b3eb76126d6ef88d206321
Author: Cyril Brulebois 
Date:   Sat Feb 5 11:16:36 2011 +0100

Upload to unstable.

diff --git a/debian/changelog b/debian/changelog
index 1328431..a27cd0c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-mesa (7.10-2) UNRELEASED; urgency=low
+mesa (7.10-2) unstable; urgency=low
 
   * Fix FTBFS on i386: Add some files to debian/not-installed, on a
 per-architecture fashion (those are under /usr/lib/i686/cmov/).
@@ -7,7 +7,7 @@ mesa (7.10-2) UNRELEASED; urgency=low
 shouldn't be exported, but let's make it possible to build xorg-server
 1.9 in sid.
 
- -- Cyril Brulebois   Tue, 25 Jan 2011 22:53:45 +
+ -- Cyril Brulebois   Sat, 05 Feb 2011 11:16:26 +0100
 
 mesa (7.10-1) experimental; urgency=low
 

commit 7b1cc849b79a51e7a4428186eb5d573d3e1d0836
Author: Cyril Brulebois 
Date:   Sat Feb 5 11:16:20 2011 +0100

Work around FTBFS on sparc due to new symbols.

Pass -c1 to dpkg-gensymbols instead of -c4 (on sparc only). Those
symbols probably shouldn't be exported, but let's make it possible
to build xorg-server 1.9 in sid.

diff --git a/debian/changelog b/debian/changelog
index 2cd6479..1328431 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,10 @@ mesa (7.10-2) UNRELEASED; urgency=low
 
   * Fix FTBFS on i386: Add some files to debian/not-installed, on a
 per-architecture fashion (those are under /usr/lib/i686/cmov/).
+  * Work around FTBFS on sparc due to new symbols: pass -c1 to
+dpkg-gensymbols instead of -c4 (on sparc only). Those symbols probably
+shouldn't be exported, but let's make it possible to build xorg-server
+1.9 in sid.
 
  -- Cyril Brulebois   Tue, 25 Jan 2011 22:53:45 +
 
diff --git a/debian/rules b/debian/rules
index 6c31509..38b567b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -299,7 +299,12 @@ binary-arch: install
-pmesa-common-dev
dh_compress -s
dh_fixperms -s
+ifneq ($(DEB_HOST_ARCH), sparc)
dh_makeshlibs -s -- -c4
+else
+   # Temporarily work around FTBFS on sparc, ignore new symbols:
+   dh_makeshlibs -s -- -c1
+endif
dh_installdeb -s
dh_shlibdeps -s
dh_gencontrol -s

commit 06510fbcb846b6a49a2992085ad878b60bf40fab
Author: Cyril Brulebois 
Date:   Tue Jan 25 23:44:05 2011 +

Use wildcards to avoid specifying the versions, and sort.

diff --git a/debian/not-installed b/debian/not-installed
index 48f257b..b052f8a 100644
--- a/debian/not-installed
+++ b/debian/not-installed
@@ -29,12 +29,12 @@ NOT_INSTALLED := \
 # Architecture-specific additional files:
 NOT_INSTALLED_i386 = \
usr/lib/i686/cmov/libGL.so \
-   usr/lib/i686/cmov/libGLw.so.1 \
-   usr/lib/i686/cmov/libGLw.so \
usr/lib/i686/cmov/libGLU.so \
-   usr/lib/i686/cmov/libGLU.so.1.3.071000 \
-   usr/lib/i686/cmov/libGLw.so.1.0.0 \
usr/lib/i686/cmov/libGLU.so.1 \
+   usr/lib/i686/cmov/libGLU.so.1.* \
+   usr/lib/i686/cmov/libGLw.so \
+   usr/lib/i686/cmov/libGLw.so.1 \
+   usr/lib/i686/cmov/libGLw.so.1.* \
usr/lib/i686/cmov/pkgconfig/glw.pc \
usr/lib/i686/cmov/pkgconfig/glu.pc \
usr/lib/i686/cmov/pkgconfig/gl.pc \

commit b4f6780128ff60fb4b25dbef0626530978683b1f
Author: Cyril Brulebois 
Date:   Tue Jan 25 22:58:14 2011 +

Fix FTBFS on i386: Add some files to debian/not-installed.

Do that on a per-architecture fashion (those are under
/usr/lib/i686/cmov/).

diff --git a/debian/changelog b/debian/changelog
index bd8e383..2cd6479 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+mesa (7.10-2) UNRELEASED; urgency=low
+
+  * Fix FTBFS on i386: Add some files to debian/not-installed, on a
+per-architecture fashion (those are under /usr/lib/i686/cmov/).
+
+ -- Cyril Brulebois   Tue, 25 Jan 2011 22:53:45 +
+
 mesa (7.10-1) experimental; urgency=low
 
   * New upstream release.
diff --git a/debian/not-installed b/debian/not-installed
index 47ff8af..48f257b 100644
--- a/debian/not-installed
+++ b/debian/not-installed
@@ -1,5 +1,7 @@
 # Keep track of files we don't install:
-NOT_INSTALLED = \
+
+# Common list:
+NOT_INSTALLED := \
dri/usr/include/GL/glfbdev.h \
dri/usr/include/GL/glu.h \
dri/usr/include/GL/glu_mangle.h \
@@ -23,3 +25,20 @@ NOT_INSTALLED = \
usr/include/GL/vms_x_fix.h \
usr/include/GL/wglext.h \
usr/include/GL/wmesa.h
+
+# Architecture-specific additional files:
+NOT_INSTALLED_i386 = \
+   usr/lib/i686/cmov/libGL.so \
+   usr/lib/i686/cmov/libGLw.so.1 \
+   usr/lib/i686/cmov/libGLw.so \
+   usr/lib/i686/cmov/libGLU.so \
+   usr/lib/i686/cmov/libGLU.so.1.3.071000 \
+   usr/lib/i686/cmov/libGLw.so.1.0.0 \
+   usr/lib/i686/cmov/libGLU.so.1 \
+   usr/lib/i686/cmov/pkgconfig/glw.pc \
+   usr/lib/i686/cmov/pkgconfig/glu.pc \
+   usr/lib/i686/cmov/pkgconfi

mesa: Changes to 'refs/tags/mesa-7.10-2'

2011-02-05 Thread Cyril Brulebois
Tag 'mesa-7.10-2' created by Cyril Brulebois  at 2011-02-05 
14:20 +

Tagging upload of mesa 7.10-2 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NXJUACgkQeGfVPHR5Nd0LEgCfUJj6hRHZIZQ6JOZTTU4lij6W
QFoAn39iKQM2FfGmWM5BcvY1TeV7SqX9
=/mSf
-END PGP SIGNATURE-

Changes since mesa-7.10-1:
Cyril Brulebois (4):
  Fix FTBFS on i386: Add some files to debian/not-installed.
  Use wildcards to avoid specifying the versions, and sort.
  Work around FTBFS on sparc due to new symbols.
  Upload to unstable.

---
 debian/changelog |   11 +++
 debian/not-installed |   21 -
 debian/rules |5 +
 3 files changed, 36 insertions(+), 1 deletion(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plizh-000817...@alioth.debian.org



mesa: Changes to 'debian-squeeze'

2011-02-05 Thread Cyril Brulebois
New branch 'debian-squeeze' available with the following commits:


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plizg-00080o...@alioth.debian.org



libdrm: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
Rebased ref, commits from common ancestor:
commit f7181ec00542fa7b7527111ed5e0f34790fa64cc
Author: Cyril Brulebois 
Date:   Sat Feb 5 11:26:50 2011 +0100

Upload to unstable.

diff --git a/debian/changelog b/debian/changelog
index 466a503..a83bdd2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
-libdrm (2.4.23-2) UNRELEASED; urgency=low
+libdrm (2.4.23-2) unstable; urgency=low
 
+  * Upload to unstable.
   * Update Uploaders list. Thanks, David & Brice!
 
- -- Cyril Brulebois   Sat, 05 Feb 2011 11:25:09 +0100
+ -- Cyril Brulebois   Sat, 05 Feb 2011 11:26:44 +0100
 
 libdrm (2.4.23-1) experimental; urgency=low
 

commit 681f4acb147a22c1ea55126a2c6a108b24e9f267
Author: Cyril Brulebois 
Date:   Sat Feb 5 11:26:27 2011 +0100

Remove trailing spaces.

diff --git a/debian/changelog b/debian/changelog
index 26e7b6a..466a503 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -15,7 +15,7 @@ libdrm (2.4.23-1) experimental; urgency=low
 - Adjust the lintian override.
 - Bump libdrm-nouveau shlibs and symbols versions to 2.4.23.
   * Use dh_prep instead of the deprecated dh_clean -k in debian/rules.
-  
+
  -- Julien Cristau   Thu, 23 Dec 2010 17:56:54 +0100
 
 libdrm (2.4.22-2) experimental; urgency=low

commit 1302fb6a31ec45428cacce2caf1b9838b96db820
Author: Cyril Brulebois 
Date:   Sat Feb 5 11:26:11 2011 +0100

Update Uploaders list. Thanks, David & Brice!

diff --git a/debian/changelog b/debian/changelog
index dc81cc4..26e7b6a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libdrm (2.4.23-2) UNRELEASED; urgency=low
+
+  * Update Uploaders list. Thanks, David & Brice!
+
+ -- Cyril Brulebois   Sat, 05 Feb 2011 11:25:09 +0100
+
 libdrm (2.4.23-1) experimental; urgency=low
 
   [ Sven Joachim ]
diff --git a/debian/control b/debian/control
index cc5091a..2ac055d 100644
--- a/debian/control
+++ b/debian/control
@@ -1,7 +1,7 @@
 Source: libdrm
 Priority: optional
 Maintainer: Debian X Strike Force 
-Uploaders: David Nusinow , Brice Goglin 
, Cyril Brulebois 
+Uploaders: Cyril Brulebois 
 Build-Depends:
  debhelper (>= 7.2.7),
  libx11-dev,

commit 27afd439e485e6ed52290d4114604eca2f28bc58
Author: Julien Cristau 
Date:   Thu Dec 23 17:57:26 2010 +0100

Upload to experimental

diff --git a/debian/changelog b/debian/changelog
index 8def930..dc81cc4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
-libdrm (2.4.23-1) UNRELEASED; urgency=low
+libdrm (2.4.23-1) experimental; urgency=low
 
+  [ Sven Joachim ]
   * New upstream release.
   * Rename the libdrm-nouveau1 package to libdrm-nouveau1a, since upstream
 broke the ABI without changing the soname.
@@ -9,7 +10,7 @@ libdrm (2.4.23-1) UNRELEASED; urgency=low
 - Bump libdrm-nouveau shlibs and symbols versions to 2.4.23.
   * Use dh_prep instead of the deprecated dh_clean -k in debian/rules.
   
- -- Sven Joachim   Tue, 14 Dec 2010 14:28:11 +0100
+ -- Julien Cristau   Thu, 23 Dec 2010 17:56:54 +0100
 
 libdrm (2.4.22-2) experimental; urgency=low
 

commit 2abd407d29cc6509728e2897e7b50f0d7f9a924e
Author: Sven Joachim 
Date:   Tue Dec 14 16:09:14 2010 +0100

Use dh_prep instead of dh_clean -k

The latter is deprecated, and we're build-depending on a new enough
debhelper to use the former.

diff --git a/debian/changelog b/debian/changelog
index 542c9dc..8def930 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ libdrm (2.4.23-1) UNRELEASED; urgency=low
   remove the Breaks against xserver-xorg-video-nouveau.
 - Adjust the lintian override.
 - Bump libdrm-nouveau shlibs and symbols versions to 2.4.23.
+  * Use dh_prep instead of the deprecated dh_clean -k in debian/rules.
   
  -- Sven Joachim   Tue, 14 Dec 2010 14:28:11 +0100
 
diff --git a/debian/rules b/debian/rules
index e2dc066..82741af 100755
--- a/debian/rules
+++ b/debian/rules
@@ -108,7 +108,7 @@ clean: xsfclean
 install: build
dh_testdir
dh_testroot
-   dh_clean -k
+   dh_prep
dh_installdirs
 
cd build && $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp

commit b8a75a799d9412320e07cddaf145c5d4d900e199
Author: Sven Joachim 
Date:   Tue Dec 14 14:44:05 2010 +0100

Bump symbols and shlibs versions of libdrm-nouveau1a

Mostly for documentary purposes, the numbers do not really matter.

diff --git a/debian/changelog b/debian/changelog
index bc9..542c9dc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,7 @@ libdrm (2.4.23-1) UNRELEASED; urgency=low
 - Make libdrm-nouveau1a{,-dbg} conflict with libdrm-nouveau1{,-dbg} and
   remove the Breaks against xserver-xorg-video-nouveau.
 - Adjust the lintian override.
+- Bump libdrm-nouveau shlibs and symbols versions to 2.4.23.
   
  -- Sven Joachim   Tue, 14 Dec 2010 14:28:11 +0100
 
diff --git a/debian/libdrm-nouveau1a.symbols b/debian/libdrm-nouveau1a.symbols
index 4da10ea..a2ba922 100644
--- a/debian/libdrm-nouveau1a.symbols
+++ b/debian/libdrm-nouveau1a.symb

libdrm: Changes to 'refs/tags/libdrm-2.4.23-2'

2011-02-05 Thread Cyril Brulebois
Tag 'libdrm-2.4.23-2' created by Cyril Brulebois  at 
2011-02-05 14:18 +

Tagging upload of libdrm 2.4.23-2 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NXDcACgkQeGfVPHR5Nd23KQCgku0IphpUwUfP2yhgawtVgXHQ
gMMAoKbymmBOwATJQSEcudtxYcDpd4f4
=v6Ga
-END PGP SIGNATURE-

Changes since libdrm-2.4.23-1:
Cyril Brulebois (3):
  Update Uploaders list. Thanks, David & Brice!
  Remove trailing spaces.
  Upload to unstable.

---
 debian/changelog |9 -
 debian/control   |2 +-
 2 files changed, 9 insertions(+), 2 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plixx-0006mo...@alioth.debian.org



libdrm: Changes to 'debian-squeeze'

2011-02-05 Thread Cyril Brulebois
New branch 'debian-squeeze' available with the following commits:


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plixx-0006ly...@alioth.debian.org



Re: Bug#612031: RFP: xscope -- Monitor X11/Client conversations

2011-02-05 Thread Arnout Engelen
On Sat, Feb 05, 2011 at 10:33:10AM +0100, Georges Khaznadar wrote:
> Arnout Engelen a écrit :
> > Package name: xscope
> 
> A package named xoscope already exists: "xoscope - digital oscilloscope".

xoscope != xscope :)

> would x11-scope/x11-peeper/x11-insight be a better name for the new
> package?

If i can still find it with 'apt-cache search xscope' then this would be fine.

I don't mind if this is introduced in one of the x11-bundles or packaged as
a new package.


Arnout


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110205134538.gd13...@bzzt.net



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

2011-02-05 Thread Cyril Brulebois
 .gitignore|   70 +++
 COPYING   |   52 ++
 ChangeLog |  112 +
 Makefile.am   |   12 
 configure.ac  |   14 
 debian/README.source  |   24 -
 debian/changelog  |   29 +
 debian/compat |2 
 debian/control|   23 -
 debian/copyright  |   33 +
 debian/patches/series |1 
 debian/rules  |  101 
 debian/xserver-xorg-video-voodoo.install  |1 
 debian/xserver-xorg-video-voodoo.manpages |1 
 debian/xsfbs/repack.sh|   32 -
 debian/xsfbs/xsfbs.mk |  285 -
 debian/xsfbs/xsfbs.sh |  622 --
 man/.cvsignore|2 
 man/Makefile.am   |   41 -
 src/.cvsignore|6 
 src/voodoo_dga.c  |1 
 src/voodoo_driver.c   |1 
 src/voodoo_hardware.c |1 
 23 files changed, 336 insertions(+), 1130 deletions(-)

New commits:
commit 6cdf06882cb00a9b70abc1583cd28475d783b984
Author: Cyril Brulebois 
Date:   Sat Feb 5 15:00:11 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 5ced945..59b02f4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-voodoo (1:1.2.4-2) UNRELEASED; urgency=low
+xserver-xorg-video-voodoo (1:1.2.4-2) unstable; urgency=low
 
   * Update debian/copyright from upstream COPYING.
   * Switch to dh:
@@ -13,7 +13,7 @@ xserver-xorg-video-voodoo (1:1.2.4-2) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois   Fri, 04 Feb 2011 09:12:59 +0100
+ -- Cyril Brulebois   Sat, 05 Feb 2011 15:00:10 +0100
 
 xserver-xorg-video-voodoo (1:1.2.4-1) experimental; urgency=low
 

commit 14aaf01ebcfa0da849fae615c224e1db2741fa56
Author: Cyril Brulebois 
Date:   Sat Feb 5 09:32:39 2011 +0100

Add a placeholding series file.

diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..fdffa2a
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+# placeholder

commit 261e121595c26650ccd00209ac17b0fe86557cea
Author: Cyril Brulebois 
Date:   Fri Feb 4 09:23:36 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index 2f4f615..5ced945 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ xserver-xorg-video-voodoo (1:1.2.4-2) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David & Brice!
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
+  * Add quilt build-dep for future use.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 09:12:59 +0100
 
diff --git a/debian/control b/debian/control
index 1ba4cbb..18af5e4 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Cyril Brulebois 
 Build-Depends:
  debhelper (>= 8),
  dh-autoreconf,
+ quilt,
  pkg-config,
  xutils-dev,
  xserver-xorg-dev (>= 2:1.9.4),

commit 1bdbc07a702b6abc7400d12f148dfd16589424ff
Author: Cyril Brulebois 
Date:   Fri Feb 4 09:22:06 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 2090c08..2f4f615 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-voodoo (1:1.2.4-2) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David & Brice!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 09:12:59 +0100
 
diff --git a/debian/control b/debian/control
index 5d3b468..1ba4cbb 100644
--- a/debian/control
+++ b/debian/control
@@ -21,8 +21,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-voodoo.
 
 Package: xserver-xorg-video-voodoo
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
-Provides: ${xviddriver:Provides}
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+ ${xviddriver:Depends},
+Provides:
+ ${xviddriver:Provides}
 Description: X.Org X server -- Voodoo display driver
  This package provides the driver for 3dfx Voodoo1 and Voodoo2 chipsets.
  .

commit 3a2cb6e91906fa2b995fcaba487395e0c6f04df4
Author: Cyril Brulebois 
Date:   Fri Feb 4 09:21:53 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index 713c053..2090c08 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-voodoo (1:1.2.4-2) UNRELEASED; urgency=low
 - Specify usr/share/man in .install, remove .manpages accordingly.
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David & Brice!

xserver-xorg-video-voodoo: Changes to 'refs/tags/xserver-xorg-video-voodoo-1_1.2.4-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-voodoo-1_1.2.4-2' created by Cyril Brulebois 
 at 2011-02-05 14:00 +

Tagging upload of xserver-xorg-video-voodoo 1:1.2.4-2 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NV+wACgkQeGfVPHR5Nd3koACcDyxQ/T1Ft89ZzltoOuJLJQI8
VVYAn2O1jr48hwjW90dzZnJcXw59WEcM
=tvlk
-END PGP SIGNATURE-

Changes since xserver-xorg-video-voodoo-1_1.2.4-1:
Cyril Brulebois (12):
  Mention upstream git URL in a comment.
  Add ChangeLog.
  Update debian/copyright from upstream COPYING.
  Switch to dh.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David & Brice!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides.
  Merge branch 'debian-experimental' into debian-unstable
  Add quilt build-dep for future use.
  Add a placeholding series file.
  Upload to unstable

---
 ChangeLog |  449 +
 debian/README.source  |   24 -
 debian/changelog  |   17 
 debian/compat |2 
 debian/control|   21 -
 debian/copyright  |   33 +
 debian/patches/series |1 
 debian/rules  |  101 
 debian/watch  |1 
 debian/xserver-xorg-video-voodoo.install  |1 
 debian/xserver-xorg-video-voodoo.manpages |1 
 debian/xsfbs/repack.sh|   32 -
 debian/xsfbs/xsfbs.mk |  285 -
 debian/xsfbs/xsfbs.sh |  622 --
 14 files changed, 516 insertions(+), 1074 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plifx-0003sc...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 COPYING  |   52 ++
 ChangeLog|  279 +
 Makefile.am  |2 
 configure.ac |   62 +--
 debian/README.source |   24 -
 debian/changelog |   47 ++
 debian/compat|2 
 debian/control   |   29 -
 debian/copyright |   59 ++
 debian/patches/series|1 
 debian/rules |  107 -
 debian/xserver-xorg-video-vmware.install |1 
 debian/xsfbs/repack.sh   |   32 -
 debian/xsfbs/xsfbs.mk|  285 --
 debian/xsfbs/xsfbs.sh|  622 ---
 man/Makefile.am  |   22 -
 src/Makefile.am  |4 
 src/bits2pixels.c|1 
 src/bits2pixels.h|2 
 src/guest_os.h   |2 
 src/includeCheck.h   |1 
 src/svga_limits.h|2 
 src/vm_basic_types.h |2 
 src/vm_device_version.h  |2 
 src/vmware.c |   93 +++-
 src/vmware.h |2 
 src/vmwarectrl.c |   12 
 src/vmwarecurs.c |1 
 src/vmwaremodule.c   |   55 ++
 src/vmwarevideo.c|   41 +-
 src/vmwarexinerama.c |9 
 vmwarectrl/AUTHORS   |1 
 vmwarectrl/COPYING   |   26 -
 vmwarectrl/ChangeLog |8 
 vmwarectrl/INSTALL   |  229 ---
 vmwarectrl/Makefile.am   |   12 
 vmwarectrl/NEWS  |4 
 vmwarectrl/README|6 
 vmwarectrl/autogen.sh|   12 
 vmwarectrl/configure.ac  |   12 
 vmwarectrl/libvmwarectrl.c   |2 
 41 files changed, 655 insertions(+), 1512 deletions(-)

New commits:
commit 59e25ca7ef1350606e0249eec141fd0438420f70
Author: Cyril Brulebois 
Date:   Sat Feb 5 14:59:54 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index ea5254b..ffe58a3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-vmware (1:11.0.3-2) UNRELEASED; urgency=low
+xserver-xorg-video-vmware (1:11.0.3-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -12,7 +12,7 @@ xserver-xorg-video-vmware (1:11.0.3-2) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois   Fri, 04 Feb 2011 08:52:30 +0100
+ -- Cyril Brulebois   Sat, 05 Feb 2011 14:59:54 +0100
 
 xserver-xorg-video-vmware (1:11.0.3-1) experimental; urgency=low
 

commit 120bcde51f93e10ac94f21289cd7880ed3dd1c76
Author: Cyril Brulebois 
Date:   Sat Feb 5 09:32:36 2011 +0100

Add a placeholding series file.

diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..fdffa2a
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+# placeholder

commit 0d9262c39d3ca61f10e53349c9b09922839de5bf
Author: Cyril Brulebois 
Date:   Fri Feb 4 09:03:28 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index 70cfa62..ea5254b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-vmware (1:11.0.3-2) UNRELEASED; urgency=low
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
+  * Add quilt build-dep for future use.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 08:52:30 +0100
 
diff --git a/debian/control b/debian/control
index 6317c40..430948e 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Drew Parsons , Cyril Brulebois 

 Build-Depends:
  debhelper (>= 8),
  dh-autoreconf,
+ quilt,
  pkg-config,
  xserver-xorg-dev (>= 2:1.9.4),
  x11proto-core-dev,

commit ac00d9e1b7d2458cc2da024b30a68e74152248a3
Author: Cyril Brulebois 
Date:   Fri Feb 4 09:03:14 2011 +0100

Bump Standards-Version to 3.9.1 (no changes needed).

diff --git a/debian/changelog b/debian/changelog
index 297b5b6..70cfa62 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-vmware (1:11.0.3-2) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David & Brice!
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 08:52:30 +0100
 
diff --git a/debian/control b/debian/control
index cf7e3a5..6317c40 100644
--- a/debian/control
+++ b/debian/control
@@ -18,7 +18,7 @

xserver-xorg-video-vmware: Changes to 'refs/tags/xserver-xorg-video-vmware-1_11.0.3-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-vmware-1_11.0.3-2' created by Cyril Brulebois 
 at 2011-02-05 13:59 +

Tagging upload of xserver-xorg-video-vmware 1:11.0.3-2 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NV9sACgkQeGfVPHR5Nd1AqQCggDEBrImxhc/8+p5lJAsfEj3l
dpUAnRTkFdADe7LWfH3yilxbpZdRlwOX
=dODr
-END PGP SIGNATURE-

Changes since xserver-xorg-video-vmware-1_11.0.3-1:
Cyril Brulebois (11):
  Mention upstream git URL in a comment.
  Switch to dh.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David & Brice!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Add quilt build-dep for future use.
  Merge branch 'debian-experimental' into debian-unstable
  Add a placeholding series file.
  Upload to unstable

---
 debian/README.source   |   24 -
 debian/changelog   |   16 +
 debian/compat  |2 
 debian/control |   23 -
 debian/patches/series  |1 
 debian/rules   |  108 +---
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 10 files changed, 45 insertions(+), 1069 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plifj-0003k8...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 debian/README.source   |   24 -
 debian/changelog   |   22 +
 debian/compat  |2 
 debian/control |   24 -
 debian/rules   |  103 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 8 files changed, 46 insertions(+), 1068 deletions(-)

New commits:
commit 451db13fb396efb9dace64e1be5d5b82fea8ee86
Author: Cyril Brulebois 
Date:   Sat Feb 5 14:59:36 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 3b91dfc..7c707fb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-vesa (1:2.3.0-5) UNRELEASED; urgency=low
+xserver-xorg-video-vesa (1:2.3.0-5) unstable; urgency=low
 
   * Fix typos in long description.
   * Switch to dh:
@@ -12,7 +12,7 @@ xserver-xorg-video-vesa (1:2.3.0-5) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois   Wed, 13 Oct 2010 02:19:46 +0200
+ -- Cyril Brulebois   Sat, 05 Feb 2011 14:59:35 +0100
 
 xserver-xorg-video-vesa (1:2.3.0-4) experimental; urgency=low
 

commit 0a8059342a90fa549877debd01e5e95a6e31110a
Author: Cyril Brulebois 
Date:   Fri Feb 4 08:49:48 2011 +0100

Bump Standards-Version to 3.9.1 (no changes needed).

diff --git a/debian/changelog b/debian/changelog
index 9011479..3b91dfc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-vesa (1:2.3.0-5) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David & Brice!
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois   Wed, 13 Oct 2010 02:19:46 +0200
 
diff --git a/debian/control b/debian/control
index 3352687..93c47d1 100644
--- a/debian/control
+++ b/debian/control
@@ -17,7 +17,7 @@ Build-Depends:
  quilt,
  libdrm-dev (>= 2.4.3) [!hurd-i386],
  x11proto-xf86dri-dev,
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-vesa
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-vesa.git
 

commit 83604b7ae477d924c75b6d05b44cc19c1b427bb1
Author: Cyril Brulebois 
Date:   Fri Feb 4 08:49:30 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 9f7da90..9011479 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-vesa (1:2.3.0-5) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David & Brice!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois   Wed, 13 Oct 2010 02:19:46 +0200
 
diff --git a/debian/control b/debian/control
index 470f81a..3352687 100644
--- a/debian/control
+++ b/debian/control
@@ -23,8 +23,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-vesa.gi
 
 Package: xserver-xorg-video-vesa
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
-Provides: ${xviddriver:Provides}
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+ ${xviddriver:Depends},
+Provides:
+ ${xviddriver:Provides}
 Description: X.Org X server -- VESA display driver
  This driver for the X.Org X server (see xserver-xorg for a further 
description)
  uses the standard VESA interface provided on all video cards, but runs

commit 57f17d68b1da4c566767d79886c4cf64b967beed
Author: Cyril Brulebois 
Date:   Fri Feb 4 08:49:12 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index f5a533d..9f7da90 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-vesa (1:2.3.0-5) UNRELEASED; urgency=low
   debhelper sequence.
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David & Brice!
+  * Remove long obsolete Replaces/Conflicts.
 
  -- Cyril Brulebois   Wed, 13 Oct 2010 02:19:46 +0200
 
diff --git a/debian/control b/debian/control
index d049067..470f81a 100644
--- a/debian/control
+++ b/debian/control
@@ -25,8 +25,6 @@ Package: xserver-xorg-video-vesa
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
 Provides: ${xviddriver:Provides}
-Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-vesa
-Conflicts: xserver-xorg-driver-vesa
 Description: X.Org X server -- VESA display driver
  This driver for the X.Org X server (see xserver-xorg for a further 
description)
  uses the standard VESA interface provided on all video cards, but runs

commit 38eb74559f75f02670c48e3a7003c0bf11f2d9d9
Author: Cyril Brulebois 
Date:   Fri Feb 4 08:49:00 2011 +0100

Update Uploaders list. Thanks, David & Brice!

diff --git a/debian/changelog b/debian/changelog
index 9996a1e..f5a533d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ xserver-xorg-vid

xserver-xorg-video-vesa: Changes to 'refs/tags/xserver-xorg-video-vesa-1_2.3.0-5'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-vesa-1_2.3.0-5' created by Cyril Brulebois 
 at 2011-02-05 13:59 +

Tagging upload of xserver-xorg-video-vesa 1:2.3.0-5 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NV8kACgkQeGfVPHR5Nd1+JwCfcb8lupBjBBKtA5AK8973Gp+O
Ey8An2tTEtKA2uSjjNbWPGi3QuEp+ARu
=cepI
-END PGP SIGNATURE-

Changes since xserver-xorg-video-vesa-1_2.3.0-4:
Cyril Brulebois (10):
  Fix typos in long description.
  Mention upstream git URL in a comment.
  Switch to dh.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David & Brice!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Merge branch 'debian-experimental' into debian-unstable
  Upload to unstable

---
 debian/README.source   |   24 -
 debian/changelog   |   16 +
 debian/compat  |2 
 debian/control |   24 -
 debian/rules   |  103 
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 9 files changed, 41 insertions(+), 1068 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plifq-0003vi...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 .gitignore |   69 -
 COPYING|   89 ++-
 ChangeLog  |  127 ++
 Makefile.am|   12 
 configure.ac   |   18 -
 debian/README.source   |   24 -
 debian/changelog   |   26 ++
 debian/compat  |2 
 debian/control |   22 -
 debian/rules   |  100 ---
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 man/.cvsignore |3 
 man/Makefile.am|   41 +--
 src/.cvsignore |6 
 src/Makefile.am|2 
 src/tseng.h|3 
 src/tseng_mode.c   |2 
 19 files changed, 361 insertions(+), 1124 deletions(-)

New commits:
commit 65939d83cb98271e4b0a3000d454205b9d7c3988
Author: Cyril Brulebois 
Date:   Sat Feb 5 14:59:20 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index df46184..89db353 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-tseng (1:1.2.4-2) UNRELEASED; urgency=low
+xserver-xorg-video-tseng (1:1.2.4-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -10,7 +10,7 @@ xserver-xorg-video-tseng (1:1.2.4-2) UNRELEASED; urgency=low
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
 
- -- Cyril Brulebois   Fri, 04 Feb 2011 08:37:34 +0100
+ -- Cyril Brulebois   Sat, 05 Feb 2011 14:59:19 +0100
 
 xserver-xorg-video-tseng (1:1.2.4-1) experimental; urgency=low
 

commit 84c3177afcd527602aa01d67699c499f1494badf
Author: Cyril Brulebois 
Date:   Fri Feb 4 08:40:21 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index ecbe465..df46184 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-tseng (1:1.2.4-2) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 08:37:34 +0100
 
diff --git a/debian/control b/debian/control
index 2098229..8153e58 100644
--- a/debian/control
+++ b/debian/control
@@ -22,8 +22,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-tseng.g
 
 Package: xserver-xorg-video-tseng
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
-Provides: ${xviddriver:Provides}
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+ ${xviddriver:Depends},
+Provides:
+ ${xviddriver:Provides}
 Description: X.Org X server -- Tseng display driver
  This package provides the driver for Tseng Labs cards.
  .

commit 4bacef5943f0ce10d39b17a941dd9ba913328fd5
Author: Cyril Brulebois 
Date:   Fri Feb 4 08:39:57 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index 8252cd0..ecbe465 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ xserver-xorg-video-tseng (1:1.2.4-2) UNRELEASED; urgency=low
   debhelper sequence.
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David!
+  * Remove long obsolete Replaces/Conflicts.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 08:37:34 +0100
 
diff --git a/debian/control b/debian/control
index 5ea9004..2098229 100644
--- a/debian/control
+++ b/debian/control
@@ -24,8 +24,6 @@ Package: xserver-xorg-video-tseng
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
 Provides: ${xviddriver:Provides}
-Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-tseng
-Conflicts: xserver-xorg-driver-tseng
 Description: X.Org X server -- Tseng display driver
  This package provides the driver for Tseng Labs cards.
  .

commit e673218e1a1ae18f95b749075759fd26b8617b5f
Author: Cyril Brulebois 
Date:   Fri Feb 4 08:39:43 2011 +0100

Update Uploaders list. Thanks, David!

diff --git a/debian/changelog b/debian/changelog
index 66c1c67..8252cd0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,7 @@ xserver-xorg-video-tseng (1:1.2.4-2) UNRELEASED; urgency=low
 - Bump xserver-xorg-dev build-dep for dh_xsf_substvars and xsf
   debhelper sequence.
   * Remove xsfbs accordingly.
+  * Update Uploaders list. Thanks, David!
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 08:37:34 +0100
 
diff --git a/debian/control b/debian/control
index 562ddeb..5ea9004 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: xserver-xorg-video-tseng
 Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
-Uploaders: David Nusinow , Cyril Brulebois 

+Uploaders: Cyril Brulebois 
 Build-Depends:
  debhelper (>= 8),
  dh-autoreconf,

commit 7589619fff54b80cbfaf3a3a94040c6e3c4afeb9
Author: Cyril Brulebois 
Date:   Fri Feb 4 08:39:07 2011 +0100

Remove xsfbs accordingly.

diff --git a/debian/README.source b/debian/README.source
index b09a1ab..4ecd5e6 100644
--- a/debian/README.source
+

xserver-xorg-video-tseng: Changes to 'refs/tags/xserver-xorg-video-tseng-1_1.2.4-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-tseng-1_1.2.4-2' created by Cyril Brulebois 
 at 2011-02-05 13:59 +

Tagging upload of xserver-xorg-video-tseng 1:1.2.4-2 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NV7kACgkQeGfVPHR5Nd30+wCfeS+oxbHfThM6v3SoUsJwBWYW
jC8AoNHkAiSxEWlm27WC60DWhOsmklIN
=XdK+
-END PGP SIGNATURE-

Changes since xserver-xorg-video-tseng-1_1.2.4-1:
Cyril Brulebois (9):
  Mention upstream git URL in a comment.
  Add ChangeLog.
  Switch to dh.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides.
  Merge branch 'debian-experimental' into debian-unstable
  Upload to unstable

---
 ChangeLog  |  582 +
 debian/README.source   |   24 -
 debian/changelog   |   14 +
 debian/compat  |2 
 debian/control |   20 -
 debian/rules   |  100 ---
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 10 files changed, 619 insertions(+), 1063 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plifa-0003ic...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 .gitignore |   70 +
 COPYING|   67 -
 ChangeLog  |  102 
 Makefile.am|   12 
 configure.ac   |   14 -
 debian/README.source   |   24 -
 debian/changelog   |   26 ++
 debian/compat  |2 
 debian/control |   22 -
 debian/rules   |  100 ---
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 man/.cvsignore |2 
 man/Makefile.am|   41 +--
 src/.cvsignore |6 
 src/trident.h  |7 
 src/trident_dac.c  |2 
 src/trident_driver.c   |   17 -
 src/tridentramdac.c|   70 -
 src/tvga_dac.c |2 
 21 files changed, 331 insertions(+), 1194 deletions(-)

New commits:
commit adfe5905738e3050f08857114163137452e1deb2
Author: Cyril Brulebois 
Date:   Sat Feb 5 14:59:03 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index d5f260d..e097041 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-trident (1:1.3.4-2) UNRELEASED; urgency=low
+xserver-xorg-video-trident (1:1.3.4-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -10,7 +10,7 @@ xserver-xorg-video-trident (1:1.3.4-2) UNRELEASED; urgency=low
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
 
- -- Cyril Brulebois   Fri, 04 Feb 2011 08:23:34 +0100
+ -- Cyril Brulebois   Sat, 05 Feb 2011 14:59:03 +0100
 
 xserver-xorg-video-trident (1:1.3.4-1) experimental; urgency=low
 

commit 7af2bb970594bbae30debb7dc994c58ea02b95fa
Author: Cyril Brulebois 
Date:   Fri Feb 4 08:30:19 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 52fc72a..d5f260d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-trident (1:1.3.4-2) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 08:23:34 +0100
 
diff --git a/debian/control b/debian/control
index a653ba6..9623194 100644
--- a/debian/control
+++ b/debian/control
@@ -23,8 +23,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-trident
 
 Package: xserver-xorg-video-trident
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
-Provides: ${xviddriver:Provides}
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+ ${xviddriver:Depends},
+Provides:
+ ${xviddriver:Provides}
 Description: X.Org X server -- Trident display driver
  This package provides the driver for Trident Blade/Image/ProVidia/TGUI/9xxx
  video cards.

commit 27d3576e3e67a9932d8e20d3f3299a61b0f8737e
Author: Cyril Brulebois 
Date:   Fri Feb 4 08:29:59 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index 53f6180..52fc72a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ xserver-xorg-video-trident (1:1.3.4-2) UNRELEASED; urgency=low
   debhelper sequence.
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David!
+  * Remove long obsolete Replaces/Conflicts.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 08:23:34 +0100
 
diff --git a/debian/control b/debian/control
index 5a5ecf5..a653ba6 100644
--- a/debian/control
+++ b/debian/control
@@ -25,8 +25,6 @@ Package: xserver-xorg-video-trident
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
 Provides: ${xviddriver:Provides}
-Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-trident
-Conflicts: xserver-xorg-driver-trident
 Description: X.Org X server -- Trident display driver
  This package provides the driver for Trident Blade/Image/ProVidia/TGUI/9xxx
  video cards.

commit ea32cd0f41edb0b3c2f3f6eb0374d0e24ae979f3
Author: Cyril Brulebois 
Date:   Fri Feb 4 08:29:38 2011 +0100

Update Uploaders list. Thanks, David!

diff --git a/debian/changelog b/debian/changelog
index 4b96c35..53f6180 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,7 @@ xserver-xorg-video-trident (1:1.3.4-2) UNRELEASED; urgency=low
 - Bump xserver-xorg-dev build-dep for dh_xsf_substvars and xsf
   debhelper sequence.
   * Remove xsfbs accordingly.
+  * Update Uploaders list. Thanks, David!
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 08:23:34 +0100
 
diff --git a/debian/control b/debian/control
index 4b9ef96..5a5ecf5 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: xserver-xorg-video-trident
 Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
-Uploaders: David Nusinow , Cyril Brulebois 

+Uploaders: Cyril Brulebois 
 Build-Depends:
  debhelper (>= 8),
  dh-autoreconf,

commit 26468d87eb8ca61c271e7bdfbfc187a24892fe91
Author: Cyril Brulebois 
Date:   Fri Feb 4 08:28:58 

xserver-xorg-video-trident: Changes to 'refs/tags/xserver-xorg-video-trident-1_1.3.4-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-trident-1_1.3.4-2' created by Cyril Brulebois 
 at 2011-02-05 13:59 +

Tagging upload of xserver-xorg-video-trident 1:1.3.4-2 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NV6gACgkQeGfVPHR5Nd2/CwCg0x0VdJrJuK944banhqB0lA2P
qDUAn0x8BkdkCb1W8wiKT3NJp/siZ+8C
=VTM2
-END PGP SIGNATURE-

Changes since xserver-xorg-video-trident-1_1.3.4-1:
Cyril Brulebois (10):
  Mention upstream git URL in a comment.
  Add ChangeLog.
  Kill extra spaces.
  Switch to dh.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides.
  Merge branch 'debian-experimental' into debian-unstable
  Upload to unstable

---
 ChangeLog  |  687 +
 debian/README.source   |   24 -
 debian/changelog   |   16 +
 debian/compat  |2 
 debian/control |   20 -
 debian/rules   |  100 ---
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 
 debian/xsfbs/xsfbs.sh  |  622 
 10 files changed, 725 insertions(+), 1064 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pliet-00034x...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 debian/README.source   |   24 -
 debian/changelog   |   23 +
 debian/compat  |2 
 debian/control |   22 -
 debian/patches/series  |1 
 debian/rules   |  101 ---
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 9 files changed, 49 insertions(+), 1063 deletions(-)

New commits:
commit d83b07db7e838e573a7c027b29a768ad8a63b7e8
Author: Cyril Brulebois 
Date:   Sat Feb 5 14:58:43 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index e6ce621..d29a17a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-tga (1:1.2.1-4) UNRELEASED; urgency=low
+xserver-xorg-video-tga (1:1.2.1-4) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -12,7 +12,7 @@ xserver-xorg-video-tga (1:1.2.1-4) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois   Fri, 04 Feb 2011 07:45:13 +0100
+ -- Cyril Brulebois   Sat, 05 Feb 2011 14:58:43 +0100
 
 xserver-xorg-video-tga (1:1.2.1-3) experimental; urgency=low
 

commit c163d928217f8fd75a9acdf86ccb7ab87a609560
Author: Cyril Brulebois 
Date:   Sat Feb 5 09:32:32 2011 +0100

Add a placeholding series file.

diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..fdffa2a
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+# placeholder

commit 044ca16292bed7c4c71509c3c3de5fd3c9b804c8
Author: Cyril Brulebois 
Date:   Fri Feb 4 07:51:56 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index d80bc3e..e6ce621 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-tga (1:1.2.1-4) UNRELEASED; urgency=low
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
+  * Add quilt build-dep for future use.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 07:45:13 +0100
 
diff --git a/debian/control b/debian/control
index 2d84baf..3ebc8da 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Cyril Brulebois 
 Build-Depends:
  debhelper (>= 8),
  dh-autoreconf,
+ quilt,
  xutils-dev,
  pkg-config,
  xserver-xorg-dev (>= 2:1.9.4),

commit 79d978385adf8f9ebb41562879f241c8e02929a0
Author: Cyril Brulebois 
Date:   Fri Feb 4 07:51:25 2011 +0100

Bump Standards-Version to 3.9.1 (no changes needed).

diff --git a/debian/changelog b/debian/changelog
index c63471f..d80bc3e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-tga (1:1.2.1-4) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David & Brice!
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 07:45:13 +0100
 
diff --git a/debian/control b/debian/control
index 9635b5a..2d84baf 100644
--- a/debian/control
+++ b/debian/control
@@ -16,7 +16,7 @@ Build-Depends:
  x11proto-fonts-dev,
  x11proto-randr-dev,
  x11proto-render-dev
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-tga
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-tga.git
 

commit e3772b4ae0bb5681c73207a50eba06ee5a9cf1c9
Author: Cyril Brulebois 
Date:   Fri Feb 4 07:48:26 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index d6d686b..c63471f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-tga (1:1.2.1-4) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David & Brice!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 07:45:13 +0100
 
diff --git a/debian/control b/debian/control
index 33a205f..9635b5a 100644
--- a/debian/control
+++ b/debian/control
@@ -22,8 +22,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-tga.git
 
 Package: xserver-xorg-video-tga
 Architecture: alpha amd64 arm armeb armel hppa hurd-i386 i386 ia64 
kfreebsd-i386 m68k mips mipsel netbsd-i386 powerpc
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
-Provides: ${xviddriver:Provides}
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+ ${xviddriver:Depends},
+Provides:
+ ${xviddriver:Provides}
 Description: X.Org X server -- TGA display driver
  This package provides the driver for the TGA family
  of chipsets.

commit 6404c3609e3e6c567d0bc07ec80d49cc416284bb
Author: Cyril Brulebois 
Date:   Fri Feb 4 07:47:47 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index c0227f6..d6d686b 100644
--- a/debian/changelog
+++ b/d

xserver-xorg-video-tga: Changes to 'refs/tags/xserver-xorg-video-tga-1_1.2.1-4'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-tga-1_1.2.1-4' created by Cyril Brulebois 
 at 2011-02-05 13:58 +

Tagging upload of xserver-xorg-video-tga 1:1.2.1-4 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NV5QACgkQeGfVPHR5Nd2QAwCeNVYA5b68xTlYC0GgNFg+TFQb
y6UAoITdnrrlKjt4x6iCl+SDmmlKfHCT
=yT4U
-END PGP SIGNATURE-

Changes since xserver-xorg-video-tga-1_1.2.1-3:
Cyril Brulebois (11):
  Mention upstream git URL in a comment.
  Switch to dh.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David & Brice!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Add quilt build-dep for future use.
  Merge branch 'debian-experimental' into debian-unstable
  Add a placeholding series file.
  Upload to unstable

---
 debian/README.source   |   24 -
 debian/changelog   |   16 +
 debian/compat  |2 
 debian/control |   22 -
 debian/patches/series  |1 
 debian/rules   |  101 ---
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 10 files changed, 43 insertions(+), 1063 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pliee-0002zv...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 debian/README.source   |   24 -
 debian/changelog   |   21 +
 debian/compat  |2 
 debian/control |   22 -
 debian/rules   |  100 ---
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 8 files changed, 44 insertions(+), 1064 deletions(-)

New commits:
commit bc22be45ab445d360169716a672ca700f10fde04
Author: Cyril Brulebois 
Date:   Sat Feb 5 14:58:31 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index b7d0740..6f1e3cb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-tdfx (1:1.4.3-4) UNRELEASED; urgency=low
+xserver-xorg-video-tdfx (1:1.4.3-4) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -11,7 +11,7 @@ xserver-xorg-video-tdfx (1:1.4.3-4) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois   Fri, 04 Feb 2011 07:26:45 +0100
+ -- Cyril Brulebois   Sat, 05 Feb 2011 14:58:31 +0100
 
 xserver-xorg-video-tdfx (1:1.4.3-3) experimental; urgency=low
 

commit 2d315fc79286aa6ec5b7aeb6fb57dfe1e62e5dd2
Author: Cyril Brulebois 
Date:   Fri Feb 4 07:29:55 2011 +0100

Bump Standards-Version to 3.9.1 (no changes needed).

diff --git a/debian/changelog b/debian/changelog
index 5a1ef94..b7d0740 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-tdfx (1:1.4.3-4) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David!
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 07:26:45 +0100
 
diff --git a/debian/control b/debian/control
index cc6b8ff..49371ec 100644
--- a/debian/control
+++ b/debian/control
@@ -21,7 +21,7 @@ Build-Depends:
  libdrm-dev (>> 2.0) [!hurd-i386],
  x11proto-xf86dri-dev,
  quilt,
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-tdfx
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-tdfx.git
 

commit 12aa75d244b3df1cda50536c1da5dd943c10f364
Author: Cyril Brulebois 
Date:   Fri Feb 4 07:29:20 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 8280b39..5a1ef94 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-tdfx (1:1.4.3-4) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 07:26:45 +0100
 
diff --git a/debian/control b/debian/control
index 92051f7..cc6b8ff 100644
--- a/debian/control
+++ b/debian/control
@@ -27,8 +27,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-tdfx.gi
 
 Package: xserver-xorg-video-tdfx
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
-Provides: ${xviddriver:Provides}
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+ ${xviddriver:Depends},
+Provides:
+ ${xviddriver:Provides}
 Description: X.Org X server -- tdfx display driver
  This package provides the driver for 3dfx Voodoo video cards and their
  derivatives.

commit 8f9ecdc02fa5364d22784ddf39b430a95cb59b08
Author: Cyril Brulebois 
Date:   Fri Feb 4 07:29:03 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index cd37d78..8280b39 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ xserver-xorg-video-tdfx (1:1.4.3-4) UNRELEASED; urgency=low
   debhelper sequence.
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David!
+  * Remove long obsolete Replaces/Conflicts.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 07:26:45 +0100
 
diff --git a/debian/control b/debian/control
index eac0967..92051f7 100644
--- a/debian/control
+++ b/debian/control
@@ -29,8 +29,6 @@ Package: xserver-xorg-video-tdfx
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
 Provides: ${xviddriver:Provides}
-Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-tdfx
-Conflicts: xserver-xorg-driver-tdfx
 Description: X.Org X server -- tdfx display driver
  This package provides the driver for 3dfx Voodoo video cards and their
  derivatives.

commit 38d34ef91ff228470211f16bfd661cf8edc29810
Author: Cyril Brulebois 
Date:   Fri Feb 4 07:28:49 2011 +0100

Update Uploaders list. Thanks, David!

diff --git a/debian/changelog b/debian/changelog
index 838ae4e..cd37d78 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,7 @@ xserver-xorg-video-tdfx (1:1.4.3-4) UNRELEASED; urgency=low
 - Bump xserver-xorg-dev build-dep for dh_xsf_substvars and xsf
   debhelper sequence.
   * Remove xsfbs accordingly.
+  * Update Upl

xserver-xorg-video-tdfx: Changes to 'refs/tags/xserver-xorg-video-tdfx-1_1.4.3-4'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-tdfx-1_1.4.3-4' created by Cyril Brulebois 
 at 2011-02-05 13:58 +

Tagging upload of xserver-xorg-video-tdfx 1:1.4.3-4 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NV4gACgkQeGfVPHR5Nd3XFgCbBM/9x98BPQ8N1Tq49hhBuIw8
v88AoI/jy8kl3OSRgWVRuZ0poSssrZTD
=0MVx
-END PGP SIGNATURE-

Changes since xserver-xorg-video-tdfx-1_1.4.3-3:
Cyril Brulebois (9):
  Mention upstream git URL in a comment.
  Switch to dh.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Merge branch 'debian-experimental' into debian-unstable
  Upload to unstable

---
 debian/README.source   |   24 -
 debian/changelog   |   15 +
 debian/compat  |2 
 debian/control |   22 -
 debian/rules   |  100 ---
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 9 files changed, 39 insertions(+), 1064 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pliek-0002wz...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 debian/README.source   |   24 -
 debian/changelog   |   24 +
 debian/compat  |2 
 debian/control |   26 +-
 debian/patches/series  |1 
 debian/rules   |  102 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 9 files changed, 52 insertions(+), 1066 deletions(-)

New commits:
commit 707d5a9c4a50692ff52858fe9ee48b5cb3698208
Author: Cyril Brulebois 
Date:   Sat Feb 5 14:58:16 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 2f46556..4ac911c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-suntcx (1:1.1.1-5) UNRELEASED; urgency=low
+xserver-xorg-video-suntcx (1:1.1.1-5) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -13,7 +13,7 @@ xserver-xorg-video-suntcx (1:1.1.1-5) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois   Fri, 04 Feb 2011 07:08:36 +0100
+ -- Cyril Brulebois   Sat, 05 Feb 2011 14:58:15 +0100
 
 xserver-xorg-video-suntcx (1:1.1.1-4) experimental; urgency=low
 

commit b13bf5f2b42453e60c0c3cef1b4f83e61107d3fd
Author: Cyril Brulebois 
Date:   Sat Feb 5 09:32:30 2011 +0100

Add a placeholding series file.

diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..fdffa2a
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+# placeholder

commit 10c739d16aa8edab212799d4dbb34b9baad4cebf
Author: Cyril Brulebois 
Date:   Fri Feb 4 07:20:31 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index bb29daf..2f46556 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ xserver-xorg-video-suntcx (1:1.1.1-5) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Remove XS prefix from Vcs fields.
   * Bump Standards-Version to 3.9.1 (no changes needed).
+  * Add quilt build-dep for future use.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 07:08:36 +0100
 
diff --git a/debian/control b/debian/control
index 79e479a..852dc63 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Jurij Smakov , Cyril Brulebois 

 Build-Depends:
  debhelper (>= 8),
  dh-autoreconf,
+ quilt,
  xutils-dev,
  pkg-config,
  xserver-xorg-dev (>= 2:1.9.4),

commit 1e968162b019b94073f8d2ad50b8b3f3677b99d3
Author: Cyril Brulebois 
Date:   Fri Feb 4 07:18:04 2011 +0100

Bump Standards-Version to 3.9.1 (no changes needed).

diff --git a/debian/changelog b/debian/changelog
index 8aca519..bb29daf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-suntcx (1:1.1.1-5) UNRELEASED; urgency=low
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
   * Remove XS prefix from Vcs fields.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 07:08:36 +0100
 
diff --git a/debian/control b/debian/control
index a5a16a9..79e479a 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,7 @@ Build-Depends:
  x11proto-randr-dev,
  x11proto-render-dev,
  x11proto-fonts-dev
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-suntcx
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-suntcx.git
 

commit 3a490fdfec08a5f805e8ea4c4c9f251eaf027535
Author: Cyril Brulebois 
Date:   Fri Feb 4 07:17:51 2011 +0100

Remove XS prefix from Vcs fields.

diff --git a/debian/changelog b/debian/changelog
index 55a0d08..8aca519 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-suntcx (1:1.1.1-5) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David!
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
+  * Remove XS prefix from Vcs fields.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 07:08:36 +0100
 
diff --git a/debian/control b/debian/control
index a4b5ab5..a5a16a9 100644
--- a/debian/control
+++ b/debian/control
@@ -14,8 +14,8 @@ Build-Depends:
  x11proto-render-dev,
  x11proto-fonts-dev
 Standards-Version: 3.8.3
-XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-suntcx
-XS-Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-suntcx.git
+Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-suntcx
+Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-suntcx.git
 
 Package: xserver-xorg-video-suntcx
 Architecture: sparc

commit dd697811f4900c84a1c476cd540746909d62f9bd
Author: Cyril Brulebois 
Date:   Fri Feb 4 07:17:33 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 10ad536..55a0d08 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-suntcx (1:1.1.1-5) UNRE

xserver-xorg-video-suntcx: Changes to 'refs/tags/xserver-xorg-video-suntcx-1_1.1.1-5'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-suntcx-1_1.1.1-5' created by Cyril Brulebois 
 at 2011-02-05 13:58 +

Tagging upload of xserver-xorg-video-suntcx 1:1.1.1-5 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NV3kACgkQeGfVPHR5Nd1qFwCfeN/P247cc2bOmzQ5/ZiarGES
fYwAnRdWaxXnWbl+fv0q6lQd2rKuFkKE
=tZQy
-END PGP SIGNATURE-

Changes since xserver-xorg-video-suntcx-1_1.1.1-4:
Cyril Brulebois (12):
  Mention upstream git URL in a comment.
  Switch to dh.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides.
  Remove XS prefix from Vcs fields.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Add quilt build-dep for future use.
  Merge branch 'debian-experimental' into debian-unstable
  Add a placeholding series file.
  Upload to unstable

---
 debian/README.source   |   24 -
 debian/changelog   |   17 +
 debian/compat  |2 
 debian/control |   26 +-
 debian/patches/series  |1 
 debian/rules   |  102 
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 10 files changed, 46 insertions(+), 1066 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plie5-0002ua...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 debian/README.source   |   24 -
 debian/changelog   |   23 +
 debian/compat  |2 
 debian/control |   27 +-
 debian/patches/series  |1 
 debian/rules   |  105 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 9 files changed, 53 insertions(+), 1068 deletions(-)

New commits:
commit 577e79f20871daac31ec5743a3fdeef12643c5b1
Author: Cyril Brulebois 
Date:   Sat Feb 5 14:58:00 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 165d5b3..02297d9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-sunleo (1:1.2.0-5) UNRELEASED; urgency=low
+xserver-xorg-video-sunleo (1:1.2.0-5) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -12,7 +12,7 @@ xserver-xorg-video-sunleo (1:1.2.0-5) UNRELEASED; urgency=low
   * Remove XS prefix from Vcs fields.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois   Fri, 04 Feb 2011 06:56:27 +0100
+ -- Cyril Brulebois   Sat, 05 Feb 2011 14:57:59 +0100
 
 xserver-xorg-video-sunleo (1:1.2.0-4) experimental; urgency=low
 

commit 5a48859207a6c7fabf8a5b6f61caff8304084732
Author: Cyril Brulebois 
Date:   Sat Feb 5 09:32:28 2011 +0100

Add a placeholding series file.

diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..fdffa2a
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+# placeholder

commit c62845639277d62429825822f0ab4065aef37d16
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:59:21 2011 +0100

Bump Standards-Version to 3.9.1 (no changes needed).

diff --git a/debian/changelog b/debian/changelog
index c1fb955..165d5b3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-sunleo (1:1.2.0-5) UNRELEASED; urgency=low
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
   * Remove XS prefix from Vcs fields.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 06:56:27 +0100
 
diff --git a/debian/control b/debian/control
index 77e96af..2e4cf6a 100644
--- a/debian/control
+++ b/debian/control
@@ -16,7 +16,7 @@ Build-Depends:
  libtool,
  xutils-dev,
  quilt
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-sunleo
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-sunleo.git
 

commit 40252fd325036f106db59cfd70e889c073de36cb
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:59:01 2011 +0100

Remove XS prefix from Vcs fields.

diff --git a/debian/changelog b/debian/changelog
index 0d7fda2..c1fb955 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-sunleo (1:1.2.0-5) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David!
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
+  * Remove XS prefix from Vcs fields.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 06:56:27 +0100
 
diff --git a/debian/control b/debian/control
index f0c7cbc..77e96af 100644
--- a/debian/control
+++ b/debian/control
@@ -17,8 +17,8 @@ Build-Depends:
  xutils-dev,
  quilt
 Standards-Version: 3.8.3
-XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-sunleo
-XS-Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-sunleo.git
+Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-sunleo
+Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-sunleo.git
 
 Package: xserver-xorg-video-sunleo
 Architecture: sparc

commit 19680f62ddb621bd3f203a9a05671e1821450919
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:58:47 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 6605976..0d7fda2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-sunleo (1:1.2.0-5) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 06:56:27 +0100
 
diff --git a/debian/control b/debian/control
index 24f8d22..f0c7cbc 100644
--- a/debian/control
+++ b/debian/control
@@ -22,8 +22,12 @@ XS-Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-sunl
 
 Package: xserver-xorg-video-sunleo
 Architecture: sparc
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
-Provides: ${xviddriver:Provides}
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+ ${xviddriver:Depends},
+Provides:
+ ${xviddriver:Provides}
 Description: X.Org X server -- Sun Leo display driver
  This package provides the driver for Sun Leo (ZX) video devices.
  .

commit d2b9f5b689a9e918e2bdf69f1dad34f89cc34bf4
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:58:

xserver-xorg-video-sunleo: Changes to 'refs/tags/xserver-xorg-video-sunleo-1_1.2.0-5'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-sunleo-1_1.2.0-5' created by Cyril Brulebois 
 at 2011-02-05 13:58 +

Tagging upload of xserver-xorg-video-sunleo 1:1.2.0-5 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NV2kACgkQeGfVPHR5Nd1sxQCggVTA0nv/2kXL3of5ECkBuvgX
Kj8AnRSpmA0/kq29lKz4MRuyOCLulMFM
=D3vv
-END PGP SIGNATURE-

Changes since xserver-xorg-video-sunleo-1_1.2.0-4:
Cyril Brulebois (11):
  Mention upstream git URL in a comment.
  Switch to dh.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides.
  Remove XS prefix from Vcs fields.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Merge branch 'debian-experimental' into debian-unstable
  Add a placeholding series file.
  Upload to unstable

---
 debian/README.source   |   24 -
 debian/changelog   |   16 +
 debian/compat  |2 
 debian/control |   24 +
 debian/patches/series  |1 
 debian/rules   |  105 
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 10 files changed, 45 insertions(+), 1067 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plidr-0002sd...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 debian/README.source   |   24 -
 debian/changelog   |   22 +
 debian/compat  |2 
 debian/control |   22 -
 debian/rules   |  100 ---
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 8 files changed, 45 insertions(+), 1064 deletions(-)

New commits:
commit d7ed31fdc03b8c779173a4673d541a229299e7f3
Author: Cyril Brulebois 
Date:   Sat Feb 5 14:57:46 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 607e561..630a686 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-sunffb (1:1.2.1-4) UNRELEASED; urgency=low
+xserver-xorg-video-sunffb (1:1.2.1-4) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -11,7 +11,7 @@ xserver-xorg-video-sunffb (1:1.2.1-4) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois   Fri, 04 Feb 2011 06:45:51 +0100
+ -- Cyril Brulebois   Sat, 05 Feb 2011 14:57:46 +0100
 
 xserver-xorg-video-sunffb (1:1.2.1-3) experimental; urgency=low
 

commit 85cd09826633d657c43a7e24253bab3d9d22dd44
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:52:38 2011 +0100

Bump Standards-Version to 3.9.1 (no changes needed).

diff --git a/debian/changelog b/debian/changelog
index 1daf99a..607e561 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-sunffb (1:1.2.1-4) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David!
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 06:45:51 +0100
 
diff --git a/debian/control b/debian/control
index 5c32c2d..70d6ae2 100644
--- a/debian/control
+++ b/debian/control
@@ -17,7 +17,7 @@ Build-Depends:
  x11proto-xf86dri-dev,
  x11proto-gl-dev,
  quilt,
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-sunffb
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-sunffb.git
 

commit b4d2cdf914eb164cc70356759354ef51f32d01d6
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:52:16 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 811636e..1daf99a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-sunffb (1:1.2.1-4) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 06:45:51 +0100
 
diff --git a/debian/control b/debian/control
index 86817de..5c32c2d 100644
--- a/debian/control
+++ b/debian/control
@@ -23,8 +23,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-sunffb.
 
 Package: xserver-xorg-video-sunffb
 Architecture: sparc
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
-Provides: ${xviddriver:Provides}
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+ ${xviddriver:Depends},
+Provides:
+ ${xviddriver:Provides}
 Description: X.Org X server -- Sun FFB display driver
  This package provides the driver for Sun Creator, Creator3D, and Elite3D
  video devices.

commit 94e740704edde2c1adfa19dfc4027f488b9977cc
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:48:16 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index 415ad90..811636e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ xserver-xorg-video-sunffb (1:1.2.1-4) UNRELEASED; urgency=low
   debhelper sequence.
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David!
+  * Remove long obsolete Replaces/Conflicts.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 06:45:51 +0100
 
diff --git a/debian/control b/debian/control
index 97fa83e..86817de 100644
--- a/debian/control
+++ b/debian/control
@@ -25,8 +25,6 @@ Package: xserver-xorg-video-sunffb
 Architecture: sparc
 Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
 Provides: ${xviddriver:Provides}
-Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-sunffb
-Conflicts: xserver-xorg-driver-sunffb
 Description: X.Org X server -- Sun FFB display driver
  This package provides the driver for Sun Creator, Creator3D, and Elite3D
  video devices.

commit 3e12b926a6754d9bfbabb42188a5d7590c181820
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:48:05 2011 +0100

Update Uploaders list. Thanks, David!

diff --git a/debian/changelog b/debian/changelog
index baf7171..415ad90 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,7 @@ xserver-xorg-video-sunffb (1:1.2.1-4) UNRELEASED; urgency=low
 - Bump xserver-xorg-dev build-dep for dh_xsf_substvars and xsf
   debhelper sequence.
   * Remove xsfbs

xserver-xorg-video-sunffb: Changes to 'refs/tags/xserver-xorg-video-sunffb-1_1.2.1-4'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-sunffb-1_1.2.1-4' created by Cyril Brulebois 
 at 2011-02-05 13:57 +

Tagging upload of xserver-xorg-video-sunffb 1:1.2.1-4 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NV1sACgkQeGfVPHR5Nd2r1ACeL2d+UpApum4Tq7bN+IecBWh/
TnsAnjerPOGSY1kMy1FI44xAu/aQWse+
=cqPj
-END PGP SIGNATURE-

Changes since xserver-xorg-video-sunffb-1_1.2.1-3:
Cyril Brulebois (9):
  Mention upstream git URL in a comment.
  Switch to dh.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Merge branch 'debian-experimental' into debian-unstable
  Upload to unstable

---
 debian/README.source   |   24 -
 debian/changelog   |   15 +
 debian/compat  |2 
 debian/control |   22 -
 debian/rules   |  100 ---
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 9 files changed, 39 insertions(+), 1064 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plidd-0002q5...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 debian/README.source   |   24 -
 debian/changelog   |   24 +
 debian/compat  |2 
 debian/control |   26 +-
 debian/patches/series  |1 
 debian/rules   |  101 ---
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 9 files changed, 52 insertions(+), 1065 deletions(-)

New commits:
commit 140d384db0518692ab5ce2896cc02d2ff2650479
Author: Cyril Brulebois 
Date:   Sat Feb 5 14:57:01 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index b3c4e06..c418257 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-suncg6 (1:1.1.1-5) UNRELEASED; urgency=low
+xserver-xorg-video-suncg6 (1:1.1.1-5) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -13,7 +13,7 @@ xserver-xorg-video-suncg6 (1:1.1.1-5) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois   Fri, 04 Feb 2011 06:37:13 +0100
+ -- Cyril Brulebois   Sat, 05 Feb 2011 14:57:01 +0100
 
 xserver-xorg-video-suncg6 (1:1.1.1-4) experimental; urgency=low
 

commit 496a10ff6e0b40e7d9774abb7bcd0924c374a9fb
Author: Cyril Brulebois 
Date:   Sat Feb 5 09:32:26 2011 +0100

Add a placeholding series file.

diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..fdffa2a
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+# placeholder

commit f28b436017d2a188445e3fe0765328e94f42258a
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:42:03 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index 9bdd0b0..b3c4e06 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ xserver-xorg-video-suncg6 (1:1.1.1-5) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Remove XS prefix from Vcs fields.
   * Bump Standards-Version to 3.9.1 (no changes needed).
+  * Add quilt build-dep for future use.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 06:37:13 +0100
 
diff --git a/debian/control b/debian/control
index 2274a5e..7f2a83b 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Jurij Smakov , Cyril Brulebois 

 Build-Depends:
  debhelper (>= 8),
  dh-autoreconf,
+ quilt,
  xutils-dev,
  pkg-config,
  xserver-xorg-dev (>= 2:1.9.4),

commit a482d26fbd7c503c3b35fd8acada7ca9f5f477b1
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:41:46 2011 +0100

Bump Standards-Version to 3.9.1 (no changes needed).

diff --git a/debian/changelog b/debian/changelog
index a403508..9bdd0b0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-suncg6 (1:1.1.1-5) UNRELEASED; urgency=low
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
   * Remove XS prefix from Vcs fields.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 06:37:13 +0100
 
diff --git a/debian/control b/debian/control
index 3b90a88..2274a5e 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,7 @@ Build-Depends:
  x11proto-randr-dev,
  x11proto-render-dev,
  x11proto-fonts-dev
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-suncg6
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-suncg6.git
 

commit af0cee00f589c642a9f730fa89e9527e92290794
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:41:29 2011 +0100

Remove XS prefix from Vcs fields.

diff --git a/debian/changelog b/debian/changelog
index 0089fea..a403508 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-suncg6 (1:1.1.1-5) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David!
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
+  * Remove XS prefix from Vcs fields.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 06:37:13 +0100
 
diff --git a/debian/control b/debian/control
index 88fd750..3b90a88 100644
--- a/debian/control
+++ b/debian/control
@@ -14,8 +14,8 @@ Build-Depends:
  x11proto-render-dev,
  x11proto-fonts-dev
 Standards-Version: 3.8.3
-XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-suncg6
-XS-Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-suncg6.git
+Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-suncg6
+Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-suncg6.git
 
 Package: xserver-xorg-video-suncg6
 Architecture: sparc

commit 20ccebb3c3ed322734cf9319c10f2d6fa651ed30
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:41:15 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index d986371..0089fea 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-suncg6 (1:1.1.1-5) UNREL

xserver-xorg-video-suncg6: Changes to 'refs/tags/xserver-xorg-video-suncg6-1_1.1.1-5'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-suncg6-1_1.1.1-5' created by Cyril Brulebois 
 at 2011-02-05 13:57 +

Tagging upload of xserver-xorg-video-suncg6 1:1.1.1-5 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NVy4ACgkQeGfVPHR5Nd1C7ACglJ+IMNegTkTxqWu0HCBzKIiG
TpEAoJHejwQf5aQtoR0rdSBQaTuvrioM
=Fhgc
-END PGP SIGNATURE-

Changes since xserver-xorg-video-suncg6-1_1.1.1-4:
Cyril Brulebois (12):
  Mention upstream git URL in a comment.
  Switch to dh.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides.
  Remove XS prefix from Vcs fields.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Add quilt build-dep for future use.
  Merge branch 'debian-experimental' into debian-unstable
  Add a placeholding series file.
  Upload to unstable

---
 debian/README.source   |   24 -
 debian/changelog   |   17 +
 debian/compat  |2 
 debian/control |   26 +-
 debian/patches/series  |1 
 debian/rules   |  101 ---
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 10 files changed, 46 insertions(+), 1065 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plid6-0002hc...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 debian/README.source   |   24 -
 debian/changelog   |   24 +
 debian/compat  |2 
 debian/control |   26 +-
 debian/patches/series  |1 
 debian/rules   |  101 ---
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 9 files changed, 52 insertions(+), 1065 deletions(-)

New commits:
commit 64b23c06b1207068f8259423a167f03f6a64fe90
Author: Cyril Brulebois 
Date:   Sat Feb 5 14:56:38 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index fa29b00..5d057b1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-suncg3 (1:1.1.1-5) UNRELEASED; urgency=low
+xserver-xorg-video-suncg3 (1:1.1.1-5) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -13,7 +13,7 @@ xserver-xorg-video-suncg3 (1:1.1.1-5) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois   Fri, 04 Feb 2011 06:23:22 +0100
+ -- Cyril Brulebois   Sat, 05 Feb 2011 14:56:38 +0100
 
 xserver-xorg-video-suncg3 (1:1.1.1-4) experimental; urgency=low
 

commit b40b05a65cbc4a2fcb14dc54578226ee386a6761
Author: Cyril Brulebois 
Date:   Sat Feb 5 09:32:24 2011 +0100

Add a placeholding series file.

diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..fdffa2a
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+# placeholder

commit 4ab6c2e3c1e81238460e0dc33f0f90908a53663f
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:31:55 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index a92003f..fa29b00 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ xserver-xorg-video-suncg3 (1:1.1.1-5) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Remove XS prefix from Vcs fields.
   * Bump Standards-Version to 3.9.1 (no changes needed).
+  * Add quilt build-dep for future use.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 06:23:22 +0100
 
diff --git a/debian/control b/debian/control
index 917dc90..871 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Jurij Smakov , Cyril Brulebois 

 Build-Depends:
  debhelper (>= 8),
  dh-autoreconf,
+ quilt,
  xutils-dev,
  pkg-config,
  xserver-xorg-dev (>= 2:1.9.4),

commit f8d4f5aa450323f93c89b8d6c6b8b684538e52d6
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:31:43 2011 +0100

Bump Standards-Version to 3.9.1 (no changes needed).

diff --git a/debian/changelog b/debian/changelog
index b43e00d..a92003f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-suncg3 (1:1.1.1-5) UNRELEASED; urgency=low
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
   * Remove XS prefix from Vcs fields.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 06:23:22 +0100
 
diff --git a/debian/control b/debian/control
index dab634a..917dc90 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,7 @@ Build-Depends:
  x11proto-randr-dev,
  x11proto-render-dev,
  x11proto-fonts-dev
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-suncg3
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-suncg3.git
 

commit c74c3c8ac59f9448102c2c5677fb92cfe85a98ea
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:31:10 2011 +0100

Remove XS prefix from Vcs fields.

diff --git a/debian/changelog b/debian/changelog
index 6bb1f24..b43e00d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-suncg3 (1:1.1.1-5) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David!
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
+  * Remove XS prefix from Vcs fields.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 06:23:22 +0100
 
diff --git a/debian/control b/debian/control
index 894ea22..dab634a 100644
--- a/debian/control
+++ b/debian/control
@@ -14,8 +14,8 @@ Build-Depends:
  x11proto-render-dev,
  x11proto-fonts-dev
 Standards-Version: 3.8.3
-XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-suncg3
-XS-Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-suncg3.git
+Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-suncg3
+Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-suncg3.git
 
 Package: xserver-xorg-video-suncg3
 Architecture: sparc

commit 497374df971cc035edb67f2880441aa41f30018c
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:30:52 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 4aafb55..6bb1f24 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-suncg3 (1:1.1.1-5) UNREL

xserver-xorg-video-suncg3: Changes to 'refs/tags/xserver-xorg-video-suncg3-1_1.1.1-5'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-suncg3-1_1.1.1-5' created by Cyril Brulebois 
 at 2011-02-05 13:56 +

Tagging upload of xserver-xorg-video-suncg3 1:1.1.1-5 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NVxcACgkQeGfVPHR5Nd0+8ACePGVsyDGAwd9qlKu2BGBE7XK+
JN0An2u2ftXWnFpT7hOcvy00USjIMoQX
=o7le
-END PGP SIGNATURE-

Changes since xserver-xorg-video-suncg3-1_1.1.1-4:
Cyril Brulebois (12):
  Mention upstream git URL in a comment.
  Switch to dh.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides.
  Remove XS prefix from Vcs fields.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Add quilt build-dep for future use.
  Merge branch 'debian-experimental' into debian-unstable
  Add a placeholding series file.
  Upload to unstable

---
 debian/README.source   |   24 -
 debian/changelog   |   17 +
 debian/compat  |2 
 debian/control |   26 +-
 debian/patches/series  |1 
 debian/rules   |  101 ---
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 10 files changed, 46 insertions(+), 1065 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plicf-0002dw...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 debian/README.source   |   24 -
 debian/changelog   |   24 +
 debian/compat  |2 
 debian/control |   26 +-
 debian/patches/series  |1 
 debian/rules   |  102 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 9 files changed, 52 insertions(+), 1066 deletions(-)

New commits:
commit c2eac35e392e744075ba36ebcd259ddb99a98b82
Author: Cyril Brulebois 
Date:   Sat Feb 5 14:56:20 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 9419f1e..26ce922 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-suncg14 (1:1.1.1-5) UNRELEASED; urgency=low
+xserver-xorg-video-suncg14 (1:1.1.1-5) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -13,7 +13,7 @@ xserver-xorg-video-suncg14 (1:1.1.1-5) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois   Fri, 04 Feb 2011 06:13:56 +0100
+ -- Cyril Brulebois   Sat, 05 Feb 2011 14:56:20 +0100
 
 xserver-xorg-video-suncg14 (1:1.1.1-4) experimental; urgency=low
 

commit 09b6dcd653295792a54ae8681a343fbdef2f05b1
Author: Cyril Brulebois 
Date:   Sat Feb 5 09:32:23 2011 +0100

Add a placeholding series file.

diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..fdffa2a
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+# placeholder

commit 006d495d5f24209b8cae02113d1e69af01ad2959
Author: Cyril Brulebois 
Date:   Fri Feb 4 11:02:39 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index 17c4d82..9419f1e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ xserver-xorg-video-suncg14 (1:1.1.1-5) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Remove XS prefix from Vcs fields.
   * Bump Standards-Version to 3.9.1 (no changes needed).
+  * Add quilt build-dep for future use.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 06:13:56 +0100
 
diff --git a/debian/control b/debian/control
index 24b421c..59d7fae 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Jurij Smakov , Cyril Brulebois 

 Build-Depends:
  debhelper (>= 8),
  dh-autoreconf,
+ quilt,
  xutils-dev,
  pkg-config,
  xserver-xorg-dev (>= 2:1.9.4),

commit c2e21121484b40e98c07069c9d45cb0f7e03024f
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:17:45 2011 +0100

Bump Standards-Version to 3.9.1 (no changes needed).

diff --git a/debian/changelog b/debian/changelog
index 7791e7b..17c4d82 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-suncg14 (1:1.1.1-5) UNRELEASED; urgency=low
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
   * Remove XS prefix from Vcs fields.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 06:13:56 +0100
 
diff --git a/debian/control b/debian/control
index 8c9c264..24b421c 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,7 @@ Build-Depends:
  x11proto-randr-dev,
  x11proto-render-dev,
  x11proto-fonts-dev
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-suncg14
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-suncg14.git
 

commit 7e134371a854adea728e249a9182ef050d38126a
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:17:11 2011 +0100

Remove XS prefix from Vcs fields.

diff --git a/debian/changelog b/debian/changelog
index e669984..7791e7b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-suncg14 (1:1.1.1-5) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David!
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
+  * Remove XS prefix from Vcs fields.
 
  -- Cyril Brulebois   Fri, 04 Feb 2011 06:13:56 +0100
 
diff --git a/debian/control b/debian/control
index de7526c..8c9c264 100644
--- a/debian/control
+++ b/debian/control
@@ -14,8 +14,8 @@ Build-Depends:
  x11proto-render-dev,
  x11proto-fonts-dev
 Standards-Version: 3.8.3
-XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-suncg14
-XS-Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-suncg14.git
+Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-suncg14
+Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-suncg14.git
 
 Package: xserver-xorg-video-suncg14
 Architecture: sparc

commit 1ca02ca3594158c2feff88a0ec65e3a290ee5c73
Author: Cyril Brulebois 
Date:   Fri Feb 4 06:16:42 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 2c3f773..e669984 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-suncg14 (

xserver-xorg-video-suncg14: Changes to 'refs/tags/xserver-xorg-video-suncg14-1_1.1.1-5'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-suncg14-1_1.1.1-5' created by Cyril Brulebois 
 at 2011-02-05 13:56 +

Tagging upload of xserver-xorg-video-suncg14 1:1.1.1-5 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NVwUACgkQeGfVPHR5Nd1rxgCfb5BHzSXlGLNErFtAbbqx48+e
J34An0/0IxFGwT4zqY5+qUMPJHdZafW4
=Zxsk
-END PGP SIGNATURE-

Changes since xserver-xorg-video-suncg14-1_1.1.1-4:
Cyril Brulebois (12):
  Mention upstream git URL in a comment.
  Switch to dh.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides.
  Remove XS prefix from Vcs fields.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Merge branch 'debian-experimental' into debian-unstable
  Add quilt build-dep for future use.
  Add a placeholding series file.
  Upload to unstable

---
 debian/README.source   |   24 -
 debian/changelog   |   17 +
 debian/compat  |2 
 debian/control |   26 +-
 debian/patches/series  |1 
 debian/rules   |  102 
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 10 files changed, 46 insertions(+), 1066 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1plicg-0002bx...@alioth.debian.org



  1   2   >