This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=a8aa7e2d96f99c795d3e37e8e9f8272526137e70 commit a8aa7e2d96f99c795d3e37e8e9f8272526137e70 Author: Guillem Jover <[email protected]> AuthorDate: Sun Aug 11 16:52:03 2024 +0200 man: Use modern architectures for manual page examples When giving examples, use architectures that are modern, and less prone to bit rot or even potential removal, also ones that might be more familiar to users. --- man/deb-src-symbols.pod | 4 ++-- man/dpkg-architecture.pod | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/man/deb-src-symbols.pod b/man/deb-src-symbols.pod index b05d6182a..998c3fc4f 100644 --- a/man/deb-src-symbols.pod +++ b/man/deb-src-symbols.pod @@ -168,11 +168,11 @@ The format of I<architecture-list> is the same as the one used in the B<Build-Depends> field of I<debian/control> (except the enclosing square brackets []). For example, the first symbol from the list below -will be considered only on alpha, any-amd64 and ia64 architectures, +will be considered only on arm64, any-amd64 and riscv64 architectures, the second only on linux architectures, while the third one anywhere except on armel. - (arch=alpha any-amd64 ia64)64bit_specific_symbol@Base 1.0 + (arch=arm64 any-amd64 riscv64)arch_specific_symbol@Base 1.0 (arch=linux-any)linux_specific_symbol@Base 1.0 (arch=!armel)symbol_armel_does_not_have@Base 1.0 diff --git a/man/dpkg-architecture.pod b/man/dpkg-architecture.pod index cb2f362f9..ae26b6d5c 100644 --- a/man/dpkg-architecture.pod +++ b/man/dpkg-architecture.pod @@ -457,9 +457,9 @@ architecture: =over - dpkg-architecture -elinux-alpha + dpkg-architecture -elinux-arm64 - dpkg-architecture -amips -elinux-mips + dpkg-architecture -ariscv64 -elinux-riscv64 =back @@ -469,7 +469,7 @@ Check if the current or specified host architecture is a Linux system: dpkg-architecture -ilinux-any - dpkg-architecture -ai386 -ilinux-any + dpkg-architecture -aamd64 -ilinux-any =back @@ -510,7 +510,7 @@ Doing something only for a specific architecture: DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) - ifeq ($(DEB_HOST_ARCH),alpha) + ifeq ($(DEB_HOST_ARCH),arm64) [...] endif @@ -526,7 +526,7 @@ set all the variables that B<dpkg-architecture> can provide: include %PKGDATADIR%/architecture.mk - ifeq ($(DEB_HOST_ARCH),alpha) + ifeq ($(DEB_HOST_ARCH),arm64) [...] endif -- Dpkg.Org's dpkg

