Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=fhPrbdjd; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=NgNoIKiH Received: by mail.netbsd.org (Postfix, from userid 605) id 4618F84DBF; Wed, 3 Apr 2024 06:56:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712127374; bh=3yb8pDarusMw57w+pnA0HLdybellREyE8eNeU9HK+s4=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=fhPrbdjduo4G6iJwffXEQTgwx+hDNKM7bCV7kpblxtO8R57A1m4kDF+ksd2o5D45Y +4iNrKhPWW/DTS+hjRx+bMWfieEqj/7Ny8Owgr/rlQ34rb14D/9Kex0AftGTrm7No5 L32Ds780bCbfs2xs9Tu5oLYYntz5TYlwv+hAGTbs= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3807A84D0E for ; Wed, 3 Apr 2024 06:56:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 NXnv8vyXZOXx for ; Wed, 3 Apr 2024 06:56:12 +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 86C2884CF7 for ; Wed, 3 Apr 2024 06:56:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712127372; bh=3yb8pDarusMw57w+pnA0HLdybellREyE8eNeU9HK+s4=; h=Date:From:Subject:To:Reply-To; b=NgNoIKiHuG3Hzs3pOcSHt1IKx/kKIN3l0vl0tBSfEilkQmeRBhiWvLWyi5x9VRlLF hGZAkZUuv5K2hPt0aOPPwfavkxaa/kzaBqXzmG17aO4jDyBcBb8VkyGF5+grWbSBxz vJ7PpsrwaLDO3nNVG7jxYwRL3SGXpdvJhVFtJZnI= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7A8E8FA2C; Wed, 3 Apr 2024 06:56:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1712127372292970" MIME-Version: 1.0 Date: Wed, 3 Apr 2024 06:56:12 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/archivers/py-zstandard To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240403065612.7A8E8FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1712127372292970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Apr 3 06:56:12 UTC 2024 Modified Files: pkgsrc/archivers/py-zstandard: Makefile Log Message: py-zstandard: fix build with zstd 1.5.6 Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 pkgsrc/archivers/py-zstandard/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1712127372292970 Content-Disposition: inline Content-Length: 1070 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/py-zstandard/Makefile diff -u pkgsrc/archivers/py-zstandard/Makefile:1.28 pkgsrc/archivers/py-zstandard/Makefile:1.29 --- pkgsrc/archivers/py-zstandard/Makefile:1.28 Mon Nov 6 20:00:39 2023 +++ pkgsrc/archivers/py-zstandard/Makefile Wed Apr 3 06:56:12 2024 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.28 2023/11/06 20:00:39 wiz Exp $ +# $NetBSD: Makefile,v 1.29 2024/04/03 06:56:12 wiz Exp $ DISTNAME= zstandard-0.22.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= archivers python MASTER_SITES= ${MASTER_SITE_PYPI:=z/zstandard/} @@ -17,7 +18,13 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis PYTHON_VERSIONS_INCOMPATIBLE= 27 -BUILDLINK_API_DEPENDS.zstd+= zstd>=1.5.5 +BUILDLINK_API_DEPENDS.zstd+= zstd>=1.5.6 + +# https://github.com/indygreg/python-zstandard/issues/220 +post-extract: + ${RM} ${WRKSRC}/zstd/zstd.h + ${LN} -s ${BUILDLINK_DIR}/include/zstd.h ${WRKSRC}/zstd/zstd.h + .include "../../archivers/zstd/buildlink3.mk" .include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1712127372292970--