From nobody Sun Oct 22 04:42:52 2023 X-Original-To: freebsd-ports@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 4SCm0V4dHkz4y2v3 for ; Sun, 22 Oct 2023 04:43:06 +0000 (UTC) (envelope-from freebsd@oldach.net) Received: from nuc.oldach.net (hmo.in-vpn.de [IPv6:2001:67c:1407:60::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-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "hmo.in-vpn.de", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4SCm0T2Bdqz4VCH for ; Sun, 22 Oct 2023 04:43:04 +0000 (UTC) (envelope-from freebsd@oldach.net) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of freebsd@oldach.net designates 2001:67c:1407:60::1 as permitted sender) smtp.mailfrom=freebsd@oldach.net; dmarc=none Received: from nuc.oldach.net (localhost [127.0.0.1]) by nuc.oldach.net (8.17.2/8.17.2) with ESMTPS id 39M4gqOR020345 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NO) for ; Sun, 22 Oct 2023 06:42:52 +0200 (CEST) (envelope-from freebsd@oldach.net) Received: (from hmo@localhost) by nuc.oldach.net (8.17.2/8.17.2) id 39M4gqvr020344 for freebsd-ports@freebsd.org; Sun, 22 Oct 2023 06:42:52 +0200 (CEST) (envelope-from freebsd@oldach.net) Message-Id: <202310220442.39M4gqvr020344@nuc.oldach.net> Subject: Re: lang/perl5.36: update procedure written in UPDATING is not enough In-Reply-To: From Tatsuki Makino at "22 Oct 2023 07:50:44" To: freebsd-ports@freebsd.org Date: Sun, 22 Oct 2023 06:42:52 +0200 (CEST) From: freebsd@oldach.net (Helge Oldach) X-No-Archive: Yes List-Id: Porting software to FreeBSD List-Archive: https://lists.freebsd.org/archives/freebsd-ports List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: inspected by milter-greylist-4.6.4 (nuc.oldach.net [0.0.0.0]); Sun, 22 Oct 2023 06:42:52 +0200 (CEST) for IP:127.0.0.1 DOMAIN:localhost HELO:nuc.oldach.net FROM:freebsd@oldach.net RCPT: X-Spamd-Bar: --- X-Spamd-Result: default: False [-3.30 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.997]; R_SPF_ALLOW(-0.20)[+mx]; MIME_GOOD(-0.10)[text/plain]; MLMMJ_DEST(0.00)[freebsd-ports@freebsd.org]; DMARC_NA(0.00)[oldach.net]; FROM_EQ_ENVFROM(0.00)[]; FROM_NO_DN(0.00)[]; MIME_TRACE(0.00)[0:+]; R_DKIM_NA(0.00)[]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:29670, ipnet:2001:67c:1400::/45, country:DE]; TO_MATCH_ENVRCPT_ALL(0.00)[]; ARC_NA(0.00)[]; MID_RHS_MATCH_FROMTLD(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ports@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; TO_DN_NONE(0.00)[]; RCVD_COUNT_TWO(0.00)[2] X-Rspamd-Queue-Id: 4SCm0T2Bdqz4VCH Tatsuki Makino wrote on Sun, 22 Oct 2023 00:50:44 +0200 (CEST): > Most of *.pm files installed in /usr/local/lib/perl5/site_perl/mach/5.36/ use DynaLoader, so most ports that install it have a library linked to libperl.so.5.36. Actually only a fraction of perl ports requires libperl.so. For example one of my machines: # pkg shlib -qR libperl.so.5.36 | wc -l 35 # pkg files | fgrep mach/5.36 | sed s/\ .*// | uniq | wc -l 128 # > Ports that are not targeted for updating in this procedure, but need to be reinstalled, seem to create a file named .packlist in /usr/local/lib/perl5/site_perl/mach/5.36/ directory. Indeed, but that's not covered by the 20181213 procedure at all. Which is why this thread rightfully started. > Reinstalling all p5-* ports is slight but overkill. Yes - but it's rather cheap to reinstall such ports, as in many cases "installing" is just mungling text and moving files around. The point I was trying to make is that p5-* is not even comprehensive, as some ports don't have a name starting with p5-. The thing is that such ports' files may need to be moved from site_perl/mach/5.34 to site_perl/mach/5.36 still. Likewise to clean up the legacy left in site_perl/mach/5.34. Kind regards Helge