From owner-freebsd-python@freebsd.org Fri Jan 20 10:48: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 DE073CB97C1 for ; Fri, 20 Jan 2017 10:48:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id C848F16E9 for ; Fri, 20 Jan 2017 10:48:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id C7B74CB97BB; Fri, 20 Jan 2017 10:48: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 C768FCB97BA for ; Fri, 20 Jan 2017 10:48: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 B7BCD16E8 for ; Fri, 20 Jan 2017 10:48: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 v0KAmXnS099626 for ; Fri, 20 Jan 2017 10:48:33 GMT (envelope-from bugzilla-noreply@freebsd.org) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: maintainer-feedback requested: [Bug 216310] lang/python: bad links created for idle3 and pydoc3 Date: Fri, 20 Jan 2017 10:48:32 +0000 X-Bugzilla-Type: request X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: python@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? Message-ID: In-Reply-To: References: 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: Fri, 20 Jan 2017 10:48:34 -0000 Jose M. Alcaide has reassigned Bugzilla Automat= ion 's request for maintainer-feedback to FreeBSD Python : Bug 216310: lang/python: bad links created for idle3 and pydoc3 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D216310 --- Description --- Created attachment 179131 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D179131&action= =3Dedit patch for lang/python/Makefile With DEFAULT_VERSIONS defined in /etc/make.conf as: DEFAULT_VERSIONS+=3D python=3D3.5 python3=3D3.5 these idle and pydoc links are created in /usr/local/bin: lrwxr-xr-x 1 root wheel 9 Jan 20 10:50 /usr/local/bin/idle -> idle3-3.5 lrwxr-xr-x 1 root wheel 7 Jan 20 10:37 /usr/local/bin/idle3 -> idle3.5 -rwxr-xr-x 1 root wheel 99 Jan 19 16:07 /usr/local/bin/idle3.5 lrwxr-xr-x 1 root wheel 10 Jan 20 10:50 /usr/local/bin/pydoc -> pydoc3-3= .5 lrwxr-xr-x 1 root wheel 8 Jan 20 10:37 /usr/local/bin/pydoc3 -> pydoc3.5 -rwxr-xr-x 1 root wheel 84 Jan 19 16:07 /usr/local/bin/pydoc3.5 The idle3 and pydoc3 symlinks are created by lang/python3; idle3.5 and pydo= c3.5 executables are created by lang/python35. As it can be seen, the idle and pydoc symlinks point to non-existent filena= mes. The other symlinks created by lang/python (python, 2to3 and python-config) = are correct. I am sending a patch attached.