Commit graph

34 commits

Author SHA1 Message Date
fox.cpp
3e5044ee8e
build.sh: Remove -C from install
Not available in Busybox when building under Alpine Linux
2025-01-25 01:07:46 +03:00
fox.cpp
4e1cb7c5c1
build.sh: Fix-up config overwrite check to work when installing not to / 2025-01-24 22:09:17 +03:00
oidq
62799b4b1e
build: make "build.sh install" reusable
* prevent the script form blindly overwriting the current configuration
* force maddyctl linking so that we can reuse the script
* fix indentation in build.sh
2024-03-13 19:16:24 +01:00
fox.cpp
28bdf6d33f
Make it easier to avoid permission issues when setting up maddy
1. Clarify that you need to manually create the user and group
when building from source. ./build.sh does not do that since
it is a packaging tool, not system configuration one.

2. Do not require "go" command to be present when running
./build.sh install. go installation may be user-specific and
unavailable when running with sudo.

3. Ease UMask restrictions. Allow group access.
This allows CLI commands to be run by any user in maddy group.

See #569.
2024-01-21 21:57:00 +03:00
Martin Ashby
0eb8a95d4f
Remove references to man.5 from build.sh
man.5 page was removed in c0eacfa0f3
removed remaining references in build.sh, otherwise strict build (like arch linux makepkg) fails.
2022-07-02 22:34:51 +01:00
fox.cpp
c0eacfa0f3
Merge maddyctl and maddy executabes
Closes #432.
2022-01-07 00:37:49 +03:00
fox.cpp
e1fe902e47
build.sh: Fix --static 2021-04-11 19:56:35 +03:00
fox.cpp
bd62dca31e
build.sh: Allow setting build tags 2021-03-07 16:54:36 +03:00
Hubert Hirtz
a1d8626c9e build.sh: fix quotes 2021-01-17 09:38:12 +00:00
fox.cpp
1a1de81441
build.sh: Do not try to install man pages if they were not built 2020-12-23 16:34:42 +03:00
fox.cpp
9253705c51
build.sh: Allow providing go flags via GOFLAGS environment variable 2020-12-06 14:59:57 +03:00
fox.cpp
e447a83016
build.sh: Do not use GNU-specific install(1) flags
Make some log messages better along the way and do not install
systemd units on non-Linux systems.
2020-12-06 14:39:45 +03:00
fox.cpp
27ec4fa57d
build.sh: Add warnings for use of old build.sh compatibility aliases 2020-12-06 02:51:05 +03:00
fox.cpp
4ec6eb2d31
build.sh: Reimplement from scratch
This version is much more simple. And probably will work fine under
FreeBSD and OpenBSD.

Closes #316.
2020-12-06 02:36:30 +03:00
fox.cpp
c587d777fa
Do not deprecate build.sh yet 2020-08-23 15:48:21 +03:00
fox.cpp
13b0accf90
Add Makefile to replace build.sh 2020-08-03 16:43:17 +03:00
Mysh!
46bd477d14
build.sh: Add sudo check (#258)
Earlier in the `run` function, there was this code fragment:

```
    package
    export elevate=1
    create_user
    install_pkg
```

who always set the variable `elevate` to eq `1`, even if `sudo` is not installed on the user's system.

Let's not do this if user doesn't have `sudo` installed by adding more over-engineered code!
2020-08-03 11:39:43 +03:00
fox.cpp
9bb903e6d4
build.sh: Add ability to set build tags 2020-07-16 16:54:10 +03:00
fox.cpp
cd928e9efb
Implement check module for easier integration with rspamd
This replaces old rspamc-based integration script that is inefficient
and had many disadvantages.
2020-06-24 23:52:36 +03:00
fox.cpp
851d3b1e2c
build.sh: Do not switch to X.Y-fixes branch if version is manually selected 2020-06-10 18:59:16 +03:00
fox.cpp
a9e9efd6ac
build.sh: Switch to X.Y-fixes branch if it exists 2020-06-02 22:00:06 +03:00
fox.cpp
ab948e1494
Update minimal required Go version to 1.14 2020-05-31 20:48:34 +03:00
fox.cpp
b54c705e2d
build.sh: Reset patch version when auto-dumping version tag for development snapshot
To prevent 0.1.1 from becoming 0.2.1 when it is supposed to be 0.2.0.
2020-03-26 23:08:17 +03:00
fox.cpp
ff6eee17eb
build.sh: Allow to customize default state_dir and runtime_dir values
Intended for use in Docker container building.
2020-03-13 03:28:49 +03:00
fox.cpp
1e8f892396
build.sh: Improve version detection using Git
Strictly follow SemVer 2.0 structure.
2020-03-13 03:28:49 +03:00
fox.cpp
c777be4c95
build.sh: Remove PKGDIR cleanup
This prevents it from being used correctly in PKGBUILDs.
2020-03-05 04:01:52 +03:00
fox.cpp
9780a17dc2
build.sh: Fix ensure_go routine to handle missing patch version
Fixed build on Go 1.14.
2020-03-05 03:25:17 +03:00
fox.cpp
494fd2ac72
build.sh: Remove wget dependency
It is rather silly to use curl to fetch the script itself (in tutorial)
and use wget internally.
2020-02-23 17:33:51 +03:00
fox.cpp
36578663e2
build.sh: Check GOMOD value correctly
It can be empty if modules mode is disabled.

While at it, increase the Go version to download if it is missing.
2020-02-23 04:27:03 +03:00
fox.cpp
0b7d8fc369
build.sh: Use absolute path to the Go toolchain in PATH
It was relative to the build directory which might not be the actual
current directory when calling go elsewhere.
2020-02-23 02:13:17 +03:00
fox.cpp
f097d64293
build.sh: Improve script portability
It should work fine with BusyBox basename and grep now.
2020-02-17 19:35:14 +03:00
fox.cpp
c495ade723
build.sh: Quote LDFLAGS 2020-02-17 18:47:30 +03:00
fox.cpp
a8a046617a
build.sh: Fix a few subtle errors in --version flag handling
--longoptions is replaced with -l to stay compatible with busybox
getopt.

Options switch block was checking --buildversion by accident.

.git/ check was not running popd in case of failure.
2020-02-17 17:40:50 +03:00
fox.cpp
f931cbfe45
Rewrite build scripts
New script build.sh is much more suitable for downstream packaging
(e.g. ./build.sh package) than hacked together package.sh wrapper for
get.sh while still being usable for "effort-less" installation.

Additionally, hostname setting in get.sh is flawed in many ways and is
not reimplemented in build.sh.

build.sh has proper command line options that allow to customize build
configuration and installation prefixes.
Documentation page get.sh is removed since all applicable environment
variables and flags are documented in ./build.sh --help.

build.sh can be called from the source directory to build maddy from
*this* source instead of forced 'go get' that was used in get.sh.
However, if build.sh is called not from the source directory, it clones
the repo and (optionally) uses the specified commit. This keeps build.sh
usable in curl|bash commands.

Due to the way source code is fetched, build.sh uses Git tags instead of
Go module versions as get.sh did.
2020-02-07 20:33:58 +03:00