~ubuntu-branches/ubuntu/raring/parcellite/raring-proposed

« back to all changes in this revision

Viewing changes to debian/README.source

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Starr-Bochicchio
  • Date: 2009-08-24 21:26:30 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090824212630-lyxewmpg9l0dyxy2
Tags: 0.9.1-0ubuntu1
* New upstream release.
 - New:
  + Several new translations.
  + Print primary contents command line option.
  + Clipboard and primary synchronization (by Wolfgang Schnerring).
 - Changes:
  + Updated translations.
  + Eliminated redundant disk activity.
  + Control-click patch for actions menu.
  + Selected items are bumped to the top of the history.
  + Improved (once again) new clipboard/primary contents handling.
  + Piping clipboard contents no longer truncates new line character.
  + New Edit Clipboard dialog. Old dialog had strange behavior under 
    different window managers.
* debian/control
 - Fix short description and add to the long description.
 - Add Vcs-* field.
 - Bump Standards-Version to 3.8.3, no chages needed.
* debian/rules:
 - Install conf files to /etc not /usr/etc
* Added debian/README.source exlaining quilt
* debian/patches/*
 - Refresh for new release.
 - Add Description fields and upstream bug numbers.
 - Drop 03_ctrl_click.patch, included upstream.
* debian/copyright
 - Add new copyright holder for po/sv.po
 - Point to exact versions of GPL

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
This package uses quilt to manage all modifications to the upstream
 
2
source.  Changes are stored in the source package as diffs in
 
3
debian/patches and applied during the build.
 
4
 
 
5
To get the fully patched source after unpacking the source package, cd to
 
6
the root level of the source package and run:
 
7
 
 
8
    quilt push -aThis package uses quilt to manage all modifications to the upstream
 
9
source.  Changes are stored in the source package as diffs in
 
10
debian/patches and applied during the build.
 
11
 
 
12
To get the fully patched source after unpacking the source package, cd to
 
13
the root level of the source package and run:
 
14
 
 
15
    quilt push -a
 
16
 
 
17
The last patch listed in debian/patches/series will become the current
 
18
patch.
 
19
 
 
20
To add a new set of changes, first run quilt push -a, and then run:
 
21
 
 
22
    quilt new <patch>
 
23
 
 
24
where <patch> is a descriptive name for the patch, used as the filename in
 
25
debian/patches.  Then, for every file that will be modified by this patch,
 
26
run:
 
27
 
 
28
    quilt add <file>
 
29
 
 
30
before editing those files.  You must tell quilt with quilt add what files
 
31
will be part of the patch before making changes or quilt will not work
 
32
properly.  After editing the files, run:
 
33
 
 
34
    quilt refresh
 
35
 
 
36
to save the results as a patch.
 
37
 
 
38
Alternately, if you already have an external patch and you just want to
 
39
add it to the build system, run quilt push -a and then:
 
40
 
 
41
    quilt import -P <patch> /path/to/patch
 
42
    quilt push -a
 
43
 
 
44
(add -p 0 to quilt import if needed). <patch> as above is the filename to
 
45
use in debian/patches.  The last quilt push -a will apply the patch to
 
46
make sure it works properly.
 
47
 
 
48
To remove an existing patch from the list of patches that will be applied,
 
49
run:
 
50
 
 
51
    quilt delete <patch>
 
52
 
 
53
You may need to run quilt pop -a to unapply patches first before running
 
54
this command.
 
55
 
 
56
 
 
57
The last patch listed in debian/patches/series will become the current
 
58
patch.
 
59
 
 
60
To add a new set of changes, first run quilt push -a, and then run:
 
61
 
 
62
    quilt new <patch>
 
63
 
 
64
where <patch> is a descriptive name for the patch, used as the filename in
 
65
debian/patches.  Then, for every file that will be modified by this patch,
 
66
run:
 
67
 
 
68
    quilt add <file>
 
69
 
 
70
before editing those files.  You must tell quilt with quilt add what files
 
71
will be part of the patch before making changes or quilt will not work
 
72
properly.  After editing the files, run:
 
73
 
 
74
    quilt refresh
 
75
 
 
76
to save the results as a patch.
 
77
 
 
78
Alternately, if you already have an external patch and you just want to
 
79
add it to the build system, run quilt push -a and then:
 
80
 
 
81
    quilt import -P <patch> /path/to/patch
 
82
    quilt push -a
 
83
 
 
84
(add -p 0 to quilt import if needed). <patch> as above is the filename to
 
85
use in debian/patches.  The last quilt push -a will apply the patch to
 
86
make sure it works properly.
 
87
 
 
88
To remove an existing patch from the list of patches that will be applied,
 
89
run:
 
90
 
 
91
    quilt delete <patch>
 
92
 
 
93
You may need to run quilt pop -a to unapply patches first before running
 
94
this command.
 
95