aboutsummaryrefslogblamecommitdiffstats
path: root/doc/install.txt
blob: 33d5daeeae5d415da7919200ff57b92ed9c203aa (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



             


            



                                                                                     
                                                                          
                                                                           
                                                                                     

                                                                                     
 

                                  
                              
                                  

                                                  
                                              
                                                    
 

              
 
                                     
 
                                                
 
                                                                     



             
                                                                      



                                                                    
                                                                     


                                                                     
 















                                                                     
                                        
                                                                                            





                                                                     


                                                                    


















                                                                      

                                                                  

                                                            
*************
Installing BE
*************

Dependencies
============

==============  =======================  ===============  ===========================
Package         Role                     Debian           Gentoo
==============  =======================  ===============  ===========================
PyYAML_         serialized data storage  python-yaml      dev-python/pyyaml
Jinja_          HTML templating          python-jinja2    deb-python/jinja
Sphinx_         see :doc:`doc`           python-sphinx    dev-python/sphinx
numpydoc_       see :doc:`doc`                            dev-python/numpydoc [#npd]_
Docutils_       manpage generation       python-docutils  dev-python/docutils
==============  =======================  ===============  ===========================

.. [#npd] In the science_ overlay.

.. _PyYAML: http://pyyaml.org/
.. _Jinja: http://jinja.pocoo.org/
.. _Sphinx: http://sphinx.pocoo.org/
.. _numpydoc: http://pypi.python.org/pypi/numpydoc
.. _Docutils: http://docutils.sourceforge.net/
.. _science: http://overlays.gentoo.org/proj/science

Git repository
==============

BE is available as a Git repository::

    $ git clone git://gitorious.org/be/be.git be

See the homepage_ for details.  If you do branch the Git repo, you'll
need to run::

    $ make

to build some auto-generated files (e.g. :mod:`libbe._version`), and::

    $ make install

to install BE.  By default BE will install into your home directory,
but you can tweak the ``INSTALL_OPTIONS`` variable in ``Makefile`` to
install to another location.  With the default installation, you may
need to add ``~/.local/bin/`` to your ``PATH`` so that your shell can
find the installed ``be`` script.

By default, ``make`` builds both a man page for ``be`` and the HTML
Sphinx documentation (:doc:`doc`).  You can customize the
documentation targets by overriding_ the ``DOC`` variable.  For
example, to disable all documentation during a build/install, run::

    $ make DOC= install

Note that ``setup.py`` (called during ``make install``) will install
the man page (``doc/man/be.1``) if it exists, so::

    $ make
    $ make DOC= install

*will* build (first ``make``) install (second ``make``) the man page.


.. _homepage: http://bugseverywhere.org/
.. _overriding: http://www.gnu.org/software/make/manual/html_node/Overriding.html#Overriding


Release tarballs
================

For those not interested in the cutting edge, or those who don't want
to worry about installing Git, we'll post release tarballs somewhere
(once we actually make a release).  After you've downloaded the
release tarball, unpack it with::

    $ tar -xzvf be-<VERSION>.tar.gz

And install it with:::

    $ cd be-<VERSION>
    $ make install


Distribution packages
=====================

Some distributions (Debian_ , Ubuntu_ , others?) package BE.  If
you're running one of those distributions, you can install the package
with your regular package manager.  For Debian, Ubuntu, and related
distros, that's::

    $ apt-get install bugs-everywhere

However, the official packages can lag behind current development.

.. _Debian: http://packages.debian.org/sid/bugs-everywhere
.. _Ubuntu: http://packages.ubuntu.com/lucid/bugs-everywhere