From owner-freebsd-ports@FreeBSD.ORG Sun Mar 22 10:28:34 2015 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 82B0164F; Sun, 22 Mar 2015 10:28:34 +0000 (UTC) Received: from mail-ie0-x231.google.com (mail-ie0-x231.google.com [IPv6:2607:f8b0:4001:c03::231]) (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 4592FD71; Sun, 22 Mar 2015 10:28:34 +0000 (UTC) Received: by iecvj10 with SMTP id vj10so17778751iec.0; Sun, 22 Mar 2015 03:28:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=XcOPx7LnFFrm+z2fvw/jsGFEcNDaX/b+ZLECeRooKlQ=; b=Y4IOYf/vGjRvOuWZzZCPBGrnIgs8TyRm9RUeGWKPFXcqdiKZgQbGtfntu+0+HyPdlV jhigngnA+qcixP3jPSskEG2PQgFE/ZvRPJMTYWzTJI2BiQFQEPfSICFV0fbsfjILYYDb LZSId5EdnlGYBsDZ/QmcCtxl0M3eNijP8CaZxP0dfImuTj8mH7toufdhigr5jPJPrJTb axBpaFjR54yDZkb1IkC0L7907UFYylL3uYocFDHMk0uBgBh6ln4Lb2HndXjJQf+qSNw/ hD5oyUv/xdNxZ+ltW6WnmjTjNWj7l1D4GeyrdqPWO6alItEptuu4+Q5AuwLWZJv0lKtv qv7g== MIME-Version: 1.0 X-Received: by 10.50.97.41 with SMTP id dx9mr7593483igb.1.1427020113541; Sun, 22 Mar 2015 03:28:33 -0700 (PDT) Received: by 10.64.216.71 with HTTP; Sun, 22 Mar 2015 03:28:33 -0700 (PDT) In-Reply-To: <20150321230802.GG87678@ivaldir.etoilebsd.net> References: <20150320153711.GB87678@ivaldir.etoilebsd.net> <20150321230802.GG87678@ivaldir.etoilebsd.net> Date: Sun, 22 Mar 2015 18:28:33 +0800 Message-ID: Subject: Re: [HEADSUP] WIP on fonts From: Ben Woods To: Baptiste Daroussin Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: "ports@freebsd.org" , "x11@freebsd.org" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Mar 2015 10:28:34 -0000 My poudriere is acting funny now, and I'm not sure if it's related. It keeps deleting xorg-fonts-truetype because there is a new dependency (x11-fonts/dejavu), and then having to rebuild a whole suit of packages as a result. The interesting thing is that dejavu was a dependency the entire time. It will successfully peform the bulk build and update the package set. If I then re-run the bulk build, it does the same thing every time. My make.conf file (which hasn't changed in some time) contains: OPTIONS_SET= VAAPI VDPAU X265 ASS FAAC LAME MDNSRESPONDER RRDTOOL STATGRAB DEJAVU The strange output from poudriere: [00:00:22] ====>> Sanity checking the repository [00:00:22] ====>> Checking packages for incremental rebuild needed [00:00:42] ====>> Deleting xorg-fonts-truetype-7.7_1.txz: new dependency: x11-fonts/dejavu [00:00:45] ====>> Deleting pango-1.36.8.txz: missing dependency: xorg-fonts-truetype-7.7_1 [00:00:45] ====>> Deleting plexhometheater-1.2.2_7.txz: missing dependency: pango-1.36.8 [00:00:45] ====>> Deleting policykit-gnome-0.9.2_7.txz: missing dependency: pango-1.36.8 [00:00:45] ====>> Deleting rrdtool-1.4.8_6.txz: missing dependency: pango-1.36.8 Any ideas? -Ben On Sunday, March 22, 2015, Baptiste Daroussin wrote: > On Fri, Mar 20, 2015 at 04:37:13PM +0100, Baptiste Daroussin wrote: > > Hi all, > > > > Some of you may have notice some work on the font area. > > > > The goal of this work is to prevent every single font package to act > differently > > and most of the time not correctly. > > > > The change will be done in multiple steps: > > 1/ Convert every ports to USES=fonts > > 2/ Remove @fc and @fontsdir keywords to only keep @fcfontsdir > > 3/ Move all fonts from ${LOCALBASE}/lib/X11/fonts to > ${LOCALBASE}/share/fonts in > > order to make the fonts following XDG as well as making them working for > non-x11 > > world (wayland for example) > > > > Best regards, > > Bapt > > > Done in r381876 please report me all possible issue, I have done quite a > lot of > testing but I cannot test everything. > > Best regards, > Bapt > -- -- From: Benjamin Woods woodsb02@gmail.com