From owner-svn-ports-head@FreeBSD.ORG Sat May 2 07:05:59 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0EAB2FEA; Sat, 2 May 2015 07:05:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F0DA1174B; Sat, 2 May 2015 07:05:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4275wxL077831; Sat, 2 May 2015 07:05:58 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4275ve1077827; Sat, 2 May 2015 07:05:57 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201505020705.t4275ve1077827@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 2 May 2015 07:05:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385166 - in head/java: . hamcrest X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 May 2015 07:05:59 -0000 Author: pi Date: Sat May 2 07:05:57 2015 New Revision: 385166 URL: https://svnweb.freebsd.org/changeset/ports/385166 Log: New port: java/hamcrest Provides a library of matcher objects (also known as constraints or predicates) allowing 'match' rules to be defined declaratively, to be used in other frameworks. Typical scenarios include testing frameworks, mocking libraries and UI validation rules. WWW: http://hamcrest.org/ PR: 192575 Submitted by: danilo Added: head/java/hamcrest/ head/java/hamcrest/Makefile (contents, props changed) head/java/hamcrest/distinfo (contents, props changed) head/java/hamcrest/pkg-descr (contents, props changed) Modified: head/java/Makefile Modified: head/java/Makefile ============================================================================== --- head/java/Makefile Sat May 2 03:52:09 2015 (r385165) +++ head/java/Makefile Sat May 2 07:05:57 2015 (r385166) @@ -25,6 +25,7 @@ SUBDIR += eclipse-pydev SUBDIR += eclipse-shelled SUBDIR += eclipse-windowbuilder + SUBDIR += hamcrest SUBDIR += icedtea-web SUBDIR += infobus SUBDIR += jad Added: head/java/hamcrest/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/hamcrest/Makefile Sat May 2 07:05:57 2015 (r385166) @@ -0,0 +1,30 @@ +# Created by: Danilo Egea Gondolfo Added: head/java/hamcrest/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/hamcrest/distinfo Sat May 2 07:05:57 2015 (r385166) @@ -0,0 +1,4 @@ +SHA256 (hamcrest-all-1.3.jar) = 4877670629ab96f34f5f90ab283125fcd9acb7e683e66319a68be6eb2cca60de +SIZE (hamcrest-all-1.3.jar) = 306578 +SHA256 (hamcrest-all-1.3-sources.jar) = c53535c3d25b5bf0b00a324a5583c7dd2fed0fa6d1bbc622e2dec460c24faab3 +SIZE (hamcrest-all-1.3-sources.jar) = 87801 Added: head/java/hamcrest/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/hamcrest/pkg-descr Sat May 2 07:05:57 2015 (r385166) @@ -0,0 +1,7 @@ +Provides a library of matcher objects (also known as +constraints or predicates) allowing 'match' rules to +be defined declaratively, to be used in other frameworks. +Typical scenarios include testing frameworks, mocking libraries +and UI validation rules. + +WWW: http://hamcrest.org/