From owner-svn-ports-all@FreeBSD.ORG Fri Mar 29 11:25:15 2013 Return-Path: Delivered-To: svn-ports-all@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 8AE01257; Fri, 29 Mar 2013 11:25:15 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 6F183B1A; Fri, 29 Mar 2013 11:25:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2TBPEXM062416; Fri, 29 Mar 2013 11:25:14 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2TBPE2t062414; Fri, 29 Mar 2013 11:25:14 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201303291125.r2TBPE2t062414@svn.freebsd.org> From: Bryan Drewery Date: Fri, 29 Mar 2013 11:25:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r315537 - head/ports-mgmt/poudriere-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Mar 2013 11:25:15 -0000 Author: bdrewery Date: Fri Mar 29 11:25:14 2013 New Revision: 315537 URL: http://svnweb.freebsd.org/changeset/ports/315537 Log: - Update to checkin 51586b2049 which will eventually become 3.0 This codebase has been in testing for several months now and is stable - Remove standard description for ZSH Changes: - ZFS support is now optional: * NO_ZFS can be set to disable ZFS usage * TMPFS_ALL can be used to the build 100% in memory via tmpfs - Jail/Port properties are no longer stored in ZFS. They will be automatically converted on the first execution. This means that downgrading to 2.x is not easily possible. - testport has lost -d - Remove cron - Add daemon (rc script not completed yet) - queue has been reworked for daemon (this may further change) - New HTML/AJAX interface using jQuery - Build times are now tracked - Runaway builds are now automatically killed after 1200/84600 seconds of no output / max build time - Build logs are now saved forever and not removed on every build. testport will store its logs into "bulk" dir for now as well. - Ability to resume a previous bulk -a build by using -B (this is mostly for exp-runs as it allows grouping incremental logs in with the previous logs). By default the buildname defaults to YYYY-MM-DD_HH:MM:SS for every build. - jail -c gjb method is now an alias for ftp - ports: Support checking out a different branch with -B - testport -i improvements: * Network enabled * Works even when build fails * RUN_DEPENDS now installed * tty usage still broken Thank you to all contributors and testers Please report and discuss defects in #poudriere on freenode or report to https://fossil.etoilebsd.net/poudriere/reportlist Modified: head/ports-mgmt/poudriere-devel/Makefile head/ports-mgmt/poudriere-devel/distinfo Modified: head/ports-mgmt/poudriere-devel/Makefile ============================================================================== --- head/ports-mgmt/poudriere-devel/Makefile Fri Mar 29 10:22:43 2013 (r315536) +++ head/ports-mgmt/poudriere-devel/Makefile Fri Mar 29 11:25:14 2013 (r315537) @@ -1,9 +1,10 @@ # $FreeBSD$ PORTNAME= poudriere -PORTVERSION= 2.4.99.20130325 +PORTVERSION= 3.0.99.20130327 CATEGORIES= ports-mgmt -MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/ +MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/ \ + LOCAL/bdrewery/${PORTNAME}/ PKGNAMESUFFIX= -devel DISTFILES= ${PORTNAME}-${PORTVERSION}.tar.gz?uuid=${FSL_CHKIN} @@ -13,23 +14,32 @@ COMMENT= Port build and test system LICENSE= BSD -FSL_CHKIN= ffeb57b4e9 +FSL_CHKIN= 51586b2049 -NO_BUILD= yes MANCOMPRESSED= yes MAN8= poudriere.8 -CONFLICTS_INSTALL= poudriere-[0-9]* - OPTIONS_DEFINE= ZSH -ZSH_DESC= Install zsh completion + +CONFLICTS_INSTALL= poudriere-[0-9]* PLIST_FILES= etc/poudriere.conf.sample \ bin/poudriere \ + libexec/poudriere/dirwatch \ + share/poudriere/awk/dependency_loop.awk \ + share/poudriere/awk/humanize.awk \ + share/poudriere/awk/json.awk \ + share/poudriere/awk/make_index.awk \ + share/poudriere/awk/siginfo_buildtime.awk \ + share/poudriere/html/index.html \ + share/poudriere/html/jquery-1.9.1.min.js \ + share/poudriere/html/logo.jpg \ + share/poudriere/html/poudriere.css \ + share/poudriere/html/poudriere.js \ share/poudriere/bulk.sh \ share/poudriere/clean.sh \ share/poudriere/common.sh \ - share/poudriere/cron.sh \ + share/poudriere/daemon.sh \ share/poudriere/distclean.sh \ share/poudriere/jail.sh \ share/poudriere/options.sh \ @@ -37,7 +47,10 @@ PLIST_FILES= etc/poudriere.conf.sample \ share/poudriere/queue.sh \ share/poudriere/testport.sh -PLIST_DIRS= share/poudriere +PLIST_DIRS= libexec/poudriere \ + share/poudriere/awk \ + share/poudriere/html \ + share/poudriere .include Modified: head/ports-mgmt/poudriere-devel/distinfo ============================================================================== --- head/ports-mgmt/poudriere-devel/distinfo Fri Mar 29 10:22:43 2013 (r315536) +++ head/ports-mgmt/poudriere-devel/distinfo Fri Mar 29 11:25:14 2013 (r315537) @@ -1,2 +1,2 @@ -SHA256 (poudriere-2.4.99.20130325.tar.gz?uuid=ffeb57b4e9) = 1504e3c92ec65e0da2ebf12b21369e366fdfddf8cf4e41908c602619e79d8899 -SIZE (poudriere-2.4.99.20130325.tar.gz?uuid=ffeb57b4e9) = 42066 +SHA256 (poudriere-3.0.99.20130327.tar.gz?uuid=51586b2049) = ffa4f9f3de32719fdc05204674fcefa28844cfbf603e7d1dc8356ac4c791ca60 +SIZE (poudriere-3.0.99.20130327.tar.gz?uuid=51586b2049) = 100412