diff options
author | joerg <joerg@pkgsrc.org> | 2008-04-25 20:39:06 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-04-25 20:39:06 +0000 |
commit | a77e7015fef465c9d21fd49774b5fe3fc8b9f6e8 (patch) | |
tree | ba5c318600555301b8a78f14c17772a3e23be7eb /security | |
parent | 1e0bbe6581a4c5892a18657a6abcf9c9c40ea65c (diff) | |
download | pkgsrc-a77e7015fef465c9d21fd49774b5fe3fc8b9f6e8.tar.gz |
Update PYTHON_VERSIONS_COMPATIBLE
- assume that Python 2.4 and 2.5 are compatible and allow checking for
fallout.
- remove PYTHON_VERSIONS_COMPATIBLE that are obsoleted by the 2.3+
default. Modify the others to deal with the removals.
Diffstat (limited to 'security')
-rw-r--r-- | security/mixminion/Makefile | 4 | ||||
-rw-r--r-- | security/py-OpenSSL/Makefile | 4 | ||||
-rw-r--r-- | security/py-SSLCrypto/Makefile | 4 | ||||
-rw-r--r-- | security/py-denyhosts/Makefile | 3 | ||||
-rw-r--r-- | security/py-gnupg/Makefile | 4 | ||||
-rw-r--r-- | security/py-m2crypto/Makefile | 4 | ||||
-rw-r--r-- | security/py-mcrypt/Makefile | 3 | ||||
-rw-r--r-- | security/py-paramiko/Makefile | 3 | ||||
-rw-r--r-- | security/py-prewikka/Makefile | 3 | ||||
-rw-r--r-- | security/py-tlslite/Makefile | 3 |
10 files changed, 15 insertions, 20 deletions
diff --git a/security/mixminion/Makefile b/security/mixminion/Makefile index 485cc4b083a..f0b0527dcb4 100644 --- a/security/mixminion/Makefile +++ b/security/mixminion/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2008/01/18 05:09:38 tnn Exp $ +# $NetBSD: Makefile,v 1.10 2008/04/25 20:39:11 joerg Exp $ # DISTNAME= Mixminion-0.0.7.1 @@ -14,7 +14,7 @@ COMMENT= Mixminion impedes message traffic analysis BUILDLINK_API_DEPENDS.openssl+= openssl>=0.9.7d CRYPTO= YES -PYTHON_VERSIONS_ACCEPTED= 23 22 21 +PYTHON_VERSIONS_ACCEPTED= 23 21 PYDISTUTILSPKG= YES TEST_TARGET= test diff --git a/security/py-OpenSSL/Makefile b/security/py-OpenSSL/Makefile index 2871d06b8d5..ab316bd39cf 100644 --- a/security/py-OpenSSL/Makefile +++ b/security/py-OpenSSL/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2008/01/18 05:09:40 tnn Exp $ +# $NetBSD: Makefile,v 1.14 2008/04/25 20:39:11 joerg Exp $ # DISTNAME= pyOpenSSL-0.6 @@ -11,7 +11,7 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://pyopenssl.sourceforge.net/ COMMENT= Python interface to the OpenSSL library -PYTHON_VERSIONS_ACCEPTED= 24 23 22 +PYTHON_VERSIONS_ACCEPTED= 25 24 23 PYDISTUTILSPKG= yes PYBINMODULE= yes diff --git a/security/py-SSLCrypto/Makefile b/security/py-SSLCrypto/Makefile index 4345ec54ea0..c1fb17ca667 100644 --- a/security/py-SSLCrypto/Makefile +++ b/security/py-SSLCrypto/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2008/01/18 05:09:41 tnn Exp $ +# $NetBSD: Makefile,v 1.3 2008/04/25 20:39:11 joerg Exp $ # DISTNAME= SSLCrypto-0.1.1 @@ -13,7 +13,7 @@ COMMENT= Python bindings for openssl DEPENDS+= py24-pyrex>=0.9.4.1:../../lang/py-pyrex -PYTHON_VERSIONS_ACCEPTED= 24 +PYTHON_VERSIONS_ACCEPTED= 25 24 PLIST_SUBST+= PYSITELIB=${PYSITELIB:Q} diff --git a/security/py-denyhosts/Makefile b/security/py-denyhosts/Makefile index 4c61f0a4c5c..8e3555f93f0 100644 --- a/security/py-denyhosts/Makefile +++ b/security/py-denyhosts/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2007/08/20 07:31:38 taca Exp $ +# $NetBSD: Makefile,v 1.4 2008/04/25 20:39:11 joerg Exp $ # VER= 2.6 @@ -15,7 +15,6 @@ COMMENT= Watch auth log for invalid ssh login attempts and block hosts PKG_DESTDIR_SUPPORT= user-destdir PYDISTUTILSPKG= yes -PYTHON_VERSIONS_ACCEPTED= 24 23 CONF_FILES+= ${PREFIX}/share/denyhosts/denyhosts.cfg-dist \ ${PREFIX}/etc/denyhosts.conf diff --git a/security/py-gnupg/Makefile b/security/py-gnupg/Makefile index 0c1d6636f97..445742ba900 100644 --- a/security/py-gnupg/Makefile +++ b/security/py-gnupg/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2007/11/18 23:38:12 tron Exp $ +# $NetBSD: Makefile,v 1.13 2008/04/25 20:39:11 joerg Exp $ DISTNAME= GnuPGInterface-0.3.2 PKGNAME= ${PYPKGPREFIX}-gnupg-0.3.2 @@ -12,7 +12,7 @@ COMMENT= Python module for GnuPG interface DEPENDS+= gnupg>=1.0.0:../../security/gnupg -PYTHON_VERSIONS_ACCEPTED= 24 23 22 21 +PYTHON_VERSIONS_ACCEPTED= 25 24 23 21 PYDISTUTILSPKG= yes .include "../../lang/python/extension.mk" diff --git a/security/py-m2crypto/Makefile b/security/py-m2crypto/Makefile index a0cde8bf4d8..94ec1c9f5f7 100644 --- a/security/py-m2crypto/Makefile +++ b/security/py-m2crypto/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2008/01/24 11:14:26 tnn Exp $ +# $NetBSD: Makefile,v 1.22 2008/04/25 20:39:11 joerg Exp $ # DISTNAME= m2crypto-0.13 @@ -16,7 +16,7 @@ HOMEPAGE= http://sandbox.rulemaker.net/ngps/m2/ COMMENT= Crypto and SSL toolkit for Python PYDISTUTILSPKG= yes -PYTHON_VERSIONS_ACCEPTED= 24 23 22 21 +PYTHON_VERSIONS_ACCEPTED= 25 24 23 21 # constness is very different between openssl versions, # it seems, and 0.9.7i is the version which currently is diff --git a/security/py-mcrypt/Makefile b/security/py-mcrypt/Makefile index 17fdef9053f..ef3f4a3df76 100644 --- a/security/py-mcrypt/Makefile +++ b/security/py-mcrypt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2007/02/22 19:27:09 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2008/04/25 20:39:12 joerg Exp $ # DISTNAME= python-mcrypt-1.1 @@ -13,7 +13,6 @@ COMMENT= Python interface to mcrypt library PYBINMODULE= yes PYDISTUTILSPKG= yes -PYTHON_VERSIONS_ACCEPTED= 24 23 22 .include "../../lang/python/extension.mk" .include "../../security/libmcrypt/buildlink3.mk" diff --git a/security/py-paramiko/Makefile b/security/py-paramiko/Makefile index 68baa71e76d..ab225a49875 100644 --- a/security/py-paramiko/Makefile +++ b/security/py-paramiko/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2007/12/14 13:35:04 bjs Exp $ +# $NetBSD: Makefile,v 1.4 2008/04/25 20:39:12 joerg Exp $ # DISTNAME= paramiko-1.7.1 @@ -12,7 +12,6 @@ HOMEPAGE= http://www.lag.net/paramiko/ COMMENT= SSH2 protocol library PYDISTUTILSPKG= yes -PYTHON_VERSIONS_ACCEPTED= 23 24 .include "../../lang/python/extension.mk" .include "../../security/py-amkCrypto/buildlink3.mk" diff --git a/security/py-prewikka/Makefile b/security/py-prewikka/Makefile index bedb99f8d86..9e557e85e6d 100644 --- a/security/py-prewikka/Makefile +++ b/security/py-prewikka/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2008/03/06 14:53:54 wiz Exp $ +# $NetBSD: Makefile,v 1.25 2008/04/25 20:39:12 joerg Exp $ # DISTNAME= prewikka-${VERSION} @@ -25,7 +25,6 @@ USE_TOOLS+= msgfmt PYDISTUTILSPKG= yes PYBINMODULE= yes PYSETUP= setup.py -PYTHON_VERSIONS_ACCEPTED= 24 23 PYTHON_PATCH_SCRIPTS= scripts/prewikka-httpd PREWIKKA_USER?= prewikka PREWIKKA_GROUP?= prewikka diff --git a/security/py-tlslite/Makefile b/security/py-tlslite/Makefile index 754a78b019e..0cae1da69e0 100644 --- a/security/py-tlslite/Makefile +++ b/security/py-tlslite/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2007/02/28 05:34:25 schmonz Exp $ +# $NetBSD: Makefile,v 1.2 2008/04/25 20:39:12 joerg Exp $ # DISTNAME= tlslite-0.3.8 @@ -11,7 +11,6 @@ HOMEPAGE= http://trevp.net/tlslite/ COMMENT= SSL 3.0, TLS 1.0, and TLS 1.1 in Python PYDISTUTILSPKG= yes -PYTHON_VERSIONS_ACCEPTED?= 24 23 22 .include "../../lang/python/extension.mk" .include "../../mk/bsd.pkg.mk" |