| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
See: https://lists.alpinelinux.org/~alpine/devel/%3C2896c13070c508a49cbaa72c8fb7f34ea947358b.camel%40cogitri.dev%3E
|
| |
|
|
|
|
|
|
|
| |
adding avahi-dev dependency and relevant compile option.
test/run_avahi fails to build, and could not find how to fix it. As this is just for build testing I remove it with remove-avahi-test.patch Equally happy if someone finds a way to fix it...
Tested on x86_64 target system and mpd service is well advertised by avahi
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Without this change MPD emits the following warnings using syslog:
daemon.err libsmbclient[3356]: exception: RTIOThread could not
get realtime scheduling, continuing anyway: sched_setscheduler
failed: Operation not permitted
daemon.err libsmbclient[3356]: exception: OutputThread could not
get realtime scheduling, continuing anyway: sched_setscheduler
failed: Operation not permitted
See also: https://www.musicpd.org/doc/html/user.html#real-time-scheduling
OK clandmeter@
|
|
|
|
|
|
|
|
| |
The checkpath invocation creates a directory usually located on a tmpfs
and cleared on each boot. As such, mpd creates and "corrects" the
permissions of this directory on each boot. This causes two unnecessary
messages to be emitted on each boot by the service. This change adds the
quiet flag which suppresses these messages.
|
|
|
|
|
|
|
| |
As of now we're using the buildttype 'release', which produces optimized builds
but without any usable debugging info, which makes debugging crashes impossible,
even if a -dbg subpackage exists. As such we should build in the buildmode
'debugoptimized' to offer proper debug symbols.
|
|
|
|
| |
./src/input/plugins/meson.build to adapt libcdio-paranoia dependency version check to Alpine's numbering.
|
|
|
|
| |
https://gitlab.alpinelinux.org/alpine/aports/commit/02a0398c97b39209586bd1d11bd13ab3a3b1de1c due to potential libcdio-paranoia dependency version mismatch
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Requires libcdio_paranoia >= 10.2+0.93+1 but we have 2.0.0
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
- make daemon run with supervise-daemon
|
| |
|
| |
|
| |
|
|
|
| |
Closes GH-8644
|
| |
|
| |
|
|
|
|
|
|
| |
- Split openrc files into mpd-openrc
- Fix SPDX license
- remove superfluous usage of 'cd "$builddir"'
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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/
|
| |
|
|
|