1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

- update to 2.0.0

- changes since 1.5.x:
  * parallel build, can build multiple packages at the same time
  * options discovering rebuilding
  * huge performance improvements in sanity check
  * better output (close to tinderbox)
  * better log separation
  * better leftover discovery
  * many bug fixes
This commit is contained in:
Baptiste Daroussin 2012-08-28 15:58:46 +00:00
parent 53a457cb44
commit 2290dd6bee
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=303290
3 changed files with 5 additions and 29 deletions

View File

@ -6,8 +6,7 @@
#
PORTNAME= poudriere
PORTVERSION= 1.5.4
PORTREVISION= 1
PORTVERSION= 2.0.0
CATEGORIES= ports-mgmt
MASTER_SITES= http://files.etoilebsd.net/poudriere/
@ -27,6 +26,7 @@ CONFLICTS_INSTALL= poudriere-devel-*
PLIST_FILES= etc/poudriere.conf.sample \
bin/poudriere \
share/poudriere/clean.sh \
share/poudriere/common.sh \
share/poudriere/test_ports.sh \
share/poudriere/ports.sh \
@ -35,11 +35,8 @@ PLIST_FILES= etc/poudriere.conf.sample \
share/poudriere/bulk.sh \
share/poudriere/cron.sh \
share/poudriere/queue.sh \
poudriere/cron/.keep
PLIST_DIRS= share/poudriere \
poudriere/cron \
poudriere
PLIST_DIRS= share/poudriere
.include <bsd.port.options.mk>
@ -53,7 +50,6 @@ post-patch:
@${FIND} ${WRKSRC} -name "*.orig" -delete
post-install:
@${TOUCH} ${PREFIX}/poudriere/cron/.keep
.if defined(WITH_ZSH)
@${MKDIR} ${PREFIX}/share/zsh/site-functions/
@${INSTALL_DATA} ${WRKSRC}/zsh-completions ${PREFIX}/share/zsh/site-functions/_poudriere

View File

@ -1,2 +1,2 @@
SHA256 (poudriere-1.5.4.tar.gz) = a50cbed9d2f7319d0b350bd2db3f6b14d93f9e27543684a4858c4c88bc00934f
SIZE (poudriere-1.5.4.tar.gz) = 23530
SHA256 (poudriere-2.0.0.tar.gz) = d1e4bbcc19f777d52e97d72b968f3be212b7d0a91f9e55a5fbdb9bece822fe1a
SIZE (poudriere-2.0.0.tar.gz) = 29267

View File

@ -1,20 +0,0 @@
--- ./src/poudriere.d/common.sh.orig 2012-07-04 12:38:06.000000000 +0200
+++ ./src/poudriere.d/common.sh 2012-07-24 10:58:57.289711665 +0200
@@ -610,7 +610,7 @@
local pn
msg "Caching missing port versions"
while read port; do
- if ! egrep -q "^${port} " ${cache}; then
+ if ! grep -q "^${port} " ${cache}; then
pn=$(injail make -C /usr/ports/${port} -VPKGNAME)
echo "${port} ${pn}" >> ${cache}
fi
@@ -635,7 +635,7 @@
export LOCALBASE=${MYBASE:-/usr/local}
while read p; do
pn=$(awk -v o=${p} ' { if ($1 == o) {print $2} }' ${cache})
- [ ! -f ${PKGDIR}/All/${pn}.${EXT} ] && queue="${queue} $p"
+ [ ! -f "${PKGDIR}/All/${pn}.${EXT}" ] && queue="${queue} $p"
done < ${tmplist2}
rm -f ${tmplist2} ${deplist} ${tmplist}