Received: by mail.netbsd.org (Postfix, from userid 605) id 47F4284DD9; Mon, 3 Jul 2017 20:56:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CD14384DD8 for ; Mon, 3 Jul 2017 20:56:04 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id rBYoPC_2Pa1j for ; Mon, 3 Jul 2017 20:56:04 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 5255A84DD3 for ; Mon, 3 Jul 2017 20:56:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4D0D1FAE8; Mon, 3 Jul 2017 20:56:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1499115364276910" MIME-Version: 1.0 Date: Mon, 3 Jul 2017 20:56:04 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/security/py-OpenSSL To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170703205604.4D0D1FAE8@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1499115364276910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Jul 3 20:56:04 UTC 2017 Modified Files: pkgsrc/security/py-OpenSSL: Makefile Log Message: Add missing py-pretend test dependency. Update upstream bug report URLs. To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45 pkgsrc/security/py-OpenSSL/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1499115364276910 Content-Disposition: inline Content-Length: 3302 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/py-OpenSSL/Makefile diff -u pkgsrc/security/py-OpenSSL/Makefile:1.44 pkgsrc/security/py-OpenSSL/Makefile:1.45 --- pkgsrc/security/py-OpenSSL/Makefile:1.44 Mon Jul 3 20:25:05 2017 +++ pkgsrc/security/py-OpenSSL/Makefile Mon Jul 3 20:56:04 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.44 2017/07/03 20:25:05 adam Exp $ +# $NetBSD: Makefile,v 1.45 2017/07/03 20:56:04 wiz Exp $ DISTNAME= pyOpenSSL-17.1.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} @@ -14,16 +14,16 @@ DEPENDS+= ${PYPKGPREFIX}-cryptography>=0 DEPENDS+= ${PYPKGPREFIX}-six>=1.5.2:../../lang/py-six # TEST_DEPENDS BUILD_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test +BUILD_DEPENDS+= ${PYPKGPREFIX}-pretend-[0-9]*:../../devel/py-pretend .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "Darwin" do-test: cd ${WRKSRC} && PYTHONPATH=src py.test-${PYVERSSUFFIX} -v -k "not test_verify_with_time and not test_set_default_verify_paths and not test_set_verify_callback_exception" .else -# https://github.com/pyca/pyopenssl/issues/596 -# https://github.com/pyca/pyopenssl/issues/650 +# https://github.com/pyca/pyopenssl/issues/656 do-test: - cd ${WRKSRC} && PYTHONPATH=src py.test-${PYVERSSUFFIX} -v -k "not load_privatekey_passphrase_exception and not test_load_privatekey_wrongPassphraseCallback and not test_load_privatekey_passphraseCallback and not test_load_privatekey_passphrase_wrong_return_type and not test_load_privatekey_passphrase_callback_length and not test_dump_privatekey_passphrase_callback and not test_dump_privatekey_passphrase_exception and not test_dump_privatekey_passphraseCallbackLength and not test_set_passwd_cb and not test_passwd_callback_exception and not test_passwd_callback_false and not test_passwd_callback_non_string and not test_passwd_callback_too_long and not test_set_info_callback and not test_load_verify_bytes_cafile and not test_load_verify_unicode_cafile and not test_load_verify_directory_bytes_capath and not test_load_verify_directory_unicode_capath and not test_set_default_verify_paths and not test_set_verify_callback_connection_argument and not test_no_servername and not test_ serverna me and not test_npn_success and not test_npn_client_fail and not test_npn_select_error and not test_npn_advertise_error and not test_alpn_success and not test_alpn_set_on_connection and not test_alpn_server_fail and not test_alpn_callback_exception and not test_get_peer_cert_chain and not test_memory_connect and not test_outgoing_overflow and not test_set_empty_ca_list and not test_set_one_ca_list and not test_set_multiple_ca_list and not test_reset_ca_list and not test_mutated_ca_list and not test_one_add_client and not test_multiple_add_client_ca and not test_set_and_add_client_ca and not test_set_after_add_client_ca and not test_client_negotiates_without_server and not test_client_receives_servers_data and not test_callbacks_are_invoked_with_connections and not test_opaque_data_is_passed_through and not test_server_returns_empty_string and not test_client_returns_false_terminates_handshake and not test_exceptions_in_client_bubble_up and not test_exceptions_in_server_bubbl e_up and not test_server_must_return_bytes" + cd ${WRKSRC} && PYTHONPATH=src py.test-${PYVERSSUFFIX} -v .endif .include "../../lang/python/egg.mk" --_----------=_1499115364276910--