View | Details | Raw Unified | Return to bug 224251 | Differences between
and this patch

Collapse All | Expand All

(-)spec.alpha/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1515256360
2
SHA256 (spec.alpha-0.1.143.jar) = 4b7936302843c03399e4c8741b9239fc088528dea19c7dd330c64c2269df6080
3
SIZE (spec.alpha-0.1.143.jar) = 591287
(-)spec.alpha/Makefile (+25 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	spec.alpha
4
DISTVERSION=	0.1.143
5
CATEGORIES=	lang lisp java
6
MASTER_SITES=	http://repo1.maven.org/maven2/org/clojure/spec.alpha/${PORTVERSION}/
7
EXTRACT_SUFX=   .jar
8
EXTRACT_ONLY=   # empty
9
10
MAINTAINER=	jan0sch@mykolab.com
11
COMMENT=	A Clojure library to describe the structure of data and functions.
12
13
LICENSE=	EPL
14
15
USE_JAVA=	yes
16
JAVA_VERSION=	1.6+
17
NO_BUILD=	yes
18
19
PLIST_FILES=	%%JAVAJARDIR%%/spec.alpha-${PORTVERSION}.jar
20
21
do-install:
22
	${INSTALL_DATA} ${DISTDIR}/${DISTFILES} ${STAGEDIR}${JAVAJARDIR}/spec.alpha-${PORTVERSION}.jar
23
24
.include <bsd.port.mk>
25
(-)spec.alpha/pkg-descr (+12 lines)
Line 0 Link Here
1
spec.alpha
2
3
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.
4
5
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.
6
7
For more information:
8
9
Rationale - https://clojure.org/about/spec
10
Guide - https://clojure.org/guides/spec
11
Spec split notice - https://groups.google.com/forum/#!msg/clojure/10dbF7w2IQo/ec37TzP5AQAJ
12

Return to bug 224251