Skip to content

Commit cf50fe1

Browse files
committed
put bloom introduction on another page, so it shows up in the RTD sidebar toc. Having it in index.rst makes it not show up in the sidebar.
Signed-off-by: Kenji Brameld <[email protected]>
1 parent 3fe6836 commit cf50fe1

File tree

2 files changed

+57
-49
lines changed

2 files changed

+57
-49
lines changed

docs/bloom.rst

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
Bloom
2+
=====
3+
4+
.. Links
5+
6+
.. _catkin: https://github.com/ros/catkin
7+
.. _bloom: http://ros.org/wiki/bloom
8+
9+
What is bloom?
10+
--------------
11+
12+
Bloom is a release automation tool, designed to make generating platform specific release artifacts from source projects easier. Bloom is designed to work best with catkin_ projects, but can also accommodate other types of projects.
13+
14+
How does it work?
15+
-----------------
16+
17+
Bloom works by importing your upstream source tree into a git repository, where it is manipulated and used to generate build artifacts for different platforms like Debian or Fedora.
18+
19+
First bloom gathers information about your source repository and creates an archive for the version you want to release. Then the archive is imported into the release repository, and the source tree is run through a release track where it is tagged, can be patched, and has platform specific artifacts generated for it.
20+
21+
The individual stages of these release tracks are tagged with git and those tags are used by build infrastructure and deployment systems.
22+
23+
What can I release with bloom?
24+
------------------------------
25+
26+
Bloom supports releasing arbitrary software packages, but is optimized for use with catkin_ projects.
27+
28+
.. note:: For :term:`dry` ROS stacks, you should use the legacy `ros-release <http://www.ros.org/wiki/release>`_ system.
29+
30+
How do I install bloom?
31+
-----------------------
32+
33+
On Ubuntu the recommended method is to use apt::
34+
35+
$ sudo apt-get install python3-bloom
36+
37+
On other systems you can install bloom via pypi::
38+
39+
$ sudo pip install -U bloom
40+
41+
Note: pip will not notify you of updates, but bloom will notify you when you are using a version of bloom that is not the latest released.
42+
43+
Develop and build from source::
44+
45+
$ python setup.py build
46+
$ sudo python setup.py develop
47+
48+
How do I release something with bloom?
49+
---------------------------------------
50+
51+
Please refer to the documentation and tutorials on the bloom_ ROS wiki page.
52+

docs/index.rst

Lines changed: 5 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,7 @@
1-
Bloom
2-
=====
1+
Table of Contents
2+
=================
33

4-
.. Links
4+
.. toctree::
55

6-
.. _catkin: https://github.com/ros/catkin
7-
.. _bloom: http://ros.org/wiki/bloom
8-
9-
What is bloom?
10-
--------------
11-
12-
Bloom is a release automation tool, designed to make generating platform specific release artifacts from source projects easier. Bloom is designed to work best with catkin_ projects, but can also accommodate other types of projects.
13-
14-
How does it work?
15-
-----------------
16-
17-
Bloom works by importing your upstream source tree into a git repository, where it is manipulated and used to generate build artifacts for different platforms like Debian or Fedora.
18-
19-
First bloom gathers information about your source repository and creates an archive for the version you want to release. Then the archive is imported into the release repository, and the source tree is run through a release track where it is tagged, can be patched, and has platform specific artifacts generated for it.
20-
21-
The individual stages of these release tracks are tagged with git and those tags are used by build infrastructure and deployment systems.
22-
23-
What can I release with bloom?
24-
------------------------------
25-
26-
Bloom supports releasing arbitrary software packages, but is optimized for use with catkin_ projects.
27-
28-
.. note:: For :term:`dry` ROS stacks, you should use the legacy `ros-release <http://www.ros.org/wiki/release>`_ system.
29-
30-
How do I install bloom?
31-
-----------------------
32-
33-
On Ubuntu the recommended method is to use apt::
34-
35-
$ sudo apt-get install python3-bloom
36-
37-
On other systems you can install bloom via pypi::
38-
39-
$ sudo pip install -U bloom
40-
41-
Note: pip will not notify you of updates, but bloom will notify you when you are using a version of bloom that is not the latest released.
42-
43-
Develop and build from source::
44-
45-
$ python setup.py build
46-
$ sudo python setup.py develop
47-
48-
How do I release something with bloom?
49-
---------------------------------------
50-
51-
Please refer to the documentation and tutorials on the bloom_ ROS wiki page.
6+
bloom
7+
glossary

0 commit comments

Comments
 (0)