From owner-freebsd-pkg@FreeBSD.ORG Tue Jun 11 17:16:51 2013 Return-Path: Delivered-To: pkg@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 923D274B; Tue, 11 Jun 2013 17:16:51 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: from zxy.spb.ru (zxy.spb.ru [195.70.199.98]) by mx1.freebsd.org (Postfix) with ESMTP id 4DE801F7E; Tue, 11 Jun 2013 17:16:51 +0000 (UTC) Received: from slw by zxy.spb.ru with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1UmSCc-0008Ay-W4; Tue, 11 Jun 2013 21:17:51 +0400 Date: Tue, 11 Jun 2013 21:17:50 +0400 From: Slawa Olhovchenkov To: Bryan Drewery Subject: Re: [HEADSUP] New pkg-devel 1.1.0 beta1 Message-ID: <20130611171750.GC34554@zxy.spb.ru> References: <20130530152053.GA19621@ithaqua.etoilebsd.net> <20130603151724.GA54714@zxy.spb.ru> <20130603153419.GL12427@ithaqua.etoilebsd.net> <20130603153903.GH34554@zxy.spb.ru> <20130603184031.GM12427@ithaqua.etoilebsd.net> <20130611165124.GB34554@zxy.spb.ru> <51B755EB.1090606@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <51B755EB.1090606@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: slw@zxy.spb.ru X-SA-Exim-Scanned: No (on zxy.spb.ru); SAEximRunCond expanded to false Cc: pkg@Freebsd.org, ports@FreeBSD.org, stable@FreeBSD.org, current@FreeBSD.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jun 2013 17:16:51 -0000 On Tue, Jun 11, 2013 at 11:52:59AM -0500, Bryan Drewery wrote: > On 6/11/2013 11:51 AM, Slawa Olhovchenkov wrote: > > On Mon, Jun 03, 2013 at 08:40:31PM +0200, Baptiste Daroussin wrote: > > > >> On Mon, Jun 03, 2013 at 07:39:03PM +0400, Slawa Olhovchenkov wrote: > >>> On Mon, Jun 03, 2013 at 05:34:19PM +0200, Baptiste Daroussin wrote: > >>> > >>>> On Mon, Jun 03, 2013 at 07:17:24PM +0400, Slawa Olhovchenkov wrote: > >>>>> On Thu, May 30, 2013 at 05:20:54PM +0200, Baptiste Daroussin wrote: > >>>>> > >>>>>> The pkg developement team is proud to announce the new 1.1.0 beta1 release of > >>>>>> pkg. > >>>>> > >>>>>> - new experimental pkg convert (can convert from and to legacy pkg database) > >>>>>> pkg2ng now uses pkg convert (still recommanded to use pkg2ng) > >>>>> > >>>>> Converting packages from /var/db/pkg > >>>>> Converting pkg-1.1.0.b3_1... > >>>>> pkg: unknown keyword display, ignoring @display > >>>>> Installing pkg-1.1.0.b3_1...Segmentation fault (core dumped) > >>>>> > >>>>> _______________________________________________ > >>>>> freebsd-current@freebsd.org mailing list > >>>>> http://lists.freebsd.org/mailman/listinfo/freebsd-current > >>>>> To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > >>>> > >>>> Have you run pkg2ng? > >>> > >>> Yes, this is run pkg2ng. > >> > >> Ok I'll have a look and fix asap. > > > > And for graphics/evince don't recorded dependencies from > > archivers/unzip (as RUN_DEPENDS in Makefile). > > This is possibly expected because unzip is in base. The archivers/unzip > package is not installed. The port is not depending on > LOCALBAES/bin/unzip so it doesn't pull in the archivers/unzip port, it > just uses the base version. > > It's not a pkg problem. Whose problem is it? Where addressed PR? In ports Makefile for graphics/evince .if ${PORT_OPTIONS:MCOMICS} RUN_DEPENDS+= unzip:${PORTSDIR}/archivers/unzip CONFIGURE_ARGS+= --enable-comics GCONF_SCHEMAS+= evince-thumbnailer-comics.schemas PLIST_SUB+= COMICS="" .else CONFIGURE_ARGS+= --disable-comics PLIST_SUB+= COMICS="@comment " .endif poudriere check dependencies changing by comparing 'make run-depends-list' and recorded dependices from existing package. In run-depends-list archivers/unzip prsent, in package -- absent. As result on every run 'poudriere bulk' package graphics/evince removed ("new dependency: archivers/unzip") and rebuilding. And depended from evince packages too. This is problem of evince port or port infrastructure? Or may be we need 'soft' (optional) dependencies -- installed if some files missing? (for example -- system build w/o bzip2, package installed bzip2, for usual system -- do nothing).