Subject: CVS commit: pkgsrc/lang/perl5
From: Rin Okuyama
Date: 2021-05-29 15:04:21
Message id: 20210529130422.0D0C1FAB4@cvs.NetBSD.org

Log Message:
perl5: Compare inode numbers as string. Bump revision.

PR pkg/55997

Internal stat() function for perl stores inode number as string, if it
cannot be represented by host's integer. However, unfortunately, some
components compare them as integer.

Therefore, if 64-bit integers are not supported, files cannot be handled,
whose inode number is larger than UINT32_MAX.

Usually, inode numbers on real filesystems are well below UINT32_MAX. But,
inode numbers larger than UINT32_MAX are assigned for tmpfs on LP64 kernels.
This results in build failures for perl on COMPAT_NETBSD32 if working
directory is tmpfs, and perl-64bitint and friends are not specified.

Now, inode numbers are compared as string, which works just fine even if
64-bit integers are not supported.

Cherry-picked from upstream. See https://github.com/Perl/perl5/pull/18788
and related pull-requests for more details.

Files:
RevisionActionfile
1.271modifypkgsrc/lang/perl5/Makefile
1.171modifypkgsrc/lang/perl5/distinfo
1.2modifypkgsrc/lang/perl5/patches/patch-cpan_ExtUtils-MakeMaker_lib_ExtUtils_MM__Unix.pm
1.1addpkgsrc/lang/perl5/patches/patch-dist_PathTools_Cwd.pm
1.1addpkgsrc/lang/perl5/patches/patch-lib_File_Copy.pm