~ctwm/ctwm/web

« back to all changes in this revision

Viewing changes to templates/download.tt2

  • Committer: Matthew Fuller
  • Date: 2021-03-10 04:01:44 UTC
  • Revision ID: fullermd@over-yonder.net-20210310040144-mq8h1eyzlr79qunx
brz-ify the bzr references.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
 
40
40
<p>
41
41
 The [%ctwm%] source is managed using <a
42
 
 href="http://bazaar.canonical.com/">Bazaar</a>.  The repository is
 
42
 href="https://www.breezy-vcs.org/">Breezy</a>.
 
43
 The repository is
43
44
 hosted on launchpad, with the main branch being <strong>lp:ctwm</strong>
44
45
 See the <a href="https://launchpad.net/ctwm">project page on
45
46
 launchpad</a> for more.
 
47
 Formerly <a href="http://bazaar.canonical.com/en/">Bazaar</a> was the
 
48
 recommended program for interacting with the repository; it would still
 
49
 work if you have it, but since it requires python 2.7 it's no longer
 
50
 recommended (or even easy to get working on many platforms).
46
51
</p>
47
52
 
48
53
<h2>Usage</h2>
54
59
 more simplified process.
55
60
</p>
56
61
<p>
57
 
 You'll need to have <tt>bzr</tt> installed.  In most OS's, it would be
58
 
 in a package called 'bzr' or 'bazaar'; if you wind up with a
 
62
 You'll need to have <tt>brz</tt> installed.  In most OS's, it would be
 
63
 in a package called 'brz' or 'breezy'; if you wind up with a
59
64
 <tt>baz</tt> command, you got the wrong one (and should flee in terror).
 
65
 The <a href="https://www.breezy-vcs.org/pages/download.html">Breezy
 
66
 site</a> has more download/install instructions.
60
67
</p>
61
68
<pre>
62
69
## Create a workspace and get the current code
63
70
% mkdir -p ~/src/ctwm
64
71
% cd ~/src/ctwm
65
 
% bzr branch lp:ctwm trunk
 
72
% brz branch lp:ctwm trunk
66
73
 
67
 
## The `bzr branch command will probably give a warning about
 
74
## The `brz branch command will probably give a warning about
68
75
## "launchpad-login".  If you're not intending to push code back
69
76
## up to launchpad, you can ignore it.
70
77
 
76
83
 
77
84
## Pull down changes over time
78
85
% cd ~/src/ctwm/trunk
79
 
% bzr pull
 
86
% brz pull
80
87
% make
81
88
  [... etc ...]
82
89
</pre>
85
92
 
86
93
<p>
87
94
 Here is a <a href="dev/bzr-crash-course.html">crash course</a>
88
 
 describing how to use bzr for developing [%ctwm%].
 
95
 describing how to use brz for developing [%ctwm%].
89
96
</p>
90
97
 
91
98
<h2>Mirror</h2>
98
105
 intend to contribute back, sending pull requests, etc, won't work any
99
106
 better than just sending patches.  It's mostly useful to fetch the source
100
107
 for people more comfortable with git, or for special situations where
101
 
 using bzr isn't an option.
 
108
 using brz isn't an option.
102
109
</p>
103
110
 
104
111