From owner-freebsd-python@freebsd.org Mon Dec 14 08:22:12 2015 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 4CA4AA42247 for ; Mon, 14 Dec 2015 08:22:12 +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 3196C1459 for ; Mon, 14 Dec 2015 08:22:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 2ECB6A42246; Mon, 14 Dec 2015 08:22:12 +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 1475DA42245 for ; Mon, 14 Dec 2015 08:22:12 +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 052841457 for ; Mon, 14 Dec 2015 08:22:12 +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 tBE8MBfM038738 for ; Mon, 14 Dec 2015 08:22:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 205308] devel/py-pip and devel/py-virtualenv don't aggree on version suffix Date: Mon, 14 Dec 2015 08:22:11 +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: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jbeich@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform bug_file_loc op_sys bug_status keywords bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit 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.20 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Dec 2015 08:22:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205308 Bug ID: 205308 Summary: devel/py-pip and devel/py-virtualenv don't aggree on version suffix Product: Ports & Packages Version: Latest Hardware: Any URL: https://github.com/servo/servo/issues/8968 OS: Any Status: New Keywords: regression Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: freebsd-ports-bugs@FreeBSD.org Reporter: jbeich@FreeBSD.org CC: nivit@FreeBSD.org, python@FreeBSD.org CC: nivit@FreeBSD.org, python@FreeBSD.org Due to inconsistent suffix upstream cannot rely on it: pip-2.7 vs. pip2.7. Regressed by ports r390183 which also removed pip2. See URL for an impact. Here's a simplified version: $ virtualenv-2.7 python/_virtualenv New python executable in python/_virtualenv/bin/python2.7 Also creating executable in python/_virtualenv/bin/python Installing setuptools, pip, wheel...done. $ . python/_virtualenv/bin/activate (_virtualenv)$ pip-2.7 install blessings Collecting blessings Using cached blessings-1.6.tar.gz Installing collected packages: blessings Running setup.py install for blessings Complete output from command /usr/local/bin/python2.7 -c "import setuptools, tokenize;__file__='/tmp/pip-build-JLlt1P/blessings/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-JhU9dM-record/install-record.txt --single-version-externally-managed --compile: running install running build running build_py creating build creating build/lib creating build/lib/blessings copying blessings/tests.py -> build/lib/blessings copying blessings/__init__.py -> build/lib/blessings running egg_info writing blessings.egg-info/PKG-INFO writing top-level names to blessings.egg-info/top_level.txt writing dependency_links to blessings.egg-info/dependency_links.txt warning: manifest_maker: standard file '-c' not found reading manifest file 'blessings.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file 'blessings.egg-info/SOURCES.txt' running install_lib creating /usr/local/lib/python2.7/site-packages/blessings error: could not create '/usr/local/lib/python2.7/site-packages/blessings': Permission denied ---------------------------------------- Command "/usr/local/bin/python2.7 -c "import setuptools, tokenize;__file__='/tmp/pip-build-JLlt1P/blessings/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-JhU9dM-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-JLlt1P/blessings zsh: exit 1 pip-2.7 install blessings -- You are receiving this mail because: You are on the CC list for the bug.