Merge lp:~jelmer/bzr-windows-installers/bzr-git into lp:bzr-windows-installers

Proposed by Jelmer Vernooij
Status: Superseded
Proposed branch: lp:~jelmer/bzr-windows-installers/bzr-git
Merge into: lp:bzr-windows-installers
Diff against target: 57 lines (+7/-1)
1 file modified
bazaar_releases.py (+7/-1)
To merge this branch: bzr merge lp:~jelmer/bzr-windows-installers/bzr-git
Reviewer Review Type Date Requested Status
John A Meinel Needs Information
Review via email: mp+76100@code.launchpad.net

This proposal has been superseded by a proposal from 2011-10-14.

Commit message

Add dulwich/bzr-git to the installer.

Description of the change

Add dulwich/bzr-git to the installer.

This is completely untested, but I'm hoping somebody else will have a chance to do some more testing of it as I don't have the environment for building installers here.

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 9/19/2011 10:21 PM, Jelmer Vernooij wrote:
> Jelmer Vernooij has proposed merging
> lp:~jelmer/bzr-windows-installers/bzr-git into
> lp:bzr-windows-installers.
>
> Requested reviews: Bazaar Developers (bzr)
>
> For more details, see:
> https://code.launchpad.net/~jelmer/bzr-windows-installers/bzr-git/+merge/76100
>
> Add dulwich/bzr-git to the installer.
>
> This is completely untested, but I'm hoping somebody else will have
> a chance to do some more testing of it as I don't have the
> environment for building installers here.

I'm not sure all the parts you've touched. I would probably like to
avoid adding bzr-git to the 2.4-and-earlier series, since those are
considered 'stable'. I think it would be good to add to the 2.5
installers. I suppose we could come back later and add bzr-git to old
stable series if we find it works really well and people want them in
the stable releases. I'd just start with beta-only for now.

I'm probably going to skip this for bzr-2.5b1-1, but I could consider
it for bzr-2.5b1-2 or bzr-2.5b2-1. Thoughts?

 review: needsinfo

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

iEYEARECAAYFAk54dqEACgkQJdeBCYSNAAML0gCg0LaSC+4Q1KrVK0T22OP6UzX0
wmQAn1iwF5RhGFUOTJI/E6L5Eo6FKjrI
=4zom
-----END PGP SIGNATURE-----

review: Needs Information
Revision history for this message
Jelmer Vernooij (jelmer) wrote :

On Tue 20 Sep 2011 13:18:57 CEST, John Arbash Meinel wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> On 9/19/2011 10:21 PM, Jelmer Vernooij wrote:
>> Jelmer Vernooij has proposed merging
>> lp:~jelmer/bzr-windows-installers/bzr-git into
>> lp:bzr-windows-installers.
>>
>> Requested reviews: Bazaar Developers (bzr)
>>
>> For more details, see:
>> https://code.launchpad.net/~jelmer/bzr-windows-installers/bzr-git/+merge/76100
>>
>> Add dulwich/bzr-git to the installer.
>>
>> This is completely untested, but I'm hoping somebody else will have
>> a chance to do some more testing of it as I don't have the
>> environment for building installers here.
>
> I'm not sure all the parts you've touched. I would probably like to
> avoid adding bzr-git to the 2.4-and-earlier series, since those are
> considered 'stable'. I think it would be good to add to the 2.5
> installers. I suppose we could come back later and add bzr-git to old
> stable series if we find it works really well and people want them in
> the stable releases. I'd just start with beta-only for now.
That's probably a good idea.

> I'm probably going to skip this for bzr-2.5b1-1, but I could consider
> it for bzr-2.5b1-2 or bzr-2.5b2-1. Thoughts?
Works for me. I'll update the MP to only change 2.5 once you've landed
that.

Cheers,

Jelmer

Revision history for this message
Jelmer Vernooij (jelmer) wrote :

bzr 2.5b1 is out now. ping?

Unmerged revisions

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'bazaar_releases.py'
2--- bazaar_releases.py 2011-09-13 12:23:52 +0000
3+++ bazaar_releases.py 2011-09-19 20:20:26 +0000
4@@ -99,6 +99,7 @@
5 self.description = description
6 self.params = params
7
8+dulwich = Project('dulwich')
9 subvertpy = Project('subvertpy', branch='lp:~jelmer/subvertpy/trunk')
10 python_fastimport = Project('fastimport', branch='lp:python-fastimport')
11 tortoisebzr = Project('tortoisebzr', branch='lp:tortoisebzr')
12@@ -116,11 +117,12 @@
13 colo = Plugin('bzr-colo', "Colo (work with colocated branches)")
14 explorer = Plugin('bzr-explorer', "Bazaar Explorer", display_in_installer=False)
15 bzr_fastimport = Plugin('bzr-fastimport', "FastImport (import/export of history)")
16+git = Plugin('git', "Git integration")
17 loom = Plugin('bzr-loom', "Loom (manage a stack of patches over an upstream)")
18 pipeline = Plugin('bzr-pipeline',
19 "Pipeline (work on large changes as smaller pieces)")
20 rewrite = Plugin('bzr-rewrite', "Rewrite (change history by rebasing)")
21-svn = Plugin('bzr-svn', "Subversion 1.6 integration")
22+svn = Plugin('bzr-svn', "Subversion integration")
23 upload = Plugin('bzr-upload', "Upload working tree")
24 xmloutput = Plugin('bzr-xmloutput', "XmlOutput (interface for IDEs)")
25 qbzr = Plugin('qbzr', "QBzr (dialogs for GUI applications and IDEs)")
26@@ -297,6 +299,7 @@
27 # The projects to bundle
28 projects = [
29 Project('bzr', 'lp:bzr/2.5', revision='tag:bzr-2.5b1'),
30+ dulwich.copy_write(revision='tag:dulwich-0.8.0'),
31 subvertpy.copy_write(revision='tag:subvertpy-0.8.0'),
32 python_fastimport.copy_write(revision='tag:fastimport-0.9.0'),
33 tortoisebzr.copy_write(revision='tag:release-0.6.5'),
34@@ -312,6 +315,7 @@
35 colo,
36 explorer.copy_write(revision='tag:release-1.2.1'),
37 bzr_fastimport,
38+ git.copy_write(revision='tag:bzr-git-0.6.2'),
39 loom,
40 pipeline,
41 rewrite,
42@@ -343,6 +347,7 @@
43 # The projects to bundle
44 projects = [
45 Project('bzr'),
46+ dulwich.copy_write(revision='tag:dulwich-0.8.0'),
47 subvertpy,
48 tortoisebzr,
49 ],
50@@ -357,6 +362,7 @@
51 colo,
52 explorer,
53 bzr_fastimport,
54+ git.copy_write(revision='tag:bzr-git-0.6.2'),
55 loom,
56 pipeline,
57 rewrite,

Subscribers

People subscribed via source and target branches