From 4a2750a06f9865aadfe75a465e03672c16bbe1a4 Mon Sep 17 00:00:00 2001 From: Alejandro Colomar Date: Tue, 1 Aug 2023 13:57:12 +0200 Subject: Changes: Ready for 6.05 The commands shown in the commit message for d4e80a7748ea ("Changes: Ready for 6.01") were slightly wrong; let's update them: A few useful commands: List of contributors: $ git log man-pages-6.04..HEAD \ | grep '<.*@.*>' \ | sed 's/^ *//' \ | sed 's/[^:]*: //' \ | sort \ | uniq; List of new pages: $ git diff man-pages-6.04..HEAD \ | grep -A1 '^--- /dev/null' \ | grep -v -e '\--' -e '\--- /dev/null' \ | sed 's,+++ b/,,' \ | grep '^man' \ | xargs grep -L '^\.so ' \ | sed 's,.*/,,'; List of new links: $ git diff man-pages-6.04..HEAD \ | grep '^+++ ' \ | sed 's,+++ b/,,' \ | grep '^man' \ | xargs grep -l '^\.so ' \ | sed 's,.*/,,'; Signed-off-by: Alejandro Colomar --- Changes | 178 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 176 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index c843ba1fd..3ad258f30 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ -==================== Changes in man-pages-?.?? ==================== +==================== Changes in man-pages-6.05 ==================== -Released: ????-??-??, ??Location?? +Released: 2023-08-01, Aldaya Contributors @@ -10,6 +10,105 @@ The following people contributed patches/fixes, reports, notes, ideas, and discussions that have been incorporated in changes in this release: +"David S. Miller" +"G. Branden Robinson" +A. Wilcox +Adam Dobes +Ahelenia Ziemiańska +Alan Cox +Alejandro Colomar +Alexei Starovoitov +Andreas Schwab +Andrew Clayton +Andrew Morton +Avinesh Kumar +Bastien Roucariès +Bjarni Ingi Gislason +Brian Inglis +Bruno Haible +Carsten Grohmann +Colin Watson +Cyril Hrubis +DJ Delorie +Daniel Verkamp +David Howells +Dirk Gouders +Dmitry Goncharov +Eli Zaretskii +Elliott Hughes +Eric Biggers +Eric Blake +Eric Wong +Fangrui Song +Florian Weimer +Gavin Smith +Guillem Jover +Günther Noack +Helge Kreutzmann +Igor Sysoev +Ingo Schwarze +Jakub Jelinek +Jakub Sitnicki +Jakub Wilk +Johannes Weiner +John Gilmore +John Hubbard +John Scott +Jonathan Corbet +Jonathan Wakely +Joseph Myers +Josh Triplett +Kirill A. Shutemov +Larry McVoy +Lennart Jablonka +Linus Heckemann +Lukas Javorsky +Marcos Fouces +Mario Blaettermann +Martin (Joey) Schulze +Masami Hiramatsu +Masatake YAMATO +Matthew House +Matthew Wilcox (Oracle) +Michael Kerrisk +Michael Weiß +Mickaël Salaün +Mike Frysinger +Mike Kravetz +Mingye Wang +Nadav Amit +Nick Desaulniers +Oskari Pirhonen +Paul E. McKenney +Paul Eggert +Paul Floyd +Paul Smith +Philip Guenther +Ralph Corderoy +Reuben Thomas +Rich Felker +Richard Biener +Sam James +Serge Hallyn +Seth David Schoen +Siddhesh Poyarekar +Simon Horman +Stefan Puiu +Steffen Nurpmeso +Szabolcs Nagy +Thomas Weißschuh +Tom Schwindl +Tomáš Golembiovský +Torbjorn SVENSSON +Ulrich Drepper +Vahid Noormofidi +Vlastimil Babka +Wilco Dijkstra +Xi Ruoyao +Yang Xu +Yedidyah Bar David +Zack Weinberg +Zijun Zhao Apologies if I missed anyone! @@ -17,18 +116,93 @@ Apologies if I missed anyone! New and rewritten pages ----------------------- +man2/ + ioctl_pipe.2 + +man3/ + regex.3 + +man5/ + erofs.5 + Newly documented interfaces in existing pages --------------------------------------------- +bpf.2 + EAGAIN + +ioctl_userfaultfd.2 + UFFD_FEATURE_EXACT_ADDRESS + +prctl.2 + PR_GET_AUXV + +recv.2 + MSG_CMSG_CLOEXEC + +statx.2 + STAT_ATTR_MOUNT_ROOT + +syscall.2 + ENOSYS + +resolv.conf.5 + no-aaaa + RES_NOAAAA + +tmpfs.5 + CONFIG_TRANSPARENT_HUGEPAGE + +ip.7 + IP_LOCAL_PORT_RANGE + +rtnetlink.7 + IFLA_PERM_ADDRESS + New and changed links --------------------- +man3type/ + regex_t.3type (regex(3)) + regmatch_t.3type (regex(3)) + regoff_t.3type (regex(3)) + Global changes -------------- +- Types: + - Document functions using off64_t as if they used off_t (except + for lseek64()). + +- Build system: + - Keep file modes in the release tarball. + - Fix symlink installation (`make install LINK_PAGES=symlink`). + - Add support for using bzip2(1), lzip(1), and xz(1) when installing + pages and creating release tarballs. + - Create reproducible release tarballs. + - Move makefiles from lib/ to share/mk/. + - Support mdoc(7) pages. + - Relicense Makefiles as GPL-3.0-or-later. + - Build PostScript and PDF manual pages. + - Add support for running our build system on arbitrary source + trees; this makes it possible to easily run our linters on another + project's manual pages as easily as `make lint MANDIR=~/src/groff` + +- Licenses: + - Relicense ddp.7 from VERBATIM_ONE_PARA to Linux-man-pages-copyleft. + - Relicense dir_colors.5 from LDPv1 to GPL-2.0-or-later. + - Use new SPDX license identifiers: + - Linux-man-pages-1-para (was VERBATIM_ONE_PARA) + - Linux-man-pages-copyleft-2-para (was VERBATIM_TWO_PARA) + - Linux-man-pages-copyleft-var (was VERBATIM_PROF) + +- ffix: + - use `\%` + - un-bracket tbl(1) tables + Changes to individual pages --------------------------- -- cgit v1.2.3