From owner-svn-ports-all@freebsd.org Mon Jun 5 19:26:28 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 539C3AFFE7F; Mon, 5 Jun 2017 19:26:28 +0000 (UTC) (envelope-from antoine@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 mx1.freebsd.org (Postfix) with ESMTPS id 1954C66FA9; Mon, 5 Jun 2017 19:26:28 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v55JQRfX065160; Mon, 5 Jun 2017 19:26:27 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v55JQRlY065158; Mon, 5 Jun 2017 19:26:27 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201706051926.v55JQRlY065158@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 5 Jun 2017 19:26:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442681 - in head/security/py-artifacts: . files X-SVN-Group: ports-head 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.23 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: Mon, 05 Jun 2017 19:26:28 -0000 Author: antoine Date: Mon Jun 5 19:26:26 2017 New Revision: 442681 URL: https://svnweb.freebsd.org/changeset/ports/442681 Log: Update to 20170522 Added: head/security/py-artifacts/files/ head/security/py-artifacts/files/patch-setup.py (contents, props changed) Modified: head/security/py-artifacts/Makefile head/security/py-artifacts/distinfo Modified: head/security/py-artifacts/Makefile ============================================================================== --- head/security/py-artifacts/Makefile Mon Jun 5 18:28:58 2017 (r442680) +++ head/security/py-artifacts/Makefile Mon Jun 5 19:26:26 2017 (r442681) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= artifacts -PORTVERSION= 20170513 +PORTVERSION= 20170522 CATEGORIES= security python MASTER_SITES= CHEESESHOP \ https://github.com/ForensicArtifacts/artifacts/releases/download/${PORTVERSION}/ @@ -15,9 +15,12 @@ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>=3.11:devel/py-yaml +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yapf>=0:textproc/py-yapf NO_ARCH= yes USES= python USE_PYTHON= distutils autoplist +DO_MAKE_TEST= ${SETENV} ${TEST_ENV} ${PYTHON_CMD} +TEST_TARGET= run_tests.py .include Modified: head/security/py-artifacts/distinfo ============================================================================== --- head/security/py-artifacts/distinfo Mon Jun 5 18:28:58 2017 (r442680) +++ head/security/py-artifacts/distinfo Mon Jun 5 19:26:26 2017 (r442681) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494789316 -SHA256 (artifacts-20170513.tar.gz) = 65be32bf91d1f36804c85b532f029b8cc56c5cd29ee03a411613c68b3936a9f1 -SIZE (artifacts-20170513.tar.gz) = 49564 +TIMESTAMP = 1496500460 +SHA256 (artifacts-20170522.tar.gz) = a421282bbe1911bec482144052a9cfb0307d1c3a4f1a936e2dc111b31988d126 +SIZE (artifacts-20170522.tar.gz) = 58267 Added: head/security/py-artifacts/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-artifacts/files/patch-setup.py Mon Jun 5 19:26:26 2017 (r442681) @@ -0,0 +1,11 @@ +--- setup.py.orig 2017-05-22 18:44:24 UTC ++++ setup.py +@@ -123,7 +123,7 @@ setup( + 'Operating System :: OS Independent', + 'Programming Language :: Python', + ], +- packages=find_packages('.', exclude=[u'tests', u'tests.*', u'tools']), ++ packages=find_packages('.', exclude=[u'tests', u'tests.*', u'tools', u'utils']), + package_dir={'artifacts': 'artifacts'}, + data_files=[ + ('share/artifacts', glob.glob(os.path.join('data', '*'))),