Skip to content

Commit 2df5095

Browse files
committed
Merge branch 'master' into performance-tests
2 parents 1ec1f05 + c712dd5 commit 2df5095

391 files changed

Lines changed: 3544 additions & 1695 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci-rpm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ jobs:
205205
dnf install -y procps-ng
206206
207207
- name: Load RPMs
208-
uses: actions/download-artifact@v6
208+
uses: actions/download-artifact@v8
209209
with:
210210
name: rpms-${{ matrix.env.NAME }}
211211

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ compile_commands.json:
404404
#
405405
.PHONY: certs
406406
certs:
407-
@$(MAKE) -C raddb/certs
407+
@$(MAKE) -C raddb/certs Q=@
408408

409409
######################################################################
410410
#

README.md

Lines changed: 1 addition & 1 deletion

doc/all.mk

Lines changed: 26 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -8,28 +8,6 @@
88
#
99
WITH_DOC := $(strip $(foreach x,doc man doxygen,$(findstring $(x),$(MAKECMDGOALS))))
1010

11-
#
12-
# Convert adoc to man, and then let "install.man" deal with things.
13-
# This means a bare "make install.man" after "configure" won't get the
14-
# right things, but oh well.
15-
#
16-
ADOC2MAN_FILES := $(filter-out %/index.adoc,$(wildcard doc/antora/modules/reference/pages/man/*.adoc))
17-
$(BUILD_DIR)/make/man.mk: $(ADOC2MAN_FILES) | $(BUILD_DIR)/make
18-
@rm -f $@
19-
${Q}for x in $^; do \
20-
y=$$(grep :manvolnum: $$x | awk '{print $$2}'); \
21-
z=$$(basename $$x | sed 's/.adoc//'); \
22-
echo "AUTO_MAN_FILES += man/man$$y/$$z.$$y" >> $@; \
23-
echo "man/man$$y/$$z.$$y: $$x" >> $@; \
24-
printf "\t"'@echo AUTO-MAN $$(notdir $$@)'"\n" >> $@; \
25-
printf "\t"'@mkdir -p $$(dir $$@)'"\n" >> $@; \
26-
printf "\t"'@asciidoctor -b manpage $$< -o $$@'"\n" >> $@; \
27-
echo "" >> $@; \
28-
done
29-
30-
-include $(BUILD_DIR)/make/man.mk
31-
ALL_INSTALL += $(AUTO_MAN_FILES)
32-
3311
#
3412
# Skip documentation if any of the necessary prerequisites are missing.
3513
#
@@ -57,6 +35,28 @@ endif
5735
# If we still decide to build the documentation, then add in all of the documentation rules.
5836
#
5937
ifneq "$(WITH_DOC)" ""
38+
#
39+
# Convert adoc to man, and then let "install.man" deal with things.
40+
# This means a bare "make install.man" after "configure" won't get the
41+
# right things, but oh well.
42+
#
43+
ADOC2MAN_FILES := $(filter-out %/index.adoc,$(wildcard doc/antora/modules/reference/pages/man/*.adoc))
44+
$(BUILD_DIR)/make/man.mk: $(ADOC2MAN_FILES) | $(BUILD_DIR)/make
45+
@rm -f $@
46+
${Q}for x in $^; do \
47+
y=$$(grep :manvolnum: $$x | awk '{print $$2}'); \
48+
z=$$(basename $$x | sed 's/.adoc//'); \
49+
echo "AUTO_MAN_FILES += man/man$$y/$$z.$$y" >> $@; \
50+
echo "man/man$$y/$$z.$$y: $$x" >> $@; \
51+
printf "\t"'@echo AUTO-MAN $$(notdir $$@)'"\n" >> $@; \
52+
printf "\t"'@mkdir -p $$(dir $$@)'"\n" >> $@; \
53+
printf "\t"'@asciidoctor -b manpage $$< -o $$@'"\n" >> $@; \
54+
echo "" >> $@; \
55+
done
56+
57+
-include $(BUILD_DIR)/make/man.mk
58+
ALL_INSTALL += $(AUTO_MAN_FILES)
59+
6060
all.doc: docsite
6161

6262
install: install.doc
@@ -282,6 +282,10 @@ doc.fixascii:
282282
@perl -p -i -e "s,‘,',g;s,’,',g;s,–,-,g;s,—,-,g;s, , ,g;s:…:,:g;s,“,\",g;s,”,\",g;s,≤,<=,g;s,≥,>=,g;s,→,->,g" $$(find doc/antora -name "*.adoc" -print)
283283

284284

285+
.PHONY: doc.copyright
286+
doc.copyright:
287+
perl -p -i -e "s/Copyright \(C\) 2.../Copyright (C) $$(date +%Y)/" $$(git grep -l 'Copyright' $$(find doc/antora/ -name "*.adoc" -print))
288+
285289
doc: build/docsite/sitemap.xml
286290

287291
# end of WITH_DOC

doc/antora/modules/ROOT/nav.adoc

Lines changed: 1 addition & 1 deletion

doc/antora/modules/ROOT/pages/debugging/radiusd_X.adoc

Lines changed: 1 addition & 1 deletion

doc/antora/modules/ROOT/pages/directories.adoc

Lines changed: 1 addition & 1 deletion

doc/antora/modules/ROOT/pages/faq.adoc

Lines changed: 1 addition & 1 deletion

doc/antora/modules/ROOT/pages/gethelp.adoc

Lines changed: 1 addition & 1 deletion

doc/antora/modules/ROOT/pages/getstarted.adoc

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)