Received: by mail.netbsd.org (Postfix, from userid 605) id E127584CFF; Fri, 16 Feb 2024 04:06:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1708056366; bh=Im/TP57MIOooijByziBzvaZPY6DFg+v/o6SO7TyF3BY=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=TcVMSv2+vxGeEToA7yVWoIzyKQIqbdgzME4k9JDgkLrQpBDwPkztN+I0tLt10Wqjg iqDidQDpU9dn0BPLEx8KtCF0BMzBn5GwTIXeMBT9A6gMS+9fLDYDTBOCyEHFsJaJxm +Fs6mNuGBiN//JLRIFS1rEQ4OAElA+gKB4DF/XmQ= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D172A84CD7 for ; Fri, 16 Feb 2024 04:06:04 +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 eHJnSFw7gYhB for ; Fri, 16 Feb 2024 04:06:04 +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 1F5C984C86 for ; Fri, 16 Feb 2024 04:06:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1708056364; bh=Im/TP57MIOooijByziBzvaZPY6DFg+v/o6SO7TyF3BY=; h=Date:From:Subject:To:Reply-To; b=BgsFwmGxVwmXGTzn6fNSbkrr8S79Zy9w37QX0uxf631+CUD2vUnzZZAi459MEC+sK K3P9+p4/aO9CAn1eSdMQxzYo1Tma9Ryop+alGdCOJX/FRUCI3qVgUWUNgJfPZlfRhw s5g09KzP+9r1oB6XNyC6uwA4GGCPcDWQcbaw+RFI= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 11707F9F2; Fri, 16 Feb 2024 04:06:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1708056364275520" MIME-Version: 1.0 Date: Fri, 16 Feb 2024 04:06:04 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/lang/rust-bin To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20240216040604.11707F9F2@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1708056364275520 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Fri Feb 16 04:06:03 UTC 2024 Modified Files: pkgsrc/lang/rust-bin: Makefile Log Message: rust-bin: adjust Linux packaging after version update To generate a diff of this commit: cvs rdiff -u -r1.61 -r1.62 pkgsrc/lang/rust-bin/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1708056364275520 Content-Disposition: inline Content-Length: 1129 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/rust-bin/Makefile diff -u pkgsrc/lang/rust-bin/Makefile:1.61 pkgsrc/lang/rust-bin/Makefile:1.62 --- pkgsrc/lang/rust-bin/Makefile:1.61 Wed Feb 14 21:31:14 2024 +++ pkgsrc/lang/rust-bin/Makefile Fri Feb 16 04:06:03 2024 @@ -1,10 +1,11 @@ -# $NetBSD: Makefile,v 1.61 2024/02/14 21:31:14 pin Exp $ +# $NetBSD: Makefile,v 1.62 2024/02/16 04:06:03 gutteridge Exp $ DISTNAME= rust-1.74.1 PKGNAME= ${DISTNAME:S/rust/rust-bin/1} +PKGREVISION= 1 CATEGORIES= lang MASTER_SITES= https://static.rust-lang.org/dist/ -DIST_SUBDIR= ${PKGNAME} +DIST_SUBDIR= ${PKGNAME_NOREV} MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://rust-lang.org/ @@ -266,7 +267,7 @@ fix-relative-rpath: . if ${OPSYS} == "Linux" . for bin in llc llvm-ar llvm-as llvm-cov llvm-dis llvm-nm llvm-objcopy \ llvm-objdump llvm-profdata llvm-readobj llvm-size llvm-strip opt \ - rust-lld + rust-lld gcc-ld/ld64.lld gcc-ld/ld.lld gcc-ld/lld-link gcc-ld/wasm-ld ${PREFIX}/bin/patchelf ${FORCE_RPATH} --set-rpath ${RUST_LLVM_RPATH} \ ${DESTDIR}${PREFIX}/lib/rustlib/${RUST_ARCH}/bin/${bin} . endfor --_----------=_1708056364275520--