pkgsrc-Changes archive

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

CVS commit: pkgsrc/www/py-twill



Module Name:    pkgsrc
Committed By:   leot
Date:           Sun Feb  5 10:20:50 UTC 2017

Modified Files:
        pkgsrc/www/py-twill: Makefile

Log Message:
Fix DEPENDS pattern.

If we depends on a foo package, mark its dependency via:

 DEPENDS+= foo-*:../../misc/foo

...and then a new foo-bar package will appear it can be problematic.
Use foo-[0-9]* pattern to avoid that.

Kindly pointed out by <wiz>


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 pkgsrc/www/py-twill/Makefile

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

Modified files:

Index: pkgsrc/www/py-twill/Makefile
diff -u pkgsrc/www/py-twill/Makefile:1.10 pkgsrc/www/py-twill/Makefile:1.11
--- pkgsrc/www/py-twill/Makefile:1.10   Sun Feb  5 10:08:13 2017
+++ pkgsrc/www/py-twill/Makefile        Sun Feb  5 10:20:50 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2017/02/05 10:08:13 leot Exp $
+# $NetBSD: Makefile,v 1.11 2017/02/05 10:20:50 leot Exp $
 
 DISTNAME=      twill-1.8.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
@@ -11,7 +11,7 @@ HOMEPAGE=     http://twill.idyll.org/
 COMMENT=       Python package for the twill Web browsing language
 LICENSE=       mit
 
-DEPENDS+=      ${PYPKGPREFIX}-cssselect-*:../../textproc/py-cssselect
+DEPENDS+=      ${PYPKGPREFIX}-cssselect-[0-9]*:../../textproc/py-cssselect
 
 USE_LANGUAGES= # none
 



Home | Main Index | Thread Index | Old Index