diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2013-03-24 20:44:26 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2013-03-24 20:44:26 +0800 |
commit | 81a2f26554339c38d4c1293e177fe2ad7508e011 (patch) | |
tree | 690006e587d189ccec11100cdb394f99e483e05f /ports-mgmt | |
parent | 2bdb23fedc7c8ea830c0c9579e0575dc3423f482 (diff) | |
download | freebsd-ports-gnome-81a2f26554339c38d4c1293e177fe2ad7508e011.tar.gz freebsd-ports-gnome-81a2f26554339c38d4c1293e177fe2ad7508e011.tar.zst freebsd-ports-gnome-81a2f26554339c38d4c1293e177fe2ad7508e011.zip |
- Update to 2.4
This will be the last 2.x release. The 3.0 release will have
optional support for NO ZFS and is currently in testing.
- Convert tab to space in WWW
Changes:
- cron: This is now deprecated and will be replaced in 3.0 with a daemon
- testport: -d support has been deprecated and will be removed in 3.0. Use
-p instead.
- testport: Add interactive test mode with -i
- bulk: Add -vv to display which dependencies are required and causing
rebuilds
- jail: Validate that jails do not contain a '.' per jail(8) restrictions
- options: Fix options not properly recursing based on changed options
- bulk: The queue is now processed through a priority based on how many
other ports depend on the port that is ready-to-build [1]
- bulk: Add -R option to remove RESTRICTED packages after building
- bulk: Fix INDEX building
- Builds now mount packages, ports, distfiles and options as read-only
They are allowed to have changes made only in specific phases. Note that
'testport -c' is currently broken due to this.
- Fix IPv6-only hosts
- Build logs now include make.conf
- Improved leftover detection using mtree
- Ports now only have distfiles available to them that are registered in
their distinfo.
- Leftovers now use the entire PLIST_SUB list
- Fix WRKDIR being saved on extract failures
- More build performance improvements
- Improved stuck queue error displaying and handling
- TMPFS_LOCALBASE support added
- More sanity checks added for broken ports
- ports: csup support removed as CVS is EoL
- testport: Fix port's PREFIX not being respected
- ports: Fix svn+https support [2]
- Ability to always save WRKDIR if a .keep file is present
Submitted by: Matthew Dillon <dillon@apollo.backplane.com> [1] (based on)
Submitted by: antoine [2]
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/poudriere/Makefile | 7 | ||||
-rw-r--r-- | ports-mgmt/poudriere/distinfo | 4 | ||||
-rw-r--r-- | ports-mgmt/poudriere/pkg-descr | 2 |
3 files changed, 7 insertions, 6 deletions
diff --git a/ports-mgmt/poudriere/Makefile b/ports-mgmt/poudriere/Makefile index ff81212d1cda..c72e4a16a7e1 100644 --- a/ports-mgmt/poudriere/Makefile +++ b/ports-mgmt/poudriere/Makefile @@ -1,9 +1,10 @@ # $FreeBSD$ PORTNAME= poudriere -PORTVERSION= 2.3.1 +PORTVERSION= 2.4 CATEGORIES= ports-mgmt -MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/ +MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/ \ + LOCAL/bdrewery/${PORTNAME}/ DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}?uuid=${PORTVERSION} # Also maintained by bdrewery@freeBSD.org @@ -32,7 +33,7 @@ PLIST_FILES= etc/poudriere.conf.sample \ share/poudriere/options.sh \ share/poudriere/ports.sh \ share/poudriere/queue.sh \ - share/poudriere/test_ports.sh + share/poudriere/testport.sh PLIST_DIRS= share/poudriere diff --git a/ports-mgmt/poudriere/distinfo b/ports-mgmt/poudriere/distinfo index b172d143ca63..4a71fa22c7a2 100644 --- a/ports-mgmt/poudriere/distinfo +++ b/ports-mgmt/poudriere/distinfo @@ -1,2 +1,2 @@ -SHA256 (poudriere-2.3.1.tar.gz?uuid=2.3.1) = a36d86907beb95ee67188f7d2cc7304ff6972d6de15e0ae7a7570418d95e3e35 -SIZE (poudriere-2.3.1.tar.gz?uuid=2.3.1) = 39775 +SHA256 (poudriere-2.4.tar.gz?uuid=2.4) = 102e600a80f8aaa107a8c3272610af2f1ec3146bf43be0d102205b7455885d53 +SIZE (poudriere-2.4.tar.gz?uuid=2.4) = 42006 diff --git a/ports-mgmt/poudriere/pkg-descr b/ports-mgmt/poudriere/pkg-descr index ee390600970a..13bbea4cce39 100644 --- a/ports-mgmt/poudriere/pkg-descr +++ b/ports-mgmt/poudriere/pkg-descr @@ -2,4 +2,4 @@ poudriere is a tool primarily designed to test package production on FreeBSD. However, most people will find it useful to bulk build ports for FreeBSD. -WWW: http://fossil.etoilebsd.net/poudriere +WWW: http://fossil.etoilebsd.net/poudriere |