Commit graph

11 commits

Author SHA1 Message Date
Kim Alvefur
d33f55156b prosody.loader: Allow loading modules under 'prosody' namespace (#1223)
Actually `hg mv`-ing all the files is disruptive, basically breaking
everything from rebasing all my WIP draft commits to the package
building. So instead, what if we didn't and instead rewrote package
names as they are `require()`-d?

Debian packages produced by the Prosody are already installed into this
structure so much will Just Work if all require calls are updated.
2023-03-17 13:51:43 +01:00
Kim Alvefur
a885cc53fd make: Install stanza watcher library (thanks Menel) 2022-04-13 16:53:19 +02:00
Kim Alvefur
7f254b0e72 make: Split up install targets to allow different subset
The prosody-trunk nightly packages currently use the Debian dh-lua
framework to install core/, net/ and util/ into Lua-versioned directory
trees, while plugins and executables should still be installed like
before.
2022-02-13 16:53:56 +01:00
Kim Alvefur
c013345fbb Merge 0.11->trunk 2021-08-30 15:22:01 +02:00
Lucas
5f69d4a129 makefile: fix prosody.version target
POSIX is quite explicit regarding the precedence of AND-OR lists [0]:

> The operators "&&" and "||" shall have equal precedence and shall be
> evaluated with left associativity. For example, both of the following
> commands write solely `bar` to standard output:
>       false && echo foo || echo bar
>       true || echo foo && echo bar

Given that, `prosody.version` target behaves as

	((((((test -f prosody.release && cp ...) ||
	    test -f ...) &&
	    sed ...) ||
	    test -f ...) &&
	    hexdump ...) ||
	    echo unknown > $@)

In the case of release tarballs, `prosody.release` does exist, so the
first AND pair is executed. Given that it's successful, then the first
`test -f` in the OR pair is ignored, and instead the `sed` in the AND
pair is executed. `sed` success, as `.hg_archival.txt` exists, making
the second `test -f` in the OR pair ignored, and `hexdump` in the AND
pair is executed. Now, given that `.hg` doesn't exist, it fails, so the
last `echo` is run, overwriting `prosody.version` with `unknown`.

This can be worked around placing `()` around the AND pairs. Decided to use
conditionals instead, as I think they better communicate the intention
of the block.

[0]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_09_03
2021-08-15 04:10:36 +00:00
Kim Alvefur
1deae0e925 GNUmakefile: Install the new util/prosodyctl/* too (thanks pascal.pascher) 2020-06-03 19:10:42 +02:00
Kim Alvefur
5fc5fe64ee GNUmakefile: Install util.human.* 2020-06-03 19:01:46 +02:00
Kim Alvefur
0a200a4ce3 makefile: Remove installation of mod_s2s dir
Already removed from the GNUmakeflie.
2020-06-03 19:00:02 +02:00
Kim Alvefur
cdd71f28ac Add makefiles compatible with BSD make 2018-03-11 06:01:19 +01:00
Matthew Wild
bd19b15347 makefile: Allow configuring path to busted (to match GNUMakefile) 2018-12-04 16:19:58 +00:00
Matthew Wild
64b7335fd7 makefile: Add lint target (to match GNUMakefile) 2018-12-04 16:19:08 +00:00