From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 42168 invoked by alias); 9 May 2015 07:16:05 -0000 Mailing-List: contact cygwin-apps-help@cygwin.com; run by ezmlm Precedence: bulk Sender: cygwin-apps-owner@cygwin.com List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Mail-Followup-To: cygwin-apps@cygwin.com Received: (qmail 42071 invoked by uid 89); 9 May 2015 07:16:04 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-in-02.arcor-online.net Received: from mail-in-02.arcor-online.net (HELO mail-in-02.arcor-online.net) (151.189.21.42) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (CAMELLIA256-SHA encrypted) ESMTPS; Sat, 09 May 2015 07:16:01 +0000 Received: from mail-in-20-z2.arcor-online.net (mail-in-20-z2.arcor-online.net [151.189.8.85]) by mx.arcor.de (Postfix) with ESMTP id 3lkKZ517P3z1T3b for ; Sat, 9 May 2015 09:15:56 +0200 (CEST) Received: from mail-in-17.arcor-online.net (mail-in-17.arcor-online.net [151.189.21.57]) by mail-in-20-z2.arcor-online.net (Postfix) with ESMTP id D3770840570 for ; Sat, 9 May 2015 09:15:56 +0200 (CEST) X-DKIM: Sendmail DKIM Filter v2.8.2 mail-in-17.arcor-online.net 3lkKZ45MKmz6H8V Received: from Gertrud (p4FF1CB91.dip0.t-ipconnect.de [79.241.203.145]) (Authenticated sender: stromeko@arcor.de) by mail-in-17.arcor-online.net (Postfix) with ESMTPSA id 3lkKZ45MKmz6H8V for ; Sat, 9 May 2015 09:15:56 +0200 (CEST) From: Achim Gratz To: cygwin-apps@cygwin.com Subject: Re: cygport no longer removes "cygwin" from the dependency list References: <554A5E63.4060003@cornell.edu> <1431126987.12848.96.camel@cygwin.com> Date: Sat, 09 May 2015 07:16:00 -0000 In-Reply-To: <1431126987.12848.96.camel@cygwin.com> (Yaakov Selkowitz's message of "Fri, 08 May 2015 18:16:27 -0500") Message-ID: <873836kyqf.fsf@Rainer.invalid> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-SW-Source: 2015-05/txt/msg00014.txt.bz2 --=-=-= Content-Type: text/plain Content-length: 701 Yaakov Selkowitz writes: > Good catch. OTOH, we were only skipping the 'cygwin' dep in setup.hint > because of an issue with deptree ordering of postinstall scripts. Given > the recent changes to postinstall handling in setup, is there any reason > we can't just stop ignoring the cygwin dep? I'm not aware that this would have changed the dependency order. Doing this would probably require to postpone base package deps in general. I'll have to do some things in setup to re-instate the possibility of pruning an installation in unattended mode. I'll have a look, but can't promise I'll have enough time to get to the dependency issue. Here's a patch to fix that instance in cygport instead: --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-lib-pkg_pkg.cygpart-Cygwin-is-at-version-2.x-now.patch Content-length: 959 >From f4113a1776d35dd39ee3a3aa114495635782a300 Mon Sep 17 00:00:00 2001 From: Achim Gratz Date: Thu, 7 May 2015 22:08:18 +0200 Subject: [PATCH] lib/pkg_pkg.cygpart: Cygwin is at version 2.x now... --- lib/pkg_pkg.cygpart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pkg_pkg.cygpart b/lib/pkg_pkg.cygpart index da8c9b2..acd4cf9 100644 --- a/lib/pkg_pkg.cygpart +++ b/lib/pkg_pkg.cygpart @@ -737,7 +737,7 @@ __pkg_dist() { if [ "${CBUILD##*-}" = "cygwin" ] then pkg_bin_requires=$(__list_deps $(sort -fu ${T}/.${pkg_name[${n}]}.lst | sed -e '\|/$|d;s| |^_^|g') \ - | sort -fu | sed -e "/^cygwin-1/d;/^${pkg_name[${n}]}-[0-9].*$/d;s/-[0-9].*$//g" \ + | sort -fu | sed -e "/^cygwin-[12]/d;/^${pkg_name[${n}]}-[0-9].*$/d;s/-[0-9].*$//g" \ | sed -e ':a;N;$!ba;s/\n/ /g') __step "${pkg_name[${n}]} requires: ${pkg_bin_requires} ${!pkg_requires_var}" else -- 2.3.7 --=-=-= Content-Type: text/plain Content-length: 197 Regards, Achim. -- +<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+ SD adaptations for KORG EX-800 and Poly-800MkII V0.9: http://Synth.Stromeko.net/Downloads.html#KorgSDada --=-=-=--