~ubuntu-dev/ubuntu/lucid/quilt/lucid-201002101907

« back to all changes in this revision

Viewing changes to test/nolink.test

  • Committer: Bazaar Package Importer
  • Author(s): Raphaël Hertzog, Martin Quinson, Raphaël Hertzog, Ryan Niebur
  • Date: 2009-09-02 22:05:25 UTC
  • mfrom: (1.2.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20090902220525-zhckxgbs9wqhyw83
[ Martin Quinson ]
* New upstream release.
* debian/patches/generic-awk: removed since merged upstream.
* debian/patches/*: updated so that they apply again on this release.

[ Raphaël Hertzog ]
* Remove Simon Hormans from Uploaders with his permission.
* debian/patches/fix-manpage-generation: fix Makefile so that
  the manual page is correctly generated with dash too (LP: #402237)
* Improve dh_quilt_patch/unpatch by respecting the QUILT_PATCH_DIR
  environment variable like /usr/share/quilt/quilt.make does.
  Closes: #544668

[ Ryan Niebur ]
* Add myself to Uploaders
* fixes to the arch_all patch to pass test suite
  - port upstream changes to the c version to the bash rewrite
    of backup-files
  - fix backup-files to process all files passed in on the
    command line instead of just the last (a clear bug)
* refresh all patches with -p ab
* add procmail to build deps, needed by tests
* Debian Policy 3.8.3

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 foo > foo
 
6
        $ ln foo foo2
 
7
        $ ls -l foo | awk '{ print $2 }'
 
8
        > 2
 
9
 
 
10
        $ quilt new test.diff
 
11
        > Patch patches/test.diff is now on top
 
12
 
 
13
        $ quilt add foo
 
14
        > File foo added to patch patches/test.diff
 
15
 
 
16
        $ ls -l foo | awk '{ print $2 }'
 
17
        > 1
 
18
 
 
19
        $ ls -l .pc/test.diff/foo | awk '{ print $2 }'
 
20
        > 2
 
21
 
 
22
        $ echo "foo changed" > foo
 
23
        $ quilt refresh
 
24
        > Refreshed patch patches/test.diff
 
25
 
 
26
        $ quilt new test2.diff
 
27
        > Patch patches/test2.diff is now on top
 
28
 
 
29
        $ quilt add foo
 
30
        > File foo added to patch patches/test2.diff
 
31
 
 
32
        $ ls -l foo | awk '{ print $2 }'
 
33
        > 1
 
34
 
 
35
        $ ls -l .pc/test2.diff/foo | awk '{ print $2 }'
 
36
        > 1
 
37
 
 
38
        $ echo "foo changed again" > foo
 
39
        $ quilt refresh
 
40
        > Refreshed patch patches/test2.diff
 
41
 
 
42
        $ quilt pop -q
 
43
        > Removing patch patches/test2.diff
 
44
        > Now at patch patches/test.diff
 
45
 
 
46
        $ ls -l foo | awk '{ print $2 }'
 
47
        > 1
 
48
 
 
49
        $ quilt pop -q
 
50
        > Removing patch patches/test.diff
 
51
        > No patches applied
 
52
 
 
53
        $ ls -l foo | awk '{ print $2 }'
 
54
        > 2
 
55
 
 
56
        $ cd ..
 
57
        $ rm -rf d