From owner-svn-ports-head@freebsd.org Sat Oct 7 06:11:18 2017 Return-Path: Delivered-To: svn-ports-head@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 F0578E2EFBF; Sat, 7 Oct 2017 06:11:18 +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 CB05B83C24; Sat, 7 Oct 2017 06:11:18 +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 v976BHtO004311; Sat, 7 Oct 2017 06:11:17 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v976BHXp004304; Sat, 7 Oct 2017 06:11:17 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201710070611.v976BHXp004304@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 7 Oct 2017 06:11:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r451426 - in head: devel/hachoir-core devel/hachoir-parser devel/hachoir-regex sysutils/hachoir-metadata sysutils/hachoir-subfile sysutils/hachoir-urwid sysutils/hachoir-wx X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head: devel/hachoir-core devel/hachoir-parser devel/hachoir-regex sysutils/hachoir-metadata sysutils/hachoir-subfile sysutils/hachoir-urwid sysutils/hachoir-wx X-SVN-Commit-Revision: 451426 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Oct 2017 06:11:19 -0000 Author: antoine Date: Sat Oct 7 06:11:17 2017 New Revision: 451426 URL: https://svnweb.freebsd.org/changeset/ports/451426 Log: hachoir-* is not compatible with python3 With hat: portmgr Modified: head/devel/hachoir-core/Makefile head/devel/hachoir-parser/Makefile head/devel/hachoir-regex/Makefile head/sysutils/hachoir-metadata/Makefile head/sysutils/hachoir-subfile/Makefile head/sysutils/hachoir-urwid/Makefile head/sysutils/hachoir-wx/Makefile Modified: head/devel/hachoir-core/Makefile ============================================================================== --- head/devel/hachoir-core/Makefile Sat Oct 7 04:52:53 2017 (r451425) +++ head/devel/hachoir-core/Makefile Sat Oct 7 06:11:17 2017 (r451426) @@ -9,7 +9,7 @@ MASTER_SITES= CHEESESHOP MAINTAINER= lwhsu@FreeBSD.org COMMENT= Hachoir core parser -USES= python +USES= python:2.7 USE_PYTHON= distutils .include Modified: head/devel/hachoir-parser/Makefile ============================================================================== --- head/devel/hachoir-parser/Makefile Sat Oct 7 04:52:53 2017 (r451425) +++ head/devel/hachoir-parser/Makefile Sat Oct 7 06:11:17 2017 (r451426) @@ -12,7 +12,7 @@ COMMENT= Parsers of most common file formats BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/hachoir_core/__init__.py:devel/hachoir-core RUN_DEPENDS= ${PYTHON_SITELIBDIR}/hachoir_core/__init__.py:devel/hachoir-core -USES= python +USES= python:2.7 USE_PYTHON= distutils .include Modified: head/devel/hachoir-regex/Makefile ============================================================================== --- head/devel/hachoir-regex/Makefile Sat Oct 7 04:52:53 2017 (r451425) +++ head/devel/hachoir-regex/Makefile Sat Oct 7 06:11:17 2017 (r451426) @@ -9,7 +9,7 @@ MASTER_SITES= CHEESESHOP MAINTAINER= lwhsu@FreeBSD.org COMMENT= Regular expression manipulation library -USES= python +USES= python:2.7 USE_PYTHON= distutils .include Modified: head/sysutils/hachoir-metadata/Makefile ============================================================================== --- head/sysutils/hachoir-metadata/Makefile Sat Oct 7 04:52:53 2017 (r451425) +++ head/sysutils/hachoir-metadata/Makefile Sat Oct 7 06:11:17 2017 (r451426) @@ -13,7 +13,7 @@ COMMENT= Extract metadata from files BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/hachoir_parser/__init__.py:devel/hachoir-parser RUN_DEPENDS= ${PYTHON_SITELIBDIR}/hachoir_parser/__init__.py:devel/hachoir-parser -USES= python +USES= python:2.7 USE_PYTHON= distutils .include Modified: head/sysutils/hachoir-subfile/Makefile ============================================================================== --- head/sysutils/hachoir-subfile/Makefile Sat Oct 7 04:52:53 2017 (r451425) +++ head/sysutils/hachoir-subfile/Makefile Sat Oct 7 06:11:17 2017 (r451426) @@ -12,7 +12,7 @@ COMMENT= Find subfiles in any binary stream RUN_DEPENDS= ${PYTHON_SITELIBDIR}/hachoir_parser/__init__.py:devel/hachoir-parser \ ${PYTHON_SITELIBDIR}/hachoir_regex/__init__.py:devel/hachoir-regex -USES= python +USES= python:2.7 USE_PYTHON= distutils .include Modified: head/sysutils/hachoir-urwid/Makefile ============================================================================== --- head/sysutils/hachoir-urwid/Makefile Sat Oct 7 04:52:53 2017 (r451425) +++ head/sysutils/hachoir-urwid/Makefile Sat Oct 7 06:11:17 2017 (r451426) @@ -12,7 +12,7 @@ COMMENT= Binary file explorer RUN_DEPENDS= ${PYTHON_SITELIBDIR}/hachoir_parser/__init__.py:devel/hachoir-parser \ ${PYTHON_SITELIBDIR}/urwid/__init__.py:devel/py-urwid -USES= python +USES= python:2.7 USE_PYTHON= distutils .include Modified: head/sysutils/hachoir-wx/Makefile ============================================================================== --- head/sysutils/hachoir-wx/Makefile Sat Oct 7 04:52:53 2017 (r451425) +++ head/sysutils/hachoir-wx/Makefile Sat Oct 7 06:11:17 2017 (r451426) @@ -12,7 +12,7 @@ COMMENT= Hachoir GUI RUN_DEPENDS= ${PYTHON_SITELIBDIR}/hachoir_parser/__init__.py:devel/hachoir-parser -USES= python +USES= python:2.7 USE_PYTHON= distutils USE_WX= 3.0+ WX_COMPS= python