From owner-freebsd-ports@FreeBSD.ORG Wed Oct 17 15:42:23 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7A331FDC for ; Wed, 17 Oct 2012 15:42:23 +0000 (UTC) (envelope-from mcdouga9@egr.msu.edu) Received: from mail.egr.msu.edu (hill.egr.msu.edu [35.9.37.162]) by mx1.freebsd.org (Postfix) with ESMTP id 47AA48FC08 for ; Wed, 17 Oct 2012 15:42:22 +0000 (UTC) Received: from hill (localhost [127.0.0.1]) by mail.egr.msu.edu (Postfix) with ESMTP id 0778E8E1AC for ; Wed, 17 Oct 2012 11:42:22 -0400 (EDT) X-Virus-Scanned: amavisd-new at egr.msu.edu Received: from mail.egr.msu.edu ([127.0.0.1]) by hill (hill.egr.msu.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YwetOeKMLTKp for ; Wed, 17 Oct 2012 11:42:21 -0400 (EDT) Received: from EGR authenticated sender Message-ID: <507ED1DD.4000305@egr.msu.edu> Date: Wed, 17 Oct 2012 11:42:21 -0400 From: Adam McDougall User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121012 Thunderbird/16.0.1 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: svn commit: r305926 - head/ports-mgmt/poudriere References: <201210151712.q9FHChc2034973@svn.freebsd.org> In-Reply-To: <201210151712.q9FHChc2034973@svn.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 15:42:23 -0000 I upgraded poudriere to 2.2 and started a build using: poudriere bulk -D -f /root/pkg-webold -j 90amd64-webold I noticed by the lack of "deleting stale"... and the high number of packages it was going to build that it was intending to rebuild all packages in the list. I don't seem to have a full history of zfs create commands available to see if I had created /poudriere/data manually in the past (I probably did judging by the zfs path), but a new /poudriere/data was automatically created today which got mounted over top thus /poudriere/data/packages was empty: 2012-10-17.11:19:21 zfs create -p -o poudriere:type=data -o mountpoint=/poudriere/data rpool/poudriere/data Filesystem 1K-blocks Used Avail Capacity Mounted on rpool/data 33772015 3924530 29847484 12% /poudriere/data rpool/poudriere/data 29873629 26144 29847484 0% /poudriere/data I'll move my packages into the new mount, but I wanted to give at least a heads up to others. On 10/15/12 13:12, Bryan Drewery wrote: > Author: bdrewery > Date: Mon Oct 15 17:12:43 2012 > New Revision: 305926 > URL: http://svn.freebsd.org/changeset/ports/305926 > > Log: > - Update to 2.2 > > Changes: > * Lots of bug fixes > * Support JAILNAME-make.conf and PTNAME-make.conf > * Updated ZSH completions > * The 'pbi' subcommand has been removed > * New "SET" feature. bulk, options, testport now all support > a '-z SET' option that allows for extra customization of > make.conf and options. See CUSTOMISATION section in > poudriere(8) for more information. > * Improved compatibility with older FreeBSD versions > * Poudriere itself can be jailed, see website for more details. > * Any ZFS dataset can now be used as a ports tree. Just set > poudriere:type=ports and define poudriere:name to use as a ports tree. > * ports: > - No longer create port tress in ports/ subdirectory when using SVN or git > * options: > - Fix improperly using options-JAILNAME instead of JAILNAME-options > directory, resulting in options not being used. > - Fix the specified ports tree not being used > * bulk: > - Support for building the entire ports tree with the -a option > - Support for overriding WRKDIR_ARCHIVE_FORMAT, see new > poudriere.conf.sample > - Summary output updates > - SIGINFO improvements > - Improved output during startup, explaining which files/directories > are being used for the build. > - Fix skipped ports causing incorrect counts > - Logs are now only cleared on -c again > - New '-C' option that deletes any existing packages, but only for > the ones listed. This works well with '-t' for bulk testing. > * jail: > - Better version detection on new jails via newvers.sh > * testport: > - Lots of leftovers improvements > - When using pkgng, DEVELOPER_MODE is now enabled by default, which > will run extra plist checks. > > Feature safe: yes > > Modified: > head/ports-mgmt/poudriere/Makefile > head/ports-mgmt/poudriere/distinfo > > Modified: head/ports-mgmt/poudriere/Makefile > ============================================================================== > --- head/ports-mgmt/poudriere/Makefile Mon Oct 15 17:06:01 2012 (r305925) > +++ head/ports-mgmt/poudriere/Makefile Mon Oct 15 17:12:43 2012 (r305926) > @@ -1,7 +1,7 @@ > # $FreeBSD$ > > PORTNAME= poudriere > -PORTVERSION= 2.1.2 > +PORTVERSION= 2.2 > CATEGORIES= ports-mgmt > MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/ > DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}?uuid=${PORTVERSION} > @@ -27,7 +27,6 @@ PLIST_FILES= etc/poudriere.conf.sample \ > share/poudriere/common.sh \ > share/poudriere/test_ports.sh \ > share/poudriere/ports.sh \ > - share/poudriere/pbi.sh \ > share/poudriere/jail.sh \ > share/poudriere/bulk.sh \ > share/poudriere/cron.sh \ > > Modified: head/ports-mgmt/poudriere/distinfo > ============================================================================== > --- head/ports-mgmt/poudriere/distinfo Mon Oct 15 17:06:01 2012 (r305925) > +++ head/ports-mgmt/poudriere/distinfo Mon Oct 15 17:12:43 2012 (r305926) > @@ -1,2 +1,2 @@ > -SHA256 (poudriere-2.1.2.tar.gz?uuid=2.1.2) = 19a1d41463c8c04491b760df5aaf9caec348fac78538adf8276d397b41b239cd > -SIZE (poudriere-2.1.2.tar.gz?uuid=2.1.2) = 33476 > +SHA256 (poudriere-2.2.tar.gz?uuid=2.2) = b557a9d6ffab5e050935bf2eaded25c23f3e0ff610ce1293d1123cee8354898f > +SIZE (poudriere-2.2.tar.gz?uuid=2.2) = 34481 > _______________________________________________ > svn-ports-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-ports-all > To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" >