From nobody Wed Oct 27 23:58:45 2021 X-Original-To: freebsd-current@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 38C531810736 for ; Wed, 27 Oct 2021 23:58:47 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (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-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Hflyb15nbz3tyY; Wed, 27 Oct 2021 23:58:47 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from John-Baldwins-MacBook-Pro.local (ralph.baldwin.cx [66.234.199.215]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: jhb) by smtp.freebsd.org (Postfix) with ESMTPSA id B601A12C7; Wed, 27 Oct 2021 23:58:46 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Subject: Re: git: 2f7f8995367b - main - libdialog: Bump shared library version to 10. [ the .so.10 is listed in mk/OptionalObsoleteFiles.inc ?] To: marklmi@yahoo.com, freebsd-current References: <1628B613-808D-4217-B7B9-FC649E42A81D@yahoo.com> <18C5538D-74CF-460A-9809-BD025ED15A3D@yahoo.com> From: John Baldwin Message-ID: <3124d17b-42a0-3e40-2041-571f8fca4db6@FreeBSD.org> Date: Wed, 27 Oct 2021 16:58:45 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 List-Id: Discussions about the use of FreeBSD-current List-Archive: https://lists.freebsd.org/archives/freebsd-current List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-current@freebsd.org MIME-Version: 1.0 In-Reply-To: <18C5538D-74CF-460A-9809-BD025ED15A3D@yahoo.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-ThisMailContainsUnwantedMimeParts: N On 10/27/21 3:23 PM, Mark Millard via freebsd-current wrote: > > > On 2021-Oct-27, at 15:21, Mark Millard wrote: > >> Unfortunately(?) this update added the .so.10 to mk/OptionalObsoleteFiles.inc : >> >> diff --git a/tools/build/mk/OptionalObsoleteFiles.inc b/tools/build/mk/OptionalObsoleteFiles.inc >> index a8b0329104c4..91822aac492a 100644 >> --- a/tools/build/mk/OptionalObsoleteFiles.inc >> +++ b/tools/build/mk/OptionalObsoleteFiles.inc >> _at__at_ -1663,11 +1663,11 _at__at_ OLD_FILES+=usr/bin/dialog >> . . . >> OLD_FILES+=usr/lib/libdialog.so >> -OLD_FILES+=usr/lib/libdialog.so.8 >> +OLD_FILES+=usr/lib/libdialog.so.10 >> . . . >> >> Looks to my like that +line should have been: >> >> +OLD_FILES+=usr/lib/libdialog.so.9 >> >> (presuming the original .so.8 was correct during >> .so.9 's time frame). > > > Looks like: > > +OLD_FILES+=usr/lib/libdpv.so.3 > > is the same sort of issue and possibly should have been: > > +OLD_FILES+=usr/lib/libdpv.so.2 No, these lines are for removing the current versions of the libraries if you do 'make delete-old WITHOUT_DIALOG=yes'. They weren't bumped previously when I bumped them for ncurses (probably my fault). -- John Baldwin