summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamey Sharp <jamey@minilop.net>2006-10-07 22:49:45 -0700
committerJamey Sharp <jamey@minilop.net>2006-10-07 22:49:45 -0700
commit2f065ed8c9e96d4f8c6555f6c7e97b362808dfaa (patch)
treefdf9afca068fa6ff3b9bf416332ace2d14e26791
parent4b738b87b2e3791877e9e0d6ba66f48282f174f7 (diff)
downloadxcb-proto-2f065ed8c9e96d4f8c6555f6c7e97b362808dfaa.tar.gz
Move debian/ directory to new branch "debian".
-rw-r--r--debian/.gitignore4
-rw-r--r--debian/changelog44
-rw-r--r--debian/control31
-rw-r--r--debian/copyright.debian12
-rw-r--r--debian/docs1
-rwxr-xr-xdebian/rules14
6 files changed, 0 insertions, 106 deletions
diff --git a/debian/.gitignore b/debian/.gitignore
deleted file mode 100644
index 5e2160e..0000000
--- a/debian/.gitignore
+++ /dev/null
@@ -1,4 +0,0 @@
-compat
-stamp-*
-tmp
-files
diff --git a/debian/changelog b/debian/changelog
deleted file mode 100644
index d64f165..0000000
--- a/debian/changelog
+++ /dev/null
@@ -1,44 +0,0 @@
-xcb-proto (0.9-3) experimental; urgency=low
-
- * Stop running autoreconf in debian/rules, and remove Build-Depends for
- autoconf and automake.
- * Debian X11R7 transition:
- * Install protocol descriptions to /usr/include/X11, not
- /usr/X11R6/include/X11.
- * Pre-Depends: x11-common (>= 1:1.09).
- * Validate the protocol descriptions during the build:
- * Set DEB_MAKE_CHECK_TARGET=check in debian/rules.
- * Add Build-Depends on libxml2-utils for xmllint.
- * Remove Bugs field in control, so bugs go to the Debian BTS.
- * Set distribution to experimental.
-
- -- Josh Triplett <josh@freedesktop.org> Sat, 29 Apr 2006 10:57:24 -0700
-
-xcb-proto (0.9-2) unstable; urgency=low
-
- * Change Architecture from any to all; these protocol descriptions are
- architecture-independent.
- * Remove fd.o prefix from package name.
- * Change Maintainer to xcb@lists.freedesktop.org, move myself to
- Uploaders, and add Jamey Sharp to Uploaders. Update copyright.debian
- accordingly.
- * Add Bugs field pointing to xcb@lists.freedesktop.org.
- * Update homepage URL in description and copyright.debian to
- http://xcb.freedesktop.org, and put it in a Homepage: field in the
- description.
-
- -- Josh Triplett <josh@freedesktop.org> Wed, 23 Mar 2005 13:03:45 -0800
-
-fd.o-xcb-proto (0.9-1) unstable; urgency=low
-
- * New version with XML protocol descriptions.
- * Updated Debian packaging.
-
- -- Josh Triplett <josh@freedesktop.org> Fri, 29 Oct 2004 15:11:09 -0700
-
-fd.o-xcb-proto (0.8-1) unstable; urgency=low
-
- * Initial Release.
-
- -- Jamey Sharp <sharpone@debian.org> Thu, 18 Mar 2004 00:09:03 -0800
-
diff --git a/debian/control b/debian/control
deleted file mode 100644
index 248c618..0000000
--- a/debian/control
+++ /dev/null
@@ -1,31 +0,0 @@
-Source: xcb-proto
-Section: libdevel
-Priority: optional
-Maintainer: XCB Developers <xcb@lists.freedesktop.org>
-Uploaders: Jamey Sharp <sharpone@debian.org>, Josh Triplett <josh@freedesktop.org>
-Build-Depends: cdbs, debhelper (>= 4.0.0), libxml2-utils
-Standards-Version: 3.6.1
-
-Package: xcb-proto
-Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}
-Pre-Depends: x11-common (>= 1:1.09)
-Description: X C Binding - protocol descriptions
- xcb-proto contains descriptions of the X Window System core protocol and
- selected extensions in an XML-based data format. The X C Binding (XCB)
- library uses these descriptions to generate much of its code. You only need
- this package if you want to compile XCB or otherwise make use of these
- protocol descriptions.
- .
- The XCB library provides an interface to the X Window System protocol,
- designed to replace the Xlib interface. XCB provides several advantages over
- Xlib:
- .
- * Size: small library and lower memory footprint
- * Latency hiding: batch several requests and wait for the replies later
- * Direct protocol access: one-to-one mapping between interface and protocol
- * Thread support: access XCB from multiple threads, with no explicit locking
- * Easy creation of new extensions: automatically generates interface from
- machine-parsable protocol descriptions
- .
- Homepage: http://xcb.freedesktop.org
diff --git a/debian/copyright.debian b/debian/copyright.debian
deleted file mode 100644
index 7cd330a..0000000
--- a/debian/copyright.debian
+++ /dev/null
@@ -1,12 +0,0 @@
-This package was debianized by Jamey Sharp <sharpone@debian.org> on
-Thu, 18 Mar 2004 00:48:42 -0800, and later updated by Josh Triplett
-<josh@freedesktop.org>. The package is co-maintained by the XCB developers
-via the XCB mailing list <xcb@lists.freedesktop.org>.
-
-It was downloaded from http://xcb.freedesktop.org.
-
-Upstream Authors: Jamey Sharp <sharpone@debian.org>
- Josh Triplett <josh@freedesktop.org>
-
-Copyright:
-
diff --git a/debian/docs b/debian/docs
deleted file mode 100644
index b580384..0000000
--- a/debian/docs
+++ /dev/null
@@ -1 +0,0 @@
-doc/xml-xcb.txt
diff --git a/debian/rules b/debian/rules
deleted file mode 100755
index 631795d..0000000
--- a/debian/rules
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/make -f
-
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/autotools.mk
-
-DEB_MAKE_CHECK_TARGET=check
-
-debian/copyright: debian/copyright.debian COPYING
- cat $+ > $@
-
-clean::
- -rm -f debian/copyright
-
-common-install-prehook-arch common-install-prehook-indep:: debian/copyright