From owner-svn-ports-all@FreeBSD.ORG Sat May 2 19:48:53 2015 Return-Path: Delivered-To: svn-ports-all@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 64DB66C0; Sat, 2 May 2015 19:48:53 +0000 (UTC) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "relay.issp.ac.ru", Issuer "relay.issp.ac.ru" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id D9F751DDB; Sat, 2 May 2015 19:48:52 +0000 (UTC) Received: from host-217-197-197-144.rev.as20985.net [217.197.197.144:56137] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with PLAIN) by mail.issp.ac.ru with ESMTP/inet id t42JklnC025559 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-GCM-SHA384 (256 bits), verified NO) Sat, 2 May 2015 22:46:47 +0300 (MSK) X-Authentication-Warning: mail.issp.ac.ru: Host host-217-197-197-144.rev.as20985.net [217.197.197.144] claimed to be mercury.ph.man.ac.uk From: Max Brazhnikov To: Kurt Jaeger Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r385202 - head/java/junit Date: Sat, 02 May 2015 19:46:06 +0000 Message-ID: <10839610.e5Z7ptFl8I@mercury.ph.man.ac.uk> User-Agent: KMail/4.14.3 (FreeBSD/10.1-STABLE; KDE/4.14.3; amd64; ; ) In-Reply-To: <201505021800.t42I0xaa004772@svn.freebsd.org> References: <201505021800.t42I0xaa004772@svn.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 May 2015 19:48:53 -0000 On Sat, 2 May 2015 18:00:59 +0000 (UTC)Sat May 2 18:00:59 2015 Kurt Jaeger wrote: > Author: pi > Date: Sat May 2 18:00:59 2015 > New Revision: 385202 > URL: https://svnweb.freebsd.org/changeset/ports/385202 > > Log: > java/junit: 4.11 -> 4.12 > > Changes: > https://github.com/junit-team/junit/blob/master/doc/ReleaseNotes4.12.md > > Moved from building from source with ant to using the binary jar file, > as the new build mechanism is based on maven. java/hamcrest was split > from 4.12. > > PR: 192575 > Submitted by: danilo (maintainer), kevin.bowling@kev009.com Thanks for update! Could you also commit the patch for libreoffice from this PR? > Modified: > head/java/junit/Makefile > head/java/junit/distinfo > > Modified: head/java/junit/Makefile > ============================================================================== > --- head/java/junit/Makefile Sat May 2 17:59:00 2015 (r385201) > +++ head/java/junit/Makefile Sat May 2 18:00:59 2015 (r385202) > @@ -2,45 +2,31 @@ > # $FreeBSD$ > > PORTNAME= junit > -PORTVERSION= 4.11 > -PORTREVISION= 1 > +PORTVERSION= 4.12 > CATEGORIES= java devel > -MASTER_SITES= GHL > -DISTNAME= ${PORTNAME}${PORTVERSION} > +MASTER_SITES= http://repo1.maven.org/maven2/${PORTNAME}/${PORTNAME}/${PORTVERSION}/ > +DISTFILES= ${PORTNAME}-${PORTVERSION}.jar ${PORTNAME}-${PORTVERSION}-sources.jar > +EXTRACT_ONLY= > > MAINTAINER= danilo@FreeBSD.org > COMMENT= Regression testing utility for use with the Java(TM) Language > > -USE_GITHUB= yes > -GH_ACCOUNT= junit-team > -GH_PROJECT= ${PORTNAME} > -GH_TAGNAME= r${PORTVERSION} > -GH_COMMIT= c62e2df > +RUN_DEPENDS= ${JAVAJARDIR}/hamcrest.jar:${PORTSDIR}/java/hamcrest Does junit need hamcrest? or this is just a workaround instead of adding hamcrest directly to the ports that use it, e.g. libreoffice?