1
0
mirror of https://github.com/systemd/systemd synced 2026-03-23 15:24:54 +01:00

Compare commits

..

No commits in common. "a2efdaac077e3aa41720636609be9ff83075bc2e" and "3f49d1faf59acaa85aa5ad502c39b1a601d58d26" have entirely different histories.

5 changed files with 2 additions and 11 deletions

View File

@ -39,5 +39,4 @@ jobs:
targets: targets:
- fedora-rawhide-aarch64 - fedora-rawhide-aarch64
- fedora-rawhide-i386 - fedora-rawhide-i386
- fedora-rawhide-ppc64le
- fedora-rawhide-x86_64 - fedora-rawhide-x86_64

View File

@ -278,7 +278,6 @@ conf.set_quoted('USER_PRESET_DIR', userpresetdir)
conf.set_quoted('VENDOR_KEYRING_PATH', join_paths(rootlibexecdir, 'import-pubring.gpg')) conf.set_quoted('VENDOR_KEYRING_PATH', join_paths(rootlibexecdir, 'import-pubring.gpg'))
conf.set('ANSI_OK_COLOR', 'ANSI_' + get_option('ok-color').underscorify().to_upper()) conf.set('ANSI_OK_COLOR', 'ANSI_' + get_option('ok-color').underscorify().to_upper())
conf.set10('ENABLE_URLIFY', get_option('urlify'))
conf.set10('ENABLE_FEXECVE', get_option('fexecve')) conf.set10('ENABLE_FEXECVE', get_option('fexecve'))
conf.set10('MEMORY_ACCOUNTING_DEFAULT', memory_accounting_default) conf.set10('MEMORY_ACCOUNTING_DEFAULT', memory_accounting_default)
conf.set('STATUS_UNIT_FORMAT_DEFAULT', 'STATUS_UNIT_FORMAT_' + status_unit_format_default.to_upper()) conf.set('STATUS_UNIT_FORMAT_DEFAULT', 'STATUS_UNIT_FORMAT_' + status_unit_format_default.to_upper())

View File

@ -444,8 +444,6 @@ option('ok-color', type : 'combo',
'highlight-cyan', 'highlight-white'], 'highlight-cyan', 'highlight-white'],
value : 'green', value : 'green',
description: 'color of the "OK" status message') description: 'color of the "OK" status message')
option('urlify', type : 'boolean', value : 'true',
description : 'enable pager Hyperlink ANSI sequence support')
option('fexecve', type : 'boolean', value : 'false', option('fexecve', type : 'boolean', value : 'false',
description : 'use fexecve() to spawn children') description : 'use fexecve() to spawn children')

View File

@ -19,7 +19,6 @@
#include "util.h" #include "util.h"
bool urlify_enabled(void) { bool urlify_enabled(void) {
#if ENABLE_URLIFY
static int cached_urlify_enabled = -1; static int cached_urlify_enabled = -1;
if (cached_urlify_enabled < 0) { if (cached_urlify_enabled < 0) {
@ -33,9 +32,6 @@ bool urlify_enabled(void) {
} }
return cached_urlify_enabled; return cached_urlify_enabled;
#else
return 0;
#endif
} }
int terminal_urlify(const char *url, const char *text, char **ret) { int terminal_urlify(const char *url, const char *text, char **ret) {

View File

@ -4,6 +4,5 @@ set -eu
tag="$(git describe --abbrev=0 --match 'v[0-9][0-9][0-9]')" tag="$(git describe --abbrev=0 --match 'v[0-9][0-9][0-9]')"
git log --pretty=tformat:%aN --author=noreply@weblate.org --invert-grep -s "${tag}.." | \ git log --pretty=tformat:%aN --author=noreply@weblate.org --invert-grep -s "${tag}.." | \
sed 's/ / /g; s/--/-/g; s/.*/\0,/' | sed 's/ / /g; s/--/-/g; s/.*/ \0,/' |
sort -u | tr '\n' ' ' | sed -e "s/^/Contributions from: /g" -e "s/,\s*$/\n/g" | fold -w 72 -s | \ sort -u
sed -e "s/^/ /g" -e "s/\s*$//g"