pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/sysutils/ansible
Module Name: pkgsrc
Committed By: kim
Date: Tue Aug 19 16:35:17 UTC 2025
Modified Files:
pkgsrc/sysutils/ansible: Makefile
Log Message:
ansible: Set an upper limit on the ansible-core version
Guard against building non-conforming packages due to inadvertent
upgrades of ansible-core.
To generate a diff of this commit:
cvs rdiff -u -r1.94 -r1.95 pkgsrc/sysutils/ansible/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/sysutils/ansible/Makefile
diff -u pkgsrc/sysutils/ansible/Makefile:1.94 pkgsrc/sysutils/ansible/Makefile:1.95
--- pkgsrc/sysutils/ansible/Makefile:1.94 Wed Aug 13 04:35:11 2025
+++ pkgsrc/sysutils/ansible/Makefile Tue Aug 19 16:35:17 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.94 2025/08/13 04:35:11 adam Exp $
+# $NetBSD: Makefile,v 1.95 2025/08/19 16:35:17 kim Exp $
DISTNAME= ansible-11.9.0
CATEGORIES= sysutils python
@@ -12,7 +12,10 @@ LICENSE= gnu-gpl-v3
PREV_PKGPATH= sysutils/ansible2
TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=78:../../devel/py-setuptools
-DEPENDS+= ansible-core>=2.18.8:../../sysutils/ansible-core
+
+# Each ansible release tracks a specific release branch of ansible-core.
+# Enforce this by using an upper limit for the dependency version.
+DEPENDS+= ansible-core>=2.18.8<2.19:../../sysutils/ansible-core
USE_LANGUAGES= # none
Home |
Main Index |
Thread Index |
Old Index