40 lines
761 B
Plaintext
40 lines
761 B
Plaintext
Installing into private directory
|
|
=================================
|
|
|
|
For whatever reason, it might be useful to install the
|
|
python frontend into a private directory.
|
|
Here are some examples on how to do it:
|
|
|
|
python setup.py install --home=/opt/damaris-private
|
|
or
|
|
python setup.py install --home=$HOME/devel/damaris-installed
|
|
|
|
To start Damaris use for example:
|
|
|
|
/opt/damaris-private/bin/DAMARIS
|
|
|
|
|
|
Updating debian/changelog
|
|
=========================
|
|
|
|
Subversion
|
|
==========
|
|
|
|
Use the following command to get all the commit messages:
|
|
|
|
Mac OS X:
|
|
|
|
svn2cl -i -a --stdout |gsed 's/^\t/ /'|gsed -e '/^[0-9]/d'
|
|
|
|
Linux:
|
|
|
|
svn2cl -i -a --stdout |sed 's/^\t/ /'|sed -e '/^[0-9]/d'
|
|
|
|
Git
|
|
===
|
|
git log --oneline .
|
|
|
|
|
|
Then pick the stuff the users need to know.
|
|
dch -M -v x.xx
|