Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 2 Sep 2016 08:11:10 +0000 (UTC)
From:      "Vanilla I. Shu" <vanilla@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r421255 - in head/devel: . cjose
Message-ID:  <201609020811.u828BAKH009258@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: vanilla
Date: Fri Sep  2 08:11:10 2016
New Revision: 421255
URL: https://svnweb.freebsd.org/changeset/ports/421255

Log:
  Add cjose 0.4.1, c library implementing Javascript Object Signing &
  Encryption (JOSE).
  
  PR:		212314
  Submitted by:	jamie@chair6.net

Added:
  head/devel/cjose/
  head/devel/cjose/Makefile   (contents, props changed)
  head/devel/cjose/distinfo   (contents, props changed)
  head/devel/cjose/pkg-descr   (contents, props changed)
  head/devel/cjose/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Sep  2 07:48:45 2016	(r421254)
+++ head/devel/Makefile	Fri Sep  2 08:11:10 2016	(r421255)
@@ -244,6 +244,7 @@
     SUBDIR += chruby
     SUBDIR += cil
     SUBDIR += cityhash
+    SUBDIR += cjose
     SUBDIR += cl-alexandria
     SUBDIR += cl-alexandria-sbcl
     SUBDIR += cl-asdf

Added: head/devel/cjose/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/cjose/Makefile	Fri Sep  2 08:11:10 2016	(r421255)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	cjose
+PORTVERSION=	0.4.1
+CATEGORIES=	devel
+
+MAINTAINER=	jamie@chair6.net
+COMMENT=	C library implementing Javascript Object Signing & Encryption (JOSE)
+
+LICENSE=	MIT
+
+LIB_DEPENDS+=	libjansson.so:devel/jansson
+
+USES=		libtool pathfix ssl
+USE_LDCONFIG=	yes
+INSTALL_TARGET=	install-strip
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	cisco
+GH_PROJECT=	cjose
+
+GNU_CONFIGURE=	yes
+CONFIGURE_ARGS=	--with-jansson=${PREFIX} --with-openssl=${PREFIX}
+
+.include <bsd.port.mk>

Added: head/devel/cjose/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/cjose/distinfo	Fri Sep  2 08:11:10 2016	(r421255)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1472803526
+SHA256 (cisco-cjose-0.4.1_GH0.tar.gz) = b8077070672d730b2fe638abb9559dea2560297fd9b3fb76018100b1c115015b
+SIZE (cisco-cjose-0.4.1_GH0.tar.gz) = 458026

Added: head/devel/cjose/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/cjose/pkg-descr	Fri Sep  2 08:11:10 2016	(r421255)
@@ -0,0 +1,4 @@
+cjose is a C library implementing the Javascript Object Signing and
+Encryption (JOSE) framework.
+
+WWW: https://github.com/cisco/cjose

Added: head/devel/cjose/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/cjose/pkg-plist	Fri Sep  2 08:11:10 2016	(r421255)
@@ -0,0 +1,14 @@
+include/cjose/base64.h
+include/cjose/cjose.h
+include/cjose/error.h
+include/cjose/header.h
+include/cjose/jwe.h
+include/cjose/jwk.h
+include/cjose/jws.h
+include/cjose/util.h
+include/cjose/version.h
+lib/libcjose.a
+lib/libcjose.so
+lib/libcjose.so.0
+lib/libcjose.so.0.0.0
+libdata/pkgconfig/cjose.pc



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609020811.u828BAKH009258>