From owner-freebsd-ports-bugs@freebsd.org Thu Mar 10 07:37:45 2016 Return-Path: Delivered-To: freebsd-ports-bugs@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 52287ACA107 for ; Thu, 10 Mar 2016 07:37:45 +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 294DE9AB for ; Thu, 10 Mar 2016 07:37:45 +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 u2A7bjbW099730 for ; Thu, 10 Mar 2016 07:37:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 207875] fetch-list does not store into DIST_SUBDIR Date: Thu, 10 Mar 2016 07:37:45 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Ports Framework X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: darius@dons.net.au X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: portmgr@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-ports-bugs@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Mar 2016 07:37:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D207875 Bug ID: 207875 Summary: fetch-list does not store into DIST_SUBDIR Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Ports Framework Assignee: portmgr@FreeBSD.org Reporter: darius@dons.net.au CC: freebsd-ports-bugs@FreeBSD.org I use fetch-recursive-list to get distfiles to non-networked jails, however= I have to move anything using DIST_SUBDIR manually as it just puts them in CW= D. Perusing fetch-list I see... DIR=3D${DIST_SUBDIR};\ CKSIZE=3D`alg=3DSIZE; ${DISTINFO_DATA}`; \ case $${file} in \ */*) args=3D"-o $${file} $${site}$${file= }";; \ *) args=3D$${site}$${file};; \ esac; \ ${ECHO_CMD} -n ${SETENV} ${FETCH_ENV} ${FETCH_CMD} ${FETCH_BEFORE_ARGS} $${args} "${FETCH_AFTER_ARGS}" '|| ' ; \ Which looks odd as 'DIR' is never used - was this feature removed or broken= by mistake? I would expect (ho ho ho) it to be relatively easy to check if DIST_SUBDIR = is set and if so add something like if [ ! -d ${DIST_SUBDIR} ]; then; mkdir ${DIST_SUBDIR}; fi; ( cd ${DIST_SUBDIR} ; .... ) --=20 You are receiving this mail because: You are on the CC list for the bug.=