Bug#534433: xserver-xorg: Keyboard modifier not applied to keypress

2011-02-05 Thread John Leuner
Hi Cyril

This bug is still present with the latest xorg:

ii  xserver-xorg1:7.5+8

It only occurs when you try to use the pedal modifiers for the first
time after connecting the input device. After that everything works
correctly.

John


On Sun, 2011-01-30 at 06:28 +0100, Cyril Brulebois wrote:
 Hi John,
 
 John Leuner je...@debian.org (24/06/2009):
  After upgrading from xserver-xorg 1:7.3+18 to xserver-xorg 1:7.4+3 I
  observed the following:
  
  When pressing pressing CTRL/ALT on my footpedal and pressing a key
  on the keyboard, the CTRL/ALT modifier is lost for the first
  keypress.
 
 could you please tell us how it goes with the X stack from
 squeeze/sid, or from experimental?
 
 KiBi.





-- 
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/1296899645.3145.6.camel@cmalu.WAG54GS



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

2011-02-05 Thread Jonathan Nieder
Hi,

Looking into packaging the API docs described by src/Doxyfile, I got
sidetracked by simplifying debian/rules using dh and generating the
upstream changelog automatically from the git repo (all of which seem
to work well).  This patch series does none of those things --- it
just carries out some minor cleanups.

Patch 1 makes debian/rules clean work without fakeroot (which
is a pet peeve of mine and how dh clean works, anyway).

Patch 2 uses dh_prep in place of dh_clean -k, since the latter
makes some noise about being deprecated nowadays.

Patch 3 writes 7 to debian/compat, since debhelper 7 is needed
for patch 2 anyway.

Patch 4 adds a debian/.gitignore.

Patch 5 uses dpkg-buildflags to retrieve CFLAGS.

Patch 6 removes some noise from the ./configure compile line.

No change noticed in the binary packages with debdiff.  These are just
nitpicks, so please feel free to take what looks good and discard the
rest.

Thoughts?
Jonathan Nieder (6):
  debian/rules: do not require (fake) root privileges to clean
  debian/rules: avoid deprecated dh_clean --keep syntax
  debian/rules: adopt debhelper v7 semantics
  debian: avoid tracking build products
  debian/rules: let build machine admins tweak build flags
  debian/rules: omit unnecessary settings for ./configure

 debian/.gitignore |   10 ++
 debian/changelog  |   14 ++
 debian/compat |2 +-
 debian/control|3 ++-
 debian/rules  |   12 ++--
 5 files changed, 29 insertions(+), 12 deletions(-)
 create mode 100644 debian/.gitignore


-- 
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/20110205124846.GA17584@elie



[PATCH 1/6] debian/rules: do not require (fake) root privileges to clean

2011-02-05 Thread Jonathan Nieder
Building a target that creates a directory as true root might leave
behind files that an ordinary user would not be able remove, but
luckily, rm -f errors out in that (rather rare) case.  So spare the
user some complication and keystrokes by skipping the dh_testroot
check.

Signed-off-by: Jonathan Nieder jrnie...@gmail.com
---
 debian/changelog |6 ++
 debian/rules |1 -
 2 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 4000e37..c027bf9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libpciaccess (0.12.0-2) UNRELEASED; urgency=low
+
+  * Allow non-root users to run “debian/rules clean”.
+
+ -- Jonathan Nieder jrnie...@gmail.com  Fri, 04 Feb 2011 19:51:53 -0600
+
 libpciaccess (0.12.0-1) unstable; urgency=low
 
   * New upstream release:
diff --git a/debian/rules b/debian/rules
index 9d64d5a..10c19a8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -45,7 +45,6 @@ build-stamp: build/config.status
 
 clean:
dh_testdir
-   dh_testroot
rm -f build-stamp

rm -f config.cache config.log config.status
-- 
1.7.4


--
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/20110205125136.GA18037@elie



[PATCH 2/6] debian/rules: avoid deprecated dh_clean --keep syntax

2011-02-05 Thread Jonathan Nieder
dh_clean -k is deprecated because it has a confusing name.  The
synonym dh_prep was added in debhelper 7, which has been available
for about a year and a half.

Signed-off-by: Jonathan Nieder jrnie...@gmail.com
---
 debian/changelog |2 ++
 debian/control   |2 +-
 debian/rules |2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index c027bf9..31e3ae5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
 libpciaccess (0.12.0-2) UNRELEASED; urgency=low
 
   * Allow non-root users to run “debian/rules clean”.
+  * Use dh_prep instead of dh_clean -k.  Requires a build-time
+dependency on debhelper 7.
 
  -- Jonathan Nieder jrnie...@gmail.com  Fri, 04 Feb 2011 19:51:53 -0600
 
diff --git a/debian/control b/debian/control
index 7ccacba..7b967c2 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: optional
 Maintainer: Debian X Strike Force debian-x@lists.debian.org
 Uploaders: David Nusinow dnusi...@debian.org, Cyril Brulebois 
k...@debian.org
 Build-Depends:
- debhelper (= 5),
+ debhelper (= 7),
  libtool,
  automake,
  zlib1g-dev,
diff --git a/debian/rules b/debian/rules
index 10c19a8..6ad11a5 100755
--- a/debian/rules
+++ b/debian/rules
@@ -62,7 +62,7 @@ clean:
 install: build
dh_testdir
dh_testroot
-   dh_clean -k
+   dh_prep
dh_installdirs
 
cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
-- 
1.7.4


--
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/20110205125228.GB18037@elie



[PATCH 3/6] debian/rules: adopt debhelper v7 semantics

2011-02-05 Thread Jonathan Nieder
As long as we are using debhelper 7, we might as well use its more
modern and familiar compatibility level.  No behavior change intended.

Signed-off-by: Jonathan Nieder jrnie...@gmail.com
---
 debian/changelog |1 +
 debian/compat|2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 31e3ae5..f100a0a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ libpciaccess (0.12.0-2) UNRELEASED; urgency=low
   * Allow non-root users to run “debian/rules clean”.
   * Use dh_prep instead of dh_clean -k.  Requires a build-time
 dependency on debhelper 7.
+  * Bump debhelper compatibility level to v7.
 
  -- Jonathan Nieder jrnie...@gmail.com  Fri, 04 Feb 2011 19:51:53 -0600
 
diff --git a/debian/compat b/debian/compat
index 7ed6ff8..7f8f011 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-5
+7
-- 
1.7.4


--
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/20110205125257.GC18037@elie



[PATCH 4/6] debian: avoid tracking build products

2011-02-05 Thread Jonathan Nieder
Add a .gitignore listing non-source files that should not be
tracked by git add . or shown by git status.

Signed-off-by: Jonathan Nieder jrnie...@gmail.com
---
 debian/.gitignore |   10 ++
 1 files changed, 10 insertions(+), 0 deletions(-)
 create mode 100644 debian/.gitignore

diff --git a/debian/.gitignore b/debian/.gitignore
new file mode 100644
index 000..2dff17a
--- /dev/null
+++ b/debian/.gitignore
@@ -0,0 +1,10 @@
+*.debhelper.log
+*.debhelper
+
+/libpciaccess-dev/
+/libpciaccess[0-9]-udeb/
+/libpciaccess[0-9]/
+/tmp/
+
+/files
+*.substvars
-- 
1.7.4


-- 
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/20110205125319.GD18037@elie



[PATCH 5/6] debian/rules: let build machine admins tweak build flags

2011-02-05 Thread Jonathan Nieder
Use the dpkg-buildflags tool to retrieve build flags.  This makes
build-specific tweaks (e.g., hardening options) possible without
having to touch the packaging again.

So now DEB_CFLAGS_APPEND=-W debian/rules build to build with
additional warnings will work, for example.

Signed-off-by: Jonathan Nieder jrnie...@gmail.com
---
 debian/changelog |3 +++
 debian/control   |1 +
 debian/rules |7 +--
 3 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index f100a0a..a0625c3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,9 @@ libpciaccess (0.12.0-2) UNRELEASED; urgency=low
   * Use dh_prep instead of dh_clean -k.  Requires a build-time
 dependency on debhelper 7.
   * Bump debhelper compatibility level to v7.
+  * Support buildflags.conf and DEB_CFLAGS_APPEND by using
+dpkg-buildflags to retrieve CFLAGS.  Requires a build-time
+dependency on dpkg-dev 1.15.7.
 
  -- Jonathan Nieder jrnie...@gmail.com  Fri, 04 Feb 2011 19:51:53 -0600
 
diff --git a/debian/control b/debian/control
index 7b967c2..c1096e4 100644
--- a/debian/control
+++ b/debian/control
@@ -5,6 +5,7 @@ Maintainer: Debian X Strike Force debian-x@lists.debian.org
 Uploaders: David Nusinow dnusi...@debian.org, Cyril Brulebois 
k...@debian.org
 Build-Depends:
  debhelper (= 7),
+ dpkg-dev (= 1.15.7),
  libtool,
  automake,
  zlib1g-dev,
diff --git a/debian/rules b/debian/rules
index 6ad11a5..b5c3ce7 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,13 +1,8 @@
 #!/usr/bin/make -f
 
 PACKAGE = libpciaccess0
+CFLAGS := -Wall $(shell dpkg-buildflags --get CFLAGS)
 
-CFLAGS = -Wall -g
-ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
-   CFLAGS += -O0
-else
-   CFLAGS += -O2
-endif
 ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
NUMJOBS = $(patsubst parallel=%,%,$(filter 
parallel=%,$(DEB_BUILD_OPTIONS)))
MAKEFLAGS += -j$(NUMJOBS)
-- 
1.7.4


-- 
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/20110205125408.GE18037@elie



[PATCH 6/6] debian/rules: omit unnecessary settings for ./configure

2011-02-05 Thread Jonathan Nieder
libpciaccess does not include any man- or info-format documentation,
and if it did, the default datarootdir would be enough of a cue to
install it in the right place.

Signed-off-by: Jonathan Nieder jrnie...@gmail.com
---
That's the end of the series.  Thanks for reading.

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

diff --git a/debian/changelog b/debian/changelog
index a0625c3..051ccea 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,8 @@ libpciaccess (0.12.0-2) UNRELEASED; urgency=low
   * Support buildflags.conf and DEB_CFLAGS_APPEND by using
 dpkg-buildflags to retrieve CFLAGS.  Requires a build-time
 dependency on dpkg-dev 1.15.7.
+  * Do not pass redundant --mandir and --infodir arguments to
+configure in “debian/rules build”.
 
  -- Jonathan Nieder jrnie...@gmail.com  Fri, 04 Feb 2011 19:51:53 -0600
 
diff --git a/debian/rules b/debian/rules
index b5c3ce7..a3d1bd6 100755
--- a/debian/rules
+++ b/debian/rules
@@ -25,8 +25,6 @@ build/config.status: configure
cd build  \
../configure \
  --prefix=/usr \
- --mandir=\$${prefix}/share/man \
- --infodir=\$${prefix}/share/info \
  --with-pciids-path=\$${prefix}/share/misc \
  --with-zlib \
  $(confflags) \
-- 
1.7.4


--
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/20110205125436.GF18037@elie



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

2011-02-05 Thread Cyril Brulebois
Hi,

Jonathan Nieder jrnie...@gmail.com (05/02/2011):
 Looking into packaging the API docs described by src/Doxyfile, I got
 sidetracked by simplifying debian/rules using dh and generating the
 upstream changelog automatically from the git repo (all of which
 seem to work well).  This patch series does none of those things ---
 it just carries out some minor cleanups.

thanks for the patches.

 Patch 1 makes debian/rules clean work without fakeroot (which is a
 pet peeve of mine and how dh clean works, anyway).

need to think about it.

 Patch 2 uses dh_prep in place of dh_clean -k, since the latter
 makes some noise about being deprecated nowadays.

(and bumps the build-dep.)

 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.

 Patch 4 adds a debian/.gitignore.

no.

 Patch 5 uses dpkg-buildflags to retrieve CFLAGS.

maybe.

 Patch 6 removes some noise from the ./configure compile line.

maybe.

 No change noticed in the binary packages with debdiff.  These are
 just nitpicks, so please feel free to take what looks good and
 discard the rest.

I've just performed a switch to dh in all drivers. Not sure I want to
do so in the libraries as well. Will see once I'm done with the
ongoing preparation of X11R7.6 in sid.

Thanks.

KiBi.


signature.asc
Description: Digital signature


xserver-xorg-input-acecad: Changes to 'refs/tags/xserver-xorg-input-acecad-1_1.4.0-4'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-input-acecad-1_1.4.0-4' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:33 +

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

iEYEABECAAYFAk1NUZoACgkQeGfVPHR5Nd0SMwCeOR6CwJC4LFFP7JqP1UiJ50cT
yiMAoIeJ3vzZhDuShUJQkpHwijhK071i
=GNA6
-END PGP SIGNATURE-

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

---
 debian/README.source  |   24 -
 debian/changelog  |   21 -
 debian/compat |2 
 debian/control|   25 -
 debian/patches/series |1 
 debian/rules  |  106 -
 debian/watch  |1 
 debian/xserver-xorg-input-acecad.install  |1 
 debian/xserver-xorg-input-acecad.manpages |1 
 debian/xsfbs/repack.sh|   32 -
 debian/xsfbs/xsfbs.mk |  285 -
 debian/xsfbs/xsfbs.sh |  622 --
 12 files changed, 50 insertions(+), 1071 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/e1plihm-00067h...@alioth.debian.org



xserver-xorg-input-acecad: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
 debian/README.source  |   24 -
 debian/changelog  |   25 +
 debian/compat |2 
 debian/control|   25 -
 debian/patches/series |1 
 debian/rules  |  106 -
 debian/xserver-xorg-input-acecad.install  |1 
 debian/xserver-xorg-input-acecad.manpages |1 
 debian/xsfbs/repack.sh|   32 -
 debian/xsfbs/xsfbs.mk |  285 -
 debian/xsfbs/xsfbs.sh |  622 --
 11 files changed, 54 insertions(+), 1070 deletions(-)

New commits:
commit f0120189070db27fdaf9d59cd3f31a003339ab6f
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:32:59 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index ab006a5..a6c8ce3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-input-acecad (1:1.4.0-4) UNRELEASED; urgency=low
+xserver-xorg-input-acecad (1:1.4.0-4) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -15,7 +15,7 @@ xserver-xorg-input-acecad (1:1.4.0-4) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 03:09:06 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:32:59 +0100
 
 xserver-xorg-input-acecad (1:1.4.0-3) experimental; urgency=low
 

commit 0e5955746cb1f56beba420d8a8a15df704190436
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:31:53 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 a891986e9ae6cdd56c76996c51a9c5bec113223e
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:36:00 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit 432a657b4d3fa1b8d0174a06e428a6e7140917bc
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:34:59 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index 2ef8e4d..ab006a5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,6 +13,7 @@ xserver-xorg-input-acecad (1:1.4.0-4) 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 k...@debian.org  Thu, 03 Feb 2011 03:09:06 +0100
 
diff --git a/debian/control b/debian/control
index ff911b3..3f3cc59 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Drew Parsons dpars...@debian.org, Cyril Brulebois 
k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
+ quilt,
  pkg-config,
  xserver-xorg-dev (= 2:1.9.4),
  x11proto-core-dev,

commit efb7915918ebe5731715661a837cfb62acc3a402
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 03:58:37 2011 +0100

Remove XS prefix from Vcs fields.

diff --git a/debian/changelog b/debian/changelog
index eb183d8..2ef8e4d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ xserver-xorg-input-acecad (1:1.4.0-4) UNRELEASED; urgency=low
   * Remove long obsolete Replaces.
   * Update Uploaders list. Thanks, David  Brice!
   * Wrap Depends/Provides.
+  * Remove XS prefix from Vcs fields.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 03:09:06 +0100
diff --git a/debian/control b/debian/control
index 44bea90..ff911b3 100644
--- a/debian/control
+++ b/debian/control
@@ -13,8 +13,8 @@ Build-Depends:
  x11proto-input-dev,
  xutils-dev
 Standards-Version: 3.9.1
-XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-input-acecad
-XS-Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-acecad.git
+Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-input-acecad
+Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-acecad.git
 
 Package: xserver-xorg-input-acecad
 Architecture: any

commit c40fc5d9756be92dc87bff949ee199fd2fa8e9bd
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 03:33:50 2011 +0100

Remove xsfbs accordingly.

diff --git a/debian/README.source 

xserver-xorg-input-aiptek: Changes to 'refs/tags/xserver-xorg-input-aiptek-1_1.3.1-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-input-aiptek-1_1.3.1-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:35 +

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

iEYEABECAAYFAk1NUg8ACgkQeGfVPHR5Nd0/DgCeJA+R/KZAsLSZxuiribS68Yvr
cIoAoK+oUE9dKuFvcZwuXQxccx48weBp
=Xk6D
-END PGP SIGNATURE-

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

---
 debian/README.source  |   24 -
 debian/changelog  |   18 
 debian/compat |2 
 debian/control|   25 -
 debian/patches/series |1 
 debian/rules  |  106 -
 debian/watch  |1 
 debian/xserver-xorg-input-aiptek.install  |1 
 debian/xserver-xorg-input-aiptek.manpages |1 
 debian/xsfbs/repack.sh|   32 -
 debian/xsfbs/xsfbs.mk |  285 -
 debian/xsfbs/xsfbs.sh |  622 --
 12 files changed, 48 insertions(+), 1070 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/e1plihu-0006fc...@alioth.debian.org



xserver-xorg-input-aiptek: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
 .gitignore|   76 +++
 COPYING   |   33 +
 ChangeLog |  281 +
 Makefile.am   |   11 
 configure.ac  |   59 +-
 debian/README.source  |   24 -
 debian/changelog  |   35 +
 debian/compat |2 
 debian/control|   27 -
 debian/patches/series |1 
 debian/rules  |  106 -
 debian/xserver-xorg-input-aiptek.install  |1 
 debian/xserver-xorg-input-aiptek.manpages |1 
 debian/xsfbs/repack.sh|   32 -
 debian/xsfbs/xsfbs.mk |  285 -
 debian/xsfbs/xsfbs.sh |  622 --
 man/Makefile.am   |   61 --
 src/Makefile.am   |4 
 src/xf86Aiptek.c  |   68 ++-
 src/xf86Aiptek.h  |6 
 20 files changed, 543 insertions(+), 1192 deletions(-)

New commits:
commit 9e7a6257aefabfef05aff4e0124715cfb8e3b2b1
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:35:03 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index b618017..ef3a57a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-input-aiptek (1:1.3.1-2) UNRELEASED; urgency=low
+xserver-xorg-input-aiptek (1:1.3.1-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -14,7 +14,7 @@ xserver-xorg-input-aiptek (1:1.3.1-2) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 03:44:27 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:35:03 +0100
 
 xserver-xorg-input-aiptek (1:1.3.1-1) experimental; urgency=low
 

commit b8fe1c820b3654ac38461aa13dac656d766ab4a9
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:31:54 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 ff9a938bdbf45e28cf807e8e57afb748ccc5f0f8
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:38:08 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit b3d7c6e2b39a234c8cb36474e0a150a4770f4c7b
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:37:00 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index fb4c998..b618017 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -12,6 +12,7 @@ xserver-xorg-input-aiptek (1:1.3.1-2) 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 k...@debian.org  Thu, 03 Feb 2011 03:44:27 +0100
 
diff --git a/debian/control b/debian/control
index a40d139..ada7cca 100644
--- a/debian/control
+++ b/debian/control
@@ -7,6 +7,7 @@ Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
  pkg-config,
+ quilt,
  xserver-xorg-dev (= 2:1.9.4),
  x11proto-core-dev,
  x11proto-randr-dev,

commit 9e3f164b801cbd97e93268b2ad90b33cb233928e
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 04:47:39 2011 +0100

Fix typo in changelog.

diff --git a/debian/changelog b/debian/changelog
index 50f1b2c..fb4c998 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,7 +9,7 @@ xserver-xorg-input-aiptek (1:1.3.1-2) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Remove long obsolete Replaces.
   * Update Uploaders list. Thanks, David!
-  * Wrap Depends/Replaces.
+  * Wrap Depends/Provides.
   * Remove XS prefix from Vcs fields.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 

commit 12126c97b74c968e1157c8ef06e2f501e8dc66e5
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 03:59:34 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index e5ce018..50f1b2c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ xserver-xorg-input-aiptek (1:1.3.1-2) UNRELEASED; urgency=low
   * Update 

xserver-xorg-input-elographics: Changes to 'refs/tags/xserver-xorg-input-elographics-1_1.2.4-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-input-elographics-1_1.2.4-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:37 +

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

iEYEABECAAYFAk1NUp8ACgkQeGfVPHR5Nd1ahACfaBEjV3bG8GLn198BESHqtt7F
WrgAoJfWZcEeAuOX2/hchvWgZi1l9csw
=waQ4
-END PGP SIGNATURE-

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

---
 debian/README.source   |   24 
 debian/changelog   |   18 
 debian/compat  |2 
 debian/control |   22 
 debian/patches/series  |1 
 debian/rules   |  104 
 debian/watch   |1 
 debian/xserver-xorg-input-elographics.install  |1 
 debian/xserver-xorg-input-elographics.manpages |1 
 debian/xsfbs/repack.sh |   32 -
 debian/xsfbs/xsfbs.mk  |  285 ---
 debian/xsfbs/xsfbs.sh  |  622 -
 12 files changed, 45 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/e1plikd-0006em...@alioth.debian.org



xserver-xorg-input-elographics: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
 ChangeLog  |   16 
 configure.ac   |2 
 debian/README.source   |   24 
 debian/changelog   |   34 +
 debian/compat  |2 
 debian/control |   22 
 debian/patches/series  |1 
 debian/rules   |  104 
 debian/xserver-xorg-input-elographics.install  |1 
 debian/xserver-xorg-input-elographics.manpages |1 
 debian/xsfbs/repack.sh |   32 -
 debian/xsfbs/xsfbs.mk  |  285 ---
 debian/xsfbs/xsfbs.sh  |  622 -
 src/xf86Elo.c  |   12 
 14 files changed, 83 insertions(+), 1075 deletions(-)

New commits:
commit f3020c80229024783633d137f3937a5f103ab59c
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:37:34 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 6790018..542bf6c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-input-elographics (1:1.2.4-2) UNRELEASED; urgency=low
+xserver-xorg-input-elographics (1:1.2.4-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -14,7 +14,7 @@ xserver-xorg-input-elographics (1:1.2.4-2) UNRELEASED; 
urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 04:18:46 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:37:33 +0100
 
 xserver-xorg-input-elographics (1:1.2.4-1) experimental; urgency=low
 

commit 39afe62eaeb479c6af10cc051c62e48414dcfda9
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:31:56 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 78fd8d5f8b23361965a53fb737c57568e0d87a6f
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:39:15 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit 87ed32dc4aabc603f60b4cf18a7e210e351a1ccc
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:39:08 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index 12a3e41..6790018 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -12,6 +12,7 @@ xserver-xorg-input-elographics (1:1.2.4-2) UNRELEASED; 
urgency=low
   * Update Uploaders list. Thanks, David  Brice!
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
+  * Add quilt build-dep for future use.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 04:18:46 +0100
 
diff --git a/debian/control b/debian/control
index 74a2921..95c71de 100644
--- a/debian/control
+++ b/debian/control
@@ -7,6 +7,7 @@ Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
  pkg-config,
+ quilt,
  xserver-xorg-dev (= 2:1.9.4),
  x11proto-input-dev,
  x11proto-core-dev,

commit 5f6c5eaccef140f7a74f4e3ce82f070f28bbcb22
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 04:25:06 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 259349d..12a3e41 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ xserver-xorg-input-elographics (1:1.2.4-2) UNRELEASED; 
urgency=low
   * Remove long obsolete Replaces.
   * Update Uploaders list. Thanks, David  Brice!
   * Wrap Depends/Provides.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 04:18:46 +0100
 
diff --git a/debian/control b/debian/control
index cc42140..74a2921 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Build-Depends:
  x11proto-core-dev,
  x11proto-randr-dev,
  xutils-dev
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Vcs-Git: 
git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-input-elographics
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-elographics.git
 

commit df1e379ceaddee4ac189529e6c00ce68a874eaef
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 04:24:51 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog 

xserver-xorg-input-evdev: Changes to 'refs/tags/xserver-xorg-input-evdev-1_2.6.0-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-input-evdev-1_2.6.0-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:38 +

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

iEYEABECAAYFAk1NUrsACgkQeGfVPHR5Nd16gACgx001gpOBtO4m93lPfo/MS0gp
1MoAn2ofnqHztaC8NE1hJXO/w0Ee0yZt
=fP4Q
-END PGP SIGNATURE-

Changes since xserver-xorg-input-evdev-1_2.6.0-1:
Cyril Brulebois (17):
  Mention upstream git URL in a comment.
  Get rid of “[linux-any]” for the dependency on udev-udeb, evdev is 
Linux-only.
  Replace non-breaking spaces with regular spaces in udeb's long 
description.
  Switch to dh.
  Bump xserver-xorg-dev build-dep for dh_xsf_substvars and xsf sequence.
  Remove xsfbs accordingly.
  Replace ${xserver:Depends} with ${xinpdriver:Depends} in the udeb.
  Remove long obsolete Replaces.
  Update Uploaders list. Thanks, David  Brice!
  Remove unneeded build-deps.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Remove “[linux-any]” for udev-udeb.
  Wrap Depends/Provides.
  Merge branch 'debian-experimental' into debian-unstable
  Ensure installation under debian/tmp.
  Fix sequence ordering.
  Upload to unstable

---
 debian/README.source   |   24 -
 debian/changelog   |   25 +
 debian/compat  |2 
 debian/control |   39 +--
 debian/rules   |  119 -
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 9 files changed, 61 insertions(+), 1088 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/e1pliki-0006jt...@alioth.debian.org



xserver-xorg-input-evdev: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
 .gitignore |   76 ++
 COPYING|   72 --
 ChangeLog  | 1259 -
 Makefile.am|   12 
 configure.ac   |   59 +-
 debian/README.source   |   24 
 debian/changelog   |   71 ++
 debian/compat  |2 
 debian/control |   43 -
 debian/rules   |  119 
 debian/xsfbs/repack.sh |   32 -
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 --
 include/Makefile.am|1 
 include/evdev-properties.h |2 
 man/Makefile.am|   68 --
 man/evdev.man  |   40 -
 src/Makefile.am|6 
 src/draglock.c |4 
 src/emuMB.c|   37 -
 src/emuWheel.c |   26 
 src/evdev.c| 1148 ++---
 src/evdev.h|   30 -
 23 files changed, 2196 insertions(+), 1842 deletions(-)

New commits:
commit 8bc8c9cdd3c7d3f478067c2e773a403c661fd7ff
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:38:02 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index fa36265..a56f98c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-input-evdev (1:2.6.0-2) UNRELEASED; urgency=low
+xserver-xorg-input-evdev (1:2.6.0-2) unstable; urgency=low
 
   * Get rid of “[linux-any]” for the dependency on udev-udeb, evdev is
 Linux-only.
@@ -21,7 +21,7 @@ xserver-xorg-input-evdev (1:2.6.0-2) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Wrap Depends/Provides.
 
- -- Cyril Brulebois k...@debian.org  Wed, 02 Feb 2011 05:44:06 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:38:02 +0100
 
 xserver-xorg-input-evdev (1:2.6.0-1) experimental; urgency=low
 

commit e2071f1c2f2650d6a68019a8266c223e94a071ca
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:39:27 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit f45135c71209127b0f66901b56be26ad23c1e952
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 06:55:07 2011 +0100

Ensure installation under debian/tmp.

This is not strictly needed since there are several binaries built from this
source package, so debhelper uses debian/tmp rather than debian/$package.
But let's make all drivers use a similar debian/rules file. Also, a binary
package might be dropped at some point.

diff --git a/debian/rules b/debian/rules
index d2aad39..63d3106 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,5 +1,9 @@
 #!/usr/bin/make -f
 
+# 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

commit 001a682996e9c0ab181a7ae90a9ae577ed21826f
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 02:11:29 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index e2036a0..fa36265 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -19,6 +19,7 @@ xserver-xorg-input-evdev (1:2.6.0-2) UNRELEASED; urgency=low
 - dpkg-dev is recent enough on stable and higher.
 - automake and libtool are pulled through dh-autoreconf.
   * Bump Standards-Version to 3.9.1 (no changes needed).
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Wed, 02 Feb 2011 05:44:06 +0100
 
diff --git a/debian/control b/debian/control
index 3d01cdc..f45858a 100644
--- a/debian/control
+++ b/debian/control
@@ -21,8 +21,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-evdev.g
 
 Package: xserver-xorg-input-evdev
 Architecture: linux-any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${xinpdriver:Depends},
-Provides: ${xinpdriver:Provides}
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+ ${xinpdriver:Depends},
+Provides:
+ ${xinpdriver:Provides}
 Description: X.Org X server -- evdev input driver
  This package provides the driver for input devices using evdev, the Linux
  kernel's event delivery mechanism.  This driver allows for multiple keyboards
@@ -37,16 +41,22 @@ Package: xserver-xorg-input-evdev-udeb
 XC-Package-Type: udeb
 Section: debian-installer
 Architecture: linux-any
-Depends: ${shlibs:Depends}, ${misc:Depends}, 

xserver-xorg-input-joystick: Changes to 'refs/tags/xserver-xorg-input-joystick-1_1.5.0-7'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-input-joystick-1_1.5.0-7' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:38 +

Tagging upload of xserver-xorg-input-joystick 1:1.5.0-7 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NUuEACgkQeGfVPHR5Nd2qQQCeLTizRXxn/1SRaTTsmYxEYkXD
L3cAnioJTYd+QflXYbwPWqthXBrJwCFJ
=QCjI
-END PGP SIGNATURE-

Changes since xserver-xorg-input-joystick-1_1.5.0-6:
Cyril Brulebois (12):
  Mention upstream git URL in a comment.
  Switch to dh.
  Remove xsfbs accordingly.
  Remove long obsolete Replaces.
  Update Uploaders list. Thanks, David  Brice!
  Wrap Depends/Provides.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Merge branch 'debian-experimental' into debian-unstable
  Ensure installation under debian/tmp.
  Remove trailing newline.
  Fix sequence ordering.
  Upload to unstable

---
 debian/README.source|   24 -
 debian/changelog|   16 
 debian/compat   |2 
 debian/control  |   25 -
 debian/rules|  127 -
 debian/watch|1 
 debian/xserver-xorg-input-joystick.install  |1 
 debian/xserver-xorg-input-joystick.manpages |1 
 debian/xsfbs/repack.sh  |   32 -
 debian/xsfbs/xsfbs.mk   |  285 
 debian/xsfbs/xsfbs.sh   |  622 
 11 files changed, 51 insertions(+), 1085 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/e1plilc-0006np...@alioth.debian.org



xserver-xorg-input-joystick: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
 debian/README.source|   24 -
 debian/changelog|   28 +
 debian/compat   |2 
 debian/control  |   25 -
 debian/rules|  127 -
 debian/xserver-xorg-input-joystick.install  |1 
 debian/xserver-xorg-input-joystick.manpages |1 
 debian/xsfbs/repack.sh  |   32 -
 debian/xsfbs/xsfbs.mk   |  285 
 debian/xsfbs/xsfbs.sh   |  622 
 10 files changed, 62 insertions(+), 1085 deletions(-)

New commits:
commit 633f0dc7cb0d8814b72a9847bf4b17807e9c6596
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:38:40 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 6720576..e4dc868 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-input-joystick (1:1.5.0-7) UNRELEASED; urgency=low
+xserver-xorg-input-joystick (1:1.5.0-7) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -12,7 +12,7 @@ xserver-xorg-input-joystick (1:1.5.0-7) UNRELEASED; 
urgency=low
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 04:30:45 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:38:39 +0100
 
 xserver-xorg-input-joystick (1:1.5.0-6) experimental; urgency=low
 

commit ce7790c92aac14fb26c12be2c1eee1973be48397
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:39:58 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index c3590ac..2960979 100755
--- a/debian/rules
+++ b/debian/rules
@@ -19,4 +19,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit 160e94dbb6fa45ed73bc298f2cf884b1a041b950
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 09:08:08 2011 +0100

Remove trailing newline.

diff --git a/debian/rules b/debian/rules
index c771b80..c3590ac 100755
--- a/debian/rules
+++ b/debian/rules
@@ -20,4 +20,3 @@ override_dh_shlibdeps:
 
 %:
dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
-

commit 28049ce095dfeb8659d48004575a1ca5d79970ff
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 06:56:22 2011 +0100

Ensure installation under debian/tmp.

This is not strictly needed since there are several binaries built from this
source package, so debhelper uses debian/tmp rather than debian/$package.
But let's make all drivers use a similar debian/rules file. Also, a binary
package might be dropped at some point.

diff --git a/debian/rules b/debian/rules
index 71900dd..c771b80 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,5 +1,9 @@
 #!/usr/bin/make -f
 
+# 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:
# Usual steps:

commit 821e84b80835c4eab5ab87c528d9a5bb25127e2d
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 04:49:59 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 8e96c2a..6720576 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-input-joystick (1:1.5.0-7) UNRELEASED; 
urgency=low
   * Remove long obsolete Replaces.
   * Update Uploaders list. Thanks, David  Brice!
   * Wrap Depends/Provides.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 04:30:45 +0100
 
diff --git a/debian/control b/debian/control
index 3f8d89a..7157996 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends:
  x11proto-randr-dev,
  x11proto-kb-dev,
  libusbhid-dev [kfreebsd-amd64 kfreebsd-i386],
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-input-joystick
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-joystick.git
 

commit 7ea4a684a2519b2b4e608a07c28b6cb5b16ef74b
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 04:49:44 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index ff94bfe..8e96c2a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-input-joystick (1:1.5.0-7) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Remove long obsolete Replaces.
   * Update Uploaders list. Thanks, David  Brice!
+  

xserver-xorg-input-keyboard: Changes to 'refs/tags/xserver-xorg-input-keyboard-1_1.5.0-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-input-keyboard-1_1.5.0-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:38 +

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

iEYEABECAAYFAk1NUvMACgkQeGfVPHR5Nd22WACglhaC23fdpR+u+Qu6AkQDKo9q
HmcAoLuEvJe+2wOHXxdl+NE/e1i3JnLf
=MQak
-END PGP SIGNATURE-

Changes since xserver-xorg-input-keyboard-1_1.5.0-1:
Cyril Brulebois (11):
  Mention upstream git URL in a comment.
  Switch to dh.
  Remove xsfbs accordingly.
  Remove long obsolete Replaces.
  Update Uploaders list. Thanks, David  Brice!
  Wrap Depends/Provides.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Remove obsolete NEWS file.
  Merge branch 'debian-experimental' into debian-unstable
  Fix sequence ordering.
  Upload to unstable

---
 debian/NEWS|8 
 debian/README.source   |   24 -
 debian/changelog   |   17 
 debian/compat  |2 
 debian/control |   21 -
 debian/rules   |  111 -
 debian/watch   |1 
 debian/xserver-xorg-input-kbd.install  |2 
 debian/xserver-xorg-input-kbd.manpages |1 
 debian/xsfbs/repack.sh |   32 -
 debian/xsfbs/xsfbs.mk  |  285 ---
 debian/xsfbs/xsfbs.sh  |  622 -
 12 files changed, 46 insertions(+), 1080 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/e1plilz-0006qx...@alioth.debian.org



xserver-xorg-input-keyboard: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
 .gitignore |   75 +++
 COPYING|   42 --
 ChangeLog  |  442 +++
 Makefile.am|   11 
 configure.ac   |   93 +---
 debian/NEWS|8 
 debian/README.source   |   24 -
 debian/changelog   |   31 +
 debian/compat  |2 
 debian/control |   23 -
 debian/rules   |  111 -
 debian/xserver-xorg-input-kbd.install  |2 
 debian/xserver-xorg-input-kbd.manpages |1 
 debian/xsfbs/repack.sh |   32 -
 debian/xsfbs/xsfbs.mk  |  285 ---
 debian/xsfbs/xsfbs.sh  |  622 -
 man/Makefile.am|   67 +--
 man/kbd.man|6 
 src/Makefile.am|   12 
 src/at_scancode.c  |1 
 src/bsd_KbdMap.c   |3 
 src/bsd_kbd.c  |   10 
 src/bsd_kbd.h  |2 
 src/hurd_kbd.c |3 
 src/kbd.c  |   52 --
 src/lnx_KbdMap.c   |9 
 src/lnx_kbd.c  |   13 
 src/lnx_kbd.h  |2 
 src/sco_KbdMap.c   |  308 
 src/sco_kbd.c  |  425 --
 src/sco_kbd.h  |   20 -
 src/sun_kbd.c  |   44 +-
 src/sun_kbd.h  |   43 +-
 src/sun_kbdMap.c   |   16 
 src/xf86Keymap.h   |1 
 35 files changed, 730 insertions(+), 2111 deletions(-)

New commits:
commit eabd200d91112c2c060d30a8426c817aa35aa1bb
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:38:58 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 82f7ef1..11d9c17 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-input-keyboard (1:1.5.0-2) UNRELEASED; urgency=low
+xserver-xorg-input-keyboard (1:1.5.0-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -13,7 +13,7 @@ xserver-xorg-input-keyboard (1:1.5.0-2) UNRELEASED; 
urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Remove obsolete NEWS file.
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 04:56:35 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:38:58 +0100
 
 xserver-xorg-input-keyboard (1:1.5.0-1) experimental; urgency=low
 

commit 3fa08b356631d77e7b488e2649547f00be0a5d87
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:40:06 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 41ee77f..9fb65ba 100755
--- a/debian/rules
+++ b/debian/rules
@@ -20,4 +20,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit 6b4cce8df5bb83ca2483f4aec0501cc2cee590be
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 05:07:58 2011 +0100

Remove obsolete NEWS file.

diff --git a/debian/NEWS b/debian/NEWS
deleted file mode 100644
index b1cdf60..000
--- a/debian/NEWS
+++ /dev/null
@@ -1,8 +0,0 @@
-xserver-xorg-input-keyboard (1:1.2.1-1) unstable; urgency=low
-
-  The old keyboard driver has been removed and is now superseded by the
-  kbd driver. The corresponding InputDevice section in the xorg.conf
-  configuration file should be updated by replacing keyboard with kbd
-  on the Driver line.  
-
- -- Brice Goglin brice.gog...@ens-lyon.org  Tue, 24 Apr 2007 00:25:19 +0200
diff --git a/debian/changelog b/debian/changelog
index e61b99c..82f7ef1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ xserver-xorg-input-keyboard (1:1.5.0-2) UNRELEASED; 
urgency=low
   * Update Uploaders list. Thanks, David  Brice!
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
+  * Remove obsolete NEWS file.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 04:56:35 +0100
 

commit 2c2950113258d929a94c925be61bae3a6a9b229b
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 05:07:26 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 8d3be59..e61b99c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-input-keyboard (1:1.5.0-2) UNRELEASED; 
urgency=low
   * Remove long 

xserver-xorg-input-mouse: Changes to 'refs/tags/xserver-xorg-input-mouse-1_1.6.0-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-input-mouse-1_1.6.0-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:39 +

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

iEYEABECAAYFAk1NUwwACgkQeGfVPHR5Nd3zCACfYqFH1gXY0uFMhcHhU473HxgF
na4AoLGgHzQNIjaY+QRz5CAlb7rVGa83
=4cLo
-END PGP SIGNATURE-

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

---
 debian/README.source |   24 -
 debian/changelog |   17 
 debian/compat|2 
 debian/control   |   21 -
 debian/rules |  106 -
 debian/watch |1 
 debian/xserver-xorg-input-mouse.docs |1 
 debian/xserver-xorg-input-mouse.install  |2 
 debian/xserver-xorg-input-mouse.manpages |1 
 debian/xsfbs/repack.sh   |   32 -
 debian/xsfbs/xsfbs.mk|  285 --
 debian/xsfbs/xsfbs.sh|  622 ---
 12 files changed, 46 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/e1plilv-0006u4...@alioth.debian.org



xserver-xorg-input-mouse: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
 .gitignore   |   76 +-
 COPYING  |   50 -
 ChangeLog|  414 +++
 Makefile.am  |   16 
 README   |  340 -
 README.sgml  | 1125 ---
 configure.ac |   59 -
 debian/README.source |   24 
 debian/changelog |   35 
 debian/compat|2 
 debian/control   |   23 
 debian/copyright |   51 -
 debian/rules |  106 --
 debian/xserver-xorg-input-mouse.docs |1 
 debian/xserver-xorg-input-mouse.install  |2 
 debian/xserver-xorg-input-mouse.manpages |1 
 debian/xsfbs/repack.sh   |   32 
 debian/xsfbs/xsfbs.mk|  285 ---
 debian/xsfbs/xsfbs.sh|  622 -
 man/Makefile.am  |   65 -
 src/Makefile.am  |2 
 src/hurd_mouse.c |4 
 src/lnx_mouse.c  |1 
 src/mouse.c  |   29 
 src/pnp.c|3 
 src/sco_mouse.c  |  258 ---
 src/sun_mouse.c  |  133 ++-
 src/xf86OSmouse.h|3 
 28 files changed, 909 insertions(+), 2853 deletions(-)

New commits:
commit f3ac1e2f48acb2a8151e2bdcd1b5d4d396faad56
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:39:23 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 6f3e9c8..812ffea 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-input-mouse (1:1.6.0-2) UNRELEASED; urgency=low
+xserver-xorg-input-mouse (1:1.6.0-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -13,7 +13,7 @@ xserver-xorg-input-mouse (1:1.6.0-2) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 05:11:51 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:39:23 +0100
 
 xserver-xorg-input-mouse (1:1.6.0-1) experimental; urgency=low
 

commit 62fb5cd942a1691187ea5372f6f0b81e37b5d9e9
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:40:10 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 7efe334..2372c9f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -20,4 +20,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit b30d11d1e44ee53117bd207a1f778d5311e3204f
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 05:24:04 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index f8e6a26..6f3e9c8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ xserver-xorg-input-mouse (1:1.6.0-2) UNRELEASED; urgency=low
   * Remove long obsolete Replaces.
   * Update Uploaders list. Thanks, David!
   * Wrap Depends/Provides.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 05:11:51 +0100
 
diff --git a/debian/control b/debian/control
index 6a10cda..39333c6 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,7 @@ Build-Depends:
  x11proto-randr-dev,
  quilt,
  xutils-dev (= 1:7.5+4)
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-input-mouse
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-mouse.git
 

commit 660d9ec0ec98ef537b751a3484d0f611741d6d60
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 05:23:42 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 48ad418..f8e6a26 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-input-mouse (1:1.6.0-2) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Remove long obsolete Replaces.
   * Update Uploaders list. Thanks, David!
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 05:11:51 +0100
 
diff --git a/debian/control b/debian/control
index b695f1c..6a10cda 100644
--- a/debian/control
+++ b/debian/control
@@ -19,8 +19,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-mouse.g
 
 Package: xserver-xorg-input-mouse
 

xserver-xorg-input-mutouch: Changes to 'refs/tags/xserver-xorg-input-mutouch-1_1.2.1-4'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-input-mutouch-1_1.2.1-4' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:39 +

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

iEYEABECAAYFAk1NUycACgkQeGfVPHR5Nd0IuQCfUHpEbw0KSURC87T2iw/TaEGm
7PAAniZ6PdB2DC5HXB9fvTRIjjnDPK23
=eyI0
-END PGP SIGNATURE-

Changes since xserver-xorg-input-mutouch-1_1.2.1-3:
Cyril Brulebois (10):
  Switch to dh.
  Remove xsfbs accordingly.
  Remove long obsolete Replaces.
  Update Uploaders list. Thanks, David  Brice!
  Wrap Depends/Provides.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Add quilt build-dep for future use.
  Fix sequence ordering.
  Add a placeholding series file.
  Upload to unstable

---
 debian/README.source   |   24 -
 debian/changelog   |   17 
 debian/compat  |2 
 debian/control |   22 -
 debian/patches/series  |1 
 debian/rules   |  104 
 debian/xserver-xorg-input-mutouch.install  |1 
 debian/xserver-xorg-input-mutouch.manpages |1 
 debian/xsfbs/repack.sh |   32 -
 debian/xsfbs/xsfbs.mk  |  285 -
 debian/xsfbs/xsfbs.sh  |  622 -
 11 files changed, 43 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/e1plims-000704...@alioth.debian.org



xserver-xorg-input-mutouch: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
 ChangeLog  |   29 +
 README |   20 
 debian/README.source   |   26 -
 debian/changelog   |   28 +
 debian/compat  |2 
 debian/control |   22 -
 debian/patches/series  |1 
 debian/rules   |  104 
 debian/xserver-xorg-input-mutouch.install  |1 
 debian/xserver-xorg-input-mutouch.manpages |1 
 debian/xsfbs/repack.sh |   32 -
 debian/xsfbs/xsfbs.mk  |  276 
 debian/xsfbs/xsfbs.sh  |  622 -
 man/mutouch.man|2 
 src/xf86MuTouch.c  |   25 +
 15 files changed, 125 insertions(+), 1066 deletions(-)

New commits:
commit b10ce9c9cb49f2dc6ea395cc2a02660f8033140b
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:39:49 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index bea0c38..59c9457 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-input-mutouch (1:1.2.1-4) UNRELEASED; urgency=low
+xserver-xorg-input-mutouch (1:1.2.1-4) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -13,7 +13,7 @@ xserver-xorg-input-mutouch (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 k...@debian.org  Thu, 03 Feb 2011 05:27:19 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:39:49 +0100
 
 xserver-xorg-input-mutouch (1:1.2.1-3) experimental; urgency=low
 

commit 822531337f49ebabd7d017bc8599d9936eda
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:31:58 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 6224041ae15d3f8071832bdf21004cb9050bd5db
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:40:26 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit 24b63848dc27a049a6529d44e8b1859dfd50a513
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:40:22 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index 2be07f5..bea0c38 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ xserver-xorg-input-mutouch (1:1.2.1-4) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David  Brice!
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
+  * Add quilt build-dep for future use.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 05:27:19 +0100
 
diff --git a/debian/control b/debian/control
index b39d3fe..9f7aee7 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Cyril Brulebois k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
+ quilt,
  pkg-config,
  xserver-xorg-dev (= 2:1.9.4),
  x11proto-input-dev,

commit 57b03e83525085aea7233c8b5d5df4cc56dcd4d5
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 05:31:38 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index a63affb..2be07f5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-input-mutouch (1:1.2.1-4) UNRELEASED; urgency=low
   * Remove long obsolete Replaces.
   * Update Uploaders list. Thanks, David  Brice!
   * Wrap Depends/Provides.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 05:27:19 +0100
 
diff --git a/debian/control b/debian/control
index 4c27025..b39d3fe 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Build-Depends:
  x11proto-core-dev,
  x11proto-randr-dev,
  xutils-dev
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-input-mutouch
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-mutouch.git
 

commit 24c074c9617e52a9666fbf1d34b2a14fd8467f2f
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 05:31:13 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog 

xserver-xorg-input-penmount: Changes to 'refs/tags/xserver-xorg-input-penmount-1_1.4.1-4'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-input-penmount-1_1.4.1-4' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:40 +

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

iEYEABECAAYFAk1NU0EACgkQeGfVPHR5Nd1MbACghFKJ89VRn3t9BesRmCgkxHLl
vjgAoLxmzuPJNGIVlx2JgST701MxnyAz
=8PTk
-END PGP SIGNATURE-

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

---
 debian/README.source|   24 -
 debian/changelog|   17 
 debian/compat   |2 
 debian/control  |   22 
 debian/patches/series   |1 
 debian/rules|  104 
 debian/watch|1 
 debian/xserver-xorg-input-penmount.install  |1 
 debian/xserver-xorg-input-penmount.manpages |1 
 debian/xsfbs/repack.sh  |   32 -
 debian/xsfbs/xsfbs.mk   |  285 
 debian/xsfbs/xsfbs.sh   |  622 
 12 files changed, 44 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/e1plimw-00077o...@alioth.debian.org



xserver-xorg-input-penmount: 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|  104 
 debian/xserver-xorg-input-penmount.install  |1 
 debian/xserver-xorg-input-penmount.manpages |1 
 debian/xsfbs/repack.sh  |   32 -
 debian/xsfbs/xsfbs.mk   |  285 
 debian/xsfbs/xsfbs.sh   |  622 
 11 files changed, 49 insertions(+), 1068 deletions(-)

New commits:
commit e154c8546e958bd7ecdb2fe48981abea6fb87cfa
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:40:16 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 725886a..1266b28 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-input-penmount (1:1.4.1-4) UNRELEASED; urgency=low
+xserver-xorg-input-penmount (1:1.4.1-4) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -13,7 +13,7 @@ xserver-xorg-input-penmount (1:1.4.1-4) UNRELEASED; 
urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 05:34:54 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:40:15 +0100
 
 xserver-xorg-input-penmount (1:1.4.1-3) experimental; urgency=low
 

commit 87f32f4b167cb5a1ae66f87eaa7a6f314ddbb27e
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:32:00 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 6ee865db607e09982ce5fd630eb4b9c866d146b5
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:40:48 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit ed3e1b44f4fef62c2e87fea01ee011f3708f2a68
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:40:44 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index 791101a..725886a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ xserver-xorg-input-penmount (1:1.4.1-4) UNRELEASED; 
urgency=low
   * Update Uploaders list. Thanks, David  Brice!
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
+  * Add quilt build-dep for future use.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 05:34:54 +0100
 
diff --git a/debian/control b/debian/control
index 307cdfd..d7ed6a4 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Cyril Brulebois k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
+ quilt,
  pkg-config,
  xserver-xorg-dev (= 2:1.9.4),
  x11proto-core-dev,

commit f8cea2245ad23f7f195c7ce06f65965cdac88571
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 05:39:33 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index d69d331..791101a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-input-penmount (1:1.4.1-4) UNRELEASED; 
urgency=low
   * Remove long obsolete Replaces.
   * Update Uploaders list. Thanks, David  Brice!
   * Wrap Depends/Provides.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 05:34:54 +0100
 
diff --git a/debian/control b/debian/control
index c3054f2..307cdfd 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Build-Depends:
  x11proto-randr-dev,
  x11proto-input-dev,
  xutils-dev
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-input-penmount
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-penmount.git
 

commit cef8d44ee3b91e0dcc57ebb06bb184a3f825aea3
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 05:39:17 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 83f2591..d69d331 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-input-penmount (1:1.4.1-4) UNRELEASED; urgency=low
   * Remove xsfbs 

xserver-xorg-input-synaptics: Changes to 'refs/tags/xserver-xorg-input-synaptics-1.3.0-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-input-synaptics-1.3.0-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:40 +

Tagging upload of xserver-xorg-input-synaptics 1.3.0-2 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NU2EACgkQeGfVPHR5Nd1lGACgpWAIW/fE/CSZ01Uc5VZckU/f
784An3S/WI6g3HVgc8Mn6XArmxO5xzLL
=desx
-END PGP SIGNATURE-

Changes since xserver-xorg-input-synaptics-1.3.0-1:
Cyril Brulebois (11):
  Mention upstream git URL in a comment.
  Switch to Architecture: any, adding armhf support (Closes: #604672).
  Switch to dh.
  Remove xsfbs accordingly.
  Get rid of trailing whitespaces.
  Get rid of xfree86-* packages in Conflicts/Replaces/Provides.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Merge branch 'debian-experimental' into debian-unstable
  Ensure installation under debian/tmp.
  Fix sequence ordering.
  Upload to unstable

---
 debian/README.source  |   24 
 debian/changelog  |   14 
 debian/compat |2 
 debian/control|   31 -
 debian/rules  |  125 
 debian/watch  |1 
 debian/xserver-xorg-input-synaptics.README.Debian |2 
 debian/xsfbs/repack.sh|   32 -
 debian/xsfbs/xsfbs.mk |  285 --
 debian/xsfbs/xsfbs.sh |  622 --
 10 files changed, 43 insertions(+), 1095 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/e1pling-0007cp...@alioth.debian.org



xserver-xorg-input-synaptics: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
 .gitignore|   76 +
 COPYING   |3 
 ChangeLog | 1208 +-
 INSTALL   |  106 -
 Makefile.am   |   11 
 README|   27 
 TODO  |7 
 conf/Makefile.am  |8 
 configure.ac  |  188 +--
 debian/README.source  |   24 
 debian/changelog  |   38 
 debian/compat |2 
 debian/control|   33 
 debian/rules  |  125 --
 debian/xserver-xorg-input-synaptics.README.Debian |2 
 debian/xserver-xorg-input-synaptics.docs  |1 
 debian/xsfbs/repack.sh|   32 
 debian/xsfbs/xsfbs.mk |  285 -
 debian/xsfbs/xsfbs.sh |  622 ---
 include/Makefile.am   |1 
 include/synaptics-properties.h|2 
 include/synaptics.h   |   14 
 man/Makefile.am   |   64 -
 man/synaptics.man |  178 +--
 man/synclient.man |   18 
 src/Makefile.am   |5 
 src/alpscomm.c|   24 
 src/eventcomm.c   |   92 -
 src/properties.c  |   55 -
 src/ps2comm.c |  160 --
 src/psmcomm.c |   15 
 src/psmcomm.h |   29 
 src/synaptics.c   |  898 +---
 src/synapticsstr.h|   19 
 src/synproto.h|6 
 tools/.gitignore  |3 
 tools/Makefile.am |   18 
 tools/synclient.c |   28 
 tools/syndaemon.c |   73 -
 39 files changed, 2302 insertions(+), 2198 deletions(-)

New commits:
commit ee4ec9b270b8309b38370382c92eb8920f773bf7
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:40:47 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 81daeb7..de9c85b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-input-synaptics (1.3.0-2) UNRELEASED; urgency=low
+xserver-xorg-input-synaptics (1.3.0-2) unstable; urgency=low
 
   * Switch to Architecture: any, adding armhf support (Closes: #604672).
   * Switch to dh:
@@ -10,7 +10,7 @@ xserver-xorg-input-synaptics (1.3.0-2) UNRELEASED; urgency=low
   * Get rid of xfree86-* packages in Conflicts/Replaces/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois k...@debian.org  Tue, 18 Jan 2011 03:48:22 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:40:47 +0100
 
 xserver-xorg-input-synaptics (1.3.0-1) experimental; urgency=low
 

commit ca3dcfecefd157f912a8871d5d67f342706fad57
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:41:03 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit b14975e2f38be39034a70258f0e217a527b708e0
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 06:54:11 2011 +0100

Ensure installation under debian/tmp.

This is not strictly needed since there are several binaries built from this
source package, so debhelper uses debian/tmp rather than debian/$package.
But let's make all drivers use a similar debian/rules file. Also, a binary
package might be dropped at some point.

diff --git a/debian/rules b/debian/rules
index d2aad39..63d3106 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,5 +1,9 @@
 #!/usr/bin/make -f
 
+# 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

commit 153aeaa9c1d0390216e17abd5d32d2bbe8e2494c
Author: Cyril 

xserver-xorg-input-vmmouse: Changes to 'refs/tags/xserver-xorg-input-vmmouse-1_12.6.99.901-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-input-vmmouse-1_12.6.99.901-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:41 +

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

iEYEABECAAYFAk1NU3YACgkQeGfVPHR5Nd01HwCgrT+EzI5eOi0XAmuG29bnH/2i
IOMAnRVFuGCfApfCRhGK5lQyFZEMEuB7
=qv8x
-END PGP SIGNATURE-

Changes since xserver-xorg-input-vmmouse-1_12.6.99.901-1:
Cyril Brulebois (12):
  Mention upstream git URL in a comment.
  Switch to dh.
  Remove xserver-xorg-input-vmmouse.postinst.in's .in suffix.
  Remove xsfbs accordingly.
  Remove long obsolete Replaces.
  Update Uploaders list. Thanks, David  Brice!
  Wrap Depends/Provides.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Merge branch 'debian-experimental' into debian-unstable
  Remove trailing newlines.
  Fix sequence ordering.
  Upload to unstable

---
 debian/README.source  |   24 -
 debian/changelog  |   19 
 debian/compat |2 
 debian/control|   23 
 debian/rules  |  112 
 debian/watch  |1 
 debian/xserver-xorg-input-vmmouse.install |2 
 debian/xserver-xorg-input-vmmouse.postinst|   13 
 debian/xserver-xorg-input-vmmouse.postinst.in |   18 
 debian/xsfbs/repack.sh|   32 -
 debian/xsfbs/xsfbs.mk |  285 ---
 debian/xsfbs/xsfbs.sh |  622 --
 12 files changed, 62 insertions(+), 1091 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/e1plinf-0007fx...@alioth.debian.org



xserver-xorg-input-vmmouse: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
 COPYING   |   66 +-
 ChangeLog |  204 
 configure.ac  |   13 
 debian/README.source  |   24 -
 debian/changelog  |   51 ++
 debian/compat |2 
 debian/control|   25 -
 debian/copyright  |   74 ++-
 debian/rules  |  113 
 debian/xserver-xorg-input-vmmouse.install |2 
 debian/xserver-xorg-input-vmmouse.postinst|   13 
 debian/xserver-xorg-input-vmmouse.postinst.in |   18 
 debian/xsfbs/repack.sh|   32 -
 debian/xsfbs/xsfbs.mk |  285 ---
 debian/xsfbs/xsfbs.sh |  622 --
 fdi/11-x11-vmmouse.fdi|2 
 man/Makefile.am   |   21 
 src/vmmouse.c |  236 +++--
 tools/Makefile.am |9 
 19 files changed, 587 insertions(+), 1225 deletions(-)

New commits:
commit 715913f997f4ce782fb22e220f5f4ea1720815a5
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:41:09 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 3994023..b1edd2a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-input-vmmouse (1:12.6.99.901-2) UNRELEASED; urgency=low
+xserver-xorg-input-vmmouse (1:12.6.99.901-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -15,7 +15,7 @@ xserver-xorg-input-vmmouse (1:12.6.99.901-2) UNRELEASED; 
urgency=low
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 05:55:04 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:41:08 +0100
 
 xserver-xorg-input-vmmouse (1:12.6.99.901-1) experimental; urgency=low
 

commit f15f77e2b4d13603777dba8aa8be76a89a87d41a
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:41:09 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 460a626..3257a75 100755
--- a/debian/rules
+++ b/debian/rules
@@ -18,4 +18,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit 986aa203db8d647d8d4488db121ce224c4d5ed3e
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 09:08:42 2011 +0100

Remove trailing newlines.

diff --git a/debian/rules b/debian/rules
index 595b20d..460a626 100755
--- a/debian/rules
+++ b/debian/rules
@@ -19,7 +19,3 @@ override_dh_shlibdeps:
 
 %:
dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
-
-
-
-

commit 472cd0c046b6fec878dcb63c0618dc69e0784f86
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 06:26:25 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index ad64453..3994023 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,6 +13,7 @@ xserver-xorg-input-vmmouse (1:12.6.99.901-2) UNRELEASED; 
urgency=low
   * Remove long obsolete Replaces.
   * Update Uploaders list. Thanks, David  Brice!
   * Wrap Depends/Provides.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 05:55:04 +0100
 
diff --git a/debian/control b/debian/control
index f10abee..d4086c9 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,7 @@ Build-Depends:
  x11proto-randr-dev,
  quilt,
  xutils-dev (= 1:7.5+4),
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-input-vmmouse
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-vmmouse.git
 

commit 73cb0954c2e775fcfdc0d0c0321b1c1b48b1b7d1
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 06:26:06 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index c02fb92..ad64453 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -12,6 +12,7 @@ xserver-xorg-input-vmmouse (1:12.6.99.901-2) UNRELEASED; 
urgency=low
   * Remove xsfbs accordingly.
   * Remove long obsolete Replaces.
   * Update Uploaders list. Thanks, David  Brice!
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 05:55:04 +0100
 
diff --git a/debian/control b/debian/control
index 0873184..f10abee 100644
--- a/debian/control
+++ b/debian/control
@@ -19,10 +19,14 @@ Vcs-Browser: 

xserver-xorg-input-void: Changes to 'refs/tags/xserver-xorg-input-void-1_1.3.1-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-input-void-1_1.3.1-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:41 +

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

iEYEABECAAYFAk1NU44ACgkQeGfVPHR5Nd2E1QCferstEmCRhWOxFztRxGSQSJut
QqMAn1v6ogz/qkAD29BF6J9s7ODVjpTu
=9uaO
-END PGP SIGNATURE-

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

---
 debian/README.source   |   24 -
 debian/changelog   |   16 +
 debian/compat  |2 
 debian/control |   21 -
 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, 43 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/e1plio4-0007j1...@alioth.debian.org



xserver-xorg-input-void: Changes to 'debian-unstable'

2011-02-05 Thread Cyril Brulebois
 .gitignore |   70 +
 COPYING|   41 +--
 ChangeLog  |  136 ++
 Makefile.am|   11 
 configure.ac   |   16 -
 debian/README.source   |   24 -
 debian/changelog   |   34 ++
 debian/compat  |2 
 debian/control |   23 +
 debian/copyright   |   41 +++
 debian/patches/series  |1 
 debian/rules   |  105 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 man/.gitignore |2 
 man/Makefile.am|   70 +
 src/.gitignore |6 
 src/void.c |1 
 19 files changed, 358 insertions(+), 1164 deletions(-)

New commits:
commit 9860f35ba1e344118231340b10958a5aedbd110b
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:41:33 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index e2cebe9..5e7eea2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-input-void (1:1.3.1-2) UNRELEASED; urgency=low
+xserver-xorg-input-void (1:1.3.1-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -12,7 +12,7 @@ xserver-xorg-input-void (1:1.3.1-2) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 05:47:30 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:41:32 +0100
 
 xserver-xorg-input-void (1:1.3.1-1) experimental; urgency=low
 

commit 69b5abb4c3b8395d43691319fb6918b1d7865c88
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:32:03 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 36d9c220de68a72e7b79a93f1f6feeb02dfb8eaf
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:41:43 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit ae0d71478f685f79668bc1d065dbcaa66a97d31c
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:41:38 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index 66ec06c..e2cebe9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-input-void (1:1.3.1-2) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David  Brice!
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
+  * Add quilt build-dep for future use.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 05:47:30 +0100
 
diff --git a/debian/control b/debian/control
index 11bec2a..50c9917 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Cyril Brulebois k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
+ quilt,
  pkg-config,
  xserver-xorg-dev (= 2:1.9.4),
  x11proto-core-dev,

commit 7e6873a589a71cfed8e7b63ddba386197abc284b
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 05:51:16 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 315c52f..66ec06c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-input-void (1:1.3.1-2) UNRELEASED; urgency=low
   * Remove long obsolete Replaces.
   * Update Uploaders list. Thanks, David  Brice!
   * Wrap Depends/Provides.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 05:47:30 +0100
 
diff --git a/debian/control b/debian/control
index f807abe..11bec2a 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Build-Depends:
  x11proto-randr-dev,
  x11proto-input-dev,
  xutils-dev (= 1:7.5+4)
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-input-void
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-void.git
 

commit ad10330634b9650e11aa5744ba2c400be5cbe806
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 05:50:56 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index e081c5c..315c52f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-input-void 

xserver-xorg-video-apm: Changes to 'refs/tags/xserver-xorg-video-apm-1_1.2.3-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-apm-1_1.2.3-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:41 +

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

iEYEABECAAYFAk1NU6QACgkQeGfVPHR5Nd3oNgCgm6dDaVCAyik2/MecEudnMMC8
CEoAn0El3JpuTyssnZNUhHgk6jDr/plJ
=B6jQ
-END PGP SIGNATURE-

Changes since xserver-xorg-video-apm-1_1.2.3-1:
Cyril Brulebois (12):
  Mention upstream git URL in a comment.
  Add ChangeLog, fixing FTBFS at the dh_installchangelog stage.
  Switch to dh.
  Remove xsfbs accordingly.
  Remove long obsolete Replaces/Conflicts.
  Update Uploaders list. Thanks, David  Brice!
  Wrap Depends/Provides.
  Merge branch 'debian-experimental' into debian-unstable
  Add quilt build-dep for future use.
  Fix sequence ordering.
  Add a placeholding series file.
  Upload to unstable

---
 ChangeLog  |  810 +
 debian/README.source   |   24 
 debian/changelog   |   16 
 debian/compat  |2 
 debian/control |   21 
 debian/patches/series  |1 
 debian/rules   |  103 
 debian/watch   |1 
 debian/xserver-xorg-video-apm.install  |1 
 debian/xserver-xorg-video-apm.manpages |1 
 debian/xsfbs/repack.sh |   32 -
 debian/xsfbs/xsfbs.mk  |  285 ---
 debian/xsfbs/xsfbs.sh  |  622 -
 13 files changed, 852 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/e1plioi-0007lz...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 .gitignore |   70 ++-
 COPYING|   25 -
 ChangeLog  |  324 ++
 Makefile.am|   14 
 README |  261 ++-
 README.sgml|  122 -
 configure.ac   |   78 +--
 debian/README.source   |   24 -
 debian/changelog   |   29 +
 debian/compat  |2 
 debian/control |   23 -
 debian/patches/series  |1 
 debian/rules   |  103 
 debian/xserver-xorg-video-apm.install  |1 
 debian/xserver-xorg-video-apm.manpages |1 
 debian/xsfbs/repack.sh |   32 -
 debian/xsfbs/xsfbs.mk  |  285 
 debian/xsfbs/xsfbs.sh  |  622 
 man/.cvsignore |2 
 man/Makefile.am|   59 --
 src/.cvsignore |6 
 src/Makefile.am|   10 
 src/apm.h  |   11 
 src/apm_driver.c   |  108 
 src/apm_rush.c |  733 -
 25 files changed, 664 insertions(+), 2282 deletions(-)

New commits:
commit 786580eb5a5b8a9895a05651955c3005d3f58679
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:41:55 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index f5c36a8..7be1353 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-apm (1:1.2.3-2) UNRELEASED; urgency=low
+xserver-xorg-video-apm (1:1.2.3-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -12,7 +12,7 @@ xserver-xorg-video-apm (1:1.2.3-2) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 10:46:34 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:41:55 +0100
 
 xserver-xorg-video-apm (1:1.2.3-1) experimental; urgency=low
 

commit 17dab03d7f1b00144bca181194cdf57ef3d0f4e5
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:32:05 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 615d007203845e8bfd863b6ff6015c3f60fc4f48
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:41:54 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit 9cc2b61aa13697ad496244c488a46c2e2252b9d2
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:41:52 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index 63f9544..f5c36a8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-apm (1:1.2.3-2) UNRELEASED; urgency=low
   * Remove long obsolete Replaces/Conflicts.
   * Update Uploaders list. Thanks, David  Brice!
   * Wrap Depends/Provides.
+  * Add quilt build-dep for future use.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 10:46:34 +0100
 
diff --git a/debian/control b/debian/control
index e35b348..bd2a32b 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Cyril Brulebois k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
+ quilt,
  pkg-config,
  xserver-xorg-dev (= 2:1.9.4),
  x11proto-xext-dev,

commit 78e6d02f7c397e205d75a9da1231e5fb430df9fe
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 10:55:03 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 69b2c41..63f9544 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-apm (1:1.2.3-2) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Remove long obsolete Replaces/Conflicts.
   * Update Uploaders list. Thanks, David  Brice!
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 10:46:34 +0100
 
diff --git a/debian/control b/debian/control
index 5e44e56..e35b348 100644
--- a/debian/control
+++ b/debian/control
@@ -21,8 +21,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-apm.git
 
 Package: 

xserver-xorg-video-ark: Changes to 'refs/tags/xserver-xorg-video-ark-1_0.7.3-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-ark-1_0.7.3-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:42 +

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

iEYEABECAAYFAk1NU7UACgkQeGfVPHR5Nd3vqwCgsKwE61Z8xarkNyiQFjucq8zi
rQ0AoNBLTDtRtXeYmzd6tjBxgHfxIPlD
=Aph7
-END PGP SIGNATURE-

Changes since xserver-xorg-video-ark-1_0.7.3-1:
Cyril Brulebois (12):
  Mention upstream git URL in a comment.
  Switch to dh.
  Remove long obsolete Replaces/Conflicts.
  Update Uploaders list. Thanks, David  Brice!
  Wrap Depends/Provides.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Merge branch 'debian-experimental' into debian-unstable
  Remove xsfbs accordingly.
  Add quilt build-dep for future use.
  Fix sequence ordering.
  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   |  103 
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 10 files changed, 42 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/e1pliob-0007p2...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 .gitignore |   70 +
 COPYING|   26 +-
 ChangeLog  |  233 ++
 Makefile.am|   11 
 configure.ac   |   50 +--
 debian/README.source   |   24 -
 debian/changelog   |   30 ++
 debian/compat  |2 
 debian/control |   25 +
 debian/patches/series  |1 
 debian/rules   |  103 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 src/.gitignore |6 
 src/Makefile.am|3 
 16 files changed, 405 insertions(+), 1118 deletions(-)

New commits:
commit 30cff508b0267f133d8ecb5defa18622e0654ba3
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:42:12 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 9604e2e..906e7cd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-ark (1:0.7.3-2) UNRELEASED; urgency=low
+xserver-xorg-video-ark (1:0.7.3-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -12,7 +12,7 @@ xserver-xorg-video-ark (1:0.7.3-2) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 11:00:15 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:42:12 +0100
 
 xserver-xorg-video-ark (1:0.7.3-1) experimental; urgency=low
 

commit 55ed80e726360631b12b83bfb53659674a98e1df
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:32:07 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 0355a58ed2063d410a9d4f3db4ea7885ec711bcc
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:42:11 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit 36be7c88c85ec624ebfe34f13e1e6ea2bbf62ccd
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:42:10 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index eaa007a..9604e2e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-ark (1:0.7.3-2) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David  Brice!
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
+  * Add quilt build-dep for future use.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 11:00:15 +0100
 
diff --git a/debian/control b/debian/control
index 663694c..d9b5bec 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Cyril Brulebois k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
+ quilt,
  pkg-config,
  xserver-xorg-dev (= 2:1.9.4),
  x11proto-core-dev,

commit 807dc59754c6126ae3f79192d166c115c8219295
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 11:19:26 2011 +0100

Remove xsfbs accordingly.

diff --git a/debian/README.source b/debian/README.source
index b09a1ab..4ecd5e6 100644
--- a/debian/README.source
+++ b/debian/README.source
@@ -47,27 +47,3 @@ are involved:
   case, it appears directly in the .diff.gz.
 * Otherwise, the patch is added to debian/patches/ which is managed
   with quilt as documented in /usr/share/doc/quilt/README.source.
-
-quilt is actually invoked by the Debian X packaging through a larger
-set of scripts called XSFBS. XSFBS brings some other X specific
-features such as managing dependencies and conflicts due to the video
-and input driver ABIs.
-XSFBS itself is maintained in a separate repository at
-  git://git.debian.org/pkg-xorg/xsfbs.git
-and it is pulled inside the other Debian X repositories when needed.
-
-The XSFBS patching system requires a build dependency on quilt. Also
-a dependency on $(STAMP_DIR)/patch has to be added to debian/rules
-so that the XSFBS patching occurs before the actual build. So the
-very first target of the build (likely the one running autoreconf)
-should depend on $(STAMP_DIR)/patch. It should also not depend on
-anything so that parallel builds are correctly supported (nothing
-should probably run while patching is being done). And finally, the
-clean target should depend on the xsfclean target so that patches
-are unapplied on clean.

xserver-xorg-video-ati: Changes to 'refs/tags/xserver-xorg-video-ati-1_6.13.2-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-ati-1_6.13.2-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:42 +

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

iEYEABECAAYFAk1NU8gACgkQeGfVPHR5Nd0xIACgtyyK1uWqtFXWkf2/s5dbaTOq
SbEAoICLMu99LIf24yqPBEKaccxx2fLG
=/YHF
-END PGP SIGNATURE-

Changes since xserver-xorg-video-ati-1_6.13.2-1:
Cyril Brulebois (13):
  Document the cherry-pick.
  Upload to unstable.
  Mention upstream git URL in a comment.
  Merge branch 'debian-experimental' into debian-unstable
  Stop building with -fvisibility=hidden.
  Switch to dh.
  Add quilt build-dep for future use.
  Update Uploaders list. Thanks, David  Brice!
  Remove long obsolete Replaces.
  Get rid of maintainer scripts.
  Remove xsfbs accordingly.
  Add a placeholding series file.
  Upload to unstable

Heikki Lindholm (1):
  xv: fix non-kms/non-dri Xv column ordering on big endian systems

Julien Cristau (1):
  Only enable KMS on x86.

---
 debian/README.source |   24 -
 debian/changelog |   31 +
 debian/compat|2 
 debian/control   |   13 
 debian/patches/series|1 
 debian/rules |  124 -
 debian/watch |1 
 debian/xserver-xorg-video-ati.install|1 
 debian/xserver-xorg-video-ati.manpages   |1 
 debian/xserver-xorg-video-radeon.install |1 
 debian/xserver-xorg-video-radeon.manpages|1 
 debian/xserver-xorg-video-radeon.postinst.in |   21 
 debian/xserver-xorg-video-radeon.postrm.in   |   21 
 debian/xserver-xorg-video-radeon.prerm.in|   21 
 debian/xsfbs/repack.sh   |   32 -
 debian/xsfbs/xsfbs.mk|  285 
 debian/xsfbs/xsfbs.sh|  622 ---
 17 files changed, 62 insertions(+), 1140 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/e1plioz-0007uv...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 ChangeLog|  612 +++
 configure.ac |  108 ---
 debian/README.source |   24 
 debian/changelog |   34 +
 debian/compat|2 
 debian/control   |   15 
 debian/patches/series|1 
 debian/rules |  126 ---
 debian/xserver-xorg-video-ati.install|1 
 debian/xserver-xorg-video-ati.manpages   |1 
 debian/xserver-xorg-video-radeon.install |1 
 debian/xserver-xorg-video-radeon.manpages|1 
 debian/xserver-xorg-video-radeon.postinst.in |   21 
 debian/xserver-xorg-video-radeon.postrm.in   |   21 
 debian/xserver-xorg-video-radeon.prerm.in|   21 
 debian/xsfbs/repack.sh   |   32 -
 debian/xsfbs/xsfbs.mk|  285 
 debian/xsfbs/xsfbs.sh|  622 ---
 man/Makefile.am  |   22 
 src/AtomBios/CD_Operations.c |9 
 src/AtomBios/includes/atombios.h |   92 ++
 src/Makefile.am  |   27 
 src/ati.c|2 
 src/ati_pciids_gen.h |3 
 src/atombios_crtc.c  |  426 ++---
 src/atombios_output.c|  353 ---
 src/drmmode_display.c|   12 
 src/legacy_output.c  |5 
 src/local_xf86Rename.h   |   23 
 src/pcidb/ati_pciids.csv |7 
 src/r600_exa.c   |  513 ++--
 src/r600_shader.c|  860 ++-
 src/r600_shader.h|1 
 src/r600_state.h |   16 
 src/r600_textured_videofuncs.c   |   66 --
 src/r6xx_accel.c |  185 +
 src/radeon.h |   13 
 src/radeon_atombios.c|   20 
 src/radeon_atombios.h|2 
 src/radeon_chipinfo_gen.h|3 
 src/radeon_chipset_gen.h |7 
 src/radeon_cursor.c  |9 
 src/radeon_dri2.c|  109 +++
 src/radeon_exa.c |   96 +--
 src/radeon_exa_funcs.c   |  118 +--
 src/radeon_exa_render.c  |8 
 src/radeon_exa_shared.c  |  237 +++
 src/radeon_exa_shared.h  |   80 ++
 src/radeon_kms.c |  123 +++
 src/radeon_output.c  |   16 
 src/radeon_pci_chipset_gen.h |3 
 src/radeon_pci_device_match_gen.h|3 
 src/radeon_vbo.h |   13 
 src/theatre200.c |8 
 src/theatre_detect.c |4 
 55 files changed, 2636 insertions(+), 2786 deletions(-)

New commits:
commit 99e5e05f523af2ca15f0eacee9b24e8a1ad97e86
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:42:29 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 79b2423..0465c15 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-ati (1:6.13.2-2) UNRELEASED; urgency=low
+xserver-xorg-video-ati (1:6.13.2-2) unstable; urgency=low
 
   * Stop building with -fvisibility=hidden. That was introduced to avoid
 symbol name clashes with radeonhd, which is gone now.
@@ -16,7 +16,7 @@ xserver-xorg-video-ati (1:6.13.2-2) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces.
 
- -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 08:22:01 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:42:29 +0100
 
 xserver-xorg-video-ati (1:6.13.2-1) experimental; urgency=low
 

commit d3ee7f8aa801a6ca833091d9b66d75eff7fddfaf
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:32:08 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 7e55614a01198918eda4f1be0b3cf5108e3c28b5
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 08:45:55 2011 +0100

Remove xsfbs accordingly.

diff --git a/debian/README.source b/debian/README.source
index b09a1ab..4ecd5e6 100644
--- a/debian/README.source
+++ b/debian/README.source
@@ -47,27 +47,3 @@ are involved:
   case, it appears directly in the .diff.gz.
 * Otherwise, the patch is added to debian/patches/ which is managed
   with quilt as documented in /usr/share/doc/quilt/README.source.
-
-quilt is actually invoked by 

xserver-xorg-video-chips: Changes to 'refs/tags/xserver-xorg-video-chips-1_1.2.3-3'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-chips-1_1.2.3-3' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:42 +

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

iEYEABECAAYFAk1NU94ACgkQeGfVPHR5Nd30YACfYkdJL18ATLolRITxXX4rneF5
grgAn124amqsTfgbD7oL2iEIDwGaHgTf
=dl8E
-END PGP SIGNATURE-

Changes since xserver-xorg-video-chips-1_1.2.3-2:
Cyril Brulebois (9):
  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.
  Merge branch 'debian-experimental' into debian-unstable
  Fix sequence ordering.
  Upload to unstable

---
 debian/README.source |   24 -
 debian/changelog |   15 
 debian/compat|2 
 debian/control   |   20 
 debian/rules |  104 -
 debian/watch |1 
 debian/xserver-xorg-video-chips.install  |1 
 debian/xserver-xorg-video-chips.manpages |1 
 debian/xsfbs/repack.sh   |   32 -
 debian/xsfbs/xsfbs.mk|  285 --
 debian/xsfbs/xsfbs.sh|  622 ---
 11 files changed, 39 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/e1plipf-0007ya...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 debian/README.source |   24 -
 debian/changelog |   21 +
 debian/compat|2 
 debian/control   |   20 
 debian/rules |  104 -
 debian/xserver-xorg-video-chips.install  |1 
 debian/xserver-xorg-video-chips.manpages |1 
 debian/xsfbs/repack.sh   |   32 -
 debian/xsfbs/xsfbs.mk|  285 --
 debian/xsfbs/xsfbs.sh|  622 ---
 10 files changed, 44 insertions(+), 1068 deletions(-)

New commits:
commit 1c990d2a185726e73c0c32863488c537431efc10
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:42:53 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 928d23e..8745917 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-chips (1:1.2.3-3) UNRELEASED; urgency=low
+xserver-xorg-video-chips (1:1.2.3-3) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -11,7 +11,7 @@ xserver-xorg-video-chips (1:1.2.3-3) UNRELEASED; urgency=low
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 11:17:29 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:42:53 +0100
 
 xserver-xorg-video-chips (1:1.2.3-2) experimental; urgency=low
 

commit db5ea311718af1d33482a9acfb1291ed91c73340
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:42:47 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit 2b8901077a4cc4b8c5d917feb7319e990228bcb8
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 11:24:36 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 3522dee..928d23e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-chips (1:1.2.3-3) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 11:17:29 +0100
 
diff --git a/debian/control b/debian/control
index 9fb5ba1..e59f467 100644
--- a/debian/control
+++ b/debian/control
@@ -22,8 +22,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-chips.g
 
 Package: xserver-xorg-video-chips
 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 -- Chips display driver
  This package provides the driver for the Chips  Technologies family
  of video cards.

commit 187204458d02ac510d897bfc1a27caa1bb3a5da7
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 11:24:15 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index 0944768..3522dee 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-chips (1:1.2.3-3) UNRELEASED; urgency=low
 - Specify usr/share/man in .install, remove .manpages accordingly.
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
+  * Remove long obsolete Replaces/Conflicts.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 11:17:29 +0100
 
diff --git a/debian/control b/debian/control
index d1cd0a8..9fb5ba1 100644
--- a/debian/control
+++ b/debian/control
@@ -24,8 +24,6 @@ Package: xserver-xorg-video-chips
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
 Provides: ${xviddriver:Provides}
-Replaces: xserver-xorg ( 6.8.2-35), xserver-xorg-driver-chips
-Conflicts: xserver-xorg-driver-chips
 Description: X.Org X server -- Chips display driver
  This package provides the driver for the Chips  Technologies family
  of video cards.

commit af220370bb60654a90c423a85c9f311872c5bf77
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 11:23:54 2011 +0100

Update Uploaders list. Thanks, David  Brice!

diff --git a/debian/changelog b/debian/changelog
index 504a0ba..0944768 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ xserver-xorg-video-chips (1:1.2.3-3) UNRELEASED; urgency=low
   debhelper sequence.
 - Specify usr/share/man in 

xserver-xorg-video-cirrus: Changes to 'refs/tags/xserver-xorg-video-cirrus-1_1.3.2-4'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-cirrus-1_1.3.2-4' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:43 +

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

iEYEABECAAYFAk1NU/AACgkQeGfVPHR5Nd26lgCeJqzjDBr/mf5+t7E0Ny5u/t5x
CtsAoNE782/PfVA5Q7Jv08riny8NoPTU
=kGaa
-END PGP SIGNATURE-

Changes since xserver-xorg-video-cirrus-1_1.3.2-2+squeeze1:
Cyril Brulebois (12):
  Build against Xserver 1.9.1 rc1.
  Upload to experimental.
  Fix unpatching by adding xsfclean dependency to clean target.
  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
  Fix sequence ordering.
  Upload to unstable

---
 debian/README.source  |   24 -
 debian/changelog  |   22 +
 debian/compat |2 
 debian/control|   22 -
 debian/rules  |  104 -
 debian/xserver-xorg-video-cirrus.install  |1 
 debian/xserver-xorg-video-cirrus.manpages |1 
 debian/xsfbs/repack.sh|   32 -
 debian/xsfbs/xsfbs.mk |  285 -
 debian/xsfbs/xsfbs.sh |  622 --
 10 files changed, 46 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/e1plipb-0007ci...@alioth.debian.org



xserver-xorg-video-cirrus: 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  |  104 -
 debian/xserver-xorg-video-cirrus.install  |1 
 debian/xserver-xorg-video-cirrus.manpages |1 
 debian/xsfbs/repack.sh|   32 -
 debian/xsfbs/xsfbs.mk |  285 -
 debian/xsfbs/xsfbs.sh |  622 --
 10 files changed, 43 insertions(+), 1072 deletions(-)

New commits:
commit 05aa5267e19c64e0f45587d4bf5072b0e14074c4
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:43:10 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index df94f52..8312281 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-cirrus (1:1.3.2-4) UNRELEASED; urgency=low
+xserver-xorg-video-cirrus (1:1.3.2-4) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -12,7 +12,7 @@ xserver-xorg-video-cirrus (1:1.3.2-4) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 11:35:04 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:43:10 +0100
 
 xserver-xorg-video-cirrus (1:1.3.2-3) experimental; urgency=low
 

commit 45adcd06232baa3bcebfda8b2145e401fa6ea39e
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:42:54 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit 9ea4f49fc48e8dedb239a7151eca927c757a92bb
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 11:41:29 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 24ff9a0..7d442e9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-cirrus (1:1.3.2-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 k...@debian.org  Thu, 03 Feb 2011 11:35:04 +0100
 
diff --git a/debian/control b/debian/control
index 7e72a8a..7e74d8e 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends:
  x11proto-render-dev,
  x11proto-xext-dev,
  xutils-dev
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-cirrus
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-cirrus.git
 

commit 528c3c67d3cdd0745c1c137d57092c0fa58a1be9
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 11:41:14 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 8ec0028..24ff9a0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-cirrus (1:1.3.2-4) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 11:35:04 +0100
 
diff --git a/debian/control b/debian/control
index ad5905b..7e72a8a 100644
--- a/debian/control
+++ b/debian/control
@@ -21,8 +21,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-cirrus.
 
 Package: xserver-xorg-video-cirrus
 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 -- Cirrus display driver
  This package provides the driver for the Cirrus Logic family of video
  cards.

commit cf2bc170a6f6a3e6209d89475fc4e6be354f7933
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 11:40:34 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index 6ceb004..8ec0028 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-cirrus (1:1.3.2-4) UNRELEASED; urgency=low
 - Specify usr/share/man in .install, remove .manpages accordingly.
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
+  

xserver-xorg-video-dummy: Changes to 'refs/tags/xserver-xorg-video-dummy-1_0.3.4-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-dummy-1_0.3.4-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:43 +

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

iEYEABECAAYFAk1NVAQACgkQeGfVPHR5Nd39HgCfdmqOjevAil+KJu2UYL7j96fs
3bcAn3+womv+khjocRuYMz7sghEKeshw
=cqGF
-END PGP SIGNATURE-

Changes since xserver-xorg-video-dummy-1_0.3.4-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.
  Merge branch 'debian-experimental' into debian-unstable
  Add quilt build-dep for future use.
  Fix sequence ordering.
  Add a placeholding series file.
  Upload to unstable

---
 debian/README.source   |   24 -
 debian/changelog   |   15 +
 debian/compat  |2 
 debian/control |   21 -
 debian/patches/series  |1 
 debian/rules   |  103 
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 10 files changed, 40 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/e1plipq-0007ek...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 COPYING|   12 
 configure.ac   |8 
 debian/README.source   |   24 -
 debian/changelog   |   27 ++
 debian/compat  |2 
 debian/control |   23 -
 debian/patches/series  |1 
 debian/rules   |  103 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 src/Makefile.am|3 
 src/dummy_driver.c |4 
 13 files changed, 61 insertions(+), 1085 deletions(-)

New commits:
commit b784f1f98f6ed0b4fcffc5b8bb8a195d43b7e723
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:43:31 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index bfbe076..ba8deb2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-dummy (1:0.3.4-2) UNRELEASED; urgency=low
+xserver-xorg-video-dummy (1:0.3.4-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -11,7 +11,7 @@ xserver-xorg-video-dummy (1:0.3.4-2) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 11:52:52 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:43:31 +0100
 
 xserver-xorg-video-dummy (1:0.3.4-1) experimental; urgency=low
 

commit 12ded0cc5299883c91ca75af670d3b4d4afe614c
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:32:09 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 73639f6a313da443fd1d7af5c33f8b25c9a0173e
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:43:07 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit 7e35dd5ee8803de98f0275b1ccba8bbb12a68247
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:43:05 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index b4e4af1..bfbe076 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-dummy (1:0.3.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 k...@debian.org  Thu, 03 Feb 2011 11:52:52 +0100
 
diff --git a/debian/control b/debian/control
index 2fa0a5a..a138cc9 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Cyril Brulebois k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
+ quilt,
  pkg-config,
  xserver-xorg-dev (= 2:1.9.4),
  x11proto-video-dev,

commit 4af8b8ca94bc0362c1d92d971f7c383819ed29c3
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 11:57:36 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 2b93979..b4e4af1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-dummy (1:0.3.4-2) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 11:52:52 +0100
 
diff --git a/debian/control b/debian/control
index f5af5f4..2fa0a5a 100644
--- a/debian/control
+++ b/debian/control
@@ -21,8 +21,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-dummy.g
 
 Package: xserver-xorg-video-dummy
 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 -- dummy display driver
  This package provides a 'dummy' display driver, which does not actually
  display anything.

commit 40dfe3d5e6f2fc2f1e5cd4491d66af00e1ac76d4
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 11:56:27 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index 65ff6c9..2b93979 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ xserver-xorg-video-dummy (1:0.3.4-2) UNRELEASED; urgency=low
   debhelper sequence.
   * Remove xsfbs 

xserver-xorg-video-fbdev: Changes to 'refs/tags/xserver-xorg-video-fbdev-1_0.4.2-4'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-fbdev-1_0.4.2-4' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:44 +

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

iEYEABECAAYFAk1NVEwACgkQeGfVPHR5Nd1mFACfYjajcIZlSPVwUe3+R2HWvn9z
OUYAnRxIq8DMMVtbOgG+87xhz/VgrjW3
=kKSs
-END PGP SIGNATURE-

Changes since xserver-xorg-video-fbdev-1_0.4.2-3:
Cyril Brulebois (12):
  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).
  Fix missing cleaning.
  Make make $(MAKE).
  Fix spacing.
  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   |  137 ++
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 9 files changed, 62 insertions(+), 1078 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/e1pliro-0007z7...@alioth.debian.org



xserver-xorg-video-fbdev: 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   |  137 ++
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 8 files changed, 67 insertions(+), 1078 deletions(-)

New commits:
commit 7edcf58276b1bae125f0d74fa5ef7fe9728498f5
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:44:43 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 534f028..deaead5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-fbdev (1:0.4.2-4) UNRELEASED; urgency=low
+xserver-xorg-video-fbdev (1:0.4.2-4) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -11,7 +11,7 @@ xserver-xorg-video-fbdev (1:0.4.2-4) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 13:13:17 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:44:43 +0100
 
 xserver-xorg-video-fbdev (1:0.4.2-3) experimental; urgency=low
 

commit 451d64028ec6c2908b5ab76fd1a413df80e307ca
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 13:57:42 2011 +0100

Fix spacing.

diff --git a/debian/rules b/debian/rules
index 1a3ebb8..34a61ec 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,7 +1,7 @@
 #!/usr/bin/make -f
 
-PACKAGE  = xserver-xorg-video-fbdev
-OOT  = --builddirectory=build
+PACKAGE = xserver-xorg-video-fbdev
+OOT = --builddirectory=build
 
 # Clean:
 override_dh_auto_clean:

commit 6107ec4acd31a61616fdaf02e1751f3ffb794333
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 13:52:23 2011 +0100

Make make $(MAKE).

diff --git a/debian/rules b/debian/rules
index d7f512a..1a3ebb8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -16,13 +16,13 @@ override_dh_auto_configure:
 
 # Build:
 override_dh_auto_build:
-   make -C build-main/
-   make -C build-udeb/
+   $(MAKE) -C build-main/
+   $(MAKE) -C build-udeb/
 
 # Install:
 override_dh_auto_install:
-   make -C build-main/ install DESTDIR=$(CURDIR)/debian/tmp-main
-   make -C build-udeb/ install DESTDIR=$(CURDIR)/debian/tmp-udeb
+   $(MAKE) -C build-main/ install DESTDIR=$(CURDIR)/debian/tmp-main
+   $(MAKE) -C build-udeb/ install DESTDIR=$(CURDIR)/debian/tmp-udeb
 
 # Kill *.la files, and forget no-one:
 override_dh_install:

commit 3549c7e51314faf306d2dbc4f3589e48bfbeb5fc
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 13:38:22 2011 +0100

Fix missing cleaning.

diff --git a/debian/rules b/debian/rules
index 0fb3dd5..d7f512a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -3,6 +3,12 @@
 PACKAGE  = xserver-xorg-video-fbdev
 OOT  = --builddirectory=build
 
+# Clean:
+override_dh_auto_clean:
+   dh_auto_clean
+   rm -rf build-main/ debian/tmp-main/
+   rm -rf build-udeb/ debian/tmp-udeb/
+
 # Configuration, with or without xv:
 override_dh_auto_configure:
dh_auto_configure $(OOT)-main/ -- --enable-xv

commit 7738c006964f87b4ab3a5aa4369de1cefb4372a1
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 13:35:36 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 87a4ec9..534f028 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-fbdev (1:0.4.2-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 k...@debian.org  Fri, 04 Feb 2011 13:13:17 +0100
 
diff --git a/debian/control b/debian/control
index 32eaa9f..576eb9d 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends:
  x11proto-render-dev,
  x11proto-video-dev,
  xutils-dev (= 1:7.5+1),
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-fbdev
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-fbdev.git
 

commit f0f99e74476d9549fe3abd6f2cc8f6fe0b331c18
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 13:35:19 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 52a8ee4..87a4ec9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-fbdev (1:0.4.2-4) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 13:13:17 +0100
 
diff --git a/debian/control b/debian/control
index 269fd05..32eaa9f 100644
--- a/debian/control
+++ b/debian/control
@@ -21,8 +21,12 @@ 

xserver-xorg-video-glide: Changes to 'refs/tags/xserver-xorg-video-glide-1.1.0-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-glide-1.1.0-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:45 +

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

iEYEABECAAYFAk1NVI0ACgkQeGfVPHR5Nd0/NgCfQ8IrAVWKB6B7F9LhN7UKwX2a
F4sAoMccm04nQu/ngOMV+KLhdfLXM04N
=0qfY
-END PGP SIGNATURE-

Changes since xserver-xorg-video-glide-1.1.0-1:
Cyril Brulebois (13):
  Document the cherry-pick of 5e09be624b from upstream to close #602373.
  Set urgency to “high” accordingly.
  Add myself to Uploaders.
  Upload to unstable.
  Mention upstream git URL in a comment.
  Switch to dh.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, Brice!
  Wrap Depends/Recommends/Provides.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Merge branch 'debian-experimental' into debian-unstable
  Fix sequence ordering.
  Upload to unstable

Guillem Jover (1):
  Drop useless symbol lists

---
 debian/README.source |   24 -
 debian/changelog |   26 +
 debian/compat|2 
 debian/control   |   25 -
 debian/rules |  108 -
 debian/watch |1 
 debian/xserver-xorg-video-glide.install  |1 
 debian/xserver-xorg-video-glide.manpages |1 
 debian/xsfbs/repack.sh   |   32 -
 debian/xsfbs/xsfbs.mk|  285 --
 debian/xsfbs/xsfbs.sh|  622 ---
 11 files changed, 57 insertions(+), 1070 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/e1plis7-0008at...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 COPYING  |   37 -
 ChangeLog|  168 
 Makefile.am  |1 
 configure.ac |   44 --
 debian/README.source |   24 -
 debian/changelog |   38 +
 debian/compat|2 
 debian/control   |   29 -
 debian/copyright |   43 --
 debian/rules |  107 -
 debian/xserver-xorg-video-glide.install  |1 
 debian/xserver-xorg-video-glide.manpages |1 
 debian/xsfbs/repack.sh   |   32 -
 debian/xsfbs/xsfbs.mk|  285 --
 debian/xsfbs/xsfbs.sh|  622 ---
 man/Makefile.am  |   69 +--
 src/glide_driver.c   |  100 +++-
 17 files changed, 394 insertions(+), 1209 deletions(-)

New commits:
commit ac5308a547e003684de1c7394c7cb5fde9593834
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:45:48 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 99e4ac7..1f8259b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-glide (1.1.0-2) UNRELEASED; urgency=low
+xserver-xorg-video-glide (1.1.0-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -12,7 +12,7 @@ xserver-xorg-video-glide (1.1.0-2) UNRELEASED; urgency=low
   * Wrap Depends/Recommends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 12:01:28 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:45:48 +0100
 
 xserver-xorg-video-glide (1.1.0-1) experimental; urgency=low
 

commit 8d2e086c56abb82c75b15350cc5ec3d1c20a69f9
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:43:20 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index ac2d978..1d8183b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -18,4 +18,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit aa6d71e9affcf6bc58ba05a33ff62be9eb23b466
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 12:13:33 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 39488b0..18538ae 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-glide (1.1.0-2) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, Brice!
   * Wrap Depends/Recommends/Provides.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 12:01:28 +0100
 
diff --git a/debian/control b/debian/control
index 383f9f0..eda32cc 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends:
  x11proto-render-dev,
  xutils-dev (= 1:7.5+4),
  libglide3-dev,
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-glide
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-glide.git
 

commit daccd802f424554d4a08d729431c9370402ade27
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 12:13:15 2011 +0100

Wrap Depends/Recommends/Provides.

diff --git a/debian/changelog b/debian/changelog
index fbc7489..39488b0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-glide (1.1.0-2) UNRELEASED; urgency=low
   * Stop passing --enable-maintainer-mode.
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, Brice!
+  * Wrap Depends/Recommends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 12:01:28 +0100
 
diff --git a/debian/control b/debian/control
index 4acb322..383f9f0 100644
--- a/debian/control
+++ b/debian/control
@@ -21,9 +21,15 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-glide.g
 
 Package: xserver-xorg-video-glide
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}, libglide3,
-Recommends: device3dfx-source
-Provides: ${xviddriver:Provides}
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+ ${xviddriver:Depends},
+ libglide3,
+Recommends:
+ device3dfx-source,
+Provides:
+ ${xviddriver:Provides}
 Description: X.Org X server -- Glide display driver
  This driver for the X.Org X server (see xserver-xorg for a further 
description)
  provides support for Voodoo 1 and Voodoo 2 boards.

commit 

xserver-xorg-video-glint: Changes to 'refs/tags/xserver-xorg-video-glint-1_1.2.5-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-glint-1_1.2.5-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:46 +

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

iEYEABECAAYFAk1NVKAACgkQeGfVPHR5Nd0tNQCdFEMVhywj1Kc483RD3jI/gqO9
AaMAoJQJCYf+XqERz1bekTsBNw9cF4FJ
=SL4z
-END PGP SIGNATURE-

Changes since xserver-xorg-video-glint-1_1.2.5-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).
  Merge branch 'debian-experimental' into debian-unstable
  Fix sequence ordering.
  Keep repack.sh since repacking is needed.
  Upload to unstable

---
 debian/README.source  |   24 -
 debian/changelog  |   15 +
 debian/compat |2 
 debian/control|   22 -
 debian/rules  |  103 
 debian/watch  |1 
 debian/xsfbs/xsfbs.mk |  285 --
 debian/xsfbs/xsfbs.sh |  622 --
 8 files changed, 39 insertions(+), 1035 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/e1pliss-0008ht...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 .gitignore|   70 +
 COPYING   |  109 
 ChangeLog |  237 +++
 Makefile.am   |   12 
 configure.ac  |   50 ++--
 debian/README.source  |   24 -
 debian/changelog  |   33 ++
 debian/compat |2 
 debian/control|   24 -
 debian/copyright  |   98 ---
 debian/rules  |  103 
 debian/xsfbs/xsfbs.mk |  285 --
 debian/xsfbs/xsfbs.sh |  622 --
 man/.gitignore|2 
 man/Makefile.am   |   59 +---
 src/.gitignore|6 
 src/glint_dga.c   |6 
 src/glint_dri.c   |   26 --
 src/glint_driver.c|   23 -
 src/pm2_video.c   |   22 -
 src/pm3_accel.c   |4 
 src/pm3_dac.c |3 
 src/pm3_video.c   |   21 -
 src/pm_accel.c|4 
 src/sx_accel.c|2 
 src/tx_accel.c|4 
 26 files changed, 627 insertions(+), 1224 deletions(-)

New commits:
commit 3c632021f4370aa542fad196b6c3ff16457b61f7
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:46:07 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 516b920..61fc6ee 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-glint (1:1.2.5-2) UNRELEASED; urgency=low
+xserver-xorg-video-glint (1:1.2.5-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -11,7 +11,7 @@ xserver-xorg-video-glint (1:1.2.5-2) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 12:33:27 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:46:07 +0100
 
 xserver-xorg-video-glint (1:1.2.5-1) experimental; urgency=low
 

commit 645c5359a2c1da6473ddd0cc70419d6bd1bd16e1
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 10:11:32 2011 +0100

Keep repack.sh since repacking is needed.

diff --git a/debian/changelog b/debian/changelog
index 832f916..516b920 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,7 +5,7 @@ xserver-xorg-video-glint (1:1.2.5-2) UNRELEASED; urgency=low
 - Use dh-autoreconf.
 - Bump xserver-xorg-dev build-dep for dh_xsf_substvars and xsf
   debhelper sequence.
-  * Remove xsfbs accordingly.
+  * Remove xsfbs (except repack.sh) accordingly.
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
diff --git a/debian/xsfbs/repack.sh b/debian/xsfbs/repack.sh
new file mode 100755
index 000..5935cc9
--- /dev/null
+++ b/debian/xsfbs/repack.sh
@@ -0,0 +1,32 @@
+#!/bin/sh
+
+set -e
+
+if ! [ -d debian/prune ]; then
+   exit 0
+fi
+
+if [ x$1 != x--upstream-version ]; then
+   exit 1
+fi
+
+version=$2
+filename=$3
+
+if [ -z $version ] || ! [ -f $filename ]; then
+   exit 1
+fi
+
+dir=$(pwd)
+tempdir=$(mktemp -d)
+
+cd $tempdir
+tar xf $dir/$filename
+cat $dir/debian/prune/* | while read file; do rm -f */$file; done
+
+tar czf $dir/$filename *
+cd $dir
+rm -rf $tempdir
+echo Done pruning upstream tarball
+
+exit 0

commit 9932fabf8cd4ca13d2e154581a7069f65fdc0cac
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:43:26 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit efa82ecd65621e21bd672bf48f6484f704d11d93
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 12:40:06 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 39dfa3b..832f916 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-glint (1:1.2.5-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 k...@debian.org  Thu, 03 Feb 2011 12:33:27 +0100
 
diff --git a/debian/control b/debian/control
index 2f3de49..7438998 100644
--- a/debian/control
+++ b/debian/control
@@ -20,7 +20,7 @@ Build-Depends:
  x11proto-render-dev,
  x11proto-fonts-dev,
  xutils-dev (= 1:7.5+4)
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-glint
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-glint.git
 

commit 

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

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-i128-1_1.3.4-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:46 +

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

iEYEABECAAYFAk1NVLcACgkQeGfVPHR5Nd04cwCfRgiCjzhoRVouJcafypRZHgke
wY8AoJ4w+S0xRvFrAD5D6ezevLc2Gdh4
=xipn
-END PGP SIGNATURE-

Changes since xserver-xorg-video-i128-1_1.3.4-1:
Cyril Brulebois (12):
  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
  Add quilt build-dep for future use.
  Fix sequence ordering.
  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   |  102 
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 10 files changed, 42 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/e1plisk-0008qk...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 .gitignore |   70 +
 COPYING|   47 +++
 ChangeLog  |  240 ++
 Makefile.am|   15 -
 README |   76 ++---
 README.sgml|   98 ---
 configure.ac   |   48 +--
 debian/README.source   |   24 -
 debian/changelog   |   33 ++
 debian/compat  |2 
 debian/control |   25 +
 debian/copyright   |   44 ++-
 debian/patches/series  |1 
 debian/rules   |  102 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 man/.cvsignore |2 
 man/Makefile.am|   59 +---
 src/.cvsignore |6 
 src/i128accel.c|4 
 src/i128init.c |   15 +
 22 files changed, 543 insertions(+), 1307 deletions(-)

New commits:
commit cf32fd06c369ae7bfeebf90fc3ebae09b16891ee
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:46:30 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index fe68d9d..4bd927a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-i128 (1:1.3.4-2) UNRELEASED; urgency=low
+xserver-xorg-video-i128 (1:1.3.4-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -12,7 +12,7 @@ xserver-xorg-video-i128 (1:1.3.4-2) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 12:47:31 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:46:29 +0100
 
 xserver-xorg-video-i128 (1:1.3.4-1) experimental; urgency=low
 

commit 6ee7eed31d76552f27b377641e59d439f3c890da
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:32:11 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 e7d48b3fb064c208af82198ed9aa422499c91999
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:43:44 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit 73bb9ecdfd9837b0d008c73e71071d44854c3bf6
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:43:39 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index 7f74a55..fe68d9d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-i128 (1:1.3.4-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 k...@debian.org  Thu, 03 Feb 2011 12:47:31 +0100
 
diff --git a/debian/control b/debian/control
index 0afa036..2363a37 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Cyril Brulebois k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
+ quilt,
  pkg-config,
  xserver-xorg-dev (= 2:1.9.4),
  x11proto-video-dev,

commit cac8ff3d317b71ba541d604751fe60b33b57a814
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 12:51:36 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 2bdbb50..7f74a55 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-i128 (1:1.3.4-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 k...@debian.org  Thu, 03 Feb 2011 12:47:31 +0100
 
diff --git a/debian/control b/debian/control
index a861be4..0afa036 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends:
  x11proto-render-dev,
  x11proto-xext-dev,
  xutils-dev (= 1:7.5+4)
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-i128
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-i128.git
 

commit a579b03c5904c61994e6489ee5e81013001dfc2b
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 12:51:20 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog 

xserver-xorg-video-i740: Changes to 'refs/tags/xserver-xorg-video-i740-1_1.3.2-4'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-i740-1_1.3.2-4' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:46 +

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

iEYEABECAAYFAk1NVMgACgkQeGfVPHR5Nd1INwCeN9R+cVfeLCOV13FDKhh1bGoi
tAcAnA4q6iuFI3nL5eAB3CmqvVEoxtTM
=CSZl
-END PGP SIGNATURE-

Changes since xserver-xorg-video-i740-1_1.3.2-3:
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.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Merge branch 'debian-experimental' into debian-unstable
  Add quilt build-dep for future use.
  Fix sequence ordering.
  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   |  100 ---
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 10 files changed, 42 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/e1plit2-5n...@alioth.debian.org



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

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

New commits:
commit d70ed116de3ff6c187505dabb5b5bcc2e3f82c14
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:46:47 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 0e1ee67..1f6dcc0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-i740 (1:1.3.2-4) UNRELEASED; urgency=low
+xserver-xorg-video-i740 (1:1.3.2-4) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -12,7 +12,7 @@ xserver-xorg-video-i740 (1:1.3.2-4) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 14:44:53 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:46:46 +0100
 
 xserver-xorg-video-i740 (1:1.3.2-3) experimental; urgency=low
 

commit c63d11e583763378585338dae1c4486feaf384dc
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:32:12 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 19854abc922a156b9cfa414c1d50441bdfc5bec7
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:43:53 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit 2bc6f033a9f829583cc8f23d23303a987272285f
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:43:52 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index 8c7ad37..0e1ee67 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-i740 (1:1.3.2-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 k...@debian.org  Thu, 03 Feb 2011 14:44:53 +0100
 
diff --git a/debian/control b/debian/control
index 1280a27..26397d6 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Cyril Brulebois k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
+ quilt,
  pkg-config,
  xutils-dev,
  xserver-xorg-dev (= 2:1.9.4),

commit 8da8458aeb4ebe576d9aa7fb4389a38d06487f63
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 14:48:48 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 0d99f71..8c7ad37 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-i740 (1:1.3.2-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 k...@debian.org  Thu, 03 Feb 2011 14:44:53 +0100
 
diff --git a/debian/control b/debian/control
index f34ba06..1280a27 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends:
  x11proto-randr-dev,
  x11proto-render-dev,
  x11proto-xext-dev,
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-i740
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-i740.git
 

commit 72a18f01a5689c1d8a695fb3ecf40f61938447b9
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 14:48:34 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 9b5b705..0d99f71 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-i740 (1:1.3.2-4) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 14:44:53 +0100
 
diff --git a/debian/control b/debian/control
index 85516aa..f34ba06 100644
--- a/debian/control
+++ 

xserver-xorg-video-intel: 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/e1pliue-up...@alioth.debian.org



xserver-xorg-video-intel: Changes to 'refs/tags/xserver-xorg-video-intel-2_2.14.0-3'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-intel-2_2.14.0-3' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:47 +

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

iEYEABECAAYFAk1NVNoACgkQeGfVPHR5Nd0twgCffoWJ5WC/P4jVPeod9wPW79wM
+6EAn3BabQmQ1lLcaW+vNfg9hgJgUjqY
=vyxR
-END PGP SIGNATURE-

Changes since xserver-xorg-video-intel-2_2.14.0-2:
Cyril Brulebois (10):
  Switch to dh.
  Get rid of maintainer scripts.
  Remove xsfbs accordingly.
  Remove leftovers.
  Update Uploaders list. Thanks, David  Brice!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides/Recommends.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Add a placeholding series file.
  Upload to unstable

---
 debian/README.source  |   24 
 debian/changelog  |   25 
 debian/compat |2 
 debian/control|   29 -
 debian/patches/series |1 
 debian/rules  |  116 
 debian/xserver-xorg-video-intel.NEWS  |   11 
 debian/xserver-xorg-video-intel.docs  |2 
 debian/xserver-xorg-video-intel.install   |3 
 debian/xserver-xorg-video-intel.install.hurd-i386 |2 
 debian/xserver-xorg-video-intel.manpages  |1 
 debian/xserver-xorg-video-intel.postinst.in   |   21 
 debian/xserver-xorg-video-intel.postrm.in |   21 
 debian/xserver-xorg-video-intel.prerm.in  |   21 
 debian/xsfbs/repack.sh|   32 -
 debian/xsfbs/xsfbs.mk |  285 --
 debian/xsfbs/xsfbs.sh |  622 --
 17 files changed, 62 insertions(+), 1156 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/e1plius-ee...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
Rebased ref, commits from common ancestor:
commit 7e2ec9c5a7058ab21a71ffcd2cbe4f497550437c
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:47:05 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index e1e3d25..17a955a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-intel (2:2.14.0-3) UNRELEASED; urgency=low
+xserver-xorg-video-intel (2:2.14.0-3) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -21,7 +21,7 @@ xserver-xorg-video-intel (2:2.14.0-3) UNRELEASED; urgency=low
   * Wrap Depends/Provides/Recommends.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 07:43:53 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:47:04 +0100
 
 xserver-xorg-video-intel (2:2.14.0-2) experimental; urgency=low
 

commit 61447c93fafbd48ced723d29503e99da1036b81e
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:32:14 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 a1d57726610e6caa03b08eef4fac6e380ecf3392
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 08:11:33 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 74e52c2..e1e3d25 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -19,6 +19,7 @@ xserver-xorg-video-intel (2:2.14.0-3) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces.
   * Wrap Depends/Provides/Recommends.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 07:43:53 +0100
 
diff --git a/debian/control b/debian/control
index acfa1ec..ead90dd 100644
--- a/debian/control
+++ b/debian/control
@@ -33,7 +33,7 @@ Build-Depends:
  libudev-dev [linux-any],
  quilt,
  xutils-dev (= 1:7.5+4),
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-intel
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-intel.git
 

commit 9624b733a9e10700224178fcf37ee064b2f05124
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 08:11:18 2011 +0100

Wrap Depends/Provides/Recommends.

diff --git a/debian/changelog b/debian/changelog
index ef016ba..74e52c2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -18,6 +18,7 @@ xserver-xorg-video-intel (2:2.14.0-3) UNRELEASED; urgency=low
   now Linux-only.
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces.
+  * Wrap Depends/Provides/Recommends.
 
  -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 07:43:53 +0100
 
diff --git a/debian/control b/debian/control
index a74fb06..acfa1ec 100644
--- a/debian/control
+++ b/debian/control
@@ -39,8 +39,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-intel.g
 
 Package: xserver-xorg-video-intel
 Architecture: amd64 i386
-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 -- Intel i8xx, i9xx display driver
  This package provides the driver for the Intel i8xx and i9xx family
  of chipsets, including i810, i815, i830, i845, i855, i865, i915, i945
@@ -56,8 +60,11 @@ Description: X.Org X server -- Intel i8xx, i9xx display 
driver
 
 Package: xserver-xorg-video-intel-dbg
 Architecture: amd64 i386
-Depends: xserver-xorg-video-intel (= ${binary:Version}), ${shlibs:Depends}
-Recommends: intel-gpu-tools
+Depends:
+ xserver-xorg-video-intel (= ${binary:Version}),
+ ${shlibs:Depends},
+Recommends:
+ intel-gpu-tools,
 Section: debug
 Priority: extra
 Description: X.Org X server -- Intel i8xx, i9xx display driver (debug symbols)

commit 84b9320310b839661f17a72109aa9b626f074b79
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 08:09:51 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index 6d78011..ef016ba 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -17,6 +17,7 @@ xserver-xorg-video-intel (2:2.14.0-3) UNRELEASED; urgency=low
 - The .install.hurd-i386 file is no longer relevant, this package is
   now Linux-only.
   * Update Uploaders list. Thanks, David  Brice!
+  * Remove long obsolete Replaces.
 
  -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 07:43:53 +0100
 
diff --git a/debian/control b/debian/control
index f90b884..a74fb06 100644
--- a/debian/control
+++ b/debian/control
@@ -41,8 +41,6 @@ Package: xserver-xorg-video-intel
 Architecture: amd64 i386
 Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
 Provides: 

xserver-xorg-video-ivtvdev: Changes to 'refs/tags/xserver-xorg-video-ivtvdev-1.1.2-1'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-ivtvdev-1.1.2-1' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:50 +

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

iEYEABECAAYFAk1NVaoACgkQeGfVPHR5Nd3dpwCgrXOFFuflDn4hh/uJJ0GE2r16
E58An2fmNZOKh6tMmyRPyB4qOhwei6wU
=zAQ0
-END PGP SIGNATURE-

Changes since xserver-xorg-video-ivtvdev-1.1.1-3:
Cyril Brulebois (9):
  Wrap Build-Depends/Depends/Provides.
  Switch to dh.
  Do not use dh-autoreconf.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David!
  Bump Standards-Version to 3.9.1 (no changes needed).
  Add watch file.
  Add a placeholding series file.
  Upload to unstable

Ian Campbell (2):
  Merge branch 'upstream/tags/1.1.2' into debian-experimental
  Add changelog entry for 1.1.2-1

awalls (2):
  Author: Ian Armstrong i...@iarmst.demon.co.uk
  Added release tag 1.1.2

---
 debian/README.source   |   24 -
 debian/changelog   |   19 +
 debian/compat  |2 
 debian/control |   30 +-
 debian/patches/series  |1 
 debian/rules   |  102 +---
 debian/watch   |2 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 src/ivtv.c |   18 -
 src/ivtv_xv.c  |8 
 12 files changed, 74 insertions(+), 1071 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/e1pliwq-00018d...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 debian/README.source   |   24 -
 debian/changelog   |   26 ++
 debian/compat  |2 
 debian/control |   30 +-
 debian/patches/series  |1 
 debian/rules   |  102 +---
 debian/watch   |2 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 src/ivtv.c |   18 -
 src/ivtv_xv.c  |8 
 12 files changed, 81 insertions(+), 1071 deletions(-)

New commits:
commit 9911da9c6d870bfe64cada3a35cf2a01016233c7
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:50:34 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index c47e0ad..c1a1a84 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-ivtvdev (1.1.2-1) UNRELEASED; urgency=low
+xserver-xorg-video-ivtvdev (1.1.2-1) unstable; urgency=low
 
   [ Ian Campbell ]
   * New upstream release.
@@ -15,7 +15,7 @@ xserver-xorg-video-ivtvdev (1.1.2-1) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add watch file.
 
- -- Ian Campbell i...@hellion.org.uk  Fri, 31 Dec 2010 13:30:47 +
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:50:33 +0100
 
 xserver-xorg-video-ivtvdev (1.1.1-3) experimental; urgency=low
 

commit 17982f34612faa390129f92283cfc84af54448df
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:50: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 cc48695600f8dfcc5c504ddb3ea67d62a5222430
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 10:23:11 2011 +0100

Add watch file.

diff --git a/debian/changelog b/debian/changelog
index db7552a..c47e0ad 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,6 +13,7 @@ xserver-xorg-video-ivtvdev (1.1.2-1) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David!
   * Bump Standards-Version to 3.9.1 (no changes needed).
+  * Add watch file.
 
  -- Ian Campbell i...@hellion.org.uk  Fri, 31 Dec 2010 13:30:47 +
 
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 000..53669f6
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://dl.ivtvdriver.org/xf86-video-ivtv/ xf86-video-ivtv-(.*)\.tar\.gz

commit 36193a59a21c6bf0d9ac8672b74d58308b46055b
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 13:05:25 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 1b298a3..db7552a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -12,6 +12,7 @@ xserver-xorg-video-ivtvdev (1.1.2-1) UNRELEASED; urgency=low
   debhelper sequence.
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David!
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Ian Campbell i...@hellion.org.uk  Fri, 31 Dec 2010 13:30:47 +
 
diff --git a/debian/control b/debian/control
index ca64d75..de46726 100644
--- a/debian/control
+++ b/debian/control
@@ -16,7 +16,7 @@ Build-Depends:
  x11proto-randr-dev,
  x11proto-render-dev,
  x11proto-xext-dev,
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-ivtvdev
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-ivtvdev.git
 

commit b4695d107a3a45a9e27cb31cb3a2a59fdf599f48
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 13:05:15 2011 +0100

Update Uploaders list. Thanks, David!

diff --git a/debian/changelog b/debian/changelog
index e738630..1b298a3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ xserver-xorg-video-ivtvdev (1.1.2-1) 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!
 
  -- Ian Campbell i...@hellion.org.uk  Fri, 31 Dec 2010 13:30:47 +
 
diff --git a/debian/control b/debian/control
index 783558b..ca64d75 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: xserver-xorg-video-ivtvdev
 Section: contrib/x11
 Priority: extra
 Maintainer: Debian X Strike Force debian-x@lists.debian.org
-Uploaders: David Nusinow dnusi...@debian.org, Ian Campbell 
i...@hellion.org.uk, Cyril Brulebois k...@debian.org
+Uploaders: Ian Campbell i...@hellion.org.uk, Cyril Brulebois 
k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,

commit af15d2880f022b7cebf1c91416f858eeca23e31c
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 13:04:49 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-mach64: Changes to 'refs/tags/xserver-xorg-video-mach64-6.8.2-5'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-mach64-6.8.2-5' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:51 +

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

iEYEABECAAYFAk1NVdkACgkQeGfVPHR5Nd1IRACgqOMHuZxfwflgh7dAuqWBdCMk
IUAAn1Koxqa/pPlYidD5L7Q0/2JkTeJV
=jnaf
-END PGP SIGNATURE-

Changes since xserver-xorg-video-mach64-6.8.2-4:
Cyril Brulebois (12):
  Mention upstream git URL in a comment.
  Switch to dh.
  Fix debug package.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David  Brice!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides.
  Extra clean-up.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Merge branch 'debian-experimental' into debian-unstable
  Fix sequence ordering.
  Upload to unstable

---
 debian/README.source  |   24 -
 debian/changelog  |   16 
 debian/compat |2 
 debian/control|   25 -
 debian/rules  |  106 -
 debian/watch  |1 
 debian/xserver-xorg-video-mach64.install  |1 
 debian/xserver-xorg-video-mach64.manpages |1 
 debian/xsfbs/repack.sh|   32 -
 debian/xsfbs/xsfbs.mk |  285 -
 debian/xsfbs/xsfbs.sh |  622 --
 11 files changed, 46 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/e1plixw-0001fh...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 debian/README.source  |   24 -
 debian/changelog  |   23 +
 debian/compat |2 
 debian/control|   25 -
 debian/rules  |  106 -
 debian/xserver-xorg-video-mach64.install  |1 
 debian/xserver-xorg-video-mach64.manpages |1 
 debian/xsfbs/repack.sh|   32 -
 debian/xsfbs/xsfbs.mk |  285 -
 debian/xsfbs/xsfbs.sh |  622 --
 10 files changed, 52 insertions(+), 1069 deletions(-)

New commits:
commit 237bc692fe69a471c1924699eb38c2550d276218
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:51:20 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index dc91394..23b9305 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-mach64 (6.8.2-5) UNRELEASED; urgency=low
+xserver-xorg-video-mach64 (6.8.2-5) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -12,7 +12,7 @@ xserver-xorg-video-mach64 (6.8.2-5) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 14:54:21 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:51:19 +0100
 
 xserver-xorg-video-mach64 (6.8.2-4) experimental; urgency=low
 

commit 2b67c6293d61f561f66813f473519ebe58d8d33e
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:44:10 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 9770958..12bc01a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -18,4 +18,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit 56e3b715b38f21d62074262f545e6cb1c9e6f6f0
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 15:05:57 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index f9043d3..dc91394 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-mach64 (6.8.2-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 k...@debian.org  Thu, 03 Feb 2011 14:54:21 +0100
 
diff --git a/debian/control b/debian/control
index 8ccc2c8..2b7f7f4 100644
--- a/debian/control
+++ b/debian/control
@@ -21,7 +21,7 @@ Build-Depends:
  x11proto-xf86dri-dev,
  quilt,
  xutils-dev
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-mach64
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-mach64.git
 

commit f1c8cbd9d6277440ff8acfc4b9a9e63189be1dbf
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 15:05:45 2011 +0100

Extra clean-up.

diff --git a/debian/control b/debian/control
index 229054e..8ccc2c8 100644
--- a/debian/control
+++ b/debian/control
@@ -20,9 +20,6 @@ Build-Depends:
  libdrm-dev ( 2.2) [!hurd-i386],
  x11proto-xf86dri-dev,
  quilt,
- dpkg-dev (= 1.14.17),
- automake,
- libtool,
  xutils-dev
 Standards-Version: 3.8.3
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-mach64

commit 22100c79fbf6b88007326c3127bf48de01a6564d
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 15:04:28 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 1bcaf75..f9043d3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-mach64 (6.8.2-5) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 14:54:21 +0100
 
diff --git a/debian/control b/debian/control
index f47b466..229054e 100644
--- a/debian/control
+++ b/debian/control
@@ -30,8 +30,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-mach64.
 
 Package: xserver-xorg-video-mach64
 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 -- ATI Mach64 display driver
  This driver for the X.Org X server (see xserver-xorg for a further 
description)
  provides support 

xserver-xorg-video-mga: Changes to 'refs/tags/xserver-xorg-video-mga-1_1.4.13.dfsg-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-mga-1_1.4.13.dfsg-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:51 +

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

iEYEABECAAYFAk1NVe8ACgkQeGfVPHR5Nd2jcACg0bp1KVDivgXH4pGG+7sDMOKk
y34An2yjiXr16qMegZIe4eGs3CKbfH8G
=yUE0
-END PGP SIGNATURE-

Changes since xserver-xorg-video-mga-1_1.4.13.dfsg-1:
Cyril Brulebois (13):
  Mention upstream git URL in a comment.
  Tentatively unbreak dual head setups (Closes: #562209).
  Upload to unstable.
  Switch to dh.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David  Brice!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides/Suggests.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Merge branch 'debian-experimental' into debian-unstable
  Fix sequence ordering.
  Keep repack.sh since repacking is needed.
  Upload to unstable

---
 debian/README.source |   24 
 debian/changelog |   23 
 debian/compat|2 
 debian/control   |   25 
 debian/patches/02_tentatively_unbreak_dual_head.diff |  175 +
 debian/patches/series|1 
 debian/rules |  103 ---
 debian/watch |1 
 debian/xsfbs/xsfbs.mk|  285 
 debian/xsfbs/xsfbs.sh|  622 ---
 10 files changed, 225 insertions(+), 1036 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/e1plixm-0001hr...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 .gitignore|   75 +-
 ChangeLog |  224 ++
 Makefile.am   |   12 
 configure.ac  |   61 ++--
 debian/README.source  |   24 -
 debian/changelog  |   33 ++
 debian/compat |2 
 debian/control|   27 +-
 debian/rules  |  103 
 debian/watch  |2 
 debian/xsfbs/xsfbs.mk |  285 --
 debian/xsfbs/xsfbs.sh |  622 --
 man/Makefile.am   |   59 +---
 src/mga_dacG.c|   32 --
 src/mga_driver.c  |   11 
 util/.gitignore   |2 
 16 files changed, 415 insertions(+), 1159 deletions(-)

New commits:
commit 157437416cf1980137264f6751ffe0e1b4750371
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:51:41 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index e34696f..76a9311 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-mga (1:1.4.13.dfsg-2) UNRELEASED; urgency=low
+xserver-xorg-video-mga (1:1.4.13.dfsg-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -11,7 +11,7 @@ xserver-xorg-video-mga (1:1.4.13.dfsg-2) UNRELEASED; 
urgency=low
   * Wrap Depends/Provides/Suggests.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 15:19:45 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:51:41 +0100
 
 xserver-xorg-video-mga (1:1.4.13.dfsg-1) experimental; urgency=low
 

commit be0f63536f709e94846cb6755dcda8872140b9ca
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 10:14:48 2011 +0100

Keep repack.sh since repacking is needed.

diff --git a/debian/changelog b/debian/changelog
index f8d16d3..e34696f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,7 +5,7 @@ xserver-xorg-video-mga (1:1.4.13.dfsg-2) UNRELEASED; urgency=low
 - Use dh-autoreconf.
 - Bump xserver-xorg-dev build-dep for dh_xsf_substvars and xsf
   debhelper sequence.
-  * Remove xsfbs accordingly.
+  * Remove xsfbs (except repack.sh) accordingly.
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides/Suggests.
diff --git a/debian/xsfbs/repack.sh b/debian/xsfbs/repack.sh
new file mode 100755
index 000..5935cc9
--- /dev/null
+++ b/debian/xsfbs/repack.sh
@@ -0,0 +1,32 @@
+#!/bin/sh
+
+set -e
+
+if ! [ -d debian/prune ]; then
+   exit 0
+fi
+
+if [ x$1 != x--upstream-version ]; then
+   exit 1
+fi
+
+version=$2
+filename=$3
+
+if [ -z $version ] || ! [ -f $filename ]; then
+   exit 1
+fi
+
+dir=$(pwd)
+tempdir=$(mktemp -d)
+
+cd $tempdir
+tar xf $dir/$filename
+cat $dir/debian/prune/* | while read file; do rm -f */$file; done
+
+tar czf $dir/$filename *
+cd $dir
+rm -rf $tempdir
+echo Done pruning upstream tarball
+
+exit 0

commit 2ce0d7c262d738773ffd375f5f3c939bde77c08e
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:44:20 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit 55c0d4e3002297333eb49984d55bf78c40daa2be
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 15:33:46 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index b0d34b6..0c4d760 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-mga (1:1.4.13.dfsg-2) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides/Suggests.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 15:19:45 +0100
 
diff --git a/debian/control b/debian/control
index 94609f2..bdfd6ce 100644
--- a/debian/control
+++ b/debian/control
@@ -20,7 +20,7 @@ Build-Depends:
  x11proto-xf86dri-dev,
  quilt,
  xutils-dev (= 1:7.5+4)
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-mga
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-mga.git
 

commit d787ea9dbd4b25b3218455ffc214ea6293c4c4ee
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 15:33:26 2011 +0100

Wrap Depends/Provides/Suggests.

diff --git a/debian/changelog b/debian/changelog
index 4a2ad16..b0d34b6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ 

xserver-xorg-video-neomagic: Changes to 'refs/tags/xserver-xorg-video-neomagic-1_1.2.5-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-neomagic-1_1.2.5-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:52 +

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

iEYEABECAAYFAk1NVgwACgkQeGfVPHR5Nd32CQCcD3RE4zGHPWWm4pJaKDXdxD2P
wv4AoLlUjju3XKav85MUdNIwkR7j3HJA
=e528
-END PGP SIGNATURE-

Changes since xserver-xorg-video-neomagic-1_1.2.5-1:
Cyril Brulebois (12):
  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
  Add quilt build-dep for future use.
  Fix sequence ordering.
  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   |  103 
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 10 files changed, 42 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/e1pliye-0001lu...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 COPYING|   99 +++
 ChangeLog  |   45 +++
 Makefile.am|2 
 configure.ac   |2 
 debian/README.source   |   24 -
 debian/changelog   |   32 ++
 debian/compat  |2 
 debian/control |   23 -
 debian/copyright   |   29 ++
 debian/patches/series  |1 
 debian/rules   |  103 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 man/Makefile.am|   41 +--
 src/neo.h  |2 
 src/neo_2070.c |2 
 src/neo_2097.c |2 
 src/neo_2200.c |2 
 src/neo_driver.c   |   18 -
 20 files changed, 248 insertions(+), 1120 deletions(-)

New commits:
commit 20c907fbe347642995d2304e8d109e3d9c0dc084
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:52:11 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index c6f6b13..5701bfb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-neomagic (1:1.2.5-2) UNRELEASED; urgency=low
+xserver-xorg-video-neomagic (1:1.2.5-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -12,7 +12,7 @@ xserver-xorg-video-neomagic (1:1.2.5-2) UNRELEASED; 
urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 15:41:09 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:52:10 +0100
 
 xserver-xorg-video-neomagic (1:1.2.5-1) experimental; urgency=low
 

commit f4b9f41534b6dfa2613cca16484cc626541d
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:32:14 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 6d3aee833ee260ab9b525a6ed35943906d18295a
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:44:31 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 63d3106..3d192dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,4 +14,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit f0449d95e1a44a880fef8f8122ec445fc1903ee6
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:44:30 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index 5163eda..c6f6b13 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-neomagic (1:1.2.5-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 k...@debian.org  Thu, 03 Feb 2011 15:41:09 +0100
 
diff --git a/debian/control b/debian/control
index b768d52..12e4725 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Cyril Brulebois k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
+ quilt,
  pkg-config,
  xserver-xorg-dev (= 2:1.9.4),
  x11proto-video-dev,

commit 4a6fa6a5394ec2d50d6238f58614e1f97674e375
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 15:45:11 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 6c4899d..5163eda 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-neomagic (1:1.2.5-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 k...@debian.org  Thu, 03 Feb 2011 15:41:09 +0100
 
diff --git a/debian/control b/debian/control
index 178ffc9..b768d52 100644
--- a/debian/control
+++ b/debian/control
@@ -16,7 +16,7 @@ Build-Depends:
  x11proto-render-dev,
  x11proto-xext-dev,
  xutils-dev
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-neomagic
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-neomagic.git
 

commit f48da341882114a0d277065bd5913d503d5c763f
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 15:44:57 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 0fd0517..6c4899d 100644
--- a/debian/changelog
+++ 

xserver-xorg-video-nouveau: Changes to 'refs/tags/xserver-xorg-video-nouveau-1_0.0.16+git20101210+8bb8231-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-nouveau-1_0.0.16+git20101210+8bb8231-2' created by 
Cyril Brulebois k...@debian.org at 2011-02-05 13:52 +

Tagging upload of xserver-xorg-video-nouveau 1:0.0.16+git20101210+8bb8231-2 to 
unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NViwACgkQeGfVPHR5Nd1ZZgCdEI1vF14IgLr9xWkn/b8qw3p7
/UcAoJBQUw+DS148o4aHkyyKdNPlqONO
=ZJY+
-END PGP SIGNATURE-

Changes since xserver-xorg-video-nouveau-1_0.0.16+git20101210+8bb8231-1:
Cyril Brulebois (5):
  Switch to dh.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, Chris  Matthew!
  Fix failure to find ChangeLog.
  Upload to unstable

---
 debian/README.source   |   24 -
 debian/changelog   |   13 +
 debian/clean   |   20 -
 debian/compat  |2 
 debian/control |8 
 debian/rules   |   95 +--
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 9 files changed, 39 insertions(+), 1062 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/e1pliz0-0001uu...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 ChangeLog |  456 +
 Makefile.am   |2 
 configure.ac  |   12 
 debian/NEWS.Debian|7 
 debian/README.Debian  |9 
 debian/README.source  |   24 
 debian/changelog  |   50 
 debian/clean  |   20 
 debian/compat |2 
 debian/control|   12 
 debian/patches/03_work-around-exa-hangs.patch |   33 
 debian/patches/series |1 
 debian/rules  |   97 
 debian/watch  |2 
 debian/xserver-xorg-video-nouveau.docs|2 
 debian/xsfbs/repack.sh|   32 
 debian/xsfbs/xsfbs.mk |  285 
 debian/xsfbs/xsfbs.sh |  622 -
 man/nouveau.man   |   18 
 src/Makefile.am   |8 
 src/drmmode_display.c |  332 
 src/nouveau_class.h   |10049 ++
 src/nouveau_dri2.c|  310 
 src/nouveau_exa.c |  101 
 src/nouveau_local.h   |   11 
 src/nouveau_wfb.c |9 
 src/nouveau_xv.c  |   38 
 src/nv04_exa.c|   39 
 src/nv04_xv_blit.c|   11 
 src/nv10_exa.c|2 
 src/nv30_exa.c|2 
 src/nv30_xv_tex.c |   28 
 src/nv40_exa.c|2 
 src/nv40_xv_tex.c |   25 
 src/nv50_accel.c  |   41 
 src/nv50_exa.c|   22 
 src/nv50_xv.c |   52 
 src/nv_accel_common.c |   95 
 src/nv_const.h|8 
 src/nv_dma.c  |3 
 src/nv_driver.c   |  148 
 src/nv_include.h  |2 
 src/nv_proto.h|   12 
 src/nv_type.h |9 
 44 files changed, 11630 insertions(+), 1415 deletions(-)

New commits:
commit 7ff24bb5f935f62f8fbb067749fd4020ab24d6a0
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:52:43 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 1275093..d7d75c5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-nouveau (1:0.0.16+git20101210+8bb8231-2) UNRELEASED; 
urgency=low
+xserver-xorg-video-nouveau (1:0.0.16+git20101210+8bb8231-2) unstable; 
urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -9,7 +9,7 @@ xserver-xorg-video-nouveau (1:0.0.16+git20101210+8bb8231-2) 
UNRELEASED; urgency=
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, Chris  Matthew!
 
- -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 14:08:48 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:52:43 +0100
 
 xserver-xorg-video-nouveau (1:0.0.16+git20101210+8bb8231-1) experimental; 
urgency=low
 

commit 7e77e5ea6dac0928cb97d0511220bbcf02de66fd
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 15:11:23 2011 +0100

Fix failure to find ChangeLog.

Since we build out-of-tree, $(CURDIR) doesn't point to the top-level
but to the build directory, if it's not passed from the parent make.

This was done this way before switching to dh, keep on doing so.

diff --git a/debian/rules b/debian/rules
index a611eda..9a8530b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,5 +1,9 @@
 #!/usr/bin/make -f
 
+# Needed to find ChangeLog:
+override_dh_auto_configure:
+   dh_auto_configure -- CURDIR=$(CURDIR)
+
 # Install in debian/tmp to retain control through dh_install:
 override_dh_auto_install:
dh_auto_install --destdir=debian/tmp

commit 87608c1d292775fd9311a9b85f5e657efe0583df
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 14:43:38 2011 +0100

Update Uploaders list. Thanks, Chris  Matthew!

diff --git a/debian/changelog b/debian/changelog
index c466774..1275093 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ xserver-xorg-video-nouveau (1:0.0.16+git20101210+8bb8231-2) 
UNRELEASED; urgency=
 - Bump xserver-xorg-dev build-dep for dh_xsf_substvars and xsf
   debhelper sequence.
   * Remove xsfbs accordingly.
+  * Update Uploaders list. Thanks, Chris  Matthew!
 
  -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 14:08:48 +0100
 
diff --git a/debian/control b/debian/control
index 4af18e8..eeedf73 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 

xserver-xorg-video-openchrome: Changes to 'refs/tags/xserver-xorg-video-openchrome-1_0.2.904+svn891-1'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-openchrome-1_0.2.904+svn891-1' created by Cyril 
Brulebois k...@debian.org at 2011-02-05 13:53 +

Tagging upload of xserver-xorg-video-openchrome 1:0.2.904+svn891-1 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAk1NVkwACgkQeGfVPHR5Nd3+lwCgijQiGhoWcoDGCpU5HhYCrn7+
sK4An2bQFrj3/51yNK2i8fYSq+VTJnBc
=toMq
-END PGP SIGNATURE-

Changes since xserver-xorg-video-openchrome-1_0.2.904+svn858-1:
Cyril Brulebois (17):
  Cherry-pick r854 to fix initialization issues on amd64 introduced in 
r830, leading to system freeze (Closes: #597379). Many thanks to Nethanel Elzas 
for the actual testing.
  Set urgency to “high” accordingly.
  Add myself to Uploaders.
  Upload to unstable.
  Switch to UNRELEASED.
  Switch to dh.
  Make dh_lintian do the work for us.
  Use a .docs to get NEWS installed.
  Remove xsfbs accordingly.
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides.
  Merge branch 'debian-experimental' into debian-unstable
  Remove references to xsfbs.
  Fix typo.
  Remove patch (which was a cherry-pick).
  Add a placeholding series file.
  Upload to unstable

Julien Viard de Galbert (7):
  Documenting git-svn usage to fetch from upstream.
  Enabling pristine-tar
  Documenting git-svn usage to fetch from upstream.
  Enabling pristine-tar
  Merge remote branch 'trunk' into upstream-experimental
  Merge branch 'upstream-experimental' into debian-experimental
  Add changelog entries for upstream's changes

gang65 (12):
  Fix several typo in code comments
  Siragon ML-6200 laptop support
  update VX855 FIFO
  Fix bug #342 with TV out flickering
  Replace the deprecated functions with new ones
  Replace remaining  xalloc to malloc
  Change maximum line pitch and virtual height according to chipset
  Update 1024x600 modeline
  Add workaround for memory autodetection
  Enable new mode switch and panel support on K8M800 and VM800
  Merge VX900 branch to add basic VX900 support
  Fix type in VIASave

schlobinux (2):
  fix a typo and add a FIXME following the VX900 merge
  add VX900 to man page

---
 ChangeLog  |   66 +
 debian/README.VCS-source   |   82 ++
 debian/README.source   |   30 
 debian/changelog   |   46 +
 debian/compat  |2 
 debian/control |   23 
 debian/gbp.conf|6 
 debian/overrides   |5 
 debian/patches/series  |1 
 debian/rules   |   85 --
 debian/xserver-xorg-video-openchrome.docs  |1 
 debian/xserver-xorg-video-openchrome.install   |3 
 debian/xserver-xorg-video-openchrome.lintian-overrides |5 
 debian/xsfbs/repack.sh |   32 
 debian/xsfbs/xsfbs.mk  |  285 ---
 debian/xsfbs/xsfbs.sh  |  622 -
 src/openchrome.man |2 
 src/via.h  |2 
 src/via_accel.c|   46 -
 src/via_bandwidth.c|   52 +
 src/via_bios.h |4 
 src/via_crtc.c |7 
 src/via_cursor.c   |   20 
 src/via_dga.c  |6 
 src/via_dri.c  |   26 
 src/via_driver.c   |  177 +++-
 src/via_driver.h   |6 
 src/via_id.c   |4 
 src/via_id.h   |2 
 src/via_lvds.c |2 
 src/via_memcpy.c   |   10 
 src/via_mode.c |   26 
 src/via_mode.h |3 
 src/via_panel.c|   26 
 src/via_swov.c |2 
 src/via_swov.h |2 
 src/via_timing.h   |2 
 src/via_vbe.c  |4 
 src/via_video.c|   24 
 src/via_vt162x.c   |   46 -
 src/via_xvmc.c |   47 -
 41 files changed, 600 insertions(+), 1242 deletions(-)
---


-- 
To 

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

2011-02-05 Thread Cyril Brulebois
 ChangeLog  |  146 +++
 debian/README.VCS-source   |8 
 debian/README.source   |   30 
 debian/changelog   |   61 +
 debian/compat  |2 
 debian/control |   23 
 debian/overrides   |5 
 debian/patches/01-cherry-pick-r854.diff|   18 
 debian/patches/series  |2 
 debian/rules   |   85 --
 debian/xserver-xorg-video-openchrome.docs  |1 
 debian/xserver-xorg-video-openchrome.install   |3 
 debian/xserver-xorg-video-openchrome.lintian-overrides |5 
 debian/xsfbs/repack.sh |   32 
 debian/xsfbs/xsfbs.mk  |  285 ---
 debian/xsfbs/xsfbs.sh  |  622 -
 src/openchrome.man |   18 
 src/via.h  |   41 +
 src/via_accel.c|   90 +-
 src/via_bandwidth.c|   51 +
 src/via_bios.h |9 
 src/via_crtc.c |7 
 src/via_cursor.c   |   20 
 src/via_dga.c  |6 
 src/via_dri.c  |   30 
 src/via_driver.c   |  195 +++--
 src/via_driver.h   |9 
 src/via_i2c.c  |   15 
 src/via_id.c   |5 
 src/via_id.h   |2 
 src/via_lvds.c |2 
 src/via_memcpy.c   |   10 
 src/via_mode.c |   26 
 src/via_mode.h |5 
 src/via_panel.c|   26 
 src/via_swov.c |  308 +---
 src/via_swov.h |4 
 src/via_timing.h   |2 
 src/via_vbe.c  |4 
 src/via_video.c|   33 
 src/via_vt162x.c   |   46 -
 src/via_xvmc.c |   47 -
 42 files changed, 940 insertions(+), 1399 deletions(-)

New commits:
commit 4672251d2f10db3fed58d7e11b75e6e3209b64a1
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:53:15 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 3da695a..d9aca75 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-openchrome (1:0.2.904+svn891-1) UNRELEASED; urgency=low
+xserver-xorg-video-openchrome (1:0.2.904+svn891-1) unstable; urgency=low
 
   [ Julien Viard de Galbert ]
   * New upstream snapshot
@@ -32,7 +32,7 @@ xserver-xorg-video-openchrome (1:0.2.904+svn891-1) 
UNRELEASED; urgency=low
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
 
- -- Julien Viard de Galbert jul...@vdg.blogsite.org  Tue, 21 Dec 2010 
16:16:42 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:53:15 +0100
 
 xserver-xorg-video-openchrome (1:0.2.904+svn858-1) experimental; urgency=low
 

commit 3b7b61a2fa257c28382f8edaeebc8167f6e5e285
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:32:18 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 c64cf178567b0b696f40c7c7b11bd9047c535bbd
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 17:24:55 2011 +0100

Remove patch (which was a cherry-pick).

diff --git a/debian/patches/01-cherry-pick-r854.diff 
b/debian/patches/01-cherry-pick-r854.diff
deleted file mode 100644
index 12c042a..000
--- a/debian/patches/01-cherry-pick-r854.diff
+++ /dev/null
@@ -1,18 +0,0 @@
-From: Cyril Brulebois k...@debian.org
-Partially reverts r830:
-  http://svn.openchrome.org/trac/changeset/830/trunk
-  http://svn.openchrome.org/trac/changeset/854/trunk
 a/src/via_dri.c
-+++ b/src/via_dri.c
-@@ -267,11 +267,6 @@ VIADRIAgpInit(ScreenPtr pScreen, VIAPtr
- pVIADRI = pDRIInfo-devPrivate;
- pVia-agpSize = 0;
- 
--/* For AMD64 */
--#ifdef __x86_64__
--return FALSE;
--#endif
--
- if (drmAgpAcquire(pVia-drmFD)  0) {
- xf86DrvMsg(pScreen-myNum, X_ERROR, [drm] drmAgpAcquire failed %d\n,
- 

xserver-xorg-video-r128: Changes to 'refs/tags/xserver-xorg-video-r128-6.8.1-5'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-r128-6.8.1-5' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:53 +

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

iEYEABECAAYFAk1NVnIACgkQeGfVPHR5Nd02ywCgtfD9q0vDH4l9z925c2QgFc3p
0sYAoJCTDyQAaC5skOYVykuTaUfmakH2
=WL5N
-END PGP SIGNATURE-

Changes since xserver-xorg-video-r128-6.8.1-4:
Cyril Brulebois (10):
  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/Suggests.
  Bump Standards-Version to 3.9.1 (no changes needed).
  Merge branch 'debian-experimental' into debian-unstable
  Fix sequence ordering.
  Upload to unstable

---
 debian/README.source|   24 -
 debian/changelog|   16 
 debian/compat   |2 
 debian/control  |   25 -
 debian/rules|  106 -
 debian/watch|1 
 debian/xserver-xorg-video-r128.install  |1 
 debian/xserver-xorg-video-r128.manpages |1 
 debian/xsfbs/repack.sh  |   32 -
 debian/xsfbs/xsfbs.mk   |  285 --
 debian/xsfbs/xsfbs.sh   |  622 
 11 files changed, 46 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/e1plizt-0001e7...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 debian/README.source|   24 -
 debian/changelog|   23 +
 debian/compat   |2 
 debian/control  |   25 -
 debian/rules|  106 -
 debian/xserver-xorg-video-r128.install  |1 
 debian/xserver-xorg-video-r128.manpages |1 
 debian/xsfbs/repack.sh  |   32 -
 debian/xsfbs/xsfbs.mk   |  285 --
 debian/xsfbs/xsfbs.sh   |  622 
 10 files changed, 52 insertions(+), 1069 deletions(-)

New commits:
commit 18895ef0ac974b77872e7d5129d4f1793ffc94a4
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:53:53 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 9f67cda..4dfc770 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-r128 (6.8.1-5) UNRELEASED; urgency=low
+xserver-xorg-video-r128 (6.8.1-5) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -12,7 +12,7 @@ xserver-xorg-video-r128 (6.8.1-5) UNRELEASED; urgency=low
   * Wrap Depends/Provides/Suggests.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 15:49:47 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:53:53 +0100
 
 xserver-xorg-video-r128 (6.8.1-4) experimental; urgency=low
 

commit e01f2df571a23136a49caed5e9d52f56590cdde8
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:45:17 2011 +0100

Fix sequence ordering.

Since both the autoreconf and quilt sequences insert a command before
dh_auto_configure, it is important that we use the quilt one in the first
place, so that autoreconf is run on a patched tree. Ditto for dh_clean.

diff --git a/debian/rules b/debian/rules
index 6e46ae0..40dd7fc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -18,4 +18,4 @@ override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
 %:
-   dh $@ --with autoreconf,quilt,xsf --builddirectory=build/
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/

commit 6276f39f39ae6362ddce9499ae1c32c1af509132
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 15:56:38 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 28f76f7..9f67cda 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-r128 (6.8.1-5) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides/Suggests.
+  * Bump Standards-Version to 3.9.1 (no changes needed).
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 15:49:47 +0100
 
diff --git a/debian/control b/debian/control
index 79c264a..cd413e8 100644
--- a/debian/control
+++ b/debian/control
@@ -21,7 +21,7 @@ Build-Depends:
  x11proto-xf86dri-dev,
  quilt,
  xutils-dev
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-r128
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-r128.git
 

commit a2a78f97d738c7611eab4f582d73612c23c3b3a0
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 15:56:18 2011 +0100

Wrap Depends/Provides/Suggests.

diff --git a/debian/changelog b/debian/changelog
index f7345a9..28f76f7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-r128 (6.8.1-5) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides/Suggests.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 15:49:47 +0100
 
diff --git a/debian/control b/debian/control
index 61e2cca..79c264a 100644
--- a/debian/control
+++ b/debian/control
@@ -27,9 +27,14 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-r128.gi
 
 Package: xserver-xorg-video-r128
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
-Provides: ${xviddriver:Provides}
-Suggests: firmware-linux
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+ ${xviddriver:Depends},
+Provides:
+ ${xviddriver:Provides}
+Suggests:
+ firmware-linux
 Description: X.Org X server -- ATI r128 display driver
  This driver for the X.Org X server (see xserver-xorg for a further 
description)
  provides support for the ATI Rage 'r128' series.

commit 644887372c10a377230befb21ab1a4bb815ca878
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 15:55:04 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index 99ef20f..f7345a9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-r128 (6.8.1-5) UNRELEASED; urgency=low
 - Specify usr/share/man in .install, remove .manpages accordingly.
  

xserver-xorg-video-rendition: Changes to 'refs/tags/xserver-xorg-video-rendition-1_4.2.4-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-rendition-1_4.2.4-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:54 +

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

iEYEABECAAYFAk1NVoIACgkQeGfVPHR5Nd1VswCaA6ro0laMD03ug3+N91/FKmBb
hIcAoJW4XpCgsCxNspfjIG91Jcz7vOng
=A3Rk
-END PGP SIGNATURE-

Changes since xserver-xorg-video-rendition-1_4.2.4-1:
Cyril Brulebois (10):
  Mention upstream git URL in a comment.
  Switch to dh.
  Fix sequence ordering.
  Remove xsfbs accordingly.
  Update Uploaders list. Thanks, David  Brice!
  Remove long obsolete Replaces/Conflicts.
  Wrap Depends/Provides.
  Merge branch 'debian-experimental' into debian-unstable
  Keep repack.sh since repacking is needed.
  Upload to unstable

---
 debian/README.source  |   24 -
 debian/changelog  |   14 +
 debian/compat |2 
 debian/control|   20 -
 debian/rules  |  100 
 debian/watch  |1 
 debian/xsfbs/xsfbs.mk |  285 --
 debian/xsfbs/xsfbs.sh |  622 --
 8 files changed, 37 insertions(+), 1031 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/e1plia8-0001fs...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 .gitignore|   70 +
 COPYING   |   29 +-
 Makefile.am   |   16 -
 README|   74 ++---
 README.sgml   |  116 -
 configure.ac  |   17 -
 debian/README.source  |   24 -
 debian/changelog  |   26 ++
 debian/compat |2 
 debian/control|   22 -
 debian/rules  |  100 
 debian/xsfbs/xsfbs.mk |  285 --
 debian/xsfbs/xsfbs.sh |  622 --
 man/.cvsignore|2 
 man/Makefile.am   |   41 +--
 src/.cvsignore|6 
 src/rendition.h   |3 
 src/vmodes.c  |4 
 18 files changed, 199 insertions(+), 1260 deletions(-)

New commits:
commit 4106f7180824e9957ad5f9568f8a2fc7031138c9
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:54:09 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index a29dff2..778616d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-rendition (1:4.2.4-2) UNRELEASED; urgency=low
+xserver-xorg-video-rendition (1:4.2.4-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -10,7 +10,7 @@ xserver-xorg-video-rendition (1:4.2.4-2) UNRELEASED; 
urgency=low
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
 
- -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 16:00:48 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:54:09 +0100
 
 xserver-xorg-video-rendition (1:4.2.4-1) experimental; urgency=low
 

commit 21d962013694948a5674048667b3e241d3a636b7
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 10:15:01 2011 +0100

Keep repack.sh since repacking is needed.

diff --git a/debian/changelog b/debian/changelog
index c62f6f9..a29dff2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,7 +5,7 @@ xserver-xorg-video-rendition (1:4.2.4-2) UNRELEASED; urgency=low
 - Use dh-autoreconf.
 - Bump xserver-xorg-dev build-dep for dh_xsf_substvars and xsf
   debhelper sequence.
-  * Remove xsfbs accordingly.
+  * Remove xsfbs (except repack.sh) accordingly.
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
diff --git a/debian/xsfbs/repack.sh b/debian/xsfbs/repack.sh
new file mode 100755
index 000..5935cc9
--- /dev/null
+++ b/debian/xsfbs/repack.sh
@@ -0,0 +1,32 @@
+#!/bin/sh
+
+set -e
+
+if ! [ -d debian/prune ]; then
+   exit 0
+fi
+
+if [ x$1 != x--upstream-version ]; then
+   exit 1
+fi
+
+version=$2
+filename=$3
+
+if [ -z $version ] || ! [ -f $filename ]; then
+   exit 1
+fi
+
+dir=$(pwd)
+tempdir=$(mktemp -d)
+
+cd $tempdir
+tar xf $dir/$filename
+cat $dir/debian/prune/* | while read file; do rm -f */$file; done
+
+tar czf $dir/$filename *
+cd $dir
+rm -rf $tempdir
+echo Done pruning upstream tarball
+
+exit 0

commit acd6cadd6098152054420a8e9c931ad2c35df8da
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 16:17:35 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index c360632..c62f6f9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-rendition (1:4.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 k...@debian.org  Thu, 03 Feb 2011 16:00:48 +0100
 
diff --git a/debian/control b/debian/control
index 8352817..61bbf6f 100644
--- a/debian/control
+++ b/debian/control
@@ -21,8 +21,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-renditi
 
 Package: xserver-xorg-video-rendition
 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 -- Rendition display driver
  This package provides the driver for the Rendition Verite family of chipsets,
  commonly found in 3D accelerators such as the Creative 3D Blaster.

commit 7074f03e04c7b1048af741816eb3408c4b71ffc7
Author: Cyril Brulebois k...@debian.org
Date:   Thu Feb 3 16:17:13 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index 9df1461..c360632 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ xserver-xorg-video-rendition (1:4.2.4-2) UNRELEASED; urgency=low
   debhelper sequence.
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
+  * Remove long obsolete Replaces/Conflicts.
 
  -- Cyril Brulebois k...@debian.org  Thu, 03 Feb 2011 16:00:48 +0100
 
diff --git a/debian/control b/debian/control
index 8a6e332..8352817 100644
--- a/debian/control
+++ b/debian/control
@@ -23,8 +23,6 @@ Package: xserver-xorg-video-rendition
 

xserver-xorg-video-s3: Changes to 'refs/tags/xserver-xorg-video-s3-1_0.6.3-4'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-s3-1_0.6.3-4' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:54 +

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

iEYEABECAAYFAk1NVpEACgkQeGfVPHR5Nd2MzgCdHghm+cTqdBvvKcNuAumQ2K2Q
w1UAoIVxrLVtesSfXaIxeQOUNIDhlMep
=UJiE
-END PGP SIGNATURE-

Changes since xserver-xorg-video-s3-1_0.6.3-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).
  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   |   16 +
 debian/compat  |2 
 debian/control |   23 -
 debian/patches/series  |1 
 debian/rules   |  103 
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 10 files changed, 42 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/e1pliaq-0001tf...@alioth.debian.org



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

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

New commits:
commit 8005c067cf12f5274ed93ab2e56770c6d84c7bed
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:54:24 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 725d5fa..21c41d0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-s3 (1:0.6.3-4) UNRELEASED; urgency=low
+xserver-xorg-video-s3 (1:0.6.3-4) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -12,7 +12,7 @@ xserver-xorg-video-s3 (1:0.6.3-4) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.9.1 (no changes needed).
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 05:08:00 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:54:24 +0100
 
 xserver-xorg-video-s3 (1:0.6.3-3) experimental; urgency=low
 

commit 25b02da3886376662bf22f54a47fdd6f27277d41
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:32:19 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 1ad1fd9393cdf18f31816a29f283a16b3cfbef39
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 11:46:35 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index 6f534d9..725d5fa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xserver-xorg-video-s3 (1:0.6.3-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 k...@debian.org  Fri, 04 Feb 2011 05:08:00 +0100
 
diff --git a/debian/control b/debian/control
index 6d2dcdb..6723682 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Cyril Brulebois k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
+ quilt,
  pkg-config,
  xserver-xorg-dev (= 2:1.9.4),
  x11proto-video-dev,

commit ab399329d2b0b2aad0139f2d41a67b3a9482a6d9
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:11:09 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index d2931c2..6f534d9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-s3 (1:0.6.3-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 k...@debian.org  Fri, 04 Feb 2011 05:08:00 +0100
 
diff --git a/debian/control b/debian/control
index 52bbae8..6d2dcdb 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends:
  x11proto-render-dev,
  x11proto-xext-dev,
  xutils-dev
-Standards-Version: 3.8.3
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-s3
 Vcs-Browser: http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-s3.git
 

commit 0e54505e3070c7fc110b4720618ee57588e9fe94
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:10:35 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 1042fa6..d2931c2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-s3 (1:0.6.3-4) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 05:08:00 +0100
 
diff --git a/debian/control b/debian/control
index 34ea764..52bbae8 100644
--- a/debian/control
+++ b/debian/control
@@ -21,8 +21,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-s3.git
 
 Package: xserver-xorg-video-s3
 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 -- legacy S3 display driver
  This package provides the driver for certain legacy S3 video card chipsets,
  including the Trio64 and 96x cards.  It does not provide support for

commit 13ae9960baf95b0f776881ea5da6673cab1cbc77
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:10:17 2011 +0100


xserver-xorg-video-s3virge: Changes to 'refs/tags/xserver-xorg-video-s3virge-1_1.10.4-4'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-s3virge-1_1.10.4-4' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:54 +

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

iEYEABECAAYFAk1NVqUACgkQeGfVPHR5Nd3BaQCfU6Mr6f+b3T7eOPXdB07KcDtN
J9gAoJD1FYZNumBaFrWLENHviUuwAIjQ
=kFfN
-END PGP SIGNATURE-

Changes since xserver-xorg-video-s3virge-1_1.10.4-3:
Cyril Brulebois (9):
  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   |   15 +
 debian/compat  |2 
 debian/control |   22 -
 debian/rules   |  103 
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 9 files changed, 39 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/e1pliag-000259...@alioth.debian.org



xserver-xorg-video-s3virge: 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   |  103 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 8 files changed, 44 insertions(+), 1067 deletions(-)

New commits:
commit 2e737a11e4647513f6db8fa9a3cf3b7fe4063d70
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:54:43 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 2c740a5..786e04f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-s3virge (1:1.10.4-4) UNRELEASED; urgency=low
+xserver-xorg-video-s3virge (1:1.10.4-4) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -11,7 +11,7 @@ xserver-xorg-video-s3virge (1:1.10.4-4) UNRELEASED; 
urgency=low
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 05:13:17 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:54:43 +0100
 
 xserver-xorg-video-s3virge (1:1.10.4-3) experimental; urgency=low
 

commit 7acef03d74e42df9e84a2df1b75a12e1c43fc4d5
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:18:07 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index e97d060..2c740a5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-s3virge (1:1.10.4-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 k...@debian.org  Fri, 04 Feb 2011 05:13:17 +0100
 
diff --git a/debian/control b/debian/control
index 57b8730..92610e8 100644
--- a/debian/control
+++ b/debian/control
@@ -16,7 +16,7 @@ Build-Depends:
  x11proto-randr-dev,
  x11proto-render-dev,
  xutils-dev
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-s3virge
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-s3virge.git
 

commit 0de23f82124b3d298fe7c3758ab8231bd88c5ad9
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:17:54 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 498eebb..e97d060 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-s3virge (1:1.10.4-4) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 05:13:17 +0100
 
diff --git a/debian/control b/debian/control
index 1a39ba8..57b8730 100644
--- a/debian/control
+++ b/debian/control
@@ -22,8 +22,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-s3virge
 
 Package: xserver-xorg-video-s3virge
 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 -- S3 ViRGE display driver
  This package provides the driver for the S3 ViRGE and Trio3D family
  of chipsets.  It does not support Trio64 or S3 96x cards; support for

commit a1d28758854b67af1521b376af67e9381853a20b
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:17:37 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index bfd34e4..498eebb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ xserver-xorg-video-s3virge (1:1.10.4-4) UNRELEASED; urgency=low
   debhelper sequence.
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
+  * Remove long obsolete Replaces/Conflicts.
 
  -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 05:13:17 +0100
 
diff --git a/debian/control b/debian/control
index 3311399..1a39ba8 100644
--- a/debian/control
+++ b/debian/control
@@ -24,8 +24,6 @@ Package: xserver-xorg-video-s3virge
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
 Provides: ${xviddriver:Provides}
-Replaces: xserver-xorg ( 6.8.2-35), xserver-xorg-driver-s3virge
-Conflicts: xserver-xorg-driver-s3virge
 Description: X.Org X server -- S3 ViRGE display driver
  This package provides the driver for the S3 ViRGE and Trio3D family
  of chipsets.  It does not support Trio64 or S3 96x cards; support for

commit 809ff0c1a718b16377a63805d27737067fbb
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:17:08 2011 +0100

Update Uploaders list. Thanks, David  Brice!

diff --git 

xserver-xorg-video-savage: Changes to 'refs/tags/xserver-xorg-video-savage-1_2.3.2-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-savage-1_2.3.2-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:55 +

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

iEYEABECAAYFAk1NVrYACgkQeGfVPHR5Nd3AfQCbBFc3eyqnLHkMK0iuw7gKBvwo
QuYAoIK++shuArlv7fHnEsJSbZF0Gnj8
=Lvif
-END PGP SIGNATURE-

Changes since xserver-xorg-video-savage-1_2.3.2-1:
Cyril Brulebois (9):
  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   |   15 +
 debian/compat  |2 
 debian/control |   22 -
 debian/rules   |  103 
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 9 files changed, 39 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/e1plib7-0002j7...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 .gitignore |   78 ++
 COPYING|  118 -
 ChangeLog  |  229 ++
 Makefile.am|   12 
 configure.ac   |   50 +--
 debian/README.source   |   24 -
 debian/changelog   |   28 ++
 debian/compat  |2 
 debian/control |   24 -
 debian/copyright   |   71 +
 debian/rules   |  103 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 man/Makefile.am|   59 +---
 man/savage.man |1 
 src/savage_driver.c|3 
 src/savage_exa.c   |4 
 src/savage_video.c |   13 -
 19 files changed, 613 insertions(+), 1145 deletions(-)

New commits:
commit 1b49cc8850874ddd6cf95a453c0548cd0fce1ce0
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:55:01 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index d2cbfdb..9ec59a0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-savage (1:2.3.2-2) UNRELEASED; urgency=low
+xserver-xorg-video-savage (1:2.3.2-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -11,7 +11,7 @@ xserver-xorg-video-savage (1:2.3.2-2) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 05:21:22 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:55:01 +0100
 
 xserver-xorg-video-savage (1:2.3.2-1) experimental; urgency=low
 

commit 2d4b214c56b6796c3a64da6db901fe26efdd37ca
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:26:14 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 636ad40..d2cbfdb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-savage (1:2.3.2-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 k...@debian.org  Fri, 04 Feb 2011 05:21:22 +0100
 
diff --git a/debian/control b/debian/control
index 2b16568..cdf07ed 100644
--- a/debian/control
+++ b/debian/control
@@ -20,7 +20,7 @@ Build-Depends:
  x11proto-xf86dri-dev,
  quilt,
  xutils-dev (= 1:7.5+4),
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-savage
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-savage.git
 

commit c2abde0ff4c6cd3781db67071210fe43b029b6cf
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:25:58 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 0a1a0e2..636ad40 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-savage (1:2.3.2-2) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 05:21:22 +0100
 
diff --git a/debian/control b/debian/control
index 351408d..2b16568 100644
--- a/debian/control
+++ b/debian/control
@@ -26,8 +26,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-savage.
 
 Package: xserver-xorg-video-savage
 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 -- Savage display driver
  This package provides the driver for the S3/VIA Savage/ProSavage/Twister 
family
  of chipsets.

commit 298d4904f18aef19ea97273d029365ad8a95f4f2
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:25:35 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index 76f0099..0a1a0e2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ xserver-xorg-video-savage (1:2.3.2-2) UNRELEASED; urgency=low
   debhelper sequence.
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
+  * Remove long obsolete Replaces/Conflicts.
 
  -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 05:21:22 +0100
 
diff --git a/debian/control b/debian/control
index c1004aa..351408d 100644
--- a/debian/control
+++ b/debian/control
@@ -28,8 +28,6 @@ Package: xserver-xorg-video-savage
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
 Provides: ${xviddriver:Provides}
-Replaces: xserver-xorg ( 6.8.2-35), xserver-xorg-driver-savage
-Conflicts: xserver-xorg-driver-savage
 Description: X.Org X server -- Savage display driver

xserver-xorg-video-siliconmotion: Changes to 'refs/tags/xserver-xorg-video-siliconmotion-1_1.7.4-3'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-siliconmotion-1_1.7.4-3' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:55 +

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

iEYEABECAAYFAk1NVtEACgkQeGfVPHR5Nd2nFgCbBdjZXAr5iK6BubrfgPt5X0YJ
KKUAoLKIEQh+apHHOypZTlVHJvmwGlX7
=Pe+A
-END PGP SIGNATURE-

Changes since xserver-xorg-video-siliconmotion-1_1.7.4-2:
Cyril Brulebois (9):
  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   |   15 +
 debian/compat  |2 
 debian/control |   22 -
 debian/rules   |  103 
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 9 files changed, 39 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/e1plibt-0002rt...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 .gitignore|   73 +
 ChangeLog |  132 ++
 Makefile.am   |   11 
 configure.ac  |   22 
 debian/README.source  |   24 
 debian/changelog  |   35 
 debian/compat |2 
 debian/control|   22 
 debian/gbp.conf   |4 
 debian/patches/01_siliconmotion_rotate_option_disables_randr.diff |   21 
 debian/patches/series |1 
 debian/rules  |  103 -
 debian/xsfbs/repack.sh|   32 
 debian/xsfbs/xsfbs.mk |  285 
 debian/xsfbs/xsfbs.sh |  622 
--
 man/Makefile.am   |   45 
 src/Makefile.am   |4 
 src/smi.h |2 
 src/smi_video.c   |   13 
 19 files changed, 303 insertions(+), 1150 deletions(-)

New commits:
commit 0db0a00f3225686440840f13bc1148a9d812d5fe
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:55:28 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index e31e6f4..2d8eafa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-siliconmotion (1:1.7.4-3) UNRELEASED; urgency=low
+xserver-xorg-video-siliconmotion (1:1.7.4-3) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -11,7 +11,7 @@ xserver-xorg-video-siliconmotion (1:1.7.4-3) UNRELEASED; 
urgency=low
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 05:30:26 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:55:28 +0100
 
 xserver-xorg-video-siliconmotion (1:1.7.4-2) experimental; urgency=low
 

commit f2847d8d469809f0b1d3fe435e1f871080976939
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:32:56 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index cfe6327..e31e6f4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-siliconmotion (1:1.7.4-3) 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 k...@debian.org  Fri, 04 Feb 2011 05:30:26 +0100
 
diff --git a/debian/control b/debian/control
index e4c7bc0..8f5f3a4 100644
--- a/debian/control
+++ b/debian/control
@@ -16,7 +16,7 @@ Build-Depends:
  x11proto-render-dev,
  quilt,
  xutils-dev
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Vcs-Git: 
git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-siliconmotion
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-siliconmotion.git
 

commit 95b6c9219483eff1bdc292839cd40a04641fe4a5
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:32:38 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 3a38641..cfe6327 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-siliconmotion (1:1.7.4-3) UNRELEASED; 
urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 05:30:26 +0100
 
diff --git a/debian/control b/debian/control
index 844c585..e4c7bc0 100644
--- a/debian/control
+++ b/debian/control
@@ -22,8 +22,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-silicon
 
 Package: xserver-xorg-video-siliconmotion
 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 -- SiliconMotion display driver
  This package provides the driver for the SiliconMotion Lynx and Cougar family
  of chipsets, commonly found in laptops.

commit c795de30e74731e710cd0724be824614d60109a5
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:32:21 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index e672f74..3a38641 100644
--- 

xserver-xorg-video-sis: Changes to 'refs/tags/xserver-xorg-video-sis-1_0.10.3-3'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-sis-1_0.10.3-3' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:55 +

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

iEYEABECAAYFAk1NVuUACgkQeGfVPHR5Nd0uSwCdHvrxH7v/FrO9nZRMcLN66Izu
1t0AoJi+qG/2KQ2FsiEgpTdAeLq58MDc
=YZFR
-END PGP SIGNATURE-

Changes since xserver-xorg-video-sis-1_0.10.3-2:
Cyril Brulebois (9):
  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   |   15 +
 debian/compat  |2 
 debian/control |   22 -
 debian/rules   |  108 
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 9 files changed, 39 insertions(+), 1072 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/e1plibj-0002vm...@alioth.debian.org



xserver-xorg-video-sis: 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   |  108 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 8 files changed, 44 insertions(+), 1072 deletions(-)

New commits:
commit e90f52fcf5a5b6b40ecc5051f2124fa64f7ff4c3
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:55:47 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 6356070..e5eac8c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-sis (1:0.10.3-3) UNRELEASED; urgency=low
+xserver-xorg-video-sis (1:0.10.3-3) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -11,7 +11,7 @@ xserver-xorg-video-sis (1:0.10.3-3) UNRELEASED; urgency=low
   * Wrap Depends/Provides.
   * Bump Standards-Version to 3.9.1 (no changes needed).
 
- -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 05:45:05 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:55:47 +0100
 
 xserver-xorg-video-sis (1:0.10.3-2) experimental; urgency=low
 

commit f91a33556f23c4350254502bbb8fcf6fe36fdb0f
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:47:14 2011 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 5802078..6356070 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-sis (1:0.10.3-3) 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 k...@debian.org  Fri, 04 Feb 2011 05:45:05 +0100
 
diff --git a/debian/control b/debian/control
index 7cd28a0..59cdd82 100644
--- a/debian/control
+++ b/debian/control
@@ -22,7 +22,7 @@ Build-Depends:
  x11proto-xf86dri-dev,
  quilt,
  xutils-dev (= 1:7.5+1),
-Standards-Version: 3.9.0
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-sis
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-sis.git
 

commit 888a877345ade54a2dc0dd2d79f032793a48c3c2
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:47:00 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index 016877f..5802078 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-sis (1:0.10.3-3) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 05:45:05 +0100
 
diff --git a/debian/control b/debian/control
index 9bdeab4..7cd28a0 100644
--- a/debian/control
+++ b/debian/control
@@ -28,8 +28,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-sis.git
 
 Package: xserver-xorg-video-sis
 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 -- SiS display driver
  This package provides the driver for all SiS and XGI Volari cards.
  .

commit 9cffd46963b5a0a1c2dd422ccef4fe4650cd7a03
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:46:42 2011 +0100

Remove long obsolete Replaces/Conflicts.

diff --git a/debian/changelog b/debian/changelog
index a15d2ca..016877f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ xserver-xorg-video-sis (1:0.10.3-3) UNRELEASED; urgency=low
   debhelper sequence.
   * Remove xsfbs accordingly.
   * Update Uploaders list. Thanks, David  Brice!
+  * Remove long obsolete Replaces/Conflicts.
 
  -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 05:45:05 +0100
 
diff --git a/debian/control b/debian/control
index a2af7fb..9bdeab4 100644
--- a/debian/control
+++ b/debian/control
@@ -30,8 +30,6 @@ Package: xserver-xorg-video-sis
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
 Provides: ${xviddriver:Provides}
-Replaces: xserver-xorg ( 6.8.2-35), xserver-xorg-driver-sis
-Conflicts: xserver-xorg-driver-sis
 Description: X.Org X server -- SiS display driver
  This package provides the driver for all SiS and XGI Volari cards.
  .

commit a9d90c75cb2899016aa2a1271f5a7d8f49e806d4
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 05:46:26 2011 +0100

Update Uploaders list. Thanks, David  Brice!

diff --git a/debian/changelog b/debian/changelog
index 4ba6d0e..a15d2ca 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,7 @@ xserver-xorg-video-sis (1:0.10.3-3) UNRELEASED; urgency=low
 - Bump 

xserver-xorg-video-sisusb: Changes to 'refs/tags/xserver-xorg-video-sisusb-1_0.9.4-2'

2011-02-05 Thread Cyril Brulebois
Tag 'xserver-xorg-video-sisusb-1_0.9.4-2' created by Cyril Brulebois 
k...@debian.org at 2011-02-05 13:56 +

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

iEYEABECAAYFAk1NVvQACgkQeGfVPHR5Nd2+yQCgm5Wj7SkdFdMNt2mIuDCcsdzy
rA8An3E6EgpHW6dlO2vqF650cSgwsdIP
=4HLp
-END PGP SIGNATURE-

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

---
 ChangeLog  |  544 ++
 debian/README.source   |   24 -
 debian/changelog   |   15 +
 debian/compat  |2 
 debian/control |   21 -
 debian/patches/series  |1 
 debian/rules   |  103 
 debian/watch   |1 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 11 files changed, 584 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/e1plibx-0002yc...@alioth.debian.org



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

2011-02-05 Thread Cyril Brulebois
 .gitignore |   70 +
 COPYING|   58 +++-
 ChangeLog  |  106 
 Makefile.am|   11 
 configure.ac   |   14 -
 debian/README.source   |   24 -
 debian/changelog   |   27 ++
 debian/compat  |2 
 debian/control |   23 -
 debian/patches/series  |1 
 debian/rules   |  103 
 debian/xsfbs/repack.sh |   32 --
 debian/xsfbs/xsfbs.mk  |  285 --
 debian/xsfbs/xsfbs.sh  |  622 -
 man/.gitignore |2 
 man/Makefile.am|   41 +--
 src/.gitignore |6 
 src/sisusb_driver.c|1 
 18 files changed, 309 insertions(+), 1119 deletions(-)

New commits:
commit 1424e7870ede3fe722a634b8ca09ff8df53fdda9
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 14:56:03 2011 +0100

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 28bf78f..1dcf2bd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-sisusb (1:0.9.4-2) UNRELEASED; urgency=low
+xserver-xorg-video-sisusb (1:0.9.4-2) unstable; urgency=low
 
   * Switch to dh:
 - Use debhelper 8.
@@ -11,7 +11,7 @@ xserver-xorg-video-sisusb (1:0.9.4-2) UNRELEASED; urgency=low
   * Update Uploaders list. Thanks, David  Brice!
   * Add quilt build-dep for future use.
 
- -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 06:01:22 +0100
+ -- Cyril Brulebois k...@debian.org  Sat, 05 Feb 2011 14:56:02 +0100
 
 xserver-xorg-video-sisusb (1:0.9.4-1) experimental; urgency=low
 

commit 3856ecfe85ae63d0f47c84b34c570be24be011b8
Author: Cyril Brulebois k...@debian.org
Date:   Sat Feb 5 09:32:21 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 34f6d65a50767aa085c6a9a98ea66eb2bf112050
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 06:27:57 2011 +0100

Add quilt build-dep for future use.

diff --git a/debian/changelog b/debian/changelog
index 2b4d6e6..28bf78f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xserver-xorg-video-sisusb (1:0.9.4-2) UNRELEASED; urgency=low
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
   * Update Uploaders list. Thanks, David  Brice!
+  * Add quilt build-dep for future use.
 
  -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 06:01:22 +0100
 
diff --git a/debian/control b/debian/control
index 85fdb19..c24422d 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Cyril Brulebois k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
+ quilt,
  pkg-config,
  xserver-xorg-dev (= 2:1.9.4),
  x11proto-video-dev,

commit 8217b4ab379ab683ecde51a17efd3a5576235f34
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 06:05:04 2011 +0100

Update Uploaders list. Thanks, David  Brice!

diff --git a/debian/changelog b/debian/changelog
index 50dd23f..2b4d6e6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xserver-xorg-video-sisusb (1:0.9.4-2) UNRELEASED; urgency=low
   * Remove xsfbs accordingly.
   * Remove long obsolete Replaces/Conflicts.
   * Wrap Depends/Provides.
+  * Update Uploaders list. Thanks, David  Brice!
 
  -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 06:01:22 +0100
 
diff --git a/debian/control b/debian/control
index 6faf402..85fdb19 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: xserver-xorg-video-sisusb
 Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force debian-x@lists.debian.org
-Uploaders: David Nusinow dnusi...@debian.org, Brice Goglin 
bgog...@debian.org, Cyril Brulebois k...@debian.org
+Uploaders: Cyril Brulebois k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,

commit 7b6fc7a4b047df114b648bb1f3b72071cb30558e
Author: Cyril Brulebois k...@debian.org
Date:   Fri Feb 4 06:04:30 2011 +0100

Wrap Depends/Provides.

diff --git a/debian/changelog b/debian/changelog
index e380687..50dd23f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ xserver-xorg-video-sisusb (1:0.9.4-2) UNRELEASED; urgency=low
   debhelper sequence.
   * Remove xsfbs accordingly.
   * Remove long obsolete Replaces/Conflicts.
+  * Wrap Depends/Provides.
 
  -- Cyril Brulebois k...@debian.org  Fri, 04 Feb 2011 06:01:22 +0100
 
diff --git a/debian/control b/debian/control
index 5d00020..6faf402 100644
--- a/debian/control
+++ b/debian/control
@@ -22,8 +22,12 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-sisusb.
 
 Package: xserver-xorg-video-sisusb
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
-Provides: ${xviddriver:Provides}
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+ ${xviddriver:Depends},
+Provides:
+ ${xviddriver:Provides}
 Description: 

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 
k...@debian.org 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



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 k...@debian.org
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 k...@debian.org  Fri, 04 Feb 2011 06:13:56 +0100
+ -- Cyril Brulebois k...@debian.org  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 k...@debian.org
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 k...@debian.org
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 k...@debian.org  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 ju...@debian.org, Cyril Brulebois 
k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
+ quilt,
  xutils-dev,
  pkg-config,
  xserver-xorg-dev (= 2:1.9.4),

commit c2e21121484b40e98c07069c9d45cb0f7e03024f
Author: Cyril Brulebois k...@debian.org
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 k...@debian.org  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 k...@debian.org
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 k...@debian.org  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 k...@debian.org
Date:   Fri Feb 4 06:16:42 2011 +0100

   

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 
k...@debian.org 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-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 k...@debian.org
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 k...@debian.org  Fri, 04 Feb 2011 06:23:22 +0100
+ -- Cyril Brulebois k...@debian.org  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 k...@debian.org
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 k...@debian.org
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 k...@debian.org  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 ju...@debian.org, Cyril Brulebois 
k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
+ quilt,
  xutils-dev,
  pkg-config,
  xserver-xorg-dev (= 2:1.9.4),

commit f8d4f5aa450323f93c89b8d6c6b8b684538e52d6
Author: Cyril Brulebois k...@debian.org
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 k...@debian.org  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 k...@debian.org
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 k...@debian.org  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 k...@debian.org
Date:   Fri Feb 4 06:30:52 2011 +0100

Wrap 

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 
k...@debian.org 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-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 k...@debian.org
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 k...@debian.org  Fri, 04 Feb 2011 06:37:13 +0100
+ -- Cyril Brulebois k...@debian.org  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 k...@debian.org
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 k...@debian.org
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 k...@debian.org  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 ju...@debian.org, Cyril Brulebois 
k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
+ quilt,
  xutils-dev,
  pkg-config,
  xserver-xorg-dev (= 2:1.9.4),

commit a482d26fbd7c503c3b35fd8acada7ca9f5f477b1
Author: Cyril Brulebois k...@debian.org
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 k...@debian.org  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 k...@debian.org
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 k...@debian.org  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 k...@debian.org
Date:   Fri Feb 4 06:41:15 2011 +0100

Wrap 

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 
k...@debian.org 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-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 k...@debian.org
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 k...@debian.org  Fri, 04 Feb 2011 06:45:51 +0100
+ -- Cyril Brulebois k...@debian.org  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 k...@debian.org
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 k...@debian.org  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 k...@debian.org
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 k...@debian.org  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 k...@debian.org
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 k...@debian.org  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 k...@debian.org
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 

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 
k...@debian.org 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-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 k...@debian.org
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 k...@debian.org  Fri, 04 Feb 2011 06:56:27 +0100
+ -- Cyril Brulebois k...@debian.org  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 k...@debian.org
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 k...@debian.org
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 k...@debian.org  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 k...@debian.org
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 k...@debian.org  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 k...@debian.org
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 k...@debian.org  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 

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 
k...@debian.org 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-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 k...@debian.org
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 k...@debian.org  Fri, 04 Feb 2011 07:08:36 +0100
+ -- Cyril Brulebois k...@debian.org  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 k...@debian.org
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 k...@debian.org
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 k...@debian.org  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 ju...@debian.org, Cyril Brulebois 
k...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-autoreconf,
+ quilt,
  xutils-dev,
  pkg-config,
  xserver-xorg-dev (= 2:1.9.4),

commit 1e968162b019b94073f8d2ad50b8b3f3677b99d3
Author: Cyril Brulebois k...@debian.org
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 k...@debian.org  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 k...@debian.org
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 k...@debian.org  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 k...@debian.org
Date:   Fri Feb 4 07:17:33 2011 +0100

Wrap 

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 
k...@debian.org 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-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 k...@debian.org
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 k...@debian.org  Fri, 04 Feb 2011 07:26:45 +0100
+ -- Cyril Brulebois k...@debian.org  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 k...@debian.org
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 k...@debian.org  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 k...@debian.org
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 k...@debian.org  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 k...@debian.org
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 k...@debian.org  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 k...@debian.org
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; 

  1   2   >