~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/HACKING.txt

  • Committer: Joe Julian
  • Date: 2010-01-10 02:25:31 UTC
  • mto: (4634.119.7 2.0)
  • mto: This revision was merged to the branch mainline in revision 4959.
  • Revision ID: joe@julianfamily.org-20100110022531-wqk61rsagz8xsiga
Added MANIFEST.in to allow bdist_rpm to have all the required include files and tools. bdist_rpm will still fail to build correctly on some distributions due to a disttools bug http://bugs.python.org/issue644744

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
the Bazaar mailing list.  To propose a correction or addition to this
12
12
document, send a merge request or new text to the mailing list.
13
13
 
14
 
The current version of this document is available in the file 
15
 
``doc/en/developer-guide/HACKING.txt`` in the source tree, or at
16
 
http://doc.bazaar-vcs.org/bzr.dev/en/developer-guide/HACKING.html
17
 
 
18
 
See also:
19
 
`Bazaar Developer Documentation Catalog <../../developers/index.html>`_.
20
 
 
21
 
.. contents::
 
14
The latest developer documentation can be found online at
 
15
http://doc.bazaar-vcs.org/developers/.
22
16
 
23
17
 
24
18
Getting Started
82
76
Bazaar Development in a Nutshell
83
77
================================
84
78
 
85
 
Looking for a 10 minute introduction to submitting a change?
86
 
See http://bazaar-vcs.org/BzrGivingBack.
87
 
 
88
 
TODO: Merge that Wiki page into this document.
 
79
.. was from bazaar-vcs.org/BzrGivingBack
 
80
 
 
81
One of the fun things about working on a version control system like Bazaar is
 
82
that the users have a high level of proficiency in contributing back into
 
83
the tool.  Consider the following very brief introduction to contributing back
 
84
to Bazaar.  More detailed instructions are in the following sections.
 
85
 
 
86
Making the change
 
87
-----------------
 
88
 
 
89
First, get a local copy of the development mainline (See `Why make a local
 
90
copy of bzr.dev?`_.) 
 
91
::
 
92
 
 
93
 $ bzr init-repo ~/bzr
 
94
 $ cd ~/bzr
 
95
 $ bzr branch http://bazaar-vcs.org/bzr/bzr.dev/ bzr.dev
 
96
 
 
97
Now make your own branch::
 
98
 
 
99
 $ bzr branch bzr.dev 123456-my-bugfix
 
100
 
 
101
This will give you a branch called "123456-my-bugfix" that you can work on
 
102
and commit in. Here, you can study the code, make a fix or a new feature.
 
103
Feel free to commit early and often (after all, it's your branch!). 
 
104
 
 
105
Documentation improvements are an easy place to get started giving back to the
 
106
Bazaar project.  The documentation is in the `doc/` subdirectory of the Bazaar
 
107
source tree.
 
108
 
 
109
When you are done, make sure that you commit your last set of changes as well!
 
110
Once you are happy with your changes, ask for them to be merged, as described
 
111
below.
 
112
 
 
113
Making a Merge Proposal
 
114
-----------------------
 
115
 
 
116
The Bazaar developers use Launchpad to further enable a truly distributed
 
117
style of development.  Anyone can propose a branch for merging into the Bazaar
 
118
trunk.  To start this process, you need to push your branch to Launchpad.  To
 
119
do this, you will need a Launchpad account and user name, e.g.
 
120
`your_lp_username`.  You can push your branch to Launchpad directly from
 
121
Bazaar::
 
122
 
 
123
  $ bzr push lp:~your_lp_username/bzr/giveback
 
124
 
 
125
After you have pushed your branch, you will need to propose it for merging to
 
126
the Bazaar trunk.  Go to <https://launchpad.net/your_lp_username/bzr/giveback>
 
127
and choose "Propose for merging into another branch".  Select "~bzr/bzr/trunk"
 
128
to hand your changes off to the Bazaar developers for review and merging.
 
129
 
 
130
Why make a local copy of bzr.dev?
 
131
---------------------------------
 
132
 
 
133
Making a local mirror of bzr.dev is not strictly necessary, but it means
 
134
 
 
135
- You can use that copy of bzr.dev as your main bzr executable, and keep it
 
136
  up-to-date using ``bzr pull``.  
 
137
- Certain operations are faster, and can be done when offline.  For example:
 
138
 
 
139
  - ``bzr bundle``
 
140
  - ``bzr diff -r ancestor:...``
 
141
  - ``bzr merge``
 
142
 
 
143
- When it's time to create your next branch, it's more convenient.  When you 
 
144
  have further contributions to make, you should do them in their own branch::
 
145
 
 
146
    $ cd ~/bzr
 
147
    $ bzr branch bzr.dev additional_fixes
 
148
    $ cd additional_fixes # hack, hack, hack
 
149
 
89
150
 
90
151
 
91
152
Understanding the Development Process
135
196
  
136
197
    bzr branch http://bazaar-vcs.org/bzr/bzr.dev/ bzr.dev
137
198
   
138
 
* keep your copy of bzr.dev prestine (by not developing in it) and keep
 
199
* keep your copy of bzr.dev pristine (by not developing in it) and keep
139
200
  it up to date (by using bzr pull)
140
201
 
141
202
* create a new branch off your local bzr.dev copy for each issue
143
204
 
144
205
This approach makes it easy to go back and make any required changes
145
206
after a code review. Resubmitting the change is then simple with no
146
 
risk of accidentially including edits related to other issues you may
 
207
risk of accidentally including edits related to other issues you may
147
208
be working on. After the changes for an issue are accepted and merged,
148
209
the associated branch can be deleted or archived as you wish.
149
210
 
191
252
    is in the ReStructuredText markup language.
192
253
 
193
254
doc/developers 
194
 
    Documentation specifically targetted at Bazaar and plugin developers.
 
255
    Documentation specifically targeted at Bazaar and plugin developers.
195
256
    (Including this document.)
196
257
    
197
258
        
199
260
Automatically-generated API reference information is available at 
200
261
<http://starship.python.net/crew/mwh/bzrlibapi/>.  
201
262
 
202
 
See also the `Bazaar Architectural Overview  <../../developers/overview.html>`_.
 
263
See also the `Bazaar Architectural Overview
 
264
<http://doc.bazaar-vcs.org/developers/overview.html>`_.
203
265
 
204
266
 
205
267
The Code Review Process
213
275
Good reviews do take time. They also regularly require a solid
214
276
understanding of the overall code base. In practice, this means a small
215
277
number of people often have a large review burden - with knowledge comes
216
 
responsibility. No one like their merge requests sitting in a queue going
 
278
responsibility. No one likes their merge requests sitting in a queue going
217
279
nowhere, so reviewing sooner rather than later is strongly encouraged.
218
280
 
219
281
 
322
384
 
323
385
 * <https://help.launchpad.net/Code/Review>
324
386
 
325
 
Anyone can propose or comment on a merge propsal just by creating a
 
387
Anyone can propose or comment on a merge proposal just by creating a
326
388
Launchpad account.
327
389
 
328
390
There are two ways to create a new merge proposal: through the web
332
394
Proposing a merge through the web
333
395
---------------------------------
334
396
 
335
 
To create the propsal through the web: push your branch to Launchpad, eg::
 
397
To create the proposal through the web, first push your branch to Launchpad.
 
398
For example, a branch dealing with documentation belonging to the Launchpad
 
399
User mbp could be pushed as ::
336
400
 
337
401
  bzr push lp:~mbp/bzr/doc
338
402
 
339
 
then go to the branch's web page, which in this case would be
340
 
<https://code.launchpad.net/~mbp/bzr/doc>.  You can automate that by just
 
403
Then go to the branch's web page, which in this case would be
 
404
<https://code.launchpad.net/~mbp/bzr/doc>.  You can simplify this step by just
341
405
running ::
342
406
 
343
407
  bzr lp-open
344
408
 
345
 
You can then click "Propose for merging into another branch", and enter a
346
 
cover letter into the web form.  Typically you'll want to merge into
347
 
``~bzr/bzr/trunk`` which will be the default; you might also want to
348
 
nominate merging into a release branch for a bug fix.  There is the option
349
 
to specify a specific reviewer or type of review, and you shouldn't
350
 
normally change those.
 
409
You can then click "Propose for merging into another branch", and enter your
 
410
cover letter (see above) into the web form.  Typically you'll want to merge
 
411
into ``~bzr/bzr/trunk`` which will be the default; you might also want to
 
412
nominate merging into a release branch for a bug fix.  There is the option to
 
413
specify a specific reviewer or type of review, and you shouldn't normally
 
414
change those.
351
415
 
352
416
Submitting the form takes you to the new page about the merge proposal
353
417
containing the diff of the changes, comments by interested people, and
511
575
        marmalade,
512
576
        )
513
577
 
514
 
There should be spaces between function paramaters, but not between the
 
578
There should be spaces between function parameters, but not between the
515
579
keyword name and the value::
516
580
 
517
581
    call(1, 3, cheese=quark)
772
836
Test coverage
773
837
=============
774
838
 
775
 
All code should be exercised by the test suite.  See `Guide to Testing
776
 
Bazaar <../../developers/testing.html>`_ for detailed information about writing tests.
 
839
All code should be exercised by the test suite.  See the `Bazaar Testing
 
840
Guide <http://doc.bazaar-vcs.org/developers/testing.html>`_ for detailed
 
841
information about writing tests.
777
842
 
778
843
 
779
844
Core Topics
799
864
_function or ...) behind which forwards to the new API. See the
800
865
bzrlib.symbol_versioning module for decorators that take care of the
801
866
details for you - such as updating the docstring, and issuing a warning
802
 
when the old api is used.
 
867
when the old API is used.
803
868
 
804
869
For unsupported API's, it does not hurt to follow this discipline, but it's
805
870
not required. Minimally though, please try to rename things so that
922
987
The user should call `finish` on the `ProgressTask` when the logical
923
988
operation has finished, so it can be removed from the stack.
924
989
 
925
 
Progress tasks have a complex relatioship with generators: it's a very
 
990
Progress tasks have a complex relationship with generators: it's a very
926
991
good place to use them, but because python2.4 does not allow ``finally``
927
992
blocks in generators it's hard to clean them up properly.  In this case
928
993
it's probably better to have the code calling the generator allocate a
1236
1301
    Attempting to print an unprintable character will cause a UnicodeError.
1237
1302
    This is for commands that are intended more as scripting support, rather
1238
1303
    than plain user review.
1239
 
    For exampl: ``bzr ls`` is designed to be used with shell scripting. One
1240
 
    use would be ``bzr ls --null --unknows | xargs -0 rm``.  If ``bzr``
 
1304
    For example: ``bzr ls`` is designed to be used with shell scripting. One
 
1305
    use would be ``bzr ls --null --unknowns | xargs -0 rm``.  If ``bzr``
1241
1306
    printed a filename with a '?', the wrong file could be deleted. (At the
1242
1307
    very least, the correct file would not be deleted). An error is used to
1243
1308
    indicate that the requested action could not be performed.
1334
1399
* reviewing changes
1335
1400
* reviewing blueprints
1336
1401
* planning releases
1337
 
* managing releases (see the `Releasing Bazaar <../../developers/releasing.html>`_)
 
1402
* managing releases (see `Releasing Bazaar <http://doc.bazaar-vcs.org/developers/releasing.html>`_)
1338
1403
 
1339
1404
.. note::
1340
1405
  Removing barriers to community participation is a key reason for adopting
1542
1607
https://blueprints.launchpad.net/bzr/. Once a blueprint for ready for
1543
1608
review, please announce it on the mailing list.
1544
1609
 
1545
 
Alternatively, send an email begining with [RFC] with the proposal to the
 
1610
Alternatively, send an email beginning with [RFC] with the proposal to the
1546
1611
list. In some cases, you may wish to attach proposed code  or a proposed
1547
1612
developer document if that best communicates the idea. Debate can then
1548
1613
proceed using the normal merge review processes.