From nobody Fri Aug 8 22:28:11 2025 X-Original-To: dev-commits-src-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4bzJZy17XPz64GF4; Fri, 08 Aug 2025 22:28:26 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4bzJZx1ztMz3xdm; Fri, 08 Aug 2025 22:28:24 +0000 (UTC) (envelope-from kostikbel@gmail.com) Authentication-Results: mx1.freebsd.org; none Received: from tom.home (kib@localhost [127.0.0.1] (may be forged)) by kib.kiev.ua (8.18.1/8.18.1) with ESMTP id 578MSB5r027504; Sat, 9 Aug 2025 01:28:14 +0300 (EEST) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua 578MSB5r027504 Received: (from kostik@localhost) by tom.home (8.18.1/8.18.1/Submit) id 578MSBGO027503; Sat, 9 Aug 2025 01:28:11 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Sat, 9 Aug 2025 01:28:11 +0300 From: Konstantin Belousov To: Lexi Winter Cc: src-committers@freebsd.org, dev-commits-src-all@freebsd.org, dev-commits-src-main@freebsd.org Subject: Re: git: f4fd2aa07cde - main - libutil++: Move to clibs Message-ID: References: <202508081539.578FddbT056896@gitrepo.freebsd.org> List-Id: Commit messages for all branches of the src repository List-Archive: https://lists.freebsd.org/archives/dev-commits-src-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: dev-commits-src-all@freebsd.org Sender: owner-dev-commits-src-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <202508081539.578FddbT056896@gitrepo.freebsd.org> X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FORGED_GMAIL_RCVD,FREEMAIL_FROM, NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=4.0.1 X-Spam-Checker-Version: SpamAssassin 4.0.1 (2024-03-26) on tom.home X-Rspamd-Queue-Id: 4bzJZx1ztMz3xdm X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:6939, ipnet:2001:470::/32, country:US] On Fri, Aug 08, 2025 at 03:39:39PM +0000, Lexi Winter wrote: > The branch main has been updated by ivy: > > URL: https://cgit.FreeBSD.org/src/commit/?id=f4fd2aa07cdeca58ff792aebeca5c572fd92dffc > > commit f4fd2aa07cdeca58ff792aebeca5c572fd92dffc > Author: Lexi Winter > AuthorDate: 2025-08-08 15:14:07 +0000 > Commit: Lexi Winter > CommitDate: 2025-08-08 15:14:07 +0000 > > libutil++: Move to clibs > > This library only installs manual pages, so putting it in its own > package means we build a FreeBSD-libutil++-man package but not a > base FreeBSD-libutil++ package. Without a base package, the man > package can't be installed due to the missing dependency. > > We don't really need a separate package for a few manpages, so move > it to clibs. > > Reviewed by: des > Differential Revision: https://reviews.freebsd.org/D51756 > --- > lib/libutil++/Makefile | 2 +- > release/packages/ucl/libutil++-all.ucl | 4 ---- > 2 files changed, 1 insertion(+), 5 deletions(-) > > diff --git a/lib/libutil++/Makefile b/lib/libutil++/Makefile > index df3074c2278e..729a336ddb3a 100644 > --- a/lib/libutil++/Makefile > +++ b/lib/libutil++/Makefile > @@ -1,4 +1,4 @@ > -PACKAGE= lib${LIB} > +PACKAGE= clibs > LIB_CXX= util++ > INTERNALLIB= true > SHLIB_MAJOR= 1 > diff --git a/release/packages/ucl/libutil++-all.ucl b/release/packages/ucl/libutil++-all.ucl > deleted file mode 100644 > index dfd77215dbc5..000000000000 > --- a/release/packages/ucl/libutil++-all.ucl > +++ /dev/null > @@ -1,4 +0,0 @@ > -comment = "C++ utility library" > -desc = < -libutil++ contains various C++ utility classes used by the base system. > -EOD clibs package must not be extended arbitrarily. The clibs package is intended to provide the minimal safe atomic update for C runtime. Anything else is out of its scope. Really it should contain just rtld/libc/libthr and required fs structures.