pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/pkgtools/url2pkg
Module Name: pkgsrc
Committed By: rillig
Date: Tue Jul 26 21:50:10 UTC 2022
Modified Files:
pkgsrc/pkgtools/url2pkg: Makefile
Log Message:
url2pkg: clean up package Makefile
Start each shell command in a new line. This makes it easier to find the
'for' that corresponds to the 'done', especially since the 'done' could
also be started by a 'while' or an 'until'.
No functional change.
To generate a diff of this commit:
cvs rdiff -u -r1.127 -r1.128 pkgsrc/pkgtools/url2pkg/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/pkgtools/url2pkg/Makefile
diff -u pkgsrc/pkgtools/url2pkg/Makefile:1.127 pkgsrc/pkgtools/url2pkg/Makefile:1.128
--- pkgsrc/pkgtools/url2pkg/Makefile:1.127 Sat Jul 16 08:59:38 2022
+++ pkgsrc/pkgtools/url2pkg/Makefile Tue Jul 26 21:50:10 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.127 2022/07/16 08:59:38 rillig Exp $
+# $NetBSD: Makefile,v 1.128 2022/07/26 21:50:10 rillig Exp $
PKGNAME= url2pkg-22.2.0
CATEGORIES= pkgtools
@@ -36,7 +36,8 @@ do-install:
${INSTALL_MAN} ${FILESDIR}/url2pkg.8 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8
${INSTALL_DATA} ${WRKSRC}/Build.pm ${DESTDIR}${PREFIX}/lib/url2pkg/Module/
${INSTALL_DATA} ${WRKSRC}/MakeMaker.pm ${DESTDIR}${PREFIX}/lib/url2pkg/ExtUtils/
- ${RUN} cd ${WRKSRC}; for f in $$(find python -name '*.py' -print); do \
+ ${RUN} cd ${WRKSRC}; \
+ for f in $$(find python -name '*.py' -print); do \
${INSTALL_DATA} "$$f" ${DESTDIR}${PREFIX}/lib/url2pkg/"$$f"; \
done
Home |
Main Index |
Thread Index |
Old Index