pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/lang/python
Module Name: pkgsrc
Committed By: wiz
Date: Thu Jan 13 09:49:35 UTC 2022
Modified Files:
pkgsrc/lang/python: wheel.mk
Log Message:
wheel: use --no-cache-dir when calling pip
Avoids a warning, and we don't want to use it anyway
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/python/wheel.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/lang/python/wheel.mk
diff -u pkgsrc/lang/python/wheel.mk:1.1 pkgsrc/lang/python/wheel.mk:1.2
--- pkgsrc/lang/python/wheel.mk:1.1 Tue Jan 11 21:37:06 2022
+++ pkgsrc/lang/python/wheel.mk Thu Jan 13 09:49:35 2022
@@ -1,4 +1,4 @@
-# $NetBSD: wheel.mk,v 1.1 2022/01/11 21:37:06 nros Exp $
+# $NetBSD: wheel.mk,v 1.2 2022/01/13 09:49:35 wiz Exp $
#
# Initial mk for building and installing python wheels
#
@@ -61,4 +61,4 @@ INSTALL_ENV+= PIP_NO_CACHEDIR=1
do-install:
${RUN} cd ${WRKDIR} && \
${SETENV} ${INSTALL_ENV} \
- ${PYTHONBIN} -m pip install --no-deps --root ${DESTDIR:Q} --prefix ${PREFIX:Q} --compile --force-reinstall -I ${WHEELFILE}
+ ${PYTHONBIN} -m pip install --no-cache-dir --no-deps --root ${DESTDIR:Q} --prefix ${PREFIX:Q} --compile --force-reinstall -I ${WHEELFILE}
Home |
Main Index |
Thread Index |
Old Index