Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 Aug 2015 19:14:44 +0000 (UTC)
From:      Veniamin Gvozdikov <vg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r393608 - in head/converters: . ocaml-base64
Message-ID:  <201508051914.t75JEiAO091556@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: vg
Date: Wed Aug  5 19:14:43 2015
New Revision: 393608
URL: https://svnweb.freebsd.org/changeset/ports/393608

Log:
  New port: converters/ocaml-base64
  
  Base64 is a group of similar binary-to-text encoding schemes that
  represent binary data in an ASCII string format by translating it
  into a radix-64 representation. It is specified in RFC 4648.
  
  WWW: https://github.com/mirage/ocaml-base64

Added:
  head/converters/ocaml-base64/
  head/converters/ocaml-base64/Makefile   (contents, props changed)
  head/converters/ocaml-base64/distinfo   (contents, props changed)
  head/converters/ocaml-base64/pkg-descr   (contents, props changed)
Modified:
  head/converters/Makefile

Modified: head/converters/Makefile
==============================================================================
--- head/converters/Makefile	Wed Aug  5 19:13:24 2015	(r393607)
+++ head/converters/Makefile	Wed Aug  5 19:14:43 2015	(r393608)
@@ -50,6 +50,7 @@
     SUBDIR += mpack
     SUBDIR += nomyso
     SUBDIR += o3read
+    SUBDIR += ocaml-base64
     SUBDIR += ocaml-jsonm
     SUBDIR += osm2mp
     SUBDIR += osm2pgsql

Added: head/converters/ocaml-base64/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/ocaml-base64/Makefile	Wed Aug  5 19:14:43 2015	(r393608)
@@ -0,0 +1,29 @@
+# Created by: Veniamin Gvozdikov <vg@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	base64
+PORTVERSION=	2.0.0
+CATEGORIES=	converters
+PKGNAMEPREFIX=	ocaml-
+
+MAINTAINER=	vg@FreeBSD.org
+COMMENT=	Base64 encoding and decoding in OCaml
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	mirage
+GH_PROJECT=	ocaml-base64
+GH_TAGNAME=	v${PORTVERSION}
+
+USES=			gmake
+HAS_CONFIGURE=		yes
+MAKE_JOBS_UNSAFE=	yes
+
+USE_OCAML=		yes
+USE_OCAML_FINDLIB=	yes
+USE_OCAMLFIND_PLIST=	yes
+USE_OCAML_LDCONFIG=	yes
+DOCSDIR=	${PREFIX}/share/doc/pcre-ocaml
+
+CONFIGURE_ARGS=		--destdir="${DESTDIRNAME}"
+
+.include <bsd.port.mk>

Added: head/converters/ocaml-base64/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/ocaml-base64/distinfo	Wed Aug  5 19:14:43 2015	(r393608)
@@ -0,0 +1,2 @@
+SHA256 (mirage-ocaml-base64-2.0.0-v2.0.0_GH0.tar.gz) = 029b6a7af1493a077dc25c8e0f3534e5f5ff6e4260e3998a9ca3850fb7238c2c
+SIZE (mirage-ocaml-base64-2.0.0-v2.0.0_GH0.tar.gz) = 46084

Added: head/converters/ocaml-base64/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/ocaml-base64/pkg-descr	Wed Aug  5 19:14:43 2015	(r393608)
@@ -0,0 +1,5 @@
+Base64 is a group of similar binary-to-text encoding schemes that
+represent binary data in an ASCII string format by translating it
+into a radix-64 representation. It is specified in RFC 4648.
+
+WWW: https://github.com/mirage/ocaml-base64



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