Merge lp:~maxb/bzr/ppa-packaging-move-to-package-branch-namespace into lp:bzr

Proposed by Max Bowsher
Status: Merged
Approved by: John A Meinel
Approved revision: no longer in the source branch.
Merged at revision: 5391
Proposed branch: lp:~maxb/bzr/ppa-packaging-move-to-package-branch-namespace
Merge into: lp:bzr
Diff against target: 49 lines (+5/-8)
2 files modified
doc/developers/ppa.txt (+4/-4)
tools/packaging/update-packaging-branches.sh (+1/-4)
To merge this branch: bzr merge lp:~maxb/bzr/ppa-packaging-move-to-package-branch-namespace
Reviewer Review Type Date Requested Status
John A Meinel Approve
Review via email: mp+33862@code.launchpad.net

Commit message

Document moving packaging branches to the standand ~bzr/ubuntu/* layouts"

Description of the change

Relating to https://lists.ubuntu.com/archives/bazaar/2010q3/069806.html and subsequent messages.

I have moved all the packaging branches for the ~bzr PPAs to the Launchpad package branch namespace. This merge updates the bzr in-tree documentation and scripts.

To post a comment you must log in.
Revision history for this message
John A Meinel (jameinel) wrote :

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 8/26/2010 7:39 PM, Max Bowsher wrote:
> Max Bowsher has proposed merging lp:~maxb/bzr/ppa-packaging-move-to-package-branch-namespace into lp:bzr.
>
> Requested reviews:
> bzr-core (bzr-core)
>
>
> Relating to https://lists.ubuntu.com/archives/bazaar/2010q3/069806.html and subsequent messages.
>
> I have moved all the packaging branches for the ~bzr PPAs to the Launchpad package branch namespace. This merge updates the bzr in-tree documentation and scripts.

 merge: approve

John
=:->
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (Cygwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkx3GR0ACgkQJdeBCYSNAANvZwCcDJsRJElLGrqgpdcAFQehlg7C
F3kAnjZA1FtUPVXuo2khRIHUxmgC5Fvj
=+8UM
-----END PGP SIGNATURE-----

review: Approve
Revision history for this message
John A Meinel (jameinel) wrote :

sent to pqm by email

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'doc/developers/ppa.txt'
2--- doc/developers/ppa.txt 2010-08-20 05:20:56 +0000
3+++ doc/developers/ppa.txt 2010-08-27 00:39:56 +0000
4@@ -40,9 +40,9 @@
5
6 The packaging information is kept in branches of bzr on Launchpad, named
7 like
8-<https://code.launchpad.net/~bzr/bzr/packaging-hardy>.
9+<https://code.launchpad.net/~bzr/ubuntu/hardy/bzr/bzr-ppa>.
10 or
11-<lp:~bzr/bzr/packaging-hardy>. These branches are intended to be used
12+<lp:~bzr/ubuntu/hardy/bzr/bzr-ppa>. These branches are intended to be used
13 with the ``bzr-builddeb`` plugin.
14
15 **You should almost always upload to the beta ppa first** and then either
16@@ -203,7 +203,7 @@
17
18 #. Checkout (or update) the packaging branch for each supported release::
19
20- bzr co lp:~bzr/bzr/packaging-hardy
21+ bzr co lp:~bzr/ubuntu/hardy/bzr/bzr-ppa
22
23 There is a script available to help::
24
25@@ -268,7 +268,7 @@
26
27 #. Build the source packages::
28
29- cd packaging-$DISTRO; bzr builddeb -S
30+ cd bzr-$DISTRO; bzr builddeb -S
31
32 This will create a ``.changes`` file. If you didn't configure builddeb
33 to automatically sign them, you can use ::
34
35=== modified file 'tools/packaging/update-packaging-branches.sh'
36--- tools/packaging/update-packaging-branches.sh 2009-06-03 10:20:19 +0000
37+++ tools/packaging/update-packaging-branches.sh 2010-08-27 00:39:56 +0000
38@@ -18,10 +18,7 @@
39 cd ..
40 fi
41 else
42- SRC="lp:~bzr/$PACKAGE/packaging-$DISTRO"
43- if [ "$PACKAGE" = "bzr-svn" ] ; then
44- SRC="lp:~bzr/$PACKAGE/beta-ppa-$DISTRO"
45- fi
46+ SRC="lp:~bzr/ubuntu/$DISTRO/$PACKAGE/bzr-ppa"
47 echo "Checking out $SRC"
48 bzr co $SRC $PACKAGE-$DISTRO
49 fi