From 4724928c470555f8b9d259c214419b83c28db050 Mon Sep 17 00:00:00 2001 From: Bartek Kryza Date: Sat, 11 Jun 2022 23:54:07 +0200 Subject: [PATCH] Added packaging readme --- packaging/README.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 packaging/README.md diff --git a/packaging/README.md b/packaging/README.md new file mode 100644 index 00000000..8d2adf74 --- /dev/null +++ b/packaging/README.md @@ -0,0 +1,32 @@ +# Building releases + +* Update CHANGELOG.md +* Tag the release commit, e.g. ```git tag 0.1.0``` + +## Ubuntu + +```bash +cd packaging +make DIST=bionic REBUILD=1 deb +make DIST=focal REBUILD=1 deb +make DIST=jammy REBUILD=1 deb + +cd _BUILD/ubuntu/bionic +dput ppa:bkryza/clang-uml *.changes + +cd _BUILD/ubuntu/focal +dput ppa:bkryza/clang-uml *.changes + +cd _BUILD/ubuntu/jammy +dput ppa:bkryza/clang-uml *.changes + +``` + +## Anaconda + +```bash +docker run --rm -v $PWD:$PWD continuum/miniconda3 bash +conda install conda-build +cd packaging +make conda +``` \ No newline at end of file