From owner-svn-ports-all@freebsd.org Sat Feb 23 14:30:08 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 17B6A1517E18; Sat, 23 Feb 2019 14:30:08 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B29CE8D16F; Sat, 23 Feb 2019 14:30:07 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A5A2E1E8B2; Sat, 23 Feb 2019 14:30:07 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1NEU7Q1067948; Sat, 23 Feb 2019 14:30:07 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1NEU6V8067944; Sat, 23 Feb 2019 14:30:06 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201902231430.x1NEU6V8067944@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sat, 23 Feb 2019 14:30:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493680 - in head/devel: . mill X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/devel: . mill X-SVN-Commit-Revision: 493680 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B29CE8D16F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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, 23 Feb 2019 14:30:08 -0000 Author: tobik Date: Sat Feb 23 14:30:06 2019 New Revision: 493680 URL: https://svnweb.freebsd.org/changeset/ports/493680 Log: New port: devel/mill Mill is your shiny new Java/Scala build tool! Scared of SBT? Melancholy over Maven? Grumbling about Gradle? Baffled by Bazel? Give Mill a try! Mill aims for simplicity by re-using concepts you are already familiar with, borrowing ideas from modern tools like Bazel, to let you build your projects in a way that's simple, fast, and predictable. Mill has built in support for the Scala programming language, and can serve as a replacement for SBT, but can also be extended to support any other language or platform via modules (written in Java or Scala) or through external subprocesses. WWW: https://www.lihaoyi.com/mill/ PR: 235861 Submitted by: Jens Grassel Added: head/devel/mill/ head/devel/mill/Makefile (contents, props changed) head/devel/mill/distinfo (contents, props changed) head/devel/mill/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Feb 23 14:29:54 2019 (r493679) +++ head/devel/Makefile Sat Feb 23 14:30:06 2019 (r493680) @@ -1772,6 +1772,7 @@ SUBDIR += mercurialeclipse SUBDIR += mergify SUBDIR += meson + SUBDIR += mill SUBDIR += mime SUBDIR += mimir SUBDIR += mingw32-bin-msvcrt Added: head/devel/mill/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mill/Makefile Sat Feb 23 14:30:06 2019 (r493680) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= mill +DISTVERSION= 0.3.6 +CATEGORIES= devel java +MASTER_SITES= https://github.com/lihaoyi/mill/releases/download/${PORTVERSION}/ +DISTNAME= ${PORTVERSION} +EXTRACT_SUFX= +DIST_SUBDIR= ${PORTNAME} +EXTRACT_ONLY= + +MAINTAINER= freebsd-ports@jan0sch.de +COMMENT= Mill is a Java/Scala build tool + +LICENSE= MIT + +USE_JAVA= yes + +JAVA_VERSION= 1.8+ +NO_BUILD= yes +NO_ARCH= yes + +PLIST_FILES= bin/mill + +do-extract: + @${MKDIR} ${WRKSRC} + @${CP} ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME} ${WRKSRC} + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${DISTNAME} \ + ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include Added: head/devel/mill/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mill/distinfo Sat Feb 23 14:30:06 2019 (r493680) @@ -0,0 +1,3 @@ +TIMESTAMP = 1550589431 +SHA256 (mill/0.3.6) = 8112a29395c9039bd0c41bf77c89b2cb5dc6d7f4faf67dc443bc2893280254b5 +SIZE (mill/0.3.6) = 32030757 Added: head/devel/mill/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mill/pkg-descr Sat Feb 23 14:30:06 2019 (r493680) @@ -0,0 +1,14 @@ +Mill is your shiny new Java/Scala build tool! Scared of SBT? +Melancholy over Maven? Grumbling about Gradle? Baffled by Bazel? +Give Mill a try! + +Mill aims for simplicity by re-using concepts you are already +familiar with, borrowing ideas from modern tools like Bazel, to let +you build your projects in a way that's simple, fast, and predictable. + +Mill has built in support for the Scala programming language, and +can serve as a replacement for SBT, but can also be extended to +support any other language or platform via modules (written in Java +or Scala) or through external subprocesses. + +WWW: https://www.lihaoyi.com/mill/