Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Jul 2015 08:24:10 +0000 (UTC)
From:      Jimmy Olgeni <olgeni@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r391036 - in head/dns: . erlang-idna
Message-ID:  <201507010824.t618OAoo072946@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: olgeni
Date: Wed Jul  1 08:24:09 2015
New Revision: 391036
URL: https://svnweb.freebsd.org/changeset/ports/391036

Log:
  Add dns/erlang-idna, an implementation of IDNA in pure Erlang.

Added:
  head/dns/erlang-idna/
  head/dns/erlang-idna/Makefile   (contents, props changed)
  head/dns/erlang-idna/distinfo   (contents, props changed)
  head/dns/erlang-idna/pkg-descr   (contents, props changed)
  head/dns/erlang-idna/pkg-plist   (contents, props changed)
Modified:
  head/dns/Makefile

Modified: head/dns/Makefile
==============================================================================
--- head/dns/Makefile	Wed Jul  1 08:07:49 2015	(r391035)
+++ head/dns/Makefile	Wed Jul  1 08:24:09 2015	(r391036)
@@ -50,6 +50,7 @@
     SUBDIR += dnswall
     SUBDIR += doc
     SUBDIR += dualserver
+    SUBDIR += erlang-idna
     SUBDIR += ez-ipupdate
     SUBDIR += fastresolve
     SUBDIR += firedns

Added: head/dns/erlang-idna/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/erlang-idna/Makefile	Wed Jul  1 08:24:09 2015	(r391036)
@@ -0,0 +1,31 @@
+# $FreeBSD$
+
+PORTNAME=	idna
+PORTVERSION=	1.0.2
+CATEGORIES=	dns
+PKGNAMEPREFIX=	erlang-
+
+MAINTAINER=	olgeni@FreeBSD.org
+COMMENT=	IDNA implementation in pure Erlang
+
+LICENSE=	MIT
+
+BUILD_DEPENDS=	erl:${PORTSDIR}/lang/erlang
+RUN_DEPENDS:=	${BUILD_DEPENDS}
+
+PLIST_SUB=	VERSION="${PORTVERSION}"
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	benoitc
+GH_PROJECT=	${PKGNAMEPREFIX}${PORTNAME}
+
+do-install:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}
+	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/erlang/lib/${PORTNAME}-${PORTVERSION}
+	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/erlang/lib/${PORTNAME}-${PORTVERSION}/ebin
+	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/erlang/lib/${PORTNAME}-${PORTVERSION}/src
+	${INSTALL_DATA} ${WRKSRC}/ebin/* ${STAGEDIR}${PREFIX}/lib/erlang/lib/${PORTNAME}-${PORTVERSION}/ebin
+	${INSTALL_DATA} ${WRKSRC}/src/* ${STAGEDIR}${PREFIX}/lib/erlang/lib/${PORTNAME}-${PORTVERSION}/src
+
+.include <bsd.port.mk>

Added: head/dns/erlang-idna/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/erlang-idna/distinfo	Wed Jul  1 08:24:09 2015	(r391036)
@@ -0,0 +1,2 @@
+SHA256 (benoitc-erlang-idna-1.0.2_GH0.tar.gz) = d87d7283245bdc1595ece8e79d7f13076fcbc02be6717319c67a79f0556adee9
+SIZE (benoitc-erlang-idna-1.0.2_GH0.tar.gz) = 127989

Added: head/dns/erlang-idna/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/erlang-idna/pkg-descr	Wed Jul  1 08:24:09 2015	(r391036)
@@ -0,0 +1,3 @@
+A pure Erlang IDNA implementation (see RFC3490 and RFC3492).
+
+WWW: https://github.com/benoitc/erlang-idna

Added: head/dns/erlang-idna/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/erlang-idna/pkg-plist	Wed Jul  1 08:24:09 2015	(r391036)
@@ -0,0 +1,13 @@
+lib/erlang/lib/idna-%%VERSION%%/ebin/idna.app
+lib/erlang/lib/idna-%%VERSION%%/ebin/idna.beam
+lib/erlang/lib/idna-%%VERSION%%/ebin/idna_ucs.beam
+lib/erlang/lib/idna-%%VERSION%%/ebin/idna_unicode.beam
+lib/erlang/lib/idna-%%VERSION%%/ebin/idna_unicode_data.beam
+lib/erlang/lib/idna-%%VERSION%%/ebin/punycode.beam
+lib/erlang/lib/idna-%%VERSION%%/src/idna.erl
+lib/erlang/lib/idna-%%VERSION%%/src/idna_ucs.erl
+lib/erlang/lib/idna-%%VERSION%%/src/idna_unicode.erl
+lib/erlang/lib/idna-%%VERSION%%/src/idna_unicode_data.erl
+lib/erlang/lib/idna-%%VERSION%%/src/idna_unicode_data.erl.src
+lib/erlang/lib/idna-%%VERSION%%/src/punycode.erl
+%%PORTDOCS%%%%DOCSDIR%%/README.md



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