From owner-svn-ports-all@freebsd.org Sat Feb 13 12:25:05 2021 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 84CCF52BA9F; Sat, 13 Feb 2021 12:25:05 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Dd8hK3M3xz4Rvt; Sat, 13 Feb 2021 12:25:05 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 65FD016B65; Sat, 13 Feb 2021 12:25:05 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 11DCP5EN032109; Sat, 13 Feb 2021 12:25:05 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 11DCP5IX032108; Sat, 13 Feb 2021 12:25:05 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <202102131225.11DCP5IX032108@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Sat, 13 Feb 2021 12:25:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r565129 - in head/www/py-flask-mongoengine: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mandree X-SVN-Commit-Paths: in head/www/py-flask-mongoengine: . files X-SVN-Commit-Revision: 565129 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Feb 2021 12:25:05 -0000 Author: mandree Date: Sat Feb 13 12:25:04 2021 New Revision: 565129 URL: https://svnweb.freebsd.org/changeset/ports/565129 Log: www/py-flask-mongoengine: Update to 1.0.0 PR: 252442 Submitted by: Goran Mekić (maintainer) Deleted: head/www/py-flask-mongoengine/files/ Modified: head/www/py-flask-mongoengine/Makefile head/www/py-flask-mongoengine/distinfo Modified: head/www/py-flask-mongoengine/Makefile ============================================================================== --- head/www/py-flask-mongoengine/Makefile Sat Feb 13 11:48:21 2021 (r565128) +++ head/www/py-flask-mongoengine/Makefile Sat Feb 13 12:25:04 2021 (r565129) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= flask-mongoengine -PORTVERSION= 0.9.5 +PORTVERSION= 1.0.0 DISTVERSIONPREFIX= v CATEGORIES= www devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,8 +17,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>=0:www/py-fl ${PYTHON_PKGNAMEPREFIX}mongoengine>=0:databases/py-mongoengine@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}coverage>=0:devel/py-coverage@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}rednose>=0:devel/py-rednose@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest-cov@${PY_FLAVOR} USES= python:3.5+ USE_GITHUB= yes # tests not packaged with PyPI sdist @@ -30,7 +29,34 @@ TEST_ENV= PYTHONPATH=${WRKSRC}/src NO_ARCH= yes do-test: - cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} setup.py nosetests \ - -e test_connection_default + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v -rs -o addopts= \ + -k 'not test_with_id \ + and not test_basic_insert \ + and not test_multiple_connections \ + and not test_binaryfield \ + and not test_choices_coerce \ + and not test_list_choices_coerce \ + and not test_emailfield \ + and not test_model_form \ + and not test_model_form_only \ + and not test_model_form_with_custom_query_set \ + and not test_modelselectfield \ + and not test_modelselectfield_multiple \ + and not test_modelselectfield_multiple_initalvalue_None \ + and not test_modelradiofield \ + and not test_passwordfield \ + and not test_unique_with \ + and not test_sub_field_args \ + and not test_modelselectfield_multiple_selected_elements_must_be_retained \ + and not test_model_form_help_text \ + and not test_shared_field_args \ + and not test_embedded_model_form \ + and not test_form_label_modifier \ + and not test_inheritance \ + and not test_with_id \ + and not test_basic_insert \ + and not test_queryset_paginator \ + and not test_list_field_pagination \ + and not test_setting_session' .include Modified: head/www/py-flask-mongoengine/distinfo ============================================================================== --- head/www/py-flask-mongoengine/distinfo Sat Feb 13 11:48:21 2021 (r565128) +++ head/www/py-flask-mongoengine/distinfo Sat Feb 13 12:25:04 2021 (r565129) @@ -1,3 +1,3 @@ -TIMESTAMP = 1577167260 -SHA256 (MongoEngine-flask-mongoengine-v0.9.5_GH0.tar.gz) = af9122fbb1c516fe12e7afcae1f87d18ba0f3c846e927a2270b2e78d420d309d -SIZE (MongoEngine-flask-mongoengine-v0.9.5_GH0.tar.gz) = 120281 +TIMESTAMP = 1607727149 +SHA256 (MongoEngine-flask-mongoengine-v1.0.0_GH0.tar.gz) = 5d9768264f4503afe78b8ee31544b4e178186881393b4104a7ef47020cc2e965 +SIZE (MongoEngine-flask-mongoengine-v1.0.0_GH0.tar.gz) = 123516