|
3 | 3 | # --------------------------------------------------------------------------------
|
4 | 4 | # This script is building packages for Alignak thanks to the fpm
|
5 | 5 | # application (https://github.com/jordansissel/fpm).
|
6 |
| -# Installing fpm: |
7 |
| -# sudo apt-get install ruby ruby-dev rubygems build-essential |
| 6 | +# ----- |
| 7 | +# Using this script and fpm requires: |
| 8 | +# sudo apt-get install ruby ruby-dev rubygems build-essential |
8 | 9 | # sudo gem install --no-ri --no-rdoc fpm
|
9 | 10 | # -----
|
10 |
| -# This script updates the .bintray.json file to update: |
| 11 | +# This script updates the .bintray-*.json file to update: |
11 | 12 | # - the target repo, replacing sed_version_repo with the appropriate
|
12 | 13 | # repository name: alignak-deb-testing or alignak-deb-stable
|
13 | 14 | # - the version name, description and release date, replacing
|
14 | 15 | # sed_version_name, sed_version_desc and sed_version_released
|
15 | 16 | # -----
|
16 |
| -# Using this script and fpm requires: |
17 |
| -# sudo apt-get install ruby ruby-dev rubygems build-essential |
18 |
| -# ----- |
19 | 17 | # Command line parameters:
|
20 |
| -# git branch name: |
| 18 | +# - git branch name: |
21 | 19 | # - master will build a stable version (alignak_deb-stable repository)
|
22 | 20 | # -> python-alignak_x.x.x_all.deb
|
23 | 21 | # - develop will build a develop version (alignak_deb-testing repository)
|
|
28 | 26 | # Note that it is not recommended to use anything else than alphabetic characters in the
|
29 | 27 | # branch name according to the debian version name policy! Else, the package will not even
|
30 | 28 | # install on the system!
|
31 |
| -# python version: |
32 |
| -# - 2.7, 3.5 (default) |
33 |
| -# package type: |
34 |
| -# - deb (default), rpm, freebsd, apk, pacman, ... |
| 29 | +# |
| 30 | +# - python version: |
| 31 | +# 2.7, 3.5 (default) |
| 32 | +# |
| 33 | +# - package type: |
| 34 | +# deb (default), rpm, freebsd, apk, pacman, ... |
35 | 35 | # Indeed all the package types supported by fpm
|
36 | 36 | # --------------------------------------------------------------------------------
|
37 | 37 | #set -ev
|
|
0 commit comments