x11proto-fontcache: Changes to 'debian-unstable'

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

New commits:
commit 848b7bd6e3ddfe49768019681d216b18cd2c4fea
Author: Julien Cristau 
Date:   Sat Nov 21 13:19:42 2009 +0100

Prepare changelog for upload

diff --git a/debian/changelog b/debian/changelog
index 7611e91..a84b70b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
-x11proto-fontcache (0.1.3-1) UNRELEASED; urgency=low
+x11proto-fontcache (0.1.3-1) unstable; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Bump debhelper compat level to 5.
@@ -7,7 +8,7 @@ x11proto-fontcache (0.1.3-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   Fri, 20 Nov 2009 16:05:07 +0200
+ -- Julien Cristau   Sat, 21 Nov 2009 13:25:49 +0100
 
 x11proto-fontcache (0.1.2-5) unstable; urgency=low
 

commit 09d59a8a186224e2dd8a612b643a78b95aebf634
Author: Julien Cristau 
Date:   Sat Nov 21 13:25:20 2009 +0100

Bump debhelper build-dep to appease lintian

diff --git a/debian/control b/debian/control
index 784b7ac..cc65b6d 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),
  automake,
  xutils-dev (>= 1:7.5~1)
 Standards-Version: 3.8.3

commit 56ca930990b3a7fce96dba85f7a784903f26a0a0
Author: Julien Cristau 
Date:   Sat Nov 21 13:21:05 2009 +0100

debian/rules: add missing newline

diff --git a/debian/rules b/debian/rules
index a24064e..539de40 100755
--- a/debian/rules
+++ b/debian/rules
@@ -36,7 +36,8 @@ build: build-stamp
 build-stamp:
dh_testdir
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)  cd obj-$(DEB_BUILD_GNU_TYPE) && 
\
+   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)" 


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



x11proto-fontcache: Changes to 'debian-unstable'

2009-11-21 Thread Timo Aaltonen
 Makefile.in  |  436 -
 aclocal.m4   |  879 --
 configure| 2587 ---
 debian/changelog |2 
 debian/control   |5 
 debian/rules |   18 
 install-sh   |  294 --
 missing  |  336 ---
 mkinstalldirs|  111 --
 9 files changed, 16 insertions(+), 4652 deletions(-)

New commits:
commit d9ab8e47cca8749832ba8ae2f2b9170d81026731
Author: Timo Aaltonen 
Date:   Sat Nov 21 14:03:25 2009 +0200

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

diff --git a/debian/changelog b/debian/changelog
index a631858..7611e91 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,7 @@ x11proto-fontcache (0.1.3-1) UNRELEASED; urgency=low
   * Bump debhelper compat level to 5.
   * Drop 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   Fri, 20 Nov 2009 16:05:07 +0200
 
diff --git a/debian/rules b/debian/rules
index 6f5267c..a24064e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -12,13 +12,14 @@ PACKAGE = x11proto-fontcache-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_OPTIONS)))
+   MAKEFLAGS += -j$(NUMJOBS)
 endif
 
 DEB_HOST_ARCH  ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)

commit c03f5e2bb9576e7f751ed5dece9de36003f9dcdc
Author: Timo Aaltonen 
Date:   Sat Nov 21 14:01:58 2009 +0200

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

diff --git a/debian/changelog b/debian/changelog
index a411285..a631858 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ x11proto-fontcache (0.1.3-1) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.8.3.
   * Bump debhelper compat level to 5.
   * Drop 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   Fri, 20 Nov 2009 16:05:07 +0200
 
diff --git a/debian/control b/debian/control
index 5d6d779..784b7ac 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.5~1)
 Standards-Version: 3.8.3
 Vcs-Git: git://git.debian.org/git/pkg-xorg/proto/x11proto-fontcache
 Vcs-Browser: http://git.debian.org/?p=pkg-xorg/proto/x11proto-fontcache.git
diff --git a/debian/rules b/debian/rules
index 1d58d6e..6f5267c 100755
--- a/debian/rules
+++ b/debian/rules
@@ -34,15 +34,13 @@ endif
 build: build-stamp
 build-stamp:
dh_testdir
-
-   test -d obj-$(DEB_BUILD_GNU_TYPE) || mkdir obj-$(DEB_BUILD_GNU_TYPE)
-   cd 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 +52,9 @@ clean:
rm -f conftest* */conftest*
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
 

commit af20d235f96a2653db0a07e31c657c688fdba5d9
Author: Timo Aaltonen 
Date:   Sat Nov 21 13:54:01 2009 +0200

Delete generated files.

diff --git a/Makefile.in b/Makefile.in
deleted file mode 100644
index 1e52148..000
--- a/Makefile.in
+++ /dev/null
@@ -1,436 +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
-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-# PARTICULAR PURPOSE.
-
-...@set_make@
-
-srcdir = @srcdir@
-top_srcdir = @top_srcdir@
-VPATH = @srcdir

x11proto-fontcache: Changes to 'debian-unstable'

2009-11-20 Thread Timo Aaltonen
 .gitignore   |4 +
 ChangeLog|  165 ++-
 Makefile.am  |   12 +++-
 README   |   24 
 configure.ac |7 +-
 debian/changelog |9 +++
 debian/compat|2 
 debian/control   |3 -
 8 files changed, 217 insertions(+), 9 deletions(-)

New commits:
commit 76d2b4053b428ded17ff96e6ac583f13fdbd66e2
Author: Timo Aaltonen 
Date:   Fri Nov 20 17:40:28 2009 +0200

Update the ChangeLog.

diff --git a/ChangeLog b/ChangeLog
new file mode 100644
index 000..70753a2
--- /dev/null
+++ b/ChangeLog
@@ -0,0 +1,163 @@
+commit 79b075876c6874f1ad6605962973f2865b2a082a
+Author: Alan Coopersmith 
+Date:   Fri Oct 2 19:30:03 2009 -0700
+
+fontcacheproto 0.1.3
+
+Signed-off-by: Alan Coopersmith 
+
+commit 7c8e261c218ff5c0a2806a429725dba437241970
+Author: Alan Coopersmith 
+Date:   Fri Oct 2 19:26:08 2009 -0700
+
+Add pointers to mailing list, git repo, and wiki to README
+
+Signed-off-by: Alan Coopersmith 
+
+commit 6388965137d61913cbb1b8b3b718e6fd359052cc
+Author: Alan Coopersmith 
+Date:   Fri Oct 2 19:20:34 2009 -0700
+
+Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
+
+Signed-off-by: Alan Coopersmith 
+
+commit 211eb4c16534f83527df992c4f68936254455e7b
+Author: Paulo Cesar Pereira de Andrade 
+Date:   Tue Jan 27 20:06:28 2009 -0200
+
+Janitor: Correct make distcheck and dont distribute autogen.sh
+
+commit a3055497adbbdf626db22176cedb7795e5684567
+Author: James Cloos 
+Date:   Thu Dec 6 16:39:00 2007 -0500
+
+Replace static ChangeLog with dist-hook to generate from git log
+
+commit f4d701aa7c2d2ece96e3701747cedaee0ad57a44
+Author: James Cloos 
+Date:   Mon Sep 3 05:54:03 2007 -0400
+
+Add *~ to .gitignore to skip patch/emacs droppings
+
+commit 7e722460a355cbf22d554c7cfc69e7ce03454f06
+Author: Alan Coopersmith 
+Date:   Fri Jul 14 18:56:13 2006 -0700
+
+renamed: .cvsignore -> .gitignore
+
+commit a51ca6a8a428b5be64dc5ad0ad13ff29350768ca
+Author: Kevin E Martin 
+Date:   Thu Dec 15 00:24:37 2005 +
+
+Update package version number for final X11R7 release candidate.
+
+commit cc6820d803058730369b94f0b62d590d309355cc
+Author: Kevin E Martin 
+Date:   Wed Oct 19 02:48:14 2005 +
+
+Update package version number for RC1 release.
+
+commit edf62f591f28a217b9bc0781e118ce6f762c3fcb
+Author: Eric Anholt 
+Date:   Tue Aug 2 19:19:38 2005 +
+
+Add basic .cvsignore files for proto modules.
+
+commit 455a177ede4620d9effa1fb167a9e07e747ebd48
+Author: Kevin E Martin 
+Date:   Fri Jul 29 21:22:55 2005 +
+
+Various changes preparing packages for RC0:
+- Verify and update package version numbers as needed
+- Implement versioning scheme
+- Change bug address to point to bugzilla bug entry form
+- Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
+reenable it)
+- Fix makedepend to use pkgconfig and pass distcheck
+- Update build script to build macros first
+- Update modular Xorg version
+
+commit 83c131b8611f32f9a292a629d13629c6200b5984
+Author: Daniel Stone 
+Date:   Sat May 21 03:50:53 2005 +
+
+Change version to 0.1.
+
+commit 1bee3aeab31877963efc323700e19aa259520c88
+Author: Adam Jackson 
+Date:   Thu May 19 00:22:39 2005 +
+
+revert last change, didn't do right thing at all, sorry for the noise
+
+commit 5901343a49c424da552a7ef40b53d01b1b77b291
+Author: Adam Jackson 
+Date:   Thu May 19 00:10:17 2005 +
+
+Require automake 1.7 in AM_INIT_AUTOMAKE
+
+commit 6da9cb33ea4b587f47fcb0a4e086943afb5f6039
+Author: Josh Triplett 
+Date:   Sat May 14 08:39:45 2005 +
+
+Add COPYING file for Fontcache.
+
+commit 32157c7dc40ecf148db657ee8e6c01cf4e23ebb4
+Author: Søren Sandmann Pedersen 
+Date:   Mon May 9 18:20:04 2005 +
+
+Change all the protonames from Ext to Proto.
+
+commit 4653ec6e4e4f1917eb374c5ca8211993c76e643d
+Author: Kevin E Martin 
+Date:   Fri May 6 01:46:30 2005 +
+
+Initial build system files for proto module.
+
+commit cc2328e65469115c32617c2c7434e5110e383d4c
+Author: Egbert Eich 
+Date:   Fri Apr 23 18:43:06 2004 +
+
+Merging XORG-CURRENT into trunk
+
+commit e15f038c34265c2f984be29b4323786362f3724e
+Author: Egbert Eich 
+Date:   Sun Mar 14 08:31:36 2004 +
+
+Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
+
+commit 47edd8743037411048cf5122eb911b916ccf2fba
+Author: Egbert Eich 
+Date:   Wed Mar 3 12:10:54 2004 +
+
+Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
+
+commit 5f059cd0b8c545917405b434ae570a57a31c0267
+Author: Egbert Eich 
+Date:   Thu Feb 26 13:35:13 2004 +
+
+readding XFree86's cvs IDs
+
+commit 0bd7bac3ccb3ef436ff8f306ec03cac6252e210d
+Author: Egbert Eich 
+Date:   Thu Feb 26 09:22:28 2004 +
+
+Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
+
+commit e9dacf494c059dc3e66a564378679146ff55ed3e
+Author: Kaleb Keithley 
+Date:   

x11proto-fontcache: 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 d0ca5192fa58605940f5432ed77b85fd3ed09c79
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sun May 11 18:32:36 2008 +0200

Prepare changelog for upload

diff --git a/debian/changelog b/debian/changelog
index ba70491..a674c48 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-x11proto-fontcache (0.1.2-5) UNRELEASED; urgency=low
+x11proto-fontcache (0.1.2-5) unstable; urgency=low
 
   [ Brice Goglin ]
   * Update the long description.
@@ -11,7 +11,7 @@ x11proto-fontcache (0.1.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:08:44 +0200
+ -- Julien Cristau <[EMAIL PROTECTED]>  Sun, 11 May 2008 18:31:45 +0200
 
 x11proto-fontcache (0.1.2-4) unstable; urgency=low
 

commit 1b923ae0f498d5e428c5419a78ae3cb0eeeb05d4
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sun May 11 18:31:36 2008 +0200

debian/control updates

* Use Vcs-* 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 cd347ef..ba70491 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,16 @@
 x11proto-fontcache (0.1.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:08:44 +0200
 
 x11proto-fontcache (0.1.2-4) unstable; urgency=low
diff --git a/debian/control b/debian/control
index 533ee44..22c097d 100644
--- a/debian/control
+++ b/debian/control
@@ -2,11 +2,11 @@ Source: x11proto-fontcache
 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-fontcache
-XS-Vcs-Browser: http://git.debian.org/?p=pkg-xorg/proto/x11proto-fontcache.git
+Standards-Version: 3.7.3
+Vcs-Git: git://git.debian.org/git/pkg-xorg/proto/x11proto-fontcache
+Vcs-Browser: http://git.debian.org/?p=pkg-xorg/proto/x11proto-fontcache.git
 
 Package: x11proto-fontcache-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

x11proto-fontcache: Changes to 'debian-unstable'

2007-08-13 Thread Brice Goglin
 debian/changelog |9 +
 debian/control   |   12 +++-
 debian/copyright |3 +++
 3 files changed, 19 insertions(+), 5 deletions(-)

New commits:
commit 17fd845cfdaee1a818c7c6fe47773204fd8cfdd6
Author: Brice Goglin <[EMAIL PROTECTED]>
Date:   Tue Aug 14 00:27:36 2007 +0200

Various fixed in debian/control and copyright

diff --git a/debian/changelog b/debian/changelog
index e72d20b..cd347ef 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+x11proto-fontcache (0.1.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:08:44 +0200
+
 x11proto-fontcache (0.1.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 05243e5..533ee44 100644
--- a/debian/control
+++ b/debian/control
@@ -2,21 +2,23 @@ Source: x11proto-fontcache
 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-fontcache
+XS-Vcs-Browser: http://git.debian.org/?p=pkg-xorg/proto/x11proto-fontcache.git
 
 Package: x11proto-fontcache-dev
 Architecture: all
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Pre-Depends: x11-common (>= 1:7.0.0)
 Description: X11 font cache extension wire protocol
- This package provides the wire protocol for the Fontcache extension, used to
- configure the caching of core fonts.
+ This package provides development headers describing the wire protocol
+ for the Fontcache extension, used to configure the caching of core fonts.
  .
  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/Fontcache' at
- :pserver:[EMAIL PROTECTED]:/cvs/xorg
+ This package is built from the X.org fontcacheproto proto module.
diff --git a/debian/copyright b/debian/copyright
index 3e473ad..cc57601 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,3 +1,6 @@
+This package was downloaded from
+http://xorg.freedesktop.org/releases/individual/proto/
+
 Copyright (c) 1998-1999 Shunsuke Akiyama <[EMAIL PROTECTED]>.
 All rights reserved.
 Copyright (c) 1998-1999 X-TrueType Server Project, All rights reserved.


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



x11proto-fontcache: Changes to 'debian-unstable'

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

Add some more watch files.

commit b7eaf530fd862b583d19acb7d1b201c00e3a80c7
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Mon Aug 28 00:11:05 2006 +

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

commit b77d48f272a488e9c480ff8e1a1ea393d50cd687
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 2b14b694c1478536015cd8550c937bb202f0beeb
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Fri Mar 24 02:44:27 2006 +

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

commit 17c5a884b8d2456380c9230d67c4a4cb03931763
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 d6738cee89d5c5fdc0e85a605d4a7249bb8a250d
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Mon Jan 23 02:45:38 2006 +

Set protocol headers to be uploaded to experimental

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

Update proto headers to 7.0 with packaging

commit 6a9f3e8c9bc44cb8d657c0af80b1608c7f486998
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]