32 Commits

Author SHA1 Message Date
Gennady Feldman
ee30f0db57 testing/consul: upgrade to 1.4.0 2018-11-18 00:50:00 +02:00
Gennady Feldman
355a359cad testing/consul: Update to 1.3.0 2018-10-21 18:06:57 +03:00
Gennady Feldman
49f9a3a926 testing/consul: Update to 1.2.2 2018-09-05 18:28:35 +00:00
Gennady Feldman
875edc3723 testing/consul: Update to 1.2.0 2018-06-26 23:20:28 +03:00
Francesco Colista
a6471d540b testing/consul: upgrade to 1.1.0. Fixed init.d, Fixes #8838.
According with https://www.consul.io/docs/commands/validate.html the checkconfig
in the init.d script should have been fixed.
2018-06-06 10:38:05 +00:00
Francesco Colista
d5187f1d55 testing/consul: upgrade to 1.0.7 2018-05-04 15:41:34 +00:00
prspkt
8196949216 testing/consul: upgrade to 1.0.6 2018-03-29 23:29:09 +03:00
Jakub Jirutka
63f5e7d295 [various]: unify names of licenses according to SPDX
This commit updates $license variable in all APKBUILDs to comply with
short names specified by SPDX version 3.0 [1] where possible. It was
done using find-and-replace method on substrings inside $license
variables.

Only license names were updated, not "expressions" specifying relation
between the licenses (e.g. "X and Y", "X or Y", "X and (Y or Z)") or
exceptions (e.g. "X with exceptions").

Many licenses have a version or multiple variants, e.g. MPL-2.0,
BSD-2-Clause, BSD-3-Clause. However, $license in many aports do not
contain license version or variant. Since there's no way how to infer
this information just from abuild, it were left without the variant
suffix or version, i.e. non SPDX compliant.

GNU licenses (AGPL, GFDL, GPL, LGPL) are especially complicated. They
exist in two variants: -only (formerly e.g. GPL-2.0) and -or-later
(formerly e.g. GPL-2.0+). We did not systematically noted distinguish
between these variants, so GPL-2.0, GPL2, GPLv2 etc. may mean
GPL-2.0-only or GPL-2.0-or-later. Thus GNU licenses without "+" (e.g.
GPL2+) were left without the variant suffix, i.e. non SPDX compliant.

Note: This commit just fixes format of the license names, no
verification has been done if the specified license information is
actually correct!

[1]: https://spdx.org/licenses/
2017-12-30 21:05:50 +01:00
Francesco Colista
e73d2d811d testing/consul: upgrade to 1.0.2 2017-12-25 18:55:23 +00:00
TBK
e6620fca8f testing/consul: upgrade 1.0.1 2017-11-25 18:06:17 +00:00
TBK
270482be20 testing/consul: upgrade to 1.0.0
Modernize the APKBUILD while being here.
2017-10-28 10:48:07 +02:00
Francesco Colista
13bced3df1 testing/consul: upgrade to 1.0.0 2017-10-26 18:22:05 +00:00
Francesco Colista
4056f38b51 testing/consul: upgrade to 0.9.2 2017-09-04 08:02:13 +00:00
Francesco Colista
353c939e8d testing/consul: upgrade to 0.8.5 2017-06-28 07:56:28 +00:00
Francesco Colista
4588015671 testing/consul: upgrade to 0.8.3 2017-05-25 14:44:22 +00:00
Gennady Feldman
de208d1cdd testing/consul: upgrade to 0.7.5 2017-02-18 16:03:15 +01:00
Gennady Feldman
06f7af414b testing/consul: upgrade to 0.7.4 2017-02-09 08:15:22 +02:00
G.J.R. Timmer
3882fefd9d testing/consul: update to 0.7.3 2017-02-03 04:50:34 +01:00
Gennady Feldman
ac716f6588 testing/consul: upgrading to 0.7.2 2016-12-27 09:39:43 +02:00
Gennady Feldman
097521b56d testing/consul: upgrade to 0.7.1 and improve abuild
* Updating to latest 0.7.1 release
* Cleaning up APKBUILD (and fixing version)
2016-11-20 12:49:20 +01:00
Jakub Jirutka
ef174d26e1 testing/consul: remove {post,pre}-deinstall hooks
post-deinstall:
  - Removing user/group is not a good idea. You can't know if the consul
    user/group has been created by the package or not; user can use it even
    for something else.

pre-deinstall:
  - User should decide h[ei]mself if (s)he wants to stop the service
    before uninstalling, it's his/her responsibility and it should not
    be handled automagically in pre-deinstall hook.
  - `&>` is not POSIX-sh compatible, it's a bashism.
2016-10-16 13:15:55 +02:00
Gennady Feldman
43f2f98536 testing/consul: update to 0.7.0
* Update consul to 0.7.0
* Update init.d script to run configtest and create a log file
2016-09-16 13:07:17 +02:00
Carlo Landmeter
9abee09e03 testing/consul: fails to build on aarch64
github.com/hashicorp/yamux
../../boltdb/bolt/db.go:85: undefined: maxMapSize
../../boltdb/bolt/db.go:85: invalid array bound maxMapSize
github.com/inconshreveable/muxado/proto/buffer
2016-08-27 02:11:17 +00:00
Przemyslaw Pawelczyk
26abb36b0d testing/[various]: bump pkgrel for pre-install fixes 2016-04-25 07:11:52 +00:00
Przemyslaw Pawelczyk
da4e96aace Reorder arguments passed to addgroup/adduser in scripts.
Now all invocations have following order of arguments (if present):

    addgroup -S -g ... GROUP
    adduser -S -u ... -D -H -h ... -s ... -G ... -g ... USER
2016-04-25 06:56:47 +00:00
Przemyslaw Pawelczyk
a60b9f07de Improve consistency of scripts using adduser/addgroup.
Following rules have been applied:
- script starts with shebang !#/bin/sh followed by blank line,
- script ends with exit 0 prepended by blank line,
- only stderr of adduser, addgroup or passwd is redirected to /dev/null,
- getent passwd/group instances has been removed,
- manual checking of file and group existence has been removed,
- `|| true` instances has been removed.

Comments and line wrapping have been preserved.
2016-04-25 06:55:43 +00:00
Przemyslaw Pawelczyk
a593d306c9 Add -g option (GECOS/comment) to adduser in scripts.
This way we can avoid ugly default:

    Linux user,,,
2016-04-25 06:54:18 +00:00
Przemyslaw Pawelczyk
2a573734b6 Reorder options passed to adduser in scripts: make -S first.
It's only for consistency and to ease spotting lack of it.
2016-04-25 06:51:49 +00:00
Natanael Copa
94f94e27b8 testing/consul: fix checksums 2015-08-14 14:59:12 +02:00
Christian Kampka
c87bc6f087 testing/consul: upgrade to version 0.5.2 2015-08-14 14:54:37 +02:00
Sören Tempel
43f9b6819b testing/consul: go binaries should not be stripped 2015-08-07 07:35:44 +00:00
Carlo Landmeter
c05fd0282a testing/consul: new aport
APKBUILD provided by Olivier Mauras <olivier@mauras.ch>
2015-04-28 13:29:23 +02:00