[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 00/18] More website patches
From: |
Denis 'GNUtoo' Carikli |
Subject: |
[PATCH v1 00/18] More website patches |
Date: |
Sun, 13 Oct 2024 17:13:05 +0200 |
Hi,
This serie contains:
* some small fixes for the build system,
* the review of the BSD related pages of the website,
* the rename of contrib.md and git.md to have more meaningful names
(contrib.md was not for contributing),
* a big fix to enable to properly deploy the website (with rsync delete).
For instance it was used to fix the news page.
For the configure.ac patches, in the case that helps we have something
like that inside configure.ac:
AS_IF([test x"$guix" = x"yes"],
[AC_CHECK_PROG([FOUND_GUIX], [guix], [guix])
AS_IF([test x"$FOUND_GUIX" = x""],
[AC_MSG_ERROR(
[guix was not found in PATH ($PATH)])])],
[AC_CHECK_PROG([FOUND_CP], [cp], [cp])
AS_IF([test x"$FOUND_CP" = x""],
[AC_MSG_ERROR(
[cp was not found in PATH ($PATH)])])
AC_CHECK_PROG([FOUND_DATE], [date], [date])
AS_IF([test x"$FOUND_DATE" = x""],
[AC_MSG_ERROR(
[date was not found in PATH ($PATH)])])
Here the structure can be understood like that:
AS_IF([SOME-CONDITION],
[CODE-FOR-THE-IF-BRANCH],
[CODE-FOR-THE-ELSE-BRANCH
[...]
])
The indentation can be missleading but if someone has ideas on how to
properly fix that it'd be great.
Denis 'GNUtoo' Carikli (18):
website: configure.ac: check for sed.
website: configure.ac: always check for rm.
website: configure.ac: always check for printf.
website: configure.ac: always check for cat.
website: configure.ac: always check for mkdir.
website: properly handle the dot dependency.
website: remove history/git-history.jpg
website: review BSD page index and convert to GNU Boot point of view.
website: review OpenBSD page index and convert to GNU Boot point of
view.
website: review NetBSD page index and convert to GNU Boot point of
view.
website: review FreeBSD page index and convert to GNU Boot point of
view.
website: move contrib.md in history, rename git.md to contribute.md.
website: misc: codenames: review and add GNU Boot context.
website: docs: grub: review and add GNU Boot context.
packages: website: release: help: fix program name.
website: deploy: rsync: use --delete.
website: docs: build: fix link syntax.
website: Makefile.am: serve: update target name in message.
resources/packages/website/release | 2 +-
website/.gitignore | 3 +
website/Makefile.am | 21 ++-
website/configure.ac | 47 ++++---
website/history/git-history.jpg | Bin 565741 -> 0 bytes
website/pages/{git.md => contribute.md} | 0
website/pages/docs/bsd/freebsd.md | 40 ++++--
website/pages/docs/bsd/index.md | 123 ++++++++++++------
website/pages/docs/bsd/netbsd.md | 54 ++++++--
website/pages/docs/bsd/openbsd.md | 54 ++++----
website/pages/docs/build/index.md | 4 +-
website/pages/docs/grub/index.md | 19 ++-
.../{contrib.md => docs/history/authors.md} | 36 ++---
website/pages/docs/history/index.md | 15 ++-
website/pages/docs/install/ich9utils.md | 4 +-
website/pages/docs/install/install.md | 2 +-
website/pages/docs/misc/codenames.md | 11 +-
website/pages/download.md | 4 +-
website/pages/faq.md | 2 +-
website/pages/footer.include.tmpl | 3 +-
20 files changed, 282 insertions(+), 162 deletions(-)
delete mode 100644 website/history/git-history.jpg
rename website/pages/{git.md => contribute.md} (100%)
rename website/pages/{contrib.md => docs/history/authors.md} (94%)
--
2.46.0
- [PATCH v1 00/18] More website patches,
Denis 'GNUtoo' Carikli <=
- [PATCH v1 04/18] website: configure.ac: always check for cat., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 02/18] website: configure.ac: always check for rm., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 06/18] website: properly handle the dot dependency., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 05/18] website: configure.ac: always check for mkdir., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 08/18] website: review BSD page index and convert to GNU Boot point of view., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 10/18] website: review NetBSD page index and convert to GNU Boot point of view., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 01/18] website: configure.ac: check for sed., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 03/18] website: configure.ac: always check for printf., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 13/18] website: misc: codenames: review and add GNU Boot context., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 07/18] website: remove history/git-history.jpg, Denis 'GNUtoo' Carikli, 2024/10/13