x11proto-video: Changes to 'debian-unstable'

2016-05-13 Thread Julien Cristau
 debian/changelog  |6 
 debian/xsfbs/xsfbs.mk |  310 -
 debian/xsfbs/xsfbs.sh |  900 --
 3 files changed, 6 insertions(+), 1210 deletions(-)

New commits:
commit 2006bbe06d22c7ea6ca6a7cb54485b6eeea8d005
Author: Julien Cristau 
Date:   Fri May 13 14:41:48 2016 +0200

Delete now-unused debian/xsfbs/

diff --git a/debian/changelog b/debian/changelog
index ccaa570..becae78 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+x11proto-video (2.3.3-2) UNRELEASED; urgency=medium
+
+  * Delete now-unused debian/xsfbs/
+
+ -- Julien Cristau   Fri, 13 May 2016 14:41:36 +0200
+
 x11proto-video (2.3.3-1) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/xsfbs/xsfbs.mk b/debian/xsfbs/xsfbs.mk
deleted file mode 100755
index 6582a42..000
--- a/debian/xsfbs/xsfbs.mk
+++ /dev/null
@@ -1,310 +0,0 @@
-#!/usr/bin/make -f
-
-# Debian X Strike Force Build System (XSFBS): Make portion
-
-# Copyright 1996 Stephen Early
-# Copyright 1997 Mark Eichin
-# Copyright 1998-2005, 2007 Branden Robinson
-# Copyright 2005 David Nusinow
-#
-# Licensed under the GNU General Public License, version 2.  See the file
-# /usr/share/common-licenses/GPL or .
-
-# Originally by Stephen Early 
-# Modified by Mark W. Eichin 
-# Modified by Adam Heath 
-# Modified by Branden Robinson 
-# Modified by Fabio Massimo Di Nitto 
-# Modified by David Nusinow 
-# Acknowledgements to Manoj Srivastava.
-
-# Pass $(DH_OPTIONS) into the environment for debhelper's benefit.
-export DH_OPTIONS
-
-# force quilt to not use ~/.quiltrc
-QUILT = quilt --quiltrc /dev/null
-# force QUILT_PATCHES to the default in case it is exported in the environment
-QUILT_PATCHES = patches/
-
-# Set up parameters for the upstream build environment.
-
-# Determine (source) package name from Debian changelog.
-SOURCE_NAME:=$(shell dpkg-parsechangelog -ldebian/changelog \
-| grep '^Source:' | awk '{print $$2}')
-
-# Determine package version from Debian changelog.
-SOURCE_VERSION:=$(shell dpkg-parsechangelog -ldebian/changelog \
-| grep '^Version:' | awk '{print $$2}')
-
-# Determine upstream version number.
-UPSTREAM_VERSION:=$(shell echo $(SOURCE_VERSION) | sed 's/-.*//')
-
-# Determine the source version without the epoch for make-orig-tar-gz
-NO_EPOCH_VER:=$(shell echo $(UPSTREAM_VERSION) | sed 's/^.://')
-
-# Figure out who's building this package.
-BUILDER:=$(shell echo $${DEBEMAIL:-$${EMAIL:-$$(echo $$LOGNAME@$$(cat 
/etc/mailname 2>/dev/null))}})
-
-# Find out if this is an official build; an official build has nothing but
-# digits, dots, and/or the strings "woody" or "sarge" in the Debian part of the
-# version number.  Anything else indicates an unofficial build.
-OFFICIAL_BUILD:=$(shell VERSION=$(SOURCE_VERSION); if ! expr "$$(echo 
$${VERSION\#\#*-} | sed 's/\(woody\|sarge\)//g')" : ".*[^0-9.].*" >/dev/null 
2>&1; then echo yes; fi)
-
-# Set up parameters for the Debian build environment.
-
-# Determine our architecture.
-BUILD_ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
-# Work around some old-time dpkg braindamage.
-BUILD_ARCH:=$(subst i486,i386,$(BUILD_ARCH))
-# The DEB_HOST_ARCH variable may be set per the Debian cross-compilation 
policy.
-ifdef DEB_HOST_ARCH
- ARCH:=$(DEB_HOST_ARCH)
-else
- # dpkg-cross sets the ARCH environment variable; if set, use it.
- ifdef ARCH
-  ARCH:=$(ARCH)
- else
-  ARCH:=$(BUILD_ARCH)
- endif
-endif
-
-# $(STAMP_DIR) houses stamp files for complex targets.
-STAMP_DIR:=stampdir
-
-# $(SOURCE_DIR) houses one or more source trees.
-SOURCE_DIR:=build-tree
-
-# $(SOURCE_TREE) is the location of the source tree to be compiled.  If there
-# is more than one, others are found using this name plus a suffix to indicate
-# the purpose of the additional tree (e.g., $(SOURCE_TREE)-custom).  The
-# "setup" target is responsible for creating such trees.
-#SOURCE_TREE:=$(SOURCE_DIR)/xc
-#FIXME We need to define this in our debian/rules file
-
-# $(DEBTREEDIR) is where all install rules are told (via $(DESTDIR)) to place
-# their files.
-DEBTREEDIR:=$(CURDIR)/debian/tmp
-
-# All "important" targets have four lines:
-#   1) A target name that is invoked by a package-building tool or the user.
-#  This consists of a dependency on a "$(STAMP_DIR)/"-prefixed counterpart.
-#   2) A line delcaring 1) as a phony target (".PHONY:").
-#   3) A "$(STAMP_DIR)/"-prefixed target which does the actual work, and may
-#   depend on other targets.
-#   4) A line declaring 3) as a member of the $(stampdir_targets) variable; the
-#   "$(STAMP_DIR)/" prefix is omitted.
-#
-# This indirection is needed so that the "stamp" files that signify when a rule
-# is done can be located in a separate "stampdir".  Recall that make has no way
-# to know when a goal has been met for a phony target (like "build" or
-# "install").
-#
-# At the end of each "$(STAMP_DIR)/" target, be sure to 

x11proto-video: Changes to 'debian-unstable'

2016-05-13 Thread Julien Cristau
 ChangeLog   |   36 
 Xv.h|   16 +++
 configure.ac|5 +-
 debian/changelog|   12 +
 debian/compat   |2 
 debian/control  |   10 ++--
 debian/rules|   90 +++-
 debian/upstream/signing-key.asc |   41 ++
 debian/watch|1 
 9 files changed, 114 insertions(+), 99 deletions(-)

New commits:
commit 3cf23dce9e5267bdb0c17faf23cb92d65595e987
Author: Julien Cristau 
Date:   Fri May 13 14:39:57 2016 +0200

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 6cdb37e..ccaa570 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
-x11proto-video (2.3.3-1) UNRELEASED; urgency=medium
+x11proto-video (2.3.3-1) unstable; urgency=medium
 
+  * Team upload.
   * Let uscan verify tarball signatures.
   * New upstream release.
   * Remove Cyril from Uploaders.
@@ -7,7 +8,7 @@ x11proto-video (2.3.3-1) UNRELEASED; urgency=medium
   * Update Vcs-* control fields.
   * Switch to dh with dh-autoreconf and compat level 9.
 
- -- Julien Cristau   Fri, 13 May 2016 14:21:49 +0200
+ -- Julien Cristau   Fri, 13 May 2016 14:39:31 +0200
 
 x11proto-video (2.3.2-1) unstable; urgency=low
 

commit 4cb6017772792d038f44d3ba1eff03115b857854
Author: Julien Cristau 
Date:   Fri May 13 14:39:11 2016 +0200

Switch to dh with dh-autoreconf and compat level 9.

diff --git a/debian/changelog b/debian/changelog
index d7820e3..6cdb37e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,7 @@ x11proto-video (2.3.3-1) UNRELEASED; urgency=medium
   * Remove Cyril from Uploaders.
   * Bump Standards-Version to 3.9.8 (no changes needed).
   * Update Vcs-* control fields.
+  * Switch to dh with dh-autoreconf and compat level 9.
 
  -- Julien Cristau   Fri, 13 May 2016 14:21:49 +0200
 
diff --git a/debian/compat b/debian/compat
index 7f8f011..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-7
+9
diff --git a/debian/control b/debian/control
index 50ffb77..4203167 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,8 @@ Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
 Build-Depends:
- debhelper (>= 7),
+ debhelper (>= 9),
+ dh-autoreconf,
  automake,
  xutils-dev (>= 1:7.5~1),
  pkg-config,
diff --git a/debian/rules b/debian/rules
index ca5107e..c2294cb 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,90 +1,14 @@
 #!/usr/bin/make -f
 # debian/rules for the Debian x11proto-video-dev package.
-# Copyright © 2004 Scott James Remnant 
-# Copyright © 2005 Daniel Stone 
-# Copyright © 2005 David Nusinow 
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
+%:
+   dh $@ --with autoreconf --builddirectory=build
 
-PACKAGE = x11proto-video-dev
+override_dh_auto_configure:
+   dh_auto_configure -- --libdir=/usr/lib
 
-include debian/xsfbs/xsfbs.mk
+override_dh_auto_install:
+   dh_auto_install --destdir=debian/tmp
 
-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)
-endif
-
-DEB_HOST_ARCH  ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
-DEB_HOST_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
-DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
-ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
-   confflags += --build=$(DEB_HOST_GNU_TYPE)
-else
-   confflags += --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)
-endif
-
-
-build: build-stamp
-build-stamp:
-   dh_testdir
-   autoreconf -vfi
-   mkdir -p build
-   cd build && \
-   ../configure --prefix=/usr --mandir=\$${prefix}/share/man \
---infodir=\$${prefix}/share/info \
-$(confflags) CFLAGS="$(CFLAGS)" 
-   cd build && $(MAKE)
-   >$@
-
-clean:
-   dh_testdir
-   rm -f build-stamp
-   rm -f compile config.cache config.log config.status
-   rm -f */config.cache */config.log */config.status
-   rm -f conftest* */conftest*
-   rm -rf autom4te.cache */autom4te.cache
-   rm -rf build
-   rm -f aclocal.m4 configure install-sh missing mkinstalldirs
-   rm -f config.guess config.sub
-   find -name Makefile.in -delete
-   dh_clean
-
-install: build
-   dh_testdir
-   dh_testroot
-   dh_prep
-   dh_installdirs
-   cd build && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
-
-# Build architecture-independent files here.
-binary-indep: build install
-   dh_testdir
-   dh_testroot
-   dh_installdocs
-   dh_installman
+override_dh_install:
dh_install --fail-missing
-   dh_installchangelogs
-   dh_link
-   dh_stri

x11proto-video: Changes to 'debian-unstable'

2013-09-08 Thread Julien Cristau
 COPYING|8 -
 ChangeLog  |   88 +
 Xv.h   |   12 +-
 XvMC.h |   10 +-
 XvMCproto.h|   10 +-
 Xvproto.h  |   26 +++---
 autogen.sh |4 
 configure.ac   |   11 ++
 debian/changelog   |   11 ++
 debian/compat  |2 
 debian/control |6 -
 debian/rules   |   11 --
 videoproto.pc.in   |2 
 vldXvMC.h  |   34 
 xv-protocol-v2.txt |  216 ++---
 15 files changed, 277 insertions(+), 174 deletions(-)

New commits:
commit 855fd271102c24cb10bfee1c650df079ca7aff6a
Author: Julien Cristau 
Date:   Sun Sep 8 17:16:41 2013 +0200

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 0607806..ff157f2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-x11proto-video (2.3.2-1) UNRELEASED; urgency=low
+x11proto-video (2.3.2-1) unstable; urgency=low
 
   * New upstream release
 + correct sizeof(xvEncodingInfo) (closes: #657215)
@@ -7,7 +7,7 @@ x11proto-video (2.3.2-1) UNRELEASED; urgency=low
   * Bump standards-version to 3.9.3 (no changes needed).
   * Remove Andres and David from Uploaders.
 
- -- Julien Cristau   Sun, 08 Sep 2013 16:41:34 +0200
+ -- Julien Cristau   Sun, 08 Sep 2013 17:16:24 +0200
 
 x11proto-video (2.3.1-2) unstable; urgency=low
 

commit 3144d9359f688e153fef4537bcc71b6e68eaf7a6
Author: Julien Cristau 
Date:   Sun Sep 8 17:14:24 2013 +0200

Remove Andres and David from Uploaders.

diff --git a/debian/changelog b/debian/changelog
index 70dda03..0607806 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,7 @@ x11proto-video (2.3.2-1) UNRELEASED; urgency=low
   * Bump debhelper compat level to 7, use dh_prep.
   * Don't require fakeroot for d/rules clean.
   * Bump standards-version to 3.9.3 (no changes needed).
+  * Remove Andres and David from Uploaders.
 
  -- Julien Cristau   Sun, 08 Sep 2013 16:41:34 +0200
 
diff --git a/debian/control b/debian/control
index 368f953..f4e5eab 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: x11proto-video
 Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
-Uploaders: David Nusinow , Andres Salomon 
, Cyril Brulebois 
+Uploaders: Cyril Brulebois 
 Build-Depends:
  debhelper (>= 7),
  automake,

commit 6c5aceef097bd934c779a0d46f53788eb285929f
Author: Julien Cristau 
Date:   Sun Sep 8 17:12:44 2013 +0200

Bump standards-version to 3.9.3 (no changes needed).

diff --git a/debian/changelog b/debian/changelog
index 2dd8ecc..70dda03 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ x11proto-video (2.3.2-1) UNRELEASED; urgency=low
 + correct sizeof(xvEncodingInfo) (closes: #657215)
   * Bump debhelper compat level to 7, use dh_prep.
   * Don't require fakeroot for d/rules clean.
+  * Bump standards-version to 3.9.3 (no changes needed).
 
  -- Julien Cristau   Sun, 08 Sep 2013 16:41:34 +0200
 
diff --git a/debian/control b/debian/control
index c0fb321..368f953 100644
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,7 @@ Build-Depends:
  automake,
  xutils-dev (>= 1:7.5~1),
  pkg-config,
-Standards-Version: 3.8.3
+Standards-Version: 3.9.3
 Vcs-Git: git://git.debian.org/git/pkg-xorg/proto/x11proto-video
 Vcs-Browser: http://git.debian.org/?p=pkg-xorg/proto/x11proto-video.git
 

commit 357c1656699743ff299da53fce88580457fea152
Author: Julien Cristau 
Date:   Sun Sep 8 17:04:21 2013 +0200

Don't require fakeroot for d/rules clean.

diff --git a/debian/changelog b/debian/changelog
index fc4846c..2dd8ecc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ x11proto-video (2.3.2-1) UNRELEASED; urgency=low
   * New upstream release
 + correct sizeof(xvEncodingInfo) (closes: #657215)
   * Bump debhelper compat level to 7, use dh_prep.
+  * Don't require fakeroot for d/rules clean.
 
  -- Julien Cristau   Sun, 08 Sep 2013 16:41:34 +0200
 
diff --git a/debian/rules b/debian/rules
index e043381..ca5107e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -46,9 +46,8 @@ build-stamp:
 
 clean:
dh_testdir
-   dh_testroot
rm -f build-stamp
-   rm -f config.cache config.log config.status
+   rm -f compile config.cache config.log config.status
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache

commit 79c44d730a7b6250d87a1ae1847ffc90af46e2ef
Author: Julien Cristau 
Date:   Sun Sep 8 16:55:41 2013 +0200

Bump debhelper compat level to 7, use dh_prep.

diff --git a/debian/changelog b/debian/changelog
index 34e43ed..fc4846c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ x11proto-video (2.3.2-1) UNRELEASED; urgency=low
 
   * New upstream release
 + correct sizeof(xvEncodingInfo) (closes: #657215)
+  * Bump debhelper compat level to 7, use dh_prep.
 
  -- Julien Cristau   Sun, 08 Sep 2013 16:41:34 +0200
 
diff --git a/debian

x11proto-video: Changes to 'debian-unstable'

2011-11-08 Thread Steve Langasek
 debian/changelog  |8 
 debian/control|2 ++
 debian/x11proto-video-dev.install |2 +-
 3 files changed, 11 insertions(+), 1 deletion(-)

New commits:
commit a0c76c5e08855f45a263a4f4c7f8b8026823f259
Author: Steve Langasek 
Date:   Tue Nov 8 11:36:25 2011 -0800

release 2.3.1-2

diff --git a/debian/changelog b/debian/changelog
index 4ca5364..854dc1a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,10 @@
-x11proto-video (2.3.1-2) UNRELEASED; urgency=low
+x11proto-video (2.3.1-2) unstable; urgency=low
 
   * Mark x11proto-video-dev Multi-Arch: foreign.
   * Install videoproto.pc to /usr/share/pkgconfig instead of
 /usr/lib/pkgconfig
 
- -- Steve Langasek   Tue, 08 Nov 2011 11:21:33 -0800
+ -- Steve Langasek   Tue, 08 Nov 2011 11:36:13 -0800
 
 x11proto-video (2.3.1-1) unstable; urgency=low
 

commit 243751f4e1956b92fd353aaa2f2d5b653348acc8
Author: Steve Langasek 
Date:   Tue Nov 8 11:24:58 2011 -0800

Install videoproto.pc to /usr/share/pkgconfig instead of /usr/lib/pkgconfig

diff --git a/debian/changelog b/debian/changelog
index 71c9a41..4ca5364 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
 x11proto-video (2.3.1-2) UNRELEASED; urgency=low
 
   * Mark x11proto-video-dev Multi-Arch: foreign.
+  * Install videoproto.pc to /usr/share/pkgconfig instead of
+/usr/lib/pkgconfig
 
  -- Steve Langasek   Tue, 08 Nov 2011 11:21:33 -0800
 
diff --git a/debian/x11proto-video-dev.install 
b/debian/x11proto-video-dev.install
index 72309d7..6a7aa36 100644
--- a/debian/x11proto-video-dev.install
+++ b/debian/x11proto-video-dev.install
@@ -1,3 +1,3 @@
 usr/include/X11/extensions/*
-usr/lib/pkgconfig/videoproto.pc
+usr/lib/pkgconfig/videoproto.pc /usr/share/pkgconfig
 usr/share/doc/videoproto/xv-protocol-v2.txt usr/share/doc/x11proto-video-dev/

commit 10afaf3be2769ce420d508272b7f52c112866eb9
Author: Steve Langasek 
Date:   Tue Nov 8 11:23:32 2011 -0800

Mark x11proto-video-dev Multi-Arch: foreign.

diff --git a/debian/changelog b/debian/changelog
index 4782fa4..71c9a41 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+x11proto-video (2.3.1-2) UNRELEASED; urgency=low
+
+  * Mark x11proto-video-dev Multi-Arch: foreign.
+
+ -- Steve Langasek   Tue, 08 Nov 2011 11:21:33 -0800
+
 x11proto-video (2.3.1-1) unstable; urgency=low
 
   [ Julien Cristau ]
diff --git a/debian/control b/debian/control
index 820ba52..ee97b55 100644
--- a/debian/control
+++ b/debian/control
@@ -14,6 +14,7 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/proto/x11proto-video.git
 
 Package: x11proto-video-dev
 Architecture: all
+Multi-Arch: foreign
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Description: X11 Video extension wire protocol
  This package provides development headers describing the wire protocol
@@ -24,3 +25,4 @@ Description: X11 Video extension wire protocol
  http://www.X.org>
  .
  This package is built from the X.org videoproto proto module.
+


-- 
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/e1rnry7-d8...@vasks.debian.org



x11proto-video: Changes to 'debian-unstable'

2010-11-02 Thread Cyril Brulebois
 debian/changelog  |   11 +--
 debian/control|5 +++--
 debian/rules  |4 ++--
 debian/x11proto-video-dev.install |1 +
 4 files changed, 15 insertions(+), 6 deletions(-)

New commits:
commit acb51ce272053ef716c491e174f949186f81cb68
Author: Cyril Brulebois 
Date:   Wed Nov 3 02:11:22 2010 +0100

Upload to unstable.

diff --git a/debian/changelog b/debian/changelog
index 3a7ae9c..4782fa4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-x11proto-video (2.3.1-1) UNRELEASED; urgency=low
+x11proto-video (2.3.1-1) unstable; urgency=low
 
   [ Julien Cristau ]
   * Remove myself from Uploaders.
@@ -16,7 +16,7 @@ x11proto-video (2.3.1-1) UNRELEASED; urgency=low
   * No longer pass --disable-shared, this option is gone.
   * Add myself to Uploaders.
 
- -- Robert Hooker   Tue, 02 Nov 2010 19:58:25 -0400
+ -- Cyril Brulebois   Wed, 03 Nov 2010 02:11:16 +0100
 
 x11proto-video (2.3.0-1) unstable; urgency=low
 

commit 7f9971fe38807fadac05eb7dd114b73d221102ff
Author: Cyril Brulebois 
Date:   Wed Nov 3 02:11:05 2010 +0100

Add myself to Uploaders.

diff --git a/debian/changelog b/debian/changelog
index c5d72e4..3a7ae9c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -14,6 +14,7 @@ x11proto-video (2.3.1-1) UNRELEASED; urgency=low
   * Install xv-protocol-v2.txt as well.
   * Switch from --list-missing to --fail-missing for additional safety.
   * No longer pass --disable-shared, this option is gone.
+  * Add myself to Uploaders.
 
  -- Robert Hooker   Tue, 02 Nov 2010 19:58:25 -0400
 
diff --git a/debian/control b/debian/control
index b0dbc41..820ba52 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: x11proto-video
 Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
-Uploaders: David Nusinow , Andres Salomon 

+Uploaders: David Nusinow , Andres Salomon 
, Cyril Brulebois 
 Build-Depends:
  debhelper (>= 5.0.0),
  automake,

commit c84cba6edc5c4bced6f39dd793213f576571753e
Author: Cyril Brulebois 
Date:   Wed Nov 3 02:10:49 2010 +0100

No longer pass --disable-shared, this option is gone.

diff --git a/debian/changelog b/debian/changelog
index 4e853f8..c5d72e4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,6 +13,7 @@ x11proto-video (2.3.1-1) UNRELEASED; urgency=low
   * Add pkg-config build-dep.
   * Install xv-protocol-v2.txt as well.
   * Switch from --list-missing to --fail-missing for additional safety.
+  * No longer pass --disable-shared, this option is gone.
 
  -- Robert Hooker   Tue, 02 Nov 2010 19:58:25 -0400
 
diff --git a/debian/rules b/debian/rules
index 417e081..38ee5b9 100755
--- a/debian/rules
+++ b/debian/rules
@@ -39,7 +39,7 @@ build-stamp:
mkdir -p build
cd build && \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
---infodir=\$${prefix}/share/info --disable-shared \
+--infodir=\$${prefix}/share/info \
 $(confflags) CFLAGS="$(CFLAGS)" 
cd build && $(MAKE)
>$@

commit 982effcf22371cd3979c13fce18d4e1047f021b0
Author: Cyril Brulebois 
Date:   Wed Nov 3 02:10:26 2010 +0100

Switch from --list-missing to --fail-missing for additional safety.

diff --git a/debian/changelog b/debian/changelog
index 1aa451b..4e853f8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -12,6 +12,7 @@ x11proto-video (2.3.1-1) UNRELEASED; urgency=low
   [ Cyril Brulebois ]
   * Add pkg-config build-dep.
   * Install xv-protocol-v2.txt as well.
+  * Switch from --list-missing to --fail-missing for additional safety.
 
  -- Robert Hooker   Tue, 02 Nov 2010 19:58:25 -0400
 
diff --git a/debian/rules b/debian/rules
index 358d308..417e081 100755
--- a/debian/rules
+++ b/debian/rules
@@ -75,7 +75,7 @@ binary-indep: build install
 
dh_installdocs
dh_installman
-   dh_install --sourcedir=debian/tmp --list-missing
+   dh_install --sourcedir=debian/tmp --fail-missing
dh_installchangelogs
dh_link
dh_strip

commit b4a8479f4c7d55dd0197593a6a9471d17f8d00b7
Author: Cyril Brulebois 
Date:   Wed Nov 3 02:10:06 2010 +0100

Install xv-protocol-v2.txt as well.

diff --git a/debian/changelog b/debian/changelog
index 07fa49a..1aa451b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ x11proto-video (2.3.1-1) UNRELEASED; urgency=low
 
   [ Cyril Brulebois ]
   * Add pkg-config build-dep.
+  * Install xv-protocol-v2.txt as well.
 
  -- Robert Hooker   Tue, 02 Nov 2010 19:58:25 -0400
 
diff --git a/debian/x11proto-video-dev.install 
b/debian/x11proto-video-dev.install
index 290dae0..72309d7 100644
--- a/debian/x11proto-video-dev.install
+++ b/debian/x11proto-video-dev.install
@@ -1,2 +1,3 @@
 usr/include/X11/extensions/*
 usr/lib/pkgconfig/videoproto.pc
+usr/share/doc/videoproto/xv-protocol-v2.txt usr/share/doc/x11proto-video-dev/

commit da97f75adae66f760839b72113d99faacc194874
Author: Cyril Brulebois 

x11proto-video: Changes to 'debian-unstable'

2010-11-02 Thread Robert Hooker
 .gitignore |   78 +-
 ChangeLog  |  116 +
 Makefile.am|   13 -
 README |   30 ++
 configure.ac   |   15 -
 debian/changelog   |9 
 debian/control |2 
 vldXvMC.h  |1 
 xv-protocol-v2.txt |  654 +
 9 files changed, 895 insertions(+), 23 deletions(-)

New commits:
commit f69defb527904eb8d82224fa9f97ff5b143d93ba
Author: Robert Hooker 
Date:   Tue Nov 2 20:00:51 2010 -0400

Bump xutils-dev build dep requirement.

diff --git a/debian/changelog b/debian/changelog
index 0b33990..8b84dd2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ x11proto-video (2.3.1-1) UNRELEASED; urgency=low
 
   [ Robert Hooker ]
   * New upstream release.
+  * Bump xutils-dev build dep to 1:7.5~1 for util-macros 1.3 requirement.
 
  -- Robert Hooker   Tue, 02 Nov 2010 19:58:25 -0400
 
diff --git a/debian/control b/debian/control
index 2f27ffc..42c59d8 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,7 @@ Uploaders: David Nusinow , Andres Salomon 
= 5.0.0),
  automake,
- xutils-dev (>= 1:7.4+4)
+ xutils-dev (>= 1:7.5~1)
 Standards-Version: 3.8.3
 Vcs-Git: git://git.debian.org/git/pkg-xorg/proto/x11proto-video
 Vcs-Browser: http://git.debian.org/?p=pkg-xorg/proto/x11proto-video.git

commit 5901ed194df0e12058de98dd7d2ca5f611bbef12
Author: Robert Hooker 
Date:   Tue Nov 2 19:58:45 2010 -0400

Update changelogs.

diff --git a/ChangeLog b/ChangeLog
index 422c265..ebba71d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,119 @@
+commit b994209d8559a0d0802487ed53585404b398a707
+Author: Adam Jackson 
+Date:   Tue Aug 10 10:17:10 2010 -0400
+
+videoproto 2.3.1
+
+Signed-off-by: Adam Jackson 
+
+commit 56a94402e9252879771ba42ee76990f132b56fca
+Author: Gaetan Nadon 
+Date:   Sun Mar 28 19:00:31 2010 -0400
+
+config: remove the pkgconfig pc.in file from EXTRA_DIST
+
+Automake always includes it in the tarball.
+
+Signed-off-by: Gaetan Nadon 
+
+commit 72a31b1b758c42faef518081a1a1c436c26add4f
+Author: Rémi Cardona 
+Date:   Thu Dec 17 08:42:27 2009 +0100
+
+require autoconf 2.60 because of $(docdir) use
+
+Signed-off-by: Rémi Cardona 
+Reviewed-by: Gaetan Nadon 
+Reviewed-by: Alan Coopersmith 
+Reviewed-by: Dan Nicholson 
+
+commit 38602c56dcf24bf7dbddfbac89a35c15e3d3f885
+Author: Gaetan Nadon 
+Date:   Sun Nov 22 19:24:48 2009 -0500
+
+Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
+
+Now that the INSTALL file is generated.
+Allows running make maintainer-clean.
+
+commit 35734855fd913c7b743280346fc19471a39d88d4
+Author: Gaetan Nadon 
+Date:   Mon Nov 16 11:13:30 2009 -0500
+
+README: file created or updated #24206
+
+Contains a set of URLs to freedesktop.org.
+
+commit 86b3515e9ea8dc6252db0ed31642ef314656c9bf
+Author: Gaetan Nadon 
+Date:   Sun Nov 15 19:45:27 2009 -0500
+
+Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
+
+ChangeLog filename is known to Automake and requires no further
+coding in the makefile.
+
+commit ad23568d0d5d0c1cdfc54bfdb752e398ab881639
+Author: Gaetan Nadon 
+Date:   Sun Nov 15 18:31:29 2009 -0500
+
+Makefile.am: INSTALL file is missing or incorrect #24206
+
+The standard GNU file on building/installing  tarball is copied
+using the XORG_INSTALL macro contained in XORG_DEFAULT_OPTIONS
+Add INSTALL target
+
+commit 40310f285cdac70865ff342f874e2bd21d36ef8d
+Author: Gaetan Nadon 
+Date:   Sun Nov 15 18:11:36 2009 -0500
+
+configure.ac: deploy the new XORG_DEFAULT_OPTIONS #24242
+
+This macro aggregate a number of existing macros that sets commmon
+X.Org components configuration options. It shields the configuration file 
from
+future changes.
+
+commit 69311c693daf6797646bce9b1c62bba54fed9343
+Author: Gaetan Nadon 
+Date:   Sun Nov 15 13:55:25 2009 -0500
+
+configure.ac: AM_MAINTAINER_MODE missing #24238
+
+This turns off maintainer mode build rules in tarballs.
+Works in conjunction with autogen.sh --enable-maintainer-mode
+
+commit a9fc831a64cab7c70aecee4f0f86ac01360e3d8f
+Author: Gaetan Nadon 
+Date:   Sat Nov 14 18:26:47 2009 -0500
+
+.gitignore: use common defaults with custom section # 24239
+
+Using common defaults will reduce errors and maintenance.
+Only the very small or inexistent custom section need periodic maintenance
+when the structure of the component changes. Do not edit defaults.
+
+commit 9190399907610486001f3676945958dbab4b837a
+Author: Luc Verhaegen 
+Date:   Mon Oct 19 23:59:20 2009 +0200
+
+vldXvMC.h: stop uselessly including XvMClib.h.
+
+Protocol header depending on client library header?
+
+Only clients which depend on this header but which did not bother to
+include it directly will run into trouble, but the fix is trivial,
+general and backwards compatible.
+
+Signed-off-by: Luc Verhaegen

x11proto-video: Changes to 'debian-unstable'

2010-05-07 Thread Mikhail Gusarov
 debian/control |2 --
 1 file changed, 2 deletions(-)

New commits:
commit 3641d0e025c861e77c6a49571b07d87882e655bf
Author: Mikhail Gusarov 
Date:   Fri May 7 18:58:52 2010 +0700

Remove duplicate xorg.fd.o URL and confusing mailing list URL from 
debian/control

diff --git a/debian/control b/debian/control
index ec56348..2f27ffc 100644
--- a/debian/control
+++ b/debian/control
@@ -21,7 +21,5 @@ Description: X11 Video extension wire protocol
  .
  More information about X.Org can be found at:
  http://www.X.org>
- http://xorg.freedesktop.org>
- http://lists.freedesktop.org/mailman/listinfo/xorg>
  .
  This package is built from the X.org videoproto proto module.


-- 
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/e1oamjl-0003qh...@alioth.debian.org



x11proto-video: Changes to 'debian-unstable'

2010-01-23 Thread Julien Cristau
 debian/changelog |2 ++
 debian/rules |   10 +-
 2 files changed, 7 insertions(+), 5 deletions(-)

New commits:
commit 5095435883ff223f80a71699199e17feb5e822d0
Author: Julien Cristau 
Date:   Sat Jan 23 13:45:48 2010 +0100

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 819e37b..3c811da 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
 x11proto-video (2.3.0-2) UNRELEASED; urgency=low
 
   * Remove myself from Uploaders.
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
 
  -- Julien Cristau   Sat, 23 Jan 2010 13:22:07 +0100
 
diff --git a/debian/rules b/debian/rules
index bf5786d..358d308 100755
--- a/debian/rules
+++ b/debian/rules
@@ -36,12 +36,12 @@ build: build-stamp
 build-stamp:
dh_testdir
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE) && \
+   mkdir -p build
+   cd build && \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info --disable-shared \
 $(confflags) CFLAGS="$(CFLAGS)" 
-   cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE)
+   cd build && $(MAKE)
>$@
 
 clean:
@@ -53,7 +53,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 configure install-sh missing mkinstalldirs
rm -f config.guess config.sub
find -name Makefile.in -delete
@@ -66,7 +66,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-independent files here.
 binary-indep: build install


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



x11proto-video: Changes to 'debian-unstable'

2010-01-23 Thread Julien Cristau
 debian/changelog |6 ++
 debian/control   |2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

New commits:
commit 604283928bd1f4f569956805f747091995d9e740
Author: Julien Cristau 
Date:   Sat Jan 23 13:22:11 2010 +0100

Remove myself from Uploaders.

diff --git a/debian/changelog b/debian/changelog
index 1539afd..819e37b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+x11proto-video (2.3.0-2) UNRELEASED; urgency=low
+
+  * Remove myself from Uploaders.
+
+ -- Julien Cristau   Sat, 23 Jan 2010 13:22:07 +0100
+
 x11proto-video (2.3.0-1) unstable; urgency=low
 
   [ Timo Aaltonen ]
diff --git a/debian/control b/debian/control
index eaa4443..ec56348 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: x11proto-video
 Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
-Uploaders: David Nusinow , Andres Salomon 
, Julien Cristau 
+Uploaders: David Nusinow , Andres Salomon 

 Build-Depends:
  debhelper (>= 5.0.0),
  automake,


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



x11proto-video: Changes to 'debian-unstable'

2009-11-21 Thread Julien Cristau
 debian/changelog |5 +++--
 debian/control   |2 +-
 debian/rules |2 +-
 3 files changed, 5 insertions(+), 4 deletions(-)

New commits:
commit 14972ece5df64dd09ffa8c9f0f30e9a0702e33ce
Author: Julien Cristau 
Date:   Sat Nov 21 13:51:44 2009 +0100

Prepare changelog for upload

diff --git a/debian/changelog b/debian/changelog
index 4d0ba6c..1539afd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
-x11proto-video (2.3.0-1) UNRELEASED; urgency=low
+x11proto-video (2.3.0-1) unstable; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Bump debhelper compat level to 5.
@@ -8,7 +9,7 @@ x11proto-video (2.3.0-1) UNRELEASED; urgency=low
   * Run autoreconf on build. Add build-deps on automake and xutils-dev.
   * Parse space-separated DEB_BUILD_OPTIONS, and handle parallel=N.
 
- -- Timo Aaltonen   Sat, 21 Nov 2009 10:54:17 +0200
+ -- Julien Cristau   Sat, 21 Nov 2009 13:51:42 +0100
 
 x11proto-video (2.2.2-5) unstable; urgency=low
 

commit 79f2c03465c2fcd2f0436b23ef0462b9a7f4d23d
Author: Julien Cristau 
Date:   Sat Nov 21 13:51:30 2009 +0100

Fix copy-pasto in debian/rules

diff --git a/debian/rules b/debian/rules
index 2bb8fa1..bf5786d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -18,7 +18,7 @@ else
CFLAGS += -O2
 endif
 ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
-   NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIO$
+   NUMJOBS = $(patsubst parallel=%,%,$(filter 
parallel=%,$(DEB_BUILD_OPTIONS)))
MAKEFLAGS += -j$(NUMJOBS)
 endif
 

commit d4d4246c83715ccbc22af54ba4899278d35aa106
Author: Julien Cristau 
Date:   Sat Nov 21 13:50:26 2009 +0100

Bump debhelper build-dep to appease lintian

diff --git a/debian/control b/debian/control
index 7ffc1b1..eaa4443 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: optional
 Maintainer: Debian X Strike Force 
 Uploaders: David Nusinow , Andres Salomon 
, Julien Cristau 
 Build-Depends:
- debhelper (>= 4.0.0),
+ debhelper (>= 5.0.0),
  automake,
  xutils-dev (>= 1:7.4+4)
 Standards-Version: 3.8.3


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



x11proto-video: Changes to 'debian-unstable'

2009-11-21 Thread Julien Cristau
 debian/rules |1 +
 1 file changed, 1 insertion(+)

New commits:
commit c522066cf809dba6cd827a30b782622b61dd21c7
Author: Julien Cristau 
Date:   Sat Nov 21 12:04:02 2009 +0100

Remove config.* in debian/rules clean

diff --git a/debian/rules b/debian/rules
index bb3c9b6..2bb8fa1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -55,6 +55,7 @@ clean:
rm -rf autom4te.cache */autom4te.cache
rm -rf obj-*
rm -f aclocal.m4 configure install-sh missing mkinstalldirs
+   rm -f config.guess config.sub
find -name Makefile.in -delete
 
dh_clean


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



x11proto-video: Changes to 'debian-unstable'

2009-11-21 Thread Timo Aaltonen
 .gitignore   |4 
 ChangeLog|  179 +++
 Makefile.am  |   12 
 Makefile.in  |  437 -
 Xv.h |1 
 XvMC.h   |2 
 XvMCproto.h  |2 
 Xvproto.h|1 
 aclocal.m4   |  879 --
 configure| 2587 ---
 configure.ac |6 
 debian/changelog |   12 
 debian/compat|2 
 debian/control   |   10 
 debian/rules |   16 
 install-sh   |  294 --
 missing  |  336 ---
 mkinstalldirs|  111 --
 18 files changed, 223 insertions(+), 4668 deletions(-)

New commits:
commit 2490b3e96bcd69079f2a011966d38aa929d1d707
Author: Timo Aaltonen 
Date:   Sat Nov 21 11:09:54 2009 +0200

Parse space-separated DEB_BUILD_OPTIONS, and handle parallel=N.

diff --git a/debian/changelog b/debian/changelog
index dad2eaa..4d0ba6c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,7 @@ x11proto-video (2.3.0-1) UNRELEASED; urgency=low
   * Drop Conflicts/Replaces on libxv-dev, libxvmc-dev and Pre-Depends on
 x11-common. This was needed for upgrades from sarge.
   * Run autoreconf on build. Add build-deps on automake and xutils-dev.
+  * Parse space-separated DEB_BUILD_OPTIONS, and handle parallel=N.
 
  -- Timo Aaltonen   Sat, 21 Nov 2009 10:54:17 +0200
 
diff --git a/debian/rules b/debian/rules
index 7ded318..bb3c9b6 100755
--- a/debian/rules
+++ b/debian/rules
@@ -12,13 +12,14 @@ PACKAGE = x11proto-video-dev
 include debian/xsfbs/xsfbs.mk
 
 CFLAGS = -Wall -g
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
 else
CFLAGS += -O2
 endif
-ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
-   INSTALL_PROGRAM += -s
+ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+   NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIO$
+   MAKEFLAGS += -j$(NUMJOBS)
 endif
 
 DEB_HOST_ARCH  ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)

commit e29d47b01f2f3e752765e41dc8d5868937c39903
Author: Timo Aaltonen 
Date:   Sat Nov 21 11:07:24 2009 +0200

Run autoreconf on build. Add build-deps on automake and xutils-dev.

diff --git a/debian/changelog b/debian/changelog
index ab68c60..dad2eaa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,7 @@ x11proto-video (2.3.0-1) UNRELEASED; urgency=low
   * Bump debhelper compat level to 5.
   * Drop Conflicts/Replaces on libxv-dev, libxvmc-dev and Pre-Depends on
 x11-common. This was needed for upgrades from sarge.
+  * Run autoreconf on build. Add build-deps on automake and xutils-dev.
 
  -- Timo Aaltonen   Sat, 21 Nov 2009 10:54:17 +0200
 
diff --git a/debian/control b/debian/control
index af5e645..7ffc1b1 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,10 @@ Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
 Uploaders: David Nusinow , Andres Salomon 
, Julien Cristau 
-Build-Depends: debhelper (>= 4.0.0)
+Build-Depends:
+ debhelper (>= 4.0.0),
+ automake,
+ xutils-dev (>= 1:7.4+4)
 Standards-Version: 3.8.3
 Vcs-Git: git://git.debian.org/git/pkg-xorg/proto/x11proto-video
 Vcs-Browser: http://git.debian.org/?p=pkg-xorg/proto/x11proto-video.git
diff --git a/debian/rules b/debian/rules
index abefca7..7ded318 100755
--- a/debian/rules
+++ b/debian/rules
@@ -34,15 +34,14 @@ endif
 build: build-stamp
 build-stamp:
dh_testdir
-
-   test -d obj-$(DEB_BUILD_GNU_TYPE) || mkdir obj-$(DEB_BUILD_GNU_TYPE)
+   autoreconf -vfi
+   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
cd obj-$(DEB_BUILD_GNU_TYPE) && \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info --disable-shared \
 $(confflags) CFLAGS="$(CFLAGS)" 
cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE)
-
-   touch build-stamp
+   >$@
 
 clean:
dh_testdir
@@ -54,6 +53,8 @@ clean:
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
rm -rf obj-*
+   rm -f aclocal.m4 configure install-sh missing mkinstalldirs
+   find -name Makefile.in -delete
 
dh_clean
 

commit cf69f706940e78bf0c52e0c573fd6fc9f2770086
Author: Timo Aaltonen 
Date:   Sat Nov 21 11:01:10 2009 +0200

Delete generated files.

diff --git a/Makefile.in b/Makefile.in
deleted file mode 100644
index 8061101..000
--- a/Makefile.in
+++ /dev/null
@@ -1,437 +0,0 @@
-# Makefile.in generated by automake 1.7.9 from Makefile.am.
-# @configure_input@
-
-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
-# Free Software Foundation, Inc.
-# This Makefile.in is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
-#

x11proto-video: Changes to 'debian-unstable'

2008-05-11 Thread Julien Cristau
 .gitignore|   10 
 debian/changelog  |   12 
 debian/control|8 
 debian/xsfbs/xsfbs.mk |  310 +
 debian/xsfbs/xsfbs.sh |  900 ++
 5 files changed, 1233 insertions(+), 7 deletions(-)

New commits:
commit c3f05f974cc7dfd9b44fc5127fdedde46962a47b
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sun May 11 20:20:11 2008 +0200

Prepare changelog for upload

diff --git a/debian/changelog b/debian/changelog
index b88b147..0434e6a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-x11proto-video (2.2.2-5) UNRELEASED; urgency=low
+x11proto-video (2.2.2-5) unstable; urgency=low
 
   [ Brice Goglin ]
   * Update the long description.
@@ -11,7 +11,7 @@ x11proto-video (2.2.2-5) UNRELEASED; urgency=low
   * Add myself to Uploaders.
   * Bump Standards-Version to 3.7.3.
 
- -- Brice Goglin <[EMAIL PROTECTED]>  Tue, 14 Aug 2007 00:13:31 +0200
+ -- Julien Cristau <[EMAIL PROTECTED]>  Sun, 11 May 2008 20:20:08 +0200
 
 x11proto-video (2.2.2-4) unstable; urgency=low
 

commit e53d1be02ca089af44025caa4f47b1fa04d068b1
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sun May 11 20:18:20 2008 +0200

debian/control updates

* Add Vcs-* to debian/control instead of XS-Vcs-*.
* Remove Branden from Uploaders with his permission.
* Add myself to Uploaders.
* Bump Standards-Version to 3.7.3.

diff --git a/debian/changelog b/debian/changelog
index cf40b22..b88b147 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,16 @@
 x11proto-video (2.2.2-5) UNRELEASED; urgency=low
 
+  [ Brice Goglin ]
   * Update the long description.
   * Add URL in debian/copyright.
-  * Add XS-Vcs-* to debian/control.
+  * Add Vcs-* to debian/control.
   * Remove Fabio from Uploaders, with his permission.
 
+  [ Julien Cristau ]
+  * Remove Branden from Uploaders with his permission.
+  * Add myself to Uploaders.
+  * Bump Standards-Version to 3.7.3.
+
  -- Brice Goglin <[EMAIL PROTECTED]>  Tue, 14 Aug 2007 00:13:31 +0200
 
 x11proto-video (2.2.2-4) unstable; urgency=low
diff --git a/debian/control b/debian/control
index b643aa5..1972220 100644
--- a/debian/control
+++ b/debian/control
@@ -2,11 +2,11 @@ Source: x11proto-video
 Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
-Uploaders: David Nusinow <[EMAIL PROTECTED]>, Branden Robinson <[EMAIL 
PROTECTED]>, Andres Salomon <[EMAIL PROTECTED]>
+Uploaders: David Nusinow <[EMAIL PROTECTED]>, Andres Salomon <[EMAIL 
PROTECTED]>, Julien Cristau <[EMAIL PROTECTED]>
 Build-Depends: debhelper (>= 4.0.0)
-Standards-Version: 3.7.2
-XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/proto/x11proto-video
-XS-Vcs-Browser: http://git.debian.org/?p=pkg-xorg/proto/x11proto-video.git
+Standards-Version: 3.7.3
+Vcs-Git: git://git.debian.org/git/pkg-xorg/proto/x11proto-video
+Vcs-Browser: http://git.debian.org/?p=pkg-xorg/proto/x11proto-video.git
 
 Package: x11proto-video-dev
 Architecture: all

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

Remove xsfbs-autoreconf.mk

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

diff --git a/debian/xsfbs/xsfbs-autoreconf.mk b/debian/xsfbs/xsfbs-autoreconf.mk
deleted file mode 100644
index dce8fc8..000
--- a/debian/xsfbs/xsfbs-autoreconf.mk
+++ /dev/null
@@ -1,150 +0,0 @@
-#!/usr/bin/make -f
-# $Id$
-
-# Automagical conversion of autoreconf results into quilt patches.
-
-# Copyright 2006 Eugene Konev
-#
-# Licensed under the GNU General Public License, version 2.  See the file
-# /usr/share/common-licenses/GPL or .
-
-# The idea behind this is storing changes produced by autoreconf as a 
-# separate patch on quilt stack (on top of stack actually).
-# The only usable target here is 'autoreconf`. Other targets are not
-# supposed to be called directly. DO NOT invoke them, unless you know what
-# you are doing.
-# The autoreconf target will check if files with names in $(RECONF_CHECKFILES)
-# were changed during patching (from upstream version or from previously
-# autoreconfed version) and call actual autoreconfing if they were.
-# The actual autoreconfing target (doautoreconf) WILL FAIL after 
-# calling autoreconf and pushing changes into quilt stack by design. It
-# should never be invoked by automatic build process.
-# The proposed use is adding autoreconf into clean's prerequisites before
-# xsfclean like:
-# - clean: xsfclean
-# + clean: autoreconf xsfclean
-# This will ensure it is called when you build package with dpkg-buildpackage.
-
-# This dir will be used for producing diff of autoreconfed tree
-RECONF_DIR := xsfautoreconf
-
-# This files will be checked for changes
-RECONF_CHECKFILES += configure.ac Makefile.am
-
-# This files will not be hardlinked but copied
-RECONF_NOLINKFILES += aclocal.m4
-
-# This files/dirs will be pruned after autoreconf run
-RECONF_

x11proto-video: Changes to 'debian-unstable'

2007-08-13 Thread Brice Goglin
 debian/changelog |9 +
 debian/control   |   14 --
 debian/copyright |3 +++
 3 files changed, 20 insertions(+), 6 deletions(-)

New commits:
commit 04ef65a6cce0af0cc507a5aa988b598e9a11e515
Author: Brice Goglin <[EMAIL PROTECTED]>
Date:   Tue Aug 14 00:27:54 2007 +0200

Various fixed in debian/control and copyright

diff --git a/debian/changelog b/debian/changelog
index 4454a30..cf40b22 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+x11proto-video (2.2.2-5) UNRELEASED; urgency=low
+
+  * Update the long description.
+  * Add URL in debian/copyright.
+  * Add XS-Vcs-* to debian/control.
+  * Remove Fabio from Uploaders, with his permission.
+
+ -- Brice Goglin <[EMAIL PROTECTED]>  Tue, 14 Aug 2007 00:13:31 +0200
+
 x11proto-video (2.2.2-4) unstable; urgency=low
 
   * Test for obj-$(DEB_BUILD_GNU_TYPE) before creating it during build;
diff --git a/debian/control b/debian/control
index cf68d73..b643aa5 100644
--- a/debian/control
+++ b/debian/control
@@ -2,9 +2,11 @@ Source: x11proto-video
 Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
-Uploaders: David Nusinow <[EMAIL PROTECTED]>, Branden Robinson <[EMAIL 
PROTECTED]>, Fabio M. Di Nitto <[EMAIL PROTECTED]>, Andres Salomon <[EMAIL 
PROTECTED]>
+Uploaders: David Nusinow <[EMAIL PROTECTED]>, Branden Robinson <[EMAIL 
PROTECTED]>, Andres Salomon <[EMAIL PROTECTED]>
 Build-Depends: debhelper (>= 4.0.0)
 Standards-Version: 3.7.2
+XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/proto/x11proto-video
+XS-Vcs-Browser: http://git.debian.org/?p=pkg-xorg/proto/x11proto-video.git
 
 Package: x11proto-video-dev
 Architecture: all
@@ -13,13 +15,13 @@ Conflicts: libxv-dev (<< 6.8.2-25), libxvmc-dev (<< 
6.8.2-25)
 Replaces: libxv-dev (<< 6.8.2-25), libxvmc-dev (<< 6.8.2-25)
 Pre-Depends: x11-common (>= 1:7.0.0)
 Description: X11 Video extension wire protocol
- This package provides the wire protocol for the XVideo and
- XVideoMotionCompensation extensions, used to accelerate playback of videos
- through X.
+ This package provides development headers describing the wire protocol
+ for the XVideo and XVideoMotionCompensation extensions, used to accelerate
+ playback of videos through X.
  .
  More information about X.Org can be found at:
+ http://www.X.org>
  http://xorg.freedesktop.org>
  http://lists.freedesktop.org/mailman/listinfo/xorg>
  .
- This module can be found as the module 'proto/Video' at
- :pserver:[EMAIL PROTECTED]:/cvs/xorg
+ This package is built from the X.org videoproto proto module.
diff --git a/debian/copyright b/debian/copyright
index cfa79e7..9e095af 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,3 +1,6 @@
+This package was downloaded from
+http://xorg.freedesktop.org/releases/individual/proto/
+
 Copyright 1991 by Digital Equipment Corporation, Maynard, Massachusetts,
 and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
 


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



x11proto-video: Changes to 'debian-unstable'

2007-01-15 Thread David Nusinow
New branch 'debian-unstable' available with the following commits:
commit eef777984b75fe1dec0febadaa7b108aec1ff276
Author: Thierry Reding <[EMAIL PROTECTED]>
Date:   Tue Sep 26 10:26:34 2006 +

Add some more watch files.

commit c587e26438f008465620eae382afda515a7c8b09
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Tue Aug 29 00:50:36 2006 +

* Merge x11proto-video from 7.1 branch to trunk now that it's in unstable

commit 321b15836484d2034f622794fc0ac9366ba7dcf6
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Sun Aug 27 23:55:36 2006 +

Rename the protocol dirs to match the debian package names, like the other 
packages in the repo

commit bff33f49ce01a2952b0065d4aba11a89a86e425e
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Fri Mar 24 02:44:27 2006 +

Prepare protocol headers for upload to unstable. Tags to follow.

commit 2cdbb09625b5ec660e8d3a27770f115d16284985
Author: Michel Dänzer <[EMAIL PROTECTED]>
Date:   Thu Feb 9 16:08:24 2006 +

Add epoch to versioned Pre-Depends on x11-common to make upgrades from
monolithic x11-common work.

commit 734e1c424caede99a3f0fe6bc12dcb313a6e3823
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Mon Jan 23 02:45:38 2006 +

Set protocol headers to be uploaded to experimental

commit b8916eae0092a8edc1f3005c66ced5ddb54859f2
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Fri Dec 30 19:37:27 2005 +

Update proto headers to 7.0 with packaging

commit 233dce0ebe79605c75bed706cfdf525f056cb920
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Fri Dec 30 00:24:15 2005 +

Vendor drop of proto and lib for 7.0


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