~ubuntu-branches/ubuntu/precise/sakura/precise-proposed

« back to all changes in this revision

Viewing changes to debian/README.source

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Starr-Bochicchio
  • Date: 2010-05-18 12:54:42 UTC
  • mfrom: (2.1.18 sakura)
  • Revision ID: james.westby@ubuntu.com-20100518125442-cmfycf9jvz1pargw
Tags: 2.3.8-1
Initial Debian release. (Closes: #467375)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
This package uses quilt in order to apply patches to the upstream source.  
2
 
Patches are stored in debian/patches. For further details, see the man page for 
3
 
quilt.
4
 
 
5
 
All commands described below should be run from the top directory of the 
6
 
package source tree, unless otherwise stated.
7
 
 
8
 
 * To generate the fully patched source, in a form ready for editing, that 
9
 
   would be built to create Debian packages, run: 
10
 
 
11
 
     export QUILT_PATCHES=debian/patches
12
 
     quilt push -a
13
 
 
14
 
 * To modify the source and save those modifications so that they will be 
15
 
   applied when building the package, pick a suitably informative patch file 
16
 
   name, for example Modify_README.source, and then run:
17
 
 
18
 
     export QUILT_PATCHES=debian/patches
19
 
     quilt new Modify_README.source
20
 
     quilt edit README.source
21
 
 
22
 
   This will place you in your default editor to modify the file.
23
 
   Once your are done editing, save the file and run:
24
 
 
25
 
     quilt refresh
26
 
 
27
 
 * To remove source modifications that are currently being applied when 
28
 
   building the package, run:
29
 
 
30
 
     export QUILT_PATCHES=debian/patches
31
 
     quilt top