[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CADo9pHgFjtFSPv3vLUuO7u2A5rVYw2P_1ZP6yBGU43q_DNUgig@mail.gmail.com>
Date: Wed, 2 Aug 2023 06:19:54 +0200
From: Luna Jernberg <droidbittin@...il.com>
To: Alejandro Colomar <alx@...nel.org>,
andyrtr <andyrtr@...hlinux.org>,
Luna Jernberg <droidbittin@...il.com>
Cc: linux-man <linux-man@...r.kernel.org>,
LKML <linux-kernel@...r.kernel.org>,
GNU C Library <libc-alpha@...rceware.org>,
Sam James <sam@...too.org>, Jonathan Corbet <corbet@....net>,
Michael Kerrisk <mtk.manpages@...il.com>,
Marcos Fouces <marcos@...ian.org>
Subject: Re: man-pages-6.05 released
Updated PKGBUILD for Arch Linux
Den tis 1 aug. 2023 kl 15:30 skrev Alejandro Colomar <alx@...nel.org>:
>
> Gidday!
>
> I'm proud to announce:
>
> man-pages-6.05 - manual pages for GNU/Linux
>
> The release tarball is already available at <kernel.org>
>
> Tarball download:
> <https://mirrors.edge.kernel.org/pub/linux/docs/man-pages/>
> Git repository:
> <https://git.kernel.org/cgit/docs/man-pages/man-pages.git/>
>
> A change from man-pages-6.04 merits a mention in this release, as it
> wasn't properly documented in the previous release notes:
>
> - Add make(1) 'check' target. This has been split from 'lint'.
> 'lint' will check the source code, and 'check' will check the
> rendered pages (as a user will read them). There are currently
> several pages that fail this `make check`, and distributors that
> depend on this can workaround it by touching a few files:
>
> $ make check -k -j >/dev/null 2>/dev/null;
> $ make check -k 2>/dev/null;
> GREP .tmp/man/man1/memusage.1.check-catman.touch
> TROFF .tmp/man/man2/fanotify_init.2.cat.set
> TROFF .tmp/man/man2/gettimeofday.2.cat.set
> TROFF .tmp/man/man2/s390_sthyi.2.cat.set
> GREP .tmp/man/man3/mallopt.3.check-catman.touch
> TROFF .tmp/man/man3/unlocked_stdio.3.cat.set
> TROFF .tmp/man/man4/console_codes.4.cat.set
> TROFF .tmp/man/man4/lirc.4.cat.set
> GREP .tmp/man/man4/smartpqi.4.check-catman.touch
> GREP .tmp/man/man4/veth.4.check-catman.touch
> TROFF .tmp/man/man5/proc.5.cat.set
> GREP .tmp/man/man5/slabinfo.5.check-catman.touch
> TROFF .tmp/man/man5/tzfile.5.cat.set
> TROFF .tmp/man/man7/address_families.7.cat.set
> TROFF .tmp/man/man7/ascii.7.cat.set
> TROFF .tmp/man/man7/bpf-helpers.7.cat.set
> GREP .tmp/man/man7/keyrings.7.check-catman.touch
> GREP .tmp/man/man7/uri.7.check-catman.touch
> TROFF .tmp/man/man8/tzselect.8.cat.set
> TROFF .tmp/man/man8/zdump.8.cat.set
> TROFF .tmp/man/man8/zic.8.cat.set
>
> After touching the previous files, `make check` will succeed:
>
> $ make check -k 2>/dev/null | awk '{print $2}' | xargs touch;
> $ make check -j >/dev/null;
> $ echo $?
> 0
>
> The most notable changes in this release (man-pages-6.05) are:
>
> 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
>
>
> Contributors
> ------------
>
> The following people contributed patches/fixes, reports, notes,
> ideas, and discussions that have been incorporated in changes in
> this release:
>
> "David S. Miller" <davem@...emloft.net>
> "G. Branden Robinson" <g.branden.robinson@...il.com>
> A. Wilcox <AWilcox@...cox-tech.com>
> Adam Dobes <adobes@...hat.com>
> Ahelenia Ziemiańska <nabijaczleweli@...ijaczleweli.xyz>
> Alan Cox <alan@...yncelyn.cymru>
> Alejandro Colomar <alx@...nel.org>
> Alexei Starovoitov <ast@...nel.org>
> Andreas Schwab <schwab@...e.de>
> Andrew Clayton <andrew@...ital-domain.net>
> Andrew Morton <akpm@...ux-foundation.org>
> Avinesh Kumar <akumar@...e.de>
> Bastien Roucariès <rouca@...ian.org>
> Bjarni Ingi Gislason <bjarniig@...net.is>
> Brian Inglis <Brian.Inglis@...w.ca>
> Bruno Haible <bruno@...sp.org>
> Carsten Grohmann <carstengrohmann@....de>
> Colin Watson <cjwatson@...ian.org>
> Cyril Hrubis <chrubis@...e.cz>
> DJ Delorie <dj@...hat.com>
> Daniel Verkamp <daniel@....nu>
> David Howells <dhowells@...hat.com>
> Dirk Gouders <dirk@...ders.net>
> Dmitry Goncharov <dgoncharov@...rs.sf.net>
> Eli Zaretskii <eliz@....org>
> Elliott Hughes <enh@...gle.com>
> Eric Biggers <ebiggers@...gle.com>
> Eric Blake <eblake@...hat.com>
> Eric Wong <e@...24.org>
> Fangrui Song <maskray@...gle.com>
> Florian Weimer <fweimer@...hat.com>
> Gavin Smith <gavinsmith0123@...il.com>
> Guillem Jover <guillem@...rons.org>
> Günther Noack <gnoack@...gle.com>
> Helge Kreutzmann <debian@...gefjell.de>
> Igor Sysoev <igor@...oev.ru>
> Ingo Schwarze <schwarze@...nbsd.org>
> Jakub Jelinek <jakub@...hat.com>
> Jakub Sitnicki <jakub@...udflare.com>
> Jakub Wilk <jwilk@...lk.net>
> Johannes Weiner <hannes@...xchg.org>
> John Gilmore <gnu@...d.com>
> John Hubbard <jhubbard@...dia.com>
> John Scott <jscott@...teo.net>
> Jonathan Corbet <corbet@....net>
> Jonathan Wakely <jwakely@...hat.com>
> Joseph Myers <joseph@...esourcery.com>
> Josh Triplett <josh@...htriplett.org>
> Kirill A. Shutemov <kirill.shutemov@...ux.intel.com>
> Larry McVoy <lm@...oy.com>
> Lennart Jablonka <humm@...bl.com>
> Linus Heckemann <git@...alerite.org>
> Lukas Javorsky <ljavorsk@...hat.com>
> Marcos Fouces <marcos@...ian.org>
> Mario Blaettermann <mario.blaettermann@...il.com>
> Martin (Joey) Schulze <joey@...odrom.org>
> Masami Hiramatsu <mhiramat@...nel.org>
> Masatake YAMATO <yamato@...hat.com>
> Matthew House <mattlloydhouse@...il.com>
> Matthew Wilcox (Oracle) <willy@...radead.org>
> Michael Kerrisk <mtk.manpages@...il.com>
> Michael Weiß <michael.weiss@...ec.fraunhofer.de>
> Mickaël Salaün <mic@...ikod.net>
> Mike Frysinger <vapier@...too.org>
> Mike Kravetz <mike.kravetz@...cle.com>
> Mingye Wang <arthur200126@...il.com>
> Nadav Amit <namit@...are.com>
> Nick Desaulniers <ndesaulniers@...gle.com>
> Oskari Pirhonen <xxc3ncoredxx@...il.com>
> Paul E. McKenney <paulmck@...nel.org>
> Paul Eggert <eggert@...ucla.edu>
> Paul Floyd <pjfloyd@...adoo.fr>
> Paul Smith <psmith@....org>
> Philip Guenther <guenther@...il.com>
> Ralph Corderoy <ralph@...utplus.co.uk>
> Reuben Thomas <rrt@...d.org>
> Rich Felker <dalias@...c.org>
> Richard Biener <richard.guenther@...il.com>
> Sam James <sam@...too.org>
> Serge Hallyn <serge@...lyn.com>
> Seth David Schoen <schoen@...alty.org>
> Siddhesh Poyarekar <siddhesh@...plt.org>
> Simon Horman <simon.horman@...igine.com>
> Stefan Puiu <stefan.puiu@...il.com>
> Steffen Nurpmeso <steffen@...oden.eu>
> Szabolcs Nagy <nsz@...t70.net>
> Thomas Weißschuh <thomas@...ch.de>
> Tom Schwindl <schwindl@...teo.de>
> Tomáš Golembiovský <tgolembi@...hat.com>
> Torbjorn SVENSSON <torbjorn.svensson@...s.st.com>
> Ulrich Drepper <drepper@...hat.com>
> Vahid Noormofidi <vnoormof@...dia.com>
> Vlastimil Babka <vbabka@...e.cz>
> Wilco Dijkstra <Wilco.Dijkstra@....com>
> Xi Ruoyao <xry111@...111.site>
> Yang Xu <xuyang2018.jy@...itsu.com>
> Yedidyah Bar David <didi@...hat.com>
> Zack Weinberg <zack@...folio.org>
> Zijun Zhao <zijunzhao@...gle.com>
>
> Apologies if I missed anyone!
>
>
> Thanks you all for contributing!
>
> Cheers,
> Alex
>
> --
> <http://www.alejandro-colomar.es/>
> GPG key fingerprint: A9348594CE31283A826FBDD8D57633D441E25BB5
Download attachment "PKGBUILD" of type "application/octet-stream" (1740 bytes)
Powered by blists - more mailing lists