summaryrefslogtreecommitdiffstats
path: root/debian
diff options
context:
space:
mode:
authorMartin Quinson <mquinson@debian.org>2005-01-06 19:52:21 +0000
committerMartin Quinson <mquinson@debian.org>2005-01-06 19:52:21 +0000
commit590c91a5b3c4bbc84af78fde22a398adee229b25 (patch)
tree425a01556b33b64a455aa0af5ad80d18f15ec3b5 /debian
parent6717c91610391253ba35e8ca77252e93366b49ab (diff)
downloadquilt-590c91a5b3c4bbc84af78fde22a398adee229b25.tar.gz
Add the template to generate the control automatically
Diffstat (limited to 'debian')
-rw-r--r--debian/control.in34
1 files changed, 34 insertions, 0 deletions
diff --git a/debian/control.in b/debian/control.in
new file mode 100644
index 0000000..8113047
--- /dev/null
+++ b/debian/control.in
@@ -0,0 +1,34 @@
+# -*- coding: utf-8 -*-
+
+Source: quilt
+Section: devel
+Priority: optional
+Maintainer: Martin Quinson <mquinson@debian.org>
+Build-Depends: @cdbs@, gettext
+Standards-Version: 3.6.1.0
+
+Package: quilt
+Architecture: any
+Depends: patch, diffstat, bzip2, gettext, gawk, ${shlibs:Depends}
+Suggests: ccache
+Description: Tool to work with series of patches
+ Quilt manages a series of patches by keeping track of the changes
+ each of them makes. They are logically organized as a stack, and you can
+ apply, un-apply, refresh them easily by traveling into the stack (push/pop).
+ .
+ Quilt is good for managing additional patches applied to a package received
+ as a tarball or maintained in another version control system. The stacked
+ organization proved to be efficient for the management of very large patch
+ sets (more than hundred patches). As matter of fact, it was designed by and
+ for linux kernel hackers (Andrew Morton, from the -mm branch, is the
+ original author), and its main use by the current upstream maintainer is to
+ manage the (hundreds of) patches against the kernel made for the SUSE
+ distribution.
+ .
+ This package completely integrates into the CDBS, allowing maintainers
+ using this new paradigm for their packaging script to benefit of the quilt
+ comfort when editing their diff against upstream. The package also provide
+ some basic support for the fool not using CDBS (yet).
+ .
+ http://savannah.nongnu.org/projects/quilt is the current best approximation
+ of an upstream homepage.