From owner-freebsd-python@freebsd.org Thu Feb 9 15:12:33 2017 Return-Path: Delivered-To: freebsd-python@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 55005CD7293 for ; Thu, 9 Feb 2017 15:12:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 3EA4C1CE for ; Thu, 9 Feb 2017 15:12:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 3DF8FCD7292; Thu, 9 Feb 2017 15:12:33 +0000 (UTC) Delivered-To: python@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 3DA25CD7291 for ; Thu, 9 Feb 2017 15:12:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 13E531CD for ; Thu, 9 Feb 2017 15:12:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v19FCW7h049001 for ; Thu, 9 Feb 2017 15:12:32 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 216941] devel/py-logilab-common & devel/py-pytest install to the same files Date: Thu, 09 Feb 2017 15:12:32 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dvl@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Feb 2017 15:12:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D216941 Bug ID: 216941 Summary: devel/py-logilab-common & devel/py-pytest install to the same files Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: freebsd-ports-bugs@FreeBSD.org Reporter: dvl@FreeBSD.org CC: python@FreeBSD.org CC: python@FreeBSD.org These two ports conflict. They install the same file. I suggest they both = be renamed. I will post this ticket, then work on patches for review/approval= .=20 If anyone else wishes to proceed on this issue before I do that, please proceed. Here are command run after a poudriere testport on a recent ports tree: testport of devel/py-pytest # pkg info -l py27-pytest-3.0.6 | grep /usr/local/bin/pytest /usr/local/bin/pytest /usr/local/bin/pytest-2.7 # cat /usr/local/bin/pytest #!/usr/local/bin/python2.7 # EASY-INSTALL-ENTRY-SCRIPT: 'pytest=3D=3D3.0.6','console_scripts','pytest' __requires__ =3D 'pytest=3D=3D3.0.6' import re import sys from pkg_resources import load_entry_point if __name__ =3D=3D '__main__': sys.argv[0] =3D re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) sys.exit( load_entry_point('pytest=3D=3D3.0.6', 'console_scripts', 'pytest')() ) testport of devel/py-logilab-common # pkg info -l py27-logilab-common-1.2.2 | grep /usr/local/bin/pytest /usr/local/bin/pytest /usr/local/bin/pytest-2.7 # cat /usr/local/bin/pytest #!/usr/local/bin/python2.7 import warnings warnings.simplefilter('default', DeprecationWarning) from logilab.common.pytest import run run() --=20 You are receiving this mail because: You are on the CC list for the bug.=