svn commit: r393608 - in head/converters: . ocaml-base64

Veniamin Gvozdikov vg at FreeBSD.org
Wed Aug 5 19:14:46 UTC 2015


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 at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	base64
+PORTVERSION=	2.0.0
+CATEGORIES=	converters
+PKGNAMEPREFIX=	ocaml-
+
+MAINTAINER=	vg at 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


More information about the svn-ports-head mailing list