~ubuntu-branches/ubuntu/natty/quilt/natty

« back to all changes in this revision

Viewing changes to test/null-bug.test

  • Committer: Bazaar Package Importer
  • Author(s): Martin Quinson
  • Date: 2006-11-23 16:17:11 UTC
  • mfrom: (2.1.6 feisty)
  • Revision ID: james.westby@ubuntu.com-20061123161711-b17ess0ls8t959ca
Tags: 0.45-6
* [debian/patches/override_mail_sender_in_testsuite]
  Fix the patch to catch all occurences of 'quilt mail' since each of them
  will cause a FTBFS on misconfigured hosts (thanks to Goswin Brederlow).
  (Closes: #397285, #395482, #393985) I hope, at least.
  
* [debian/patches/doc_improvement]
  Fix some more typos in the manpages
  (Closes: #386548, #395447)

* [debian/control]
   Add procmail to suggest list to help users locating the 'formail' tool.
   (Closes: #396093)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
        $ rm -rf d
 
2
        $ mkdir -p d/patches
 
3
        $ cd d
 
4
 
 
5
        $ echo file > file
 
6
        $ quilt new remove.diff
 
7
        > Patch patches/remove.diff is now on top
 
8
 
 
9
        $ quilt add file
 
10
        > File file added to patch patches/remove.diff
 
11
 
 
12
In this case, the original file in the --- line must not have .orig appended
 
13
or else patch won't know the real original filename anymore.
 
14
 
 
15
        $ rm file
 
16
        $ quilt diff -p0
 
17
        > Index: file
 
18
        > ===================================================================
 
19
        > --- file
 
20
        > +++ /dev/null
 
21
        > @@ -1 +0,0 @@
 
22
        > -file
 
23
 
 
24
        $ quilt refresh -p0
 
25
        > Refreshed patch patches/remove.diff
 
26
 
 
27
        $ quilt pop -q
 
28
        > Removing patch patches/remove.diff
 
29
        > No patches applied
 
30
 
 
31
        $ quilt push -q
 
32
        > Applying patch patches/remove.diff
 
33
        > Now at patch patches/remove.diff
 
34
        
 
35
        $ cd ..
 
36
        $ rm -r d