Added simple test scripts and packaging information, as well as
debugging tips.
This commit is contained in:
@@ -1,39 +1,17 @@
|
||||
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:
|
||||
1. Create a venv and include the system-site packages:
|
||||
`python3 -m venv venv --system-site-packages`
|
||||
2. Active that venv: `. venv/bin/activate`
|
||||
3. Install an editable package: `pip install --no-deps -e .`
|
||||
|
||||
python setup.py install --home=/opt/damaris-private
|
||||
or
|
||||
python setup.py install --home=$HOME/devel/damaris-installed
|
||||
This will use the system packages already installed.
|
||||
|
||||
To start Damaris use for example:
|
||||
Alternatively you can install withoout the system-site-packages:
|
||||
|
||||
/opt/damaris-private/bin/DAMARIS
|
||||
python3 -m venv venv
|
||||
. venv/bin/activate
|
||||
pip install -e .
|
||||
|
||||
|
||||
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
|
||||
This will download newer packages and install them in the venv.
|
||||
|
||||
Reference in New Issue
Block a user