From owner-svn-ports-head@freebsd.org Fri Aug 25 20:21:51 2017 Return-Path: Delivered-To: svn-ports-head@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 F270BDE09ED; Fri, 25 Aug 2017 20:21:51 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: from mail-io0-x22e.google.com (mail-io0-x22e.google.com [IPv6:2607:f8b0:4001:c06::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B99856F735; Fri, 25 Aug 2017 20:21:51 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: by mail-io0-x22e.google.com with SMTP id 81so2779610ioj.5; Fri, 25 Aug 2017 13:21:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=AchUoZ+m8K47aSWismfyChADn65z9AP68frfIGWWx9o=; b=Nb10G74Nu/nT76Os8OXrhwhvpP2L1koZUcunnS6819EKmWenB0ATqz7vLu2cOBEntJ 0rESHgTt75iRzQ8cXPWhu9FrNUX/+P0XwK+oy9+3ytCteHaTJXtpNEZMsh9xCFt8H0YB XX+cRcQZa1Dk60pmCBcR4ccbnisf/8buB8BmZRa5jbYe6kewJYpxzQ41OGLoZyWITnsd fK7HqYiPdoM1iZEchth0INu60xeEORje2mxWu+hnYa/h2AusOC4ax1qkrDScw8UYu60E p4UN/2ybKHXWEhwcIK2EQTKWm3YaQNwEvUgVLCxrrw5gHNmtqiDz8pWGN63eELPWz6lA U3eg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=AchUoZ+m8K47aSWismfyChADn65z9AP68frfIGWWx9o=; b=egDteDSCOJ00vQb9nXquUBR5Fq2ZGpS5A9wpNADW4pboROuc9LtA2K0eC6IPAxYv3/ VvcqU77BSQSQrzoxNKylTcxsoZHdev15TL6Od61os+yx1nYD/Zor4CuXMiWhyBBliGv8 yJosY4ZQ5pROt0vcfdtrh20UdI4ruxLp37mH4PnIR/JYXFw3jxorW6oumCNs6rGsPYez dmfBjWNdbtM2brLe3A4IywOb7oCqI6baFfGD1HjsNzkSikb05Wah4EjuLhbI/E2RBj2L bHEZq/WejURy+ImV3BsCQ0X+0W34/hO5O9xgjzbMqo5l7gpwmtFKwUR33gPhimGHaFGp XfyA== X-Gm-Message-State: AHYfb5ibWNC0nj59BoJDV34rJgS6WtS7J8wMo1v+RDE8bnlPK0yUAqyU FPqm6+7dqlCTBBqPO2AvZKjBsOibkA== X-Received: by 10.107.37.207 with SMTP id l198mr9625553iol.146.1503692510466; Fri, 25 Aug 2017 13:21:50 -0700 (PDT) MIME-Version: 1.0 Sender: antoine.brodin.freebsd@gmail.com Received: by 10.107.128.138 with HTTP; Fri, 25 Aug 2017 13:21:49 -0700 (PDT) In-Reply-To: References: <201708250617.v7P6HrMI009114@repo.freebsd.org> From: Antoine Brodin Date: Fri, 25 Aug 2017 22:21:49 +0200 X-Google-Sender-Auth: x7LU3U_A7TXTK9G7MOtxovsRGzo Message-ID: Subject: Re: svn commit: r448710 - head/www/thundercache To: Gerald Pfeifer Cc: "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2017 20:21:52 -0000 On Fri, Aug 25, 2017 at 10:09 PM, Gerald Pfeifer wrote: > On Fri, 25 Aug 2017, Antoine Brodin wrote: >> Log: >> Fix dependencies, lang/gcc metaport does not provide libstdc++.so > >> +USE_GCC= any >> >> ONLY_FOR_ARCHS= i386 amd64 >> >> @@ -59,7 +60,6 @@ USE_PHP+= pdo_pgsql pgsql >> .endif >> >> LIB_DEPENDS+= libcurl.so:ftp/curl \ >> - libstdc++.so:lang/gcc \ >> libutil.so:misc/compat8x > > Soo, this definitely looks like an improvement, thanks for doing it. > > However, I'm a little surprised: lang/gcc should pull in lang/gcc5 > which provides libstdc++.so, shouldn't it? So why did this not work? It kind of worked, but the package was rebuilt at every poudriere run because lang/gcc was detected as a new dependency (lang/gcc wasn't registered as a dependency in the package because lang/gcc doesn't provide libstdc++.so). Antoine