Index: pkg-plist =================================================================== --- pkg-plist (revision 305194) +++ pkg-plist (working copy) @@ -105,6 +105,7 @@ %%PYTHON_SITELIBDIR%%/paramiko/win_pageant.pyo @dirrm %%PYTHON_SITELIBDIR%%/paramiko %%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo_keygen.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo_server.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo_sftp.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo_simple.py Index: Makefile =================================================================== --- Makefile (revision 305194) +++ Makefile (working copy) @@ -1,12 +1,8 @@ -# Ports collection makefile for: paramiko -# Date created: 4 Feb 2006 -# Whom: Ulf Lilleengen -# +# Created by: Ulf Lilleengen # $FreeBSD$ -# PORTNAME= paramiko -PORTVERSION= 1.7.7.2 +PORTVERSION= 1.8.0 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,7 +11,6 @@ COMMENT= A python library for making SSH2 connections LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_SITELIBDIR}/Crypto/__init__.py:${PORTSDIR}/security/py-pycrypto @@ -30,7 +25,7 @@ @(cd ${WRKSRC}/demos && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}) .endif -regression-test: +regression-test: build @(cd ${WRKSRC} && ${PYTHON_CMD} test.py) .include Index: distinfo =================================================================== --- distinfo (revision 305194) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (paramiko-1.7.7.2.tar.gz) = 576f63f4d109450afe8c11a8fb4796cd3b7ebe47e938a427a39b6e5e5e7aa4c0 -SIZE (paramiko-1.7.7.2.tar.gz) = 821072 +SHA256 (paramiko-1.8.0.tar.gz) = dcdb8fa3059bf58ca7e3801a51df5d1707159b366ec0c0c7c2bb9008d08800f8 +SIZE (paramiko-1.8.0.tar.gz) = 809025 Index: files/patch-setup.py =================================================================== --- files/patch-setup.py (revision 305194) +++ files/patch-setup.py (working copy) @@ -1,20 +1,19 @@ ---- ./setup.py.orig 2011-05-31 12:57:26.000000000 +0200 -+++ ./setup.py 2011-05-31 13:01:30.000000000 +0200 -@@ -33,14 +33,9 @@ +--- ./setup.py.orig 2012-10-03 11:45:35.000000000 +0200 ++++ ./setup.py 2012-10-03 11:46:32.000000000 +0200 +@@ -37,14 +37,8 @@ #ez_setup.use_setuptools() import sys -try: - from setuptools import setup - kw = { -- 'install_requires': 'pycrypto >= 2.1', +- 'install_requires': 'pycrypto >= 2.1, != 2.4', - } -except ImportError: - from distutils.core import setup - kw = {} -+ +from distutils.core import setup +kw = {} if sys.platform == 'darwin': - import setup_helper + import setup_helper