Received: by mail.netbsd.org (Postfix, from userid 605) id 9201884D33; Sat, 24 Apr 2021 08:28:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CED5B84D24 for ; Sat, 24 Apr 2021 08:28:00 +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 wKZHwuqOrM6S for ; Sat, 24 Apr 2021 08:28:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3268984D1C for ; Sat, 24 Apr 2021 08:28:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2B8A9FA95; Sat, 24 Apr 2021 08:28:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1619252880155090" MIME-Version: 1.0 Date: Sat, 24 Apr 2021 08:28:00 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/lang/rust To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20210424082800.2B8A9FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1619252880155090 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Sat Apr 24 08:28:00 UTC 2021 Modified Files: pkgsrc/lang/rust: Makefile Log Message: Add another post-install dylib rpath fixup for macOS (libserde_derive). Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.233 -r1.234 pkgsrc/lang/rust/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1619252880155090 Content-Disposition: inline Content-Length: 960 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/rust/Makefile diff -u pkgsrc/lang/rust/Makefile:1.233 pkgsrc/lang/rust/Makefile:1.234 --- pkgsrc/lang/rust/Makefile:1.233 Fri Apr 23 11:41:55 2021 +++ pkgsrc/lang/rust/Makefile Sat Apr 24 08:27:59 2021 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.233 2021/04/23 11:41:55 nia Exp $ +# $NetBSD: Makefile,v 1.234 2021/04/24 08:27:59 schmonz Exp $ DISTNAME= rustc-1.50.0-src PKGNAME= ${DISTNAME:S/rustc/rust/:S/-src//} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= lang MASTER_SITES= https://static.rust-lang.org/dist/ @@ -458,6 +458,7 @@ post-install: fix-darwin-install-name fix-darwin-install-name: for f in ${DESTDIR}${PREFIX}/lib/librustc_macros-*.dylib \ ${DESTDIR}${PREFIX}/lib/libtracing_attributes-*.dylib \ + ${DESTDIR}${PREFIX}/lib/libserde_derive-*.dylib \ ${DESTDIR}${PREFIX}/lib/libchalk_derive-*.dylib; do \ install_name_tool -id `${ECHO} $$f | ${SED} -e 's,${DESTDIR},,g'` $$f; \ done --_----------=_1619252880155090--