~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/tutorials/using_bazaar_with_launchpad.txt

  • Committer: John Arbash Meinel
  • Date: 2011-05-11 11:35:28 UTC
  • mto: This revision was merged to the branch mainline in revision 5851.
  • Revision ID: john@arbash-meinel.com-20110511113528-qepibuwxicjrbb2h
Break compatibility with python <2.6.

This includes auditing the code for places where we were doing
explicit 'sys.version' checks and removing them as appropriate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
244
244
quality standards.
245
245
 
246
246
 
 
247
Package source branches
 
248
-----------------------
 
249
 
 
250
When `maintaining packages for Ubuntu using Bazaar`_ you can easily access the
 
251
package's source branch on Launchpad.  The package's source branch in the
 
252
current (default) series can be downloaded like this::
 
253
 
 
254
  bzr branch ubuntu:package
 
255
 
 
256
where *package* is the name of the Ubuntu package you want to access.  To
 
257
download the package branch for a specific series in Ubuntu (e.g. Maverick or
 
258
Lucid), use this::
 
259
 
 
260
  bzr branch ubuntu:maverick/package
 
261
 
 
262
Ubuntu distroseries can also be abbreviated to just their first letter.  For
 
263
example, the above could also be written::
 
264
 
 
265
  bzr branch ubuntu:m/package
 
266
 
 
267
You can also download the package source branch from Launchpad for several
 
268
Debian series.  The default series can be downloaded like this::
 
269
 
 
270
  bzr branch debianlp:package
 
271
 
 
272
and a specific series can be downloaded like this::
 
273
 
 
274
  bzr branch debianlp:lenny/package
 
275
 
 
276
Note that the ``debianlp:`` scheme access the Debian source branch for a
 
277
package from Launchpad only.
 
278
 
 
279
.. _`maintaining packages for Ubuntu using Bazaar`: https://wiki.ubuntu.com/DistributedDevelopment
 
280
 
 
281
 
247
282
Linking branches using Launchpad
248
283
================================
249
284