svn commit: r304034 - head/ports-mgmt/poudriere
Baptiste Daroussin
bapt at FreeBSD.org
Mon Sep 10 13:13:32 UTC 2012
Author: bapt
Date: Mon Sep 10 13:13:31 2012
New Revision: 304034
URL: http://svn.freebsd.org/changeset/ports/304034
Log:
- update to 2.1.0
- changes:
* new poudriere options command to be able to configure options interractively
* bulk can now take list of ports to build via command line
* html build stats
* ability to disable linux support
* ability to disable PACKAGE_BUILDING
* native support for ccache
* deprecated csup for ports
* Set HOME to fix some port builds (erlang for example)
* Fix pool being deleted during builds
* Detect improper dependency on different ports for the same package
* Cleanup build stats sooner when starting bulk
* lots of performance improvements
* lots of fixes and refactoring in error handling
* allow to choose custom path on the pool for the zfs filesystems
* now skip (and track as skipped ports dependening on a failing dependency)
* siginfo support
* new -d options for bulk and testport, to enable debugging mode
Modified:
head/ports-mgmt/poudriere/Makefile
head/ports-mgmt/poudriere/distinfo
Modified: head/ports-mgmt/poudriere/Makefile
==============================================================================
--- head/ports-mgmt/poudriere/Makefile Mon Sep 10 12:56:16 2012 (r304033)
+++ head/ports-mgmt/poudriere/Makefile Mon Sep 10 13:13:31 2012 (r304034)
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= poudriere
-PORTVERSION= 2.0.1
+PORTVERSION= 2.1.0
CATEGORIES= ports-mgmt
MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/
DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}?uuid=${PORTVERSION}
@@ -31,22 +31,20 @@ PLIST_FILES= etc/poudriere.conf.sample \
share/poudriere/bulk.sh \
share/poudriere/cron.sh \
share/poudriere/queue.sh \
+ share/poudriere/options.sh \
PLIST_DIRS= share/poudriere
.include <bsd.port.options.mk>
-.if defined(WITH_ZSH)
+.if ${PORT_OPTIONS:MZSH}
PLIST_FILES+= share/zsh/site-functions/_poudriere
PLIST_DIRSTRY+= share/zsh/site-functions
PLIST_DIRSTRY+= share/zsh/
.endif
-post-patch:
- @${FIND} ${WRKSRC} -name "*.orig" -delete
-
post-install:
-.if defined(WITH_ZSH)
+.if ${PORT_OPTIONS:MZSH}
@${MKDIR} ${PREFIX}/share/zsh/site-functions/
@${INSTALL_DATA} ${WRKSRC}/zsh-completions ${PREFIX}/share/zsh/site-functions/_poudriere
.endif
Modified: head/ports-mgmt/poudriere/distinfo
==============================================================================
--- head/ports-mgmt/poudriere/distinfo Mon Sep 10 12:56:16 2012 (r304033)
+++ head/ports-mgmt/poudriere/distinfo Mon Sep 10 13:13:31 2012 (r304034)
@@ -1,2 +1,2 @@
-SHA256 (poudriere-2.0.1.tar.gz?uuid=2.0.1) = 8947cdccc53796b2266713512a6435e16899e85c197b19cb4103372aec49aac2
-SIZE (poudriere-2.0.1.tar.gz?uuid=2.0.1) = 29270
+SHA256 (poudriere-2.1.0.tar.gz?uuid=2.1.0) = e26abfe04317222d61f7d8e7de13956bd35e92c951aba560458809e05a46bb36
+SIZE (poudriere-2.1.0.tar.gz?uuid=2.1.0) = 33385
More information about the svn-ports-all
mailing list