X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:subject:to:references:from:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; q=dns; s=default; b=Tm5V6IEdF1TDW3iv PsRm5T43pDbGBfXI21G/fIRbLpNTivlABcLd5WWpine1pX20o+Mj0u4AXJHBECsR d5fNxyYPaOUwJApH1YAHT1pcLBsBjEDbOzlex8AwtDpYy5a6Md8cInu2EqBPVJqb G6+NBiCPw3ZTKiQsP4IUnBPulM0= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:subject:to:references:from:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; s=default; bh=7xx28SHadSffg2ycGMPVWR njkaA=; b=dTUWjABDYzVyj+WHkc/4EaJk4ROxrH+MLyRViXeD5Yl5RY/tsDtkNJ pDY6c4HQuLg7pUHkNAmVvpKO5Cw0RhjBYMTvtc/mdDxhoIfrtsPUxLiOcNnoxtof wOdFdsyG5jmg3KLYz57bK/wdW39hkHm402OZ2i0KhvkWO/FESHtK8= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_05,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 spammy=setuplogfull, UD:full, UD:log.full, UD:setup.log.full X-HELO: limerock02.mail.cornell.edu X-CornellRouted: This message has been Routed already. Subject: Re: Anecdotal: Rebase and Visual Studio 2015 and /etc To: cygwin AT cygwin DOT com References: <693uFCmXF1392S07 DOT 1467203045 AT web07 DOT cms DOT usa DOT net> <3334CBDB-BF42-4CDA-83B5-CCA5B251A746 AT etr-usa DOT com> <98C319EE-D0EF-48CD-85D7-3384DA5051A9 AT etr-usa DOT com> <44F329F2-C5FE-47D9-BCC5-BF7F9D85F68F AT etr-usa DOT com> From: Ken Brown Message-ID: <65f60907-79df-ce12-5a61-75caffc7e825@cornell.edu> Date: Tue, 5 Jul 2016 09:59:03 -0400 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit X-PMX-Cornell-Gauge: Gauge=XXXXX X-IsSubscribed: yes On 7/3/2016 10:02 AM, Ken Brown wrote: > On 7/1/2016 7:38 PM, Warren Young wrote: >> On Jul 1, 2016, at 4:40 PM, Warren Young wrote: >>> >>> I’ve written a script to do that automatically. >> >> I’ve improved the script so that it no longer requires any >> parameters. It finds the last-used setup.ini file and extracts the >> list of currently-installed packages, all on its own. > > This script has a couple of problems. First, it doesn't take dependency > loops into account. For example, if package p requires q and q requires > p, then both will be marked as non-root. Second, if the mirror was used > for both an x86 and x86_64 installation, it always uses the x86 > setup.ini, regardless of the current architecture. The second problem is easy to fix. I think you can fix the first problem by using the dependency order computed by setup and recorded in /var/log/setup.log.full: $ grep "Dependency order" /var/log/setup.log.full Dependency order of packages: base-cygwin cygwin libdbus1_3 libiconv2 libintl8 libffi6 libpcre1 liblzma5 libgcc1 libstdc++6 terminfo... You should only mark a package as a non-root if it is required by a package that occurs later in the list. Ken -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple