git clone https://gitlab.com/oath-toolkit/oath-toolkit.git
cd oath-toolkit
make
make check
Links to resources that may be useful if you want to get involved the project:
-
Mailing list: https://lists.nongnu.org/mailman/listinfo/oath-toolkit-help
-
Savannah OATH Toolkit Project: https://savannah.nongnu.org/projects/oath-toolkit/
-
GitLab OATH Toolkit Project: https://gitlab.com/oath-toolkit/oath-toolkit
-
GitLab Bug tracker: https://gitlab.com/oath-toolkit/oath-toolkit/issues
-
Savannah bug tracker: https://savannah.nongnu.org/support/?group=oath-toolkit
-
Code browser: https://gitlab.com/oath-toolkit/oath-toolkit/tree/master
-
Code coverage report: https://oath-toolkit.gitlab.io/oath-toolkit/coverage/
-
Clang code analysis: https://oath-toolkit.gitlab.io/oath-toolkit/clang-analyzer/
-
Pre-release version of website: https://oath-toolkit.gitlab.io/oath-toolkit/
We rely on several tools to build the software, including:
-
C compiler https://www.gnu.org/software/gcc/
-
Gengetopt https://www.gnu.org/software/gengetopt/
-
GTK-DOC https://gitlab.gnome.org/GNOME/gtk-doc (for API manuals)
-
Valgrind https://valgrind.org/ (optional)
-
PAM library/headers (optional, required for PAM module)
-
XMLSec https://www.aleksey.com/xmlsec/ (optional, for libpskc)
The software is typically distributed with your operating system, and the instructions for installing them differ. Here are some hints:
apt-get install make git autoconf automake libtool bison gengetopt valgrind
apt-get install libpam0g-dev libxmlsec1-dev libxml2-utils
apt-get install help2man gtk-doc-tools libglib2.0-dev dblatex
If you have hints on how to install the required dependencies on other operating systems, please let us know.
When building from version controlled sources, some developer specific flags are automatically enabled. For example, the self-checks are run under valgrind if available. For various reasons, you may run into valgrind false positives that will cause self-checks to fail. First be sure to install debug symbols for system libraries. We ship a Valgrind suppression file to address common issues. You can use it by putting the following in your ~/.valgrindrc:
--suppressions=/path/to/oath-toolkit/libpskc/tests/libpskc.supp
To prepare a release you need some additional tools:
-
Asciidoc http://www.methods.co.nz/asciidoc/
-
Lcov (to produce coverage HTML pages)
-
Clang (to produce clang analysis)
-
rsync https://rsync.samba.org/
apt-get install groff asciidoc xsltproc lcov clang rsync
The release rules are implemented in cfg.mk, and to make new official release the following steps are made:
-
Make sure you have updated to latest gnulib files.
``` rm -rf gl liboath/gl libpskc/gl oathtool/gl pskctool/gl/ git restore {.,liboath,libpskc,oathtool,pskctool}/gl/m4/gnulib-cache.m4 git restore /gl/override//*.diff PATH=$PATH:/path/to/where/gnulib-tool/lives make -f cfg.mk glimport git add . git commit -m "Update gnulib files." -a ```
-
Make sure you have pushed git to GitLab and that CI/CD passes. https://gitlab.com/oath-toolkit/oath-toolkit/-/pipelines
-
Make sure NEWS reflect all changes made since the last release.
``` make review-diff ```
-
Make sure the (unreleased) string in NEWS is changed into (released XXXX-YY-ZZ) for the release.
-
Make sure you have committed everything and have a clean checkout.
``` git clean -d -x -f git status git reset --hard ```
-
Run
make tag VERSION=1.2.3
for the version number. Usegit tag -d ...
to remove tags if you made mistakes.
``` make -f cfg.mk tag PACKAGE=oath-toolkit VERSION=2.6.11 ```
-
Make sure ../www-oath-toolkit/ contains a git checkout of the website git repository, and ../www-oath-toolkit-cvs/ contains a CVS checkout of the website.
``` cd .. git clone git@gitlab.com:oath-toolkit/website.git www-oath-toolkit cvs -z3 -d:ext:USER@cvs.savannah.nongnu.org:/web/oath-toolkit co -d www-oath-toolkit-cvs oath-toolkit ```
-
Create release artifacts.
``` ./bootstrap ./configure --enable-gtk-doc --enable-gtk-doc-pdf --enable-gcc-warnings --enable-root-tests --enable-valgrind-tests make make release-check ```
-
Upload release artifacts.
``` make release-upload-www release-upload-ftp ```
-
Manually update the CVS website that will be synchronized to the main website via savannah
``` cd ../www-oath-toolkit-cvs/ sh -x ./synk-from-git.sh cvs update # figure out what to cvs add and what to cvs rm -f cvs add … cvs rm -f … cvs commit -mUpdate. ```
-
Post release announcement based on doc/announce.txt, updating announcement in git.
-
On major releases, update webpages with information.
-
Start next development cycle by bumping version number in NEWS and use the (unreleased) to indicate that it is not released yet.
Happy hacking!