Received: by mail.netbsd.org (Postfix, from userid 605) id 6746F84D10; Tue, 5 Oct 2021 12:57:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9EE0B84CE3 for ; Tue, 5 Oct 2021 12:57:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id NCmZGWt4w3SF for ; Tue, 5 Oct 2021 12:57:49 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 13D3484C86 for ; Tue, 5 Oct 2021 12:57:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0DBABFA97; Tue, 5 Oct 2021 12:57:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1633438669271330" MIME-Version: 1.0 Date: Tue, 5 Oct 2021 12:57:49 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/devel/p5-Sys-Mmap To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20211005125749.0DBABFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1633438669271330 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Tue Oct 5 12:57:48 UTC 2021 Added Files: pkgsrc/devel/p5-Sys-Mmap: DESCR Makefile distinfo Log Message: devel/p5-Sys-Mmap: Add version 0.20 This package contains a perl module to access mmap. The Sys::Mmap module uses the POSIX mmap call to map in a file as a Perl variable. Memory access by mmap may be shared between threads or forked processes, and may be a disc file that has been mapped into memory. Sys::Mmap depends on your operating system supporting UNIX or POSIX.1b mmap, of course. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/p5-Sys-Mmap/DESCR \ pkgsrc/devel/p5-Sys-Mmap/Makefile pkgsrc/devel/p5-Sys-Mmap/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1633438669271330 Content-Disposition: inline Content-Length: 1903 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/p5-Sys-Mmap/DESCR diff -u /dev/null pkgsrc/devel/p5-Sys-Mmap/DESCR:1.1 --- /dev/null Tue Oct 5 12:57:48 2021 +++ pkgsrc/devel/p5-Sys-Mmap/DESCR Tue Oct 5 12:57:48 2021 @@ -0,0 +1,7 @@ +This package contains a perl module to access mmap. + +The Sys::Mmap module uses the POSIX mmap call to map in a file as a +Perl variable. Memory access by mmap may be shared between threads or +forked processes, and may be a disc file that has been mapped into +memory. Sys::Mmap depends on your operating system supporting UNIX or +POSIX.1b mmap, of course. Index: pkgsrc/devel/p5-Sys-Mmap/Makefile diff -u /dev/null pkgsrc/devel/p5-Sys-Mmap/Makefile:1.1 --- /dev/null Tue Oct 5 12:57:48 2021 +++ pkgsrc/devel/p5-Sys-Mmap/Makefile Tue Oct 5 12:57:48 2021 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2021/10/05 12:57:48 gdt Exp $ + +DISTNAME= Sys-Mmap-0.20 +PKGNAME= p5-${DISTNAME} +CATEGORIES= devel perl5 +MASTER_SITES= https://cpan.metacpan.org/authors/id/T/TO/TODDR/ + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://metacpan.org/pod/Sys::Mmap +COMMENT= Uses mmap to map in a file as a Perl variable +LICENSE= ${PERL5_LICENSE} + +PERL5_PACKLIST= auto/Sys/Mmap/.packlist + +.include "../../lang/perl5/module.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/p5-Sys-Mmap/distinfo diff -u /dev/null pkgsrc/devel/p5-Sys-Mmap/distinfo:1.1 --- /dev/null Tue Oct 5 12:57:49 2021 +++ pkgsrc/devel/p5-Sys-Mmap/distinfo Tue Oct 5 12:57:48 2021 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2021/10/05 12:57:48 gdt Exp $ + +SHA1 (Sys-Mmap-0.20.tar.gz) = f3d7a0bfcf9100e68102dfedb9165dc3e3569c7b +RMD160 (Sys-Mmap-0.20.tar.gz) = f490c8e0bd1ccab231639fa0da071bed078a9647 +SHA512 (Sys-Mmap-0.20.tar.gz) = 7afe9e1be26d75bbc818d3deb51e0ba751c2711f8503a77882d3d207b1c37e4867fe79e5757193ba058ed395ba955406d8af3f195ce5dff5b4b29748d9d86f5f +Size (Sys-Mmap-0.20.tar.gz) = 17962 bytes --_----------=_1633438669271330--