pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/rust-bin



Module Name:    pkgsrc
Committed By:   gutteridge
Date:           Fri Apr 19 22:18:21 UTC 2024

Modified Files:
        pkgsrc/lang/rust-bin: Makefile

Log Message:
rust-bin: fix packaging for NetBSD/amd64, FreeBSD, and Linux

rust-analyzer has been added to the official upstream Rust packages,
and not modifying its RPATH broke our re-packaging of these.


To generate a diff of this commit:
cvs rdiff -u -r1.65 -r1.66 pkgsrc/lang/rust-bin/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/rust-bin/Makefile
diff -u pkgsrc/lang/rust-bin/Makefile:1.65 pkgsrc/lang/rust-bin/Makefile:1.66
--- pkgsrc/lang/rust-bin/Makefile:1.65  Fri Apr 19 14:08:39 2024
+++ pkgsrc/lang/rust-bin/Makefile       Fri Apr 19 22:18:21 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.65 2024/04/19 14:08:39 pho Exp $
+# $NetBSD: Makefile,v 1.66 2024/04/19 22:18:21 gutteridge Exp $
 
 DISTNAME=      rust-1.76.0
 PKGNAME=       ${DISTNAME:S/rust/rust-bin/1}
@@ -260,7 +260,7 @@ FORCE_RPATH=                --force-rpath
 .PHONY: fix-relative-rpath
 post-install: fix-relative-rpath
 fix-relative-rpath:
-.  for bin in clippy-driver miri rls rustc rustdoc
+.  for bin in clippy-driver miri rls rust-analyzer rustc rustdoc
        if [ -f ${DESTDIR}${PREFIX}/bin/${bin} ]; then \
                ${PREFIX}/bin/patchelf ${FORCE_RPATH} --set-rpath \
                    ${PREFIX}/lib ${DESTDIR}${PREFIX}/bin/${bin} ; \



Home | Main Index | Thread Index | Old Index