From owner-svn-ports-head@FreeBSD.ORG Mon Mar 18 14:06:24 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id F29252BE; Mon, 18 Mar 2013 14:06:23 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from mail-ie0-x22d.google.com (mail-ie0-x22d.google.com [IPv6:2607:f8b0:4001:c03::22d]) by mx1.freebsd.org (Postfix) with ESMTP id AA8C2CE5; Mon, 18 Mar 2013 14:06:23 +0000 (UTC) Received: by mail-ie0-f173.google.com with SMTP id 9so7002906iec.32 for ; Mon, 18 Mar 2013 07:06:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=mime-version:x-received:reply-to:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=dAMREJnCqIBtL4UoztdwsyDaq75AqjsdVn6J3MlcZrQ=; b=BeasEc1pKTAxJTSzFo2sa0jl5XdnXoOPSmSZ88wCoQOUIuQ+8XClo9TlZhqPRb8tTv 7FuyWTAVrxcx6mw5nRBGO3owq7dFki/O9tk5ZpLY3JmyasfYYr8mMJbSUDtWkC0JgaQu 6Ga/q1opnHTKYo2fcS1eGJFxlImsrWNlEdtdMAmNtvOwLmRg7eEXREcvQerHNWnxpqer ZiWn+xO50F8WNnsxqqv/V8c8vFRRqtkrJwXzvG8lhkzG5lkH9EM1F0ZguPjktm6e5fTL oGf/b0/TX9mj9b0t5st4PjzAYxvKj8j9doHTsFS6a/TVSqPAsiLOaEXNdlj1Nt39Z8ch LxUA== MIME-Version: 1.0 X-Received: by 10.50.140.101 with SMTP id rf5mr6024763igb.41.1363615583311; Mon, 18 Mar 2013 07:06:23 -0700 (PDT) Received: by 10.64.11.161 with HTTP; Mon, 18 Mar 2013 07:06:22 -0700 (PDT) In-Reply-To: <201303181304.r2ID4R0G047522@svn.freebsd.org> References: <201303181304.r2ID4R0G047522@svn.freebsd.org> Date: Mon, 18 Mar 2013 14:06:22 +0000 Message-ID: Subject: Re: svn commit: r314562 - in head/ports-mgmt/pkg: . files From: "b.f." To: Bryan Drewery Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: bf1783@gmail.com 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: Mon, 18 Mar 2013 14:06:24 -0000 On 3/18/13, Bryan Drewery wrote: > Author: bdrewery > Date: Mon Mar 18 13:04:26 2013 > New Revision: 314562 > URL: http://svnweb.freebsd.org/changeset/ports/314562 > > Log: > - Fix lib/gio/modules/giomodule.cache being seen as a leftover > due to @unexec gio-querymodules running before files were deinstalled. > A more extensible solution is being sought for 1.0.10 to be used > through > bsd.pkgng.mk > > Reported by: miwi, swills > With hat: portmgr > > Added: > head/ports-mgmt/pkg/files/patch-libpkg__pkg_ports.c (contents, props > changed) > Modified: > head/ports-mgmt/pkg/Makefile > > Modified: head/ports-mgmt/pkg/Makefile > ============================================================================== > --- head/ports-mgmt/pkg/Makefile Mon Mar 18 13:02:03 2013 (r314561) > +++ head/ports-mgmt/pkg/Makefile Mon Mar 18 13:04:26 2013 (r314562) > @@ -2,7 +2,7 @@ > > PORTNAME= pkg > DISTVERSION= 1.0.9 > -PORTREVISION= 1 > +PORTREVISION= 2 > CATEGORIES= ports-mgmt > MASTER_SITES= LOCAL/portmgr \ > http://files.etoilebsd.net/pkg/ > > Added: head/ports-mgmt/pkg/files/patch-libpkg__pkg_ports.c > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/ports-mgmt/pkg/files/patch-libpkg__pkg_ports.c Mon Mar 18 13:04:26 > 2013 (r314562) > @@ -0,0 +1,12 @@ > +diff --git libpkg/pkg_ports.c libpkg/pkg_ports.c > +index 1c46faa..7bb7bff 100644 > +--- libpkg/pkg_ports.c > ++++ libpkg/pkg_ports.c > +@@ -363,6 +363,7 @@ meta_exec(struct plist *p, char *line, bool unexec) > + strstr(cmd, "mkfontscale") || strstr(cmd, "mkfontdir") || > + strstr(cmd, "fc-cache") || strstr(cmd, "fonts.dir") || > + strstr(cmd, "fonts.scale") || > ++ strstr(cmd, "gio-querymodules") || > + strstr(cmd, "gtk-update-icon-cache") || > + strstr(cmd, "update-desktop-database") || > + strstr(cmd, "update-mime-database")) { > Some ports that set GLIB_SCHEMAS are also failing the plist checks due to the presence of an altered share/glib-2.0/schemas/gschemas.compiled. Some of the other gnome @unexec directives that are not already covered by the altered patch may also cause problems. b.