Received: by mail.netbsd.org (Postfix, from userid 605) id 78D3D84DEC; Mon, 10 Sep 2018 13:47:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8EECF84DBE for ; Mon, 10 Sep 2018 13:47:32 +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 BKU17uM7PSmG for ; Mon, 10 Sep 2018 13:47:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B23F484D1F for ; Mon, 10 Sep 2018 13:47:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AC395FBF8; Mon, 10 Sep 2018 13:47:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_153658725191140" MIME-Version: 1.0 Date: Mon, 10 Sep 2018 13:47:31 +0000 From: "Filip Hajny" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: fhajny@netbsd.org X-Mailer: log_accum Message-Id: <20180910134731.AC395FBF8@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. --_----------=_153658725191140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: fhajny Date: Mon Sep 10 13:47:31 UTC 2018 Modified Files: pkgsrc/devel: Makefile Added Files: pkgsrc/devel/xxhash: DESCR Makefile PLIST buildlink3.mk distinfo Log Message: devel/xxhash: Import xxhash 0.6.5. xxHash is an Extremely fast Hash algorithm, running at RAM speed limits. It successfully completes the SMHasher test suite which evaluates collision, dispersion and randomness qualities of hash functions. To generate a diff of this commit: cvs rdiff -u -r1.2727 -r1.2728 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/xxhash/DESCR pkgsrc/devel/xxhash/Makefile \ pkgsrc/devel/xxhash/PLIST pkgsrc/devel/xxhash/buildlink3.mk \ pkgsrc/devel/xxhash/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_153658725191140 Content-Disposition: inline Content-Length: 3359 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.2727 pkgsrc/devel/Makefile:1.2728 --- pkgsrc/devel/Makefile:1.2727 Tue Sep 4 12:44:58 2018 +++ pkgsrc/devel/Makefile Mon Sep 10 13:47:31 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2727 2018/09/04 12:44:58 wiz Exp $ +# $NetBSD: Makefile,v 1.2728 2018/09/10 13:47:31 fhajny Exp $ # COMMENT= Development utilities @@ -2683,6 +2683,7 @@ SUBDIR+= xsd SUBDIR+= xulrunner192 SUBDIR+= xulrunner45 SUBDIR+= xxgdb +SUBDIR+= xxhash SUBDIR+= yajl SUBDIR+= yarn SUBDIR+= yasm Added files: Index: pkgsrc/devel/xxhash/DESCR diff -u /dev/null pkgsrc/devel/xxhash/DESCR:1.1 --- /dev/null Mon Sep 10 13:47:31 2018 +++ pkgsrc/devel/xxhash/DESCR Mon Sep 10 13:47:31 2018 @@ -0,0 +1,4 @@ +xxHash is an Extremely fast Hash algorithm, running at RAM speed +limits. It successfully completes the SMHasher test suite which +evaluates collision, dispersion and randomness qualities of hash +functions. Index: pkgsrc/devel/xxhash/Makefile diff -u /dev/null pkgsrc/devel/xxhash/Makefile:1.1 --- /dev/null Mon Sep 10 13:47:31 2018 +++ pkgsrc/devel/xxhash/Makefile Mon Sep 10 13:47:31 2018 @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1 2018/09/10 13:47:31 fhajny Exp $ + +DISTNAME= xxhash-0.6.5 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_GITHUB:=Cyan4973/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/Cyan4973/xxHash/ +COMMENT= Extremely fast non-cryptographic hash algorithm +LICENSE= 2-clause-bsd + +GITHUB_PROJECT= xxHash +GITHUB_TAG= v${PKGVERSION_NOREV} + +USE_TOOLS+= gmake + +INSTALLATION_DIRS+= bin include ${PKGMANDIR}/man1 + +do-install: + ${INSTALL_DATA} ${WRKSRC}/xxhash.h ${DESTDIR}${PREFIX}/include + ${INSTALL_MAN} ${WRKSRC}/xxhsum.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/xxhsum ${DESTDIR}${PREFIX}/bin + +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/xxhash/PLIST diff -u /dev/null pkgsrc/devel/xxhash/PLIST:1.1 --- /dev/null Mon Sep 10 13:47:31 2018 +++ pkgsrc/devel/xxhash/PLIST Mon Sep 10 13:47:31 2018 @@ -0,0 +1,4 @@ +@comment $NetBSD: PLIST,v 1.1 2018/09/10 13:47:31 fhajny Exp $ +bin/xxhsum +include/xxhash.h +man/man1/xxhsum.1 Index: pkgsrc/devel/xxhash/buildlink3.mk diff -u /dev/null pkgsrc/devel/xxhash/buildlink3.mk:1.1 --- /dev/null Mon Sep 10 13:47:31 2018 +++ pkgsrc/devel/xxhash/buildlink3.mk Mon Sep 10 13:47:31 2018 @@ -0,0 +1,13 @@ +# $NetBSD: buildlink3.mk,v 1.1 2018/09/10 13:47:31 fhajny Exp $ + +BUILDLINK_TREE+= xxhash + +.if !defined(XXHASH_BUILDLINK3_MK) +XXHASH_BUILDLINK3_MK:= + +BUILDLINK_ABI_DEPENDS.xxhash+= xxhash>=0.6.0 +BUILDLINK_API_DEPENDS.xxhash+= xxhash>=0.6.0 +BUILDLINK_PKGSRCDIR.xxhash?= ../../devel/xxhash +.endif # XXHASH_BUILDLINK3_MK + +BUILDLINK_TREE+= -xxhash Index: pkgsrc/devel/xxhash/distinfo diff -u /dev/null pkgsrc/devel/xxhash/distinfo:1.1 --- /dev/null Mon Sep 10 13:47:31 2018 +++ pkgsrc/devel/xxhash/distinfo Mon Sep 10 13:47:31 2018 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2018/09/10 13:47:31 fhajny Exp $ + +SHA1 (xxhash-0.6.5.tar.gz) = dc88bee2c1aa1080ae28a8f00967043af926691f +RMD160 (xxhash-0.6.5.tar.gz) = c70dfe2d2beddd292f521a5788bd94d4ec39cd5c +SHA512 (xxhash-0.6.5.tar.gz) = 085643b52e091ac0eedd54c4459220b3643d825ca71a11e952d00ea2041c570ff57d8553d0378f34e038ca9ee3b40d2048ed02d44d5aff1fbfcbf5e642487ba0 +Size (xxhash-0.6.5.tar.gz) = 37521 bytes --_----------=_153658725191140--