diff options
author | leot <leot@pkgsrc.org> | 2017-02-05 10:20:50 +0000 |
---|---|---|
committer | leot <leot@pkgsrc.org> | 2017-02-05 10:20:50 +0000 |
commit | 1ef4011e2c139fa8e2e74c5879155a11f73331b6 (patch) | |
tree | 3f0c56cbc4da9cda0ea55d493b77d6ce6045241a /www | |
parent | 0bbd75175fd7407455518ebe47ca9037aa5d24e9 (diff) | |
download | pkgsrc-1ef4011e2c139fa8e2e74c5879155a11f73331b6.tar.gz |
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>
Diffstat (limited to 'www')
-rw-r--r-- | www/py-twill/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/py-twill/Makefile b/www/py-twill/Makefile index f72f2410c1d..e43ce0f445d 100644 --- a/www/py-twill/Makefile +++ b/www/py-twill/Makefile @@ -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 |