Received: by mail.netbsd.org (Postfix, from userid 605) id CF09C84E87; Thu, 29 Feb 2024 14:23:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1709216592; bh=Qr1JOWMaxI/erP6f8+ldHfzM6jPQGfvhzqEBdf0D5m8=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=Ia20bXyLOaA/T8iS60hM5yDZOMkr7vGCryTQDqqnuU3h7eEGfRR29ZYIitRkvl7u9 FoKiDqCb9Hj6ad7AHJ5nxhDAR6WZ5srVSPltpWqaoCygbmzPGgs+YR8x7C9GWqpHE7 DqHDgQdbcBz8QYwcVvQy8mMO5SIDVBwFIDMAtX9U= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C148684E81 for ; Thu, 29 Feb 2024 14:23:10 +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 lGLMcSdkyydE for ; Thu, 29 Feb 2024 14:23:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CD50584CFC for ; Thu, 29 Feb 2024 14:23:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1709216589; bh=Qr1JOWMaxI/erP6f8+ldHfzM6jPQGfvhzqEBdf0D5m8=; h=Date:From:Subject:To:Reply-To; b=gjpF2rnUozfYEXPpjNxRyiMBiOStBF+FMKgdehgb7a7FlEiwH22evdNCRHVhCJ9A8 hL9o85BQUdMf4hSNZUSAtH3FYrdipOgN33CL2Yaxk7bJDdQm1Q55LEuIdBgZ9qNCCj BGf+oD/bd0TJ3It6G5Ymks1MLewFM62KiyyAKDeo= Received: by cvs.NetBSD.org (Postfix, from userid 500) id C9DBFFA27; Thu, 29 Feb 2024 14:23:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1709216589167850" MIME-Version: 1.0 Date: Thu, 29 Feb 2024 14:23:09 +0000 From: "pin" Subject: CVS commit: pkgsrc/devel/rust-bindgen To: pkgsrc-changes@NetBSD.org Reply-To: pin@netbsd.org X-Mailer: log_accum Message-Id: <20240229142309.C9DBFFA27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1709216589167850 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pin Date: Thu Feb 29 14:23:09 UTC 2024 Modified Files: pkgsrc/devel/rust-bindgen: Makefile cargo-depends.mk distinfo Log Message: devel/rust-bindgen: update to 0.69.4 0.69.4 (2024-02-04) Changed - Allow older itertools. (#2745) 0.69.3 (2024-02-04) Added - Added blocklist_var (#2731) - Stabilized thiscall_abi (#2661) Changed - Use CR consistently on windows (#2698) - Replaced peeking_take_while by itertools (#2724) Removed Fixed - Try to avoid repr(packed) for explicitly aligned types when not needed (#2734) - Improved destructor handling on Windows (#2663) - Support Float16 (#2667) - Fix alignment contribution from bitfields (#2680) - Fixed msrv build. Security - Updated shlex dependency (RUSTSEC-2024-0006) 0.69.2 (2024-01-13) Fixed - Fixed generation of extern "C" blocks with llvm 18+. See #2689. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/rust-bindgen/Makefile \ pkgsrc/devel/rust-bindgen/cargo-depends.mk \ pkgsrc/devel/rust-bindgen/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1709216589167850 Content-Disposition: inline Content-Length: 7992 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/rust-bindgen/Makefile diff -u pkgsrc/devel/rust-bindgen/Makefile:1.2 pkgsrc/devel/rust-bindgen/Makefile:1.3 --- pkgsrc/devel/rust-bindgen/Makefile:1.2 Sun Nov 12 17:02:52 2023 +++ pkgsrc/devel/rust-bindgen/Makefile Thu Feb 29 14:23:09 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.2 2023/11/12 17:02:52 pin Exp $ +# $NetBSD: Makefile,v 1.3 2024/02/29 14:23:09 pin Exp $ -DISTNAME= rust-bindgen-0.69.1 +DISTNAME= rust-bindgen-0.69.4 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GITHUB:=rust-lang/} DIST_SUBDIR= ${GITHUB_PROJECT} Index: pkgsrc/devel/rust-bindgen/cargo-depends.mk diff -u pkgsrc/devel/rust-bindgen/cargo-depends.mk:1.2 pkgsrc/devel/rust-bindgen/cargo-depends.mk:1.3 --- pkgsrc/devel/rust-bindgen/cargo-depends.mk:1.2 Sun Nov 12 17:02:52 2023 +++ pkgsrc/devel/rust-bindgen/cargo-depends.mk Thu Feb 29 14:23:09 2024 @@ -1,4 +1,4 @@ -# $NetBSD: cargo-depends.mk,v 1.2 2023/11/12 17:02:52 pin Exp $ +# $NetBSD: cargo-depends.mk,v 1.3 2024/02/29 14:23:09 pin Exp $ CARGO_CRATE_DEPENDS+= aho-corasick-0.7.20 CARGO_CRATE_DEPENDS+= annotate-snippets-0.9.1 @@ -27,6 +27,7 @@ CARGO_CRATE_DEPENDS+= humantime-2.1.0 CARGO_CRATE_DEPENDS+= instant-0.1.12 CARGO_CRATE_DEPENDS+= io-lifetimes-1.0.4 CARGO_CRATE_DEPENDS+= is-terminal-0.4.7 +CARGO_CRATE_DEPENDS+= itertools-0.12.1 CARGO_CRATE_DEPENDS+= lazy_static-1.4.0 CARGO_CRATE_DEPENDS+= lazycell-1.3.0 CARGO_CRATE_DEPENDS+= libc-0.2.139 @@ -42,7 +43,6 @@ CARGO_CRATE_DEPENDS+= objc-0.2.7 CARGO_CRATE_DEPENDS+= once_cell-1.17.0 CARGO_CRATE_DEPENDS+= os_str_bytes-6.4.1 CARGO_CRATE_DEPENDS+= owo-colors-3.5.0 -CARGO_CRATE_DEPENDS+= peeking_take_while-0.1.2 CARGO_CRATE_DEPENDS+= prettyplease-0.2.7 CARGO_CRATE_DEPENDS+= proc-macro-error-1.0.4 CARGO_CRATE_DEPENDS+= proc-macro-error-attr-1.0.4 @@ -57,7 +57,7 @@ CARGO_CRATE_DEPENDS+= regex-syntax-0.6.2 CARGO_CRATE_DEPENDS+= rustc-hash-1.1.0 CARGO_CRATE_DEPENDS+= rustix-0.36.16 CARGO_CRATE_DEPENDS+= rustix-0.37.3 -CARGO_CRATE_DEPENDS+= shlex-1.1.0 +CARGO_CRATE_DEPENDS+= shlex-1.3.0 CARGO_CRATE_DEPENDS+= similar-2.2.1 CARGO_CRATE_DEPENDS+= strsim-0.10.0 CARGO_CRATE_DEPENDS+= syn-1.0.107 Index: pkgsrc/devel/rust-bindgen/distinfo diff -u pkgsrc/devel/rust-bindgen/distinfo:1.2 pkgsrc/devel/rust-bindgen/distinfo:1.3 --- pkgsrc/devel/rust-bindgen/distinfo:1.2 Sun Nov 12 17:02:52 2023 +++ pkgsrc/devel/rust-bindgen/distinfo Thu Feb 29 14:23:09 2024 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.2 2023/11/12 17:02:52 pin Exp $ +$NetBSD: distinfo,v 1.3 2024/02/29 14:23:09 pin Exp $ BLAKE2s (rust-bindgen/aho-corasick-0.7.20.crate) = e435fcd774a78d21bafe7b56bad76b8595dcd87a850c6ef2a41206c7ec6439c5 SHA512 (rust-bindgen/aho-corasick-0.7.20.crate) = ad31f3d1b3fe41e593d4ca7e721bbad62936f2e6a17fd1e0997353edb6fc906d1bef2b79f0ac7c7676abe637bbabb23ff22059947be379a2441011f8178983c5 @@ -81,6 +81,9 @@ Size (rust-bindgen/io-lifetimes-1.0.4.cr BLAKE2s (rust-bindgen/is-terminal-0.4.7.crate) = 39e6b620622ef79385dea81e1472d51d3e60290960d773e239885a7c151c3ea0 SHA512 (rust-bindgen/is-terminal-0.4.7.crate) = 56c00b2942963f8a0b5c40c96a885f85565fb09e247bfd5a3e77ca5c9e0e0e40a17a8d809c0541177e8b496fef87baac4b86c751765491ffffdb631515d8acf5 Size (rust-bindgen/is-terminal-0.4.7.crate) = 8356 bytes +BLAKE2s (rust-bindgen/itertools-0.12.1.crate) = b9e8619f89e4ce180362f76d1f284b5ad2f1052f6bdc28fd6320c008dd580b68 +SHA512 (rust-bindgen/itertools-0.12.1.crate) = 0d9c1849dcc0ddf7555b0aeb7e4f2ef3b101cfc6f03310ce1b6072d70ac8c8d3387ef4c726146102012e75171e0b0bf13465704b6edfc02752e349dc6af7cf68 +Size (rust-bindgen/itertools-0.12.1.crate) = 137761 bytes BLAKE2s (rust-bindgen/lazy_static-1.4.0.crate) = 0d5f7c2bcfe70610bc27bd6b339ea3e4ca3b7014149714db3a0c199ac6f07cd1 SHA512 (rust-bindgen/lazy_static-1.4.0.crate) = e124c0521ec7c950f3c4a066821918da7a9c6e711115d98009ae7c351928fdddead852e7596fea5937a9c30e4e4ce8eee7099b20248b5d6e3b2494b6a6d88cb8 Size (rust-bindgen/lazy_static-1.4.0.crate) = 10443 bytes @@ -126,9 +129,6 @@ Size (rust-bindgen/os_str_bytes-6.4.1.cr BLAKE2s (rust-bindgen/owo-colors-3.5.0.crate) = 2a514aead6ecf77fe1beebcc8740a8fa221c1025460f7aad1021dc46f76e5c11 SHA512 (rust-bindgen/owo-colors-3.5.0.crate) = 1718f03d9f3296ffe3145161e038ebdb8dc40b69c0e2cb80a51866b519cf857b6573aedb7704895401e10cea11ca422a384c3594b8762be29eaa90908e24f7aa Size (rust-bindgen/owo-colors-3.5.0.crate) = 30310 bytes -BLAKE2s (rust-bindgen/peeking_take_while-0.1.2.crate) = 79fc1d7c8b820e30ed2253d0155b8f4c734b162a980690aa89233a74f9238be6 -SHA512 (rust-bindgen/peeking_take_while-0.1.2.crate) = 7bf8721987c3e2e1986683dd897746592a909382f02b840b777effec7d8b0a864c1a83b03c73d555e359f22c423168a54b75448a7e7b996b739527ce8c88b721 -Size (rust-bindgen/peeking_take_while-0.1.2.crate) = 6697 bytes BLAKE2s (rust-bindgen/prettyplease-0.2.7.crate) = 3293385ca7f27139c7b6f312f89d3d9ed60107731030516e0df6bc40d1a46b3c SHA512 (rust-bindgen/prettyplease-0.2.7.crate) = b8625d09c9709d0cbb7c49bf887574e40419df2b21978ad9ba22693358abb295c3d9f85830fb41b64c4adc76d64a514de174fcc4a11b54d59fa6aca3f8b85c3c Size (rust-bindgen/prettyplease-0.2.7.crate) = 55966 bytes @@ -162,9 +162,9 @@ Size (rust-bindgen/regex-1.7.1.crate) = BLAKE2s (rust-bindgen/regex-syntax-0.6.28.crate) = c40298ba14ce3896bd03d232d78063b4961c18b64ce8b02efdb131a33d8843e2 SHA512 (rust-bindgen/regex-syntax-0.6.28.crate) = ba5fb1622a330b67a4eb820551c7f20dbfdc6b38eb697b9bfddea4cf0060b473472045e93aaf6cb9727ae609e06ed285e1e42f06f34ac730ac39fb90425bbe85 Size (rust-bindgen/regex-syntax-0.6.28.crate) = 299288 bytes -BLAKE2s (rust-bindgen/rust-bindgen-0.69.1.tar.gz) = 15c7d7c3aefb1651c88638cc8b8440657ae3decb04e1df4b6bad7110012a666e -SHA512 (rust-bindgen/rust-bindgen-0.69.1.tar.gz) = 09189531f097ad7b27220150dac1dae8b042c3b6cd7cf1444388d25a0fb10c1116fec329540ccd18296d5be196cda2dc63f34d06c778a4a9c929a5ea0b0e7471 -Size (rust-bindgen/rust-bindgen-0.69.1.tar.gz) = 2317711 bytes +BLAKE2s (rust-bindgen/rust-bindgen-0.69.4.tar.gz) = 84565e4534ab1a53cf0f30702e71d385003bb7d735d76dd9a8aa7370dfacd25b +SHA512 (rust-bindgen/rust-bindgen-0.69.4.tar.gz) = a493474c89255c801c6fd4eb44e6a94f4d23830dc13c0bbae08c46e5c364e0df176fc00174d6462b70239578d0821e9ff1aaf127d8c60688f38a50a62cf292f4 +Size (rust-bindgen/rust-bindgen-0.69.4.tar.gz) = 2314307 bytes BLAKE2s (rust-bindgen/rustc-hash-1.1.0.crate) = ba3940200a72ad4ee115b0ef61c7c32278f6a3fa5d913220d1bd72362ef63aaf SHA512 (rust-bindgen/rustc-hash-1.1.0.crate) = 84e673ea9b046f7b989d47f2c4505557fbd5de991e6fc9f56a03605d40e0b4ba5427cd566954890153cc033ccbec6c984306634571935bfe0d4cdfbe56f39544 Size (rust-bindgen/rustc-hash-1.1.0.crate) = 9331 bytes @@ -174,9 +174,9 @@ Size (rust-bindgen/rustix-0.36.16.crate) BLAKE2s (rust-bindgen/rustix-0.37.3.crate) = fb744591328bab51e6e7ae0e3563e47562227421d802e17f80f4c17a65b4f89f SHA512 (rust-bindgen/rustix-0.37.3.crate) = 8c3250f49232e20f8f37ac2b3742eafc12119536c8b618329c6e3c9b002f7f8904a98922b40f83956f575d872ec72690c3610ed61cdbd34aabe34a380cdf5e91 Size (rust-bindgen/rustix-0.37.3.crate) = 302028 bytes -BLAKE2s (rust-bindgen/shlex-1.1.0.crate) = 8fbbe4538951c4b992b291adac09ecfb2cd8e211b71c0dbcc010e8eb8b277f07 -SHA512 (rust-bindgen/shlex-1.1.0.crate) = e51892298dd79dc7cf04d7e6f0a03e4850a57b15cd75e6e3b56e2a0b15d4cb85ee8afcc14e3727d193c8b91baec8c2864a9c800834ee4d18a1be584f17591752 -Size (rust-bindgen/shlex-1.1.0.crate) = 5199 bytes +BLAKE2s (rust-bindgen/shlex-1.3.0.crate) = 00a54f2882a7a2c2170fca55bd1acd51eea79f115f972ce143b5f4c9c974ee43 +SHA512 (rust-bindgen/shlex-1.3.0.crate) = 5c8cedbe666a14b8a0874defb9208146ce64579cde52ed483e4a794cac5dde6a24bf8d684404edff582f842e1fd4fa3fbeddbe074f191e4ec4aa517aa456fe8a +Size (rust-bindgen/shlex-1.3.0.crate) = 18713 bytes BLAKE2s (rust-bindgen/similar-2.2.1.crate) = b2aac332bc83c8ea72212caa6679276c0c02bd7996c8ec176258afcb9d3dab4d SHA512 (rust-bindgen/similar-2.2.1.crate) = 9a353bfbe495bab83e401314bb97c6605fa6283af06e03bad50bc429388c7abf44bb9cc68db781ef2b786840eb444907f35b70b17343b2cb993800536b4e36a2 Size (rust-bindgen/similar-2.2.1.crate) = 51147 bytes --_----------=_1709216589167850--