From owner-svn-ports-head@freebsd.org Sat Feb 24 17:10:09 2018 Return-Path: Delivered-To: svn-ports-head@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 44473F2F127; Sat, 24 Feb 2018 17:10:09 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E2ECC6CF0E; Sat, 24 Feb 2018 17:10:08 +0000 (UTC) (envelope-from jrm@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 D930328631; Sat, 24 Feb 2018 17:10:08 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1OHA8Fu078678; Sat, 24 Feb 2018 17:10:08 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1OHA8Em078674; Sat, 24 Feb 2018 17:10:08 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201802241710.w1OHA8Em078674@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Sat, 24 Feb 2018 17:10:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462851 - in head/lang: . spec.alpha X-SVN-Group: ports-head X-SVN-Commit-Author: jrm X-SVN-Commit-Paths: in head/lang: . spec.alpha X-SVN-Commit-Revision: 462851 X-SVN-Commit-Repository: ports 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.25 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, 24 Feb 2018 17:10:09 -0000 Author: jrm Date: Sat Feb 24 17:10:08 2018 New Revision: 462851 URL: https://svnweb.freebsd.org/changeset/ports/462851 Log: lang/spec.alpha: New port; library dependency for Clojure 1.9 PR: 224251 Submitted by: Jens Grassel (maintainer) Added: head/lang/spec.alpha/ head/lang/spec.alpha/Makefile (contents, props changed) head/lang/spec.alpha/distinfo (contents, props changed) head/lang/spec.alpha/pkg-descr (contents, props changed) Modified: head/lang/Makefile (contents, props changed) Modified: head/lang/Makefile ============================================================================== --- head/lang/Makefile Sat Feb 24 16:31:36 2018 (r462850) +++ head/lang/Makefile Sat Feb 24 17:10:08 2018 (r462851) @@ -331,6 +331,7 @@ SUBDIR += smlnj SUBDIR += snobol4 SUBDIR += solidity + SUBDIR += spec.alpha SUBDIR += spidermonkey17 SUBDIR += spidermonkey170 SUBDIR += spidermonkey185 Added: head/lang/spec.alpha/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/spec.alpha/Makefile Sat Feb 24 17:10:08 2018 (r462851) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= spec.alpha +DISTVERSION= 0.1.143 +CATEGORIES= lang lisp java +MASTER_SITES= http://repo1.maven.org/maven2/org/clojure/spec.alpha/${PORTVERSION}/ +EXTRACT_SUFX= .jar +EXTRACT_ONLY= # empty + +MAINTAINER= jan0sch@mykolab.com +COMMENT= Clojure library to describe the structure of data and functions + +LICENSE= EPL + +USE_JAVA= yes +JAVA_VERSION= 1.6+ + +NO_BUILD= yes +PLIST_FILES= ${JAVAJARDIR}/spec.alpha.jar + +do-install: + ${INSTALL_DATA} ${DISTDIR}/${DISTFILES} ${STAGEDIR}${JAVAJARDIR}/spec.alpha.jar + +.include Added: head/lang/spec.alpha/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/spec.alpha/distinfo Sat Feb 24 17:10:08 2018 (r462851) @@ -0,0 +1,3 @@ +TIMESTAMP = 1515256360 +SHA256 (spec.alpha-0.1.143.jar) = 4b7936302843c03399e4c8741b9239fc088528dea19c7dd330c64c2269df6080 +SIZE (spec.alpha-0.1.143.jar) = 591287 Added: head/lang/spec.alpha/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/spec.alpha/pkg-descr Sat Feb 24 17:10:08 2018 (r462851) @@ -0,0 +1,17 @@ +spec.alpha + +spec is a Clojure library to describe the structure of data and functions. +Specs can be used to validate data, conform (destructure) data, explain +invalid data, generate examples that conform to the specs, and automatically +use generative testing to test functions. + +Clojure 1.9 depends on this library and provides it to users of Clojure. +Thus, the recommended way to use this library is to add a dependency on the +latest version of Clojure 1.9, rather than including it directly. In some +cases, this library may release more frequently than Clojure. In those cases, +you can explictly include the latest version of this library with the +dependency info below. + +For more information: + +WWW: https://clojure.org/about/spec