Received: by mail.netbsd.org (Postfix, from userid 605) id 363F384DB3; Fri, 17 Jan 2020 19:01:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B32E684D9E for ; Fri, 17 Jan 2020 19:01:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id EN7kw1SIKpcu for ; Fri, 17 Jan 2020 19:01:50 +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 1E88884CE9 for ; Fri, 17 Jan 2020 19:01:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 12A6DFBF4; Fri, 17 Jan 2020 19:01:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1579287710137000" MIME-Version: 1.0 Date: Fri, 17 Jan 2020 19:01:50 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/archivers/hs-zip-archive To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20200117190150.12A6DFBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1579287710137000 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Fri Jan 17 19:01:49 UTC 2020 Added Files: pkgsrc/archivers/hs-zip-archive: DESCR Makefile buildlink3.mk distinfo Log Message: Import zip-archive-0.4.1 from wip The zip-archive library provides functions for creating, modifying, and extracting files from zip archives. The zip archive format is documented in http://www.pkware.com/documents/casestudies/APPNOTE.TXT. Certain simplifying assumptions are made about the zip archives: in particular, there is no support for strong encryption, zip files that span multiple disks, ZIP64, OS-specific file attributes, or compression methods other than Deflate. However, the library should be able to read the most common zip archives, and the archives it produces should be readable by all standard unzip programs. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/archivers/hs-zip-archive/DESCR \ pkgsrc/archivers/hs-zip-archive/Makefile \ pkgsrc/archivers/hs-zip-archive/buildlink3.mk \ pkgsrc/archivers/hs-zip-archive/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1579287710137000 Content-Disposition: inline Content-Length: 2948 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/archivers/hs-zip-archive/DESCR diff -u /dev/null pkgsrc/archivers/hs-zip-archive/DESCR:1.1 --- /dev/null Fri Jan 17 19:01:50 2020 +++ pkgsrc/archivers/hs-zip-archive/DESCR Fri Jan 17 19:01:49 2020 @@ -0,0 +1,10 @@ +The zip-archive library provides functions for creating, modifying, +and extracting files from zip archives. The zip archive format is +documented in http://www.pkware.com/documents/casestudies/APPNOTE.TXT. + +Certain simplifying assumptions are made about the zip archives: in +particular, there is no support for strong encryption, zip files that +span multiple disks, ZIP64, OS-specific file attributes, or +compression methods other than Deflate. However, the library should be +able to read the most common zip archives, and the archives it +produces should be readable by all standard unzip programs. Index: pkgsrc/archivers/hs-zip-archive/Makefile diff -u /dev/null pkgsrc/archivers/hs-zip-archive/Makefile:1.1 --- /dev/null Fri Jan 17 19:01:50 2020 +++ pkgsrc/archivers/hs-zip-archive/Makefile Fri Jan 17 19:01:49 2020 @@ -0,0 +1,13 @@ +# $NetBSD: Makefile,v 1.1 2020/01/17 19:01:49 pho Exp $ + +DISTNAME= zip-archive-0.4.1 +CATEGORIES= archivers + +MAINTAINER= zecrazytux@zecrazytux.net +COMMENT= Library for creating and modifying zip archives +LICENSE= modified-bsd + +.include "../../security/hs-digest/buildlink3.mk" +.include "../../archivers/hs-zlib/buildlink3.mk" +.include "../../mk/haskell.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/archivers/hs-zip-archive/buildlink3.mk diff -u /dev/null pkgsrc/archivers/hs-zip-archive/buildlink3.mk:1.1 --- /dev/null Fri Jan 17 19:01:50 2020 +++ pkgsrc/archivers/hs-zip-archive/buildlink3.mk Fri Jan 17 19:01:49 2020 @@ -0,0 +1,16 @@ +# $NetBSD: buildlink3.mk,v 1.1 2020/01/17 19:01:49 pho Exp $ + +BUILDLINK_TREE+= hs-zip-archive + +.if !defined(HS_ZIP_ARCHIVE_BUILDLINK3_MK) +HS_ZIP_ARCHIVE_BUILDLINK3_MK:= + +BUILDLINK_API_DEPENDS.hs-zip-archive+= hs-zip-archive>=0.4.1 +BUILDLINK_ABI_DEPENDS.hs-zip-archive+= hs-zip-archive>=0.4.1 +BUILDLINK_PKGSRCDIR.hs-zip-archive?= ../../archivers/hs-zip-archive + +.include "../../security/hs-digest/buildlink3.mk" +.include "../../archivers/hs-zlib/buildlink3.mk" +.endif # HS_ZIP_ARCHIVE_BUILDLINK3_MK + +BUILDLINK_TREE+= -hs-zip-archive Index: pkgsrc/archivers/hs-zip-archive/distinfo diff -u /dev/null pkgsrc/archivers/hs-zip-archive/distinfo:1.1 --- /dev/null Fri Jan 17 19:01:50 2020 +++ pkgsrc/archivers/hs-zip-archive/distinfo Fri Jan 17 19:01:49 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/01/17 19:01:49 pho Exp $ + +SHA1 (zip-archive-0.4.1.tar.gz) = 4da8c2eefe54d0415cabf2f4a229b58639f78997 +RMD160 (zip-archive-0.4.1.tar.gz) = 661115244b28d3ae69e563b7d2868d954dc88081 +SHA512 (zip-archive-0.4.1.tar.gz) = 216555bd73a46da5061291c2c071e9c71239bd5ae253ac06ee80ade65bb1871366cc8e4dffbad983c5b6a7f4b0cb2a1439dfa5971db3e183124fa90442a73f0c +Size (zip-archive-0.4.1.tar.gz) = 20967 bytes --_----------=_1579287710137000--