Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Apr 2013 17:11:36 -0500
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   Re: svn commit: r315913 - head/ports-mgmt/poudriere-devel
Message-ID:  <516DCC98.4040504@FreeBSD.org>
In-Reply-To: <201304162209.r3GM9F1g026968@svn.freebsd.org>
References:  <201304162209.r3GM9F1g026968@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
This is an OpenPGP/MIME signed message (RFC 4880 and 3156)
------enig2VFLTMBJBMXKOPUHRMWMH
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

On 4/16/2013 5:09 PM, Bryan Drewery wrote:
> Author: bdrewery
> Date: Tue Apr 16 22:09:15 2013
> New Revision: 315913
> URL: http://svnweb.freebsd.org/changeset/ports/315913
>=20
> Log:
>   - Update to checkin 52e5de4fd8
>  =20
>   Changes:
>         - Install depends just-in-time in the proper sequence ordering,=
 instead of all upfront.
>           This also fixes differences between testport and bulk with re=
gards to run-depends.
>         - Give a port all the special depends distfiles it needs during=
 build as well. This fixes
>           issues with fetching and distfiles.
>         - Add basic hook support in /usr/local/etc/poudriere.d/hooks
>         - bulk: New C index builder for pkg_* bulks
>         - bulk: Automatically detect direct dependency changes. This sh=
ould detect
>           postgresql/mysql/perl updates (change of default versions) wi=
thout
>           needing user interraction.
>         - Delete empty directories when cleaning up repositories
>         - Add ftp-archive method for old releases
>         - jail: consistently accept svn revision number
>         - bulk -T: Implement try-broken
>         - bulk -F: fetch-orginal - This flag tries to download from the=
 original mirror
>           and ignores all FreeBSD mirrors
>         - jail -c -P ./path.to.patch: Patch the src tree with the given=
 patch before building it
>         - Add a small C code to determine if a directory is empty (fast=
er than find for this)
>         - jail -u: Fix 'Error: 1 argument expected: jname'
>         - ports -F: Fix not populating method file
>         - ports -u: Fix backwards compatibility with snap dir
>         - Fix NO_ZFS still causing zfs.ko kernel module to be loaded
>         - Raise default nohang time to 7200 and add MAX_EXECUTION_TIME/=
NOHANG_TIME
>         - ports -d: Fix deleting the ports tree
>         - jail -d: Fix deleting jails
>         - testport: Add .keep support for wrkdir saving
>         - Speedup packaging by reducing I/O
>         - Fix crash in siginfo_handler() via cache_get_pkgname() if ori=
gin is empty
>         - ZSH completion fixes
>         - Documentaiton fixes
>         - Various leftover fixes
>         - Various other fixes
>  =20
>   Feature safe:	yes
>  =20
>   > Description of fields to fill in above:                     76 colu=
mns --|
>   > PR:            If a GNATS PR is affected by the change.
>   > Submitted by:  If someone else sent in the change.
>   > Reviewed by:   If someone else reviewed your modification.
>   > Approved by:   If you needed approval for this commit.
>   > Obtained from: If the change is from a third party.
>   > MFC after:     N [day[s]|week[s]|month[s]].  Request a reminder ema=
il.
>   > Security:      Vulnerability reference (one per line) or descriptio=
n.
>   > Sponsored by:  If the change was sponsored by an organization.
>   > Empty fields above will be automatically removed.
>  =20
>   M    poudriere-devel/distinfo
>   M    poudriere-devel/Makefile

Haha, woops.

>=20
> Modified:
>   head/ports-mgmt/poudriere-devel/Makefile
>   head/ports-mgmt/poudriere-devel/distinfo
>=20
> Modified: head/ports-mgmt/poudriere-devel/Makefile
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D
> --- head/ports-mgmt/poudriere-devel/Makefile	Tue Apr 16 22:05:34 2013	(=
r315912)
> +++ head/ports-mgmt/poudriere-devel/Makefile	Tue Apr 16 22:09:15 2013	(=
r315913)
> @@ -1,7 +1,7 @@
>  # $FreeBSD$
> =20
>  PORTNAME=3D	poudriere
> -PORTVERSION=3D	3.0.99.20130327
> +PORTVERSION=3D	3.0.99.20130416
>  CATEGORIES=3D	ports-mgmt
>  MASTER_SITES=3D	http://fossil.etoilebsd.net/poudriere/tarball/ \
>  		LOCAL/bdrewery/${PORTNAME}/
> @@ -14,7 +14,7 @@ COMMENT=3D	Port build and test system
> =20
>  LICENSE=3D	BSD
> =20
> -FSL_CHKIN=3D	51586b2049
> +FSL_CHKIN=3D	52e5de4fd8
> =20
>  MANCOMPRESSED=3D	yes
>  MAN8=3D	poudriere.8
> @@ -26,6 +26,8 @@ CONFLICTS_INSTALL=3D	poudriere-[0-9]*
>  PLIST_FILES=3D	etc/poudriere.conf.sample \
>  		bin/poudriere \
>  		libexec/poudriere/dirwatch \
> +		libexec/poudriere/dirempty \
> +		libexec/poudriere/make_index \
>  		share/poudriere/awk/dependency_loop.awk \
>  		share/poudriere/awk/humanize.awk \
>  		share/poudriere/awk/json.awk \
>=20
> Modified: head/ports-mgmt/poudriere-devel/distinfo
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D
> --- head/ports-mgmt/poudriere-devel/distinfo	Tue Apr 16 22:05:34 2013	(=
r315912)
> +++ head/ports-mgmt/poudriere-devel/distinfo	Tue Apr 16 22:09:15 2013	(=
r315913)
> @@ -1,2 +1,2 @@
> -SHA256 (poudriere-3.0.99.20130327.tar.gz?uuid=3D51586b2049) =3D ffa4f9=
f3de32719fdc05204674fcefa28844cfbf603e7d1dc8356ac4c791ca60
> -SIZE (poudriere-3.0.99.20130327.tar.gz?uuid=3D51586b2049) =3D 100412
> +SHA256 (poudriere-3.0.99.20130416.tar.gz?uuid=3D52e5de4fd8) =3D 6747d1=
f7cb801e9a2d34e66dff479b65502f667a06703975d3b238710b00dda6
> +SIZE (poudriere-3.0.99.20130416.tar.gz?uuid=3D52e5de4fd8) =3D 104759
>=20


--=20
Regards,
Bryan Drewery


------enig2VFLTMBJBMXKOPUHRMWMH
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: OpenPGP digital signature
Content-Disposition: attachment; filename="signature.asc"

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQIcBAEBAgAGBQJRbcycAAoJEG54KsA8mwz5CQYP/RA3SMYUO0FaFXIPzvedu/5a
mOfDKM3fZZ0ggG7BZcZ2APfZ9eYFCQw11dG0wnwXyqf0YQcghiHV4JNlclbmizTJ
jFfmVFj2yS+yW7KZRzKh+/pcQLnxh5CArLwEGPooeF9Z8fGmGhb+wLsZMp/ER+uW
AR8tFxGZN4w5Hk4V4MopzQsLHRhVktntPBVf4qQ+zDVY8DG/ENxY7OkhdYGcRtEp
DxGmNxkcmtI9esc8aA6WOnND6VRsNY8QRr4iKG/CdtnmfZ/eYx8b1J3yHIJsPYoM
rCGdGtxO1TRgEyafnhckdsP9ZikM6FtdsmhmOd8abEOC+e+YayBct80KJGLeKHNK
Ps82T2v2iSC5CXsWvAoHgKvUTDhmX3tvXDRCeYJuAoLiBr4ubdeLinkS09OXK+Gz
SwfPUnkqWMm97XwY4og2atnTO/FLXl2vdF8fS56OgPCdiut7bN4c3pA6sAHeSULh
x8xlcAs6qsAE2Sf+zZPxzZGM1sqwiMzCJO+AjJYro9XhmW3ueslo3qmRxCK/K27+
ZWvTVvkQTKZdXuLuXM7SPu0PnY7mlpE0ZpmwJAomRn/6wYN43s76EX7dswDHbF22
YUz6PF0cLr4jlcVkCd/TcTKMcB5yl/hMmYRIJhVKW31xuXUgHnbvmSGliO/JLkGR
plCYzkq1gpzDgTbaOOyd
=B8Gn
-----END PGP SIGNATURE-----

------enig2VFLTMBJBMXKOPUHRMWMH--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?516DCC98.4040504>