From owner-svn-ports-head@freebsd.org Tue Jul 25 19:46:47 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C5352D7CADF; Tue, 25 Jul 2017 19:46:47 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8391563DB4; Tue, 25 Jul 2017 19:46:47 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6PJkkWj056362; Tue, 25 Jul 2017 19:46:46 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6PJkkO0056357; Tue, 25 Jul 2017 19:46:46 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201707251946.v6PJkkO0056357@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Tue, 25 Jul 2017 19:46:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446619 - in head/dns: . rubygem-idn-ruby X-SVN-Group: ports-head X-SVN-Commit-Author: jrm X-SVN-Commit-Paths: in head/dns: . rubygem-idn-ruby X-SVN-Commit-Revision: 446619 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Jul 2017 19:46:47 -0000 Author: jrm Date: Tue Jul 25 19:46:46 2017 New Revision: 446619 URL: https://svnweb.freebsd.org/changeset/ports/446619 Log: dns/rubygem-idn-ruby: Ruby Bindings for the GNU LibIDN library WWW: https://github.com/deepfryed/idn-ruby Added: head/dns/rubygem-idn-ruby/ head/dns/rubygem-idn-ruby/Makefile (contents, props changed) head/dns/rubygem-idn-ruby/distinfo (contents, props changed) head/dns/rubygem-idn-ruby/pkg-descr (contents, props changed) Modified: head/dns/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Tue Jul 25 18:17:55 2017 (r446618) +++ head/dns/Makefile Tue Jul 25 19:46:46 2017 (r446619) @@ -192,6 +192,7 @@ SUBDIR += renewck SUBDIR += rpsl2acl SUBDIR += rubygem-dnsruby + SUBDIR += rubygem-idn-ruby SUBDIR += rubygem-net-dns SUBDIR += rubygem-public_suffix SUBDIR += rubygem-public_suffix_service Added: head/dns/rubygem-idn-ruby/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/rubygem-idn-ruby/Makefile Tue Jul 25 19:46:46 2017 (r446619) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= idn-ruby +PORTVERSION= 0.1.0 +CATEGORIES= dns rubygems +MASTER_SITES= RG + +MAINTAINER= jrm@FreeBSD.org +COMMENT= LibIDN Ruby Bindings + +LICENSE= APACHE20 + +LIB_DEPENDS= libunwind.so:devel/libunwind \ + libidn.so:dns/libidn + +USES= gem +USE_RUBY= yes + +.include Added: head/dns/rubygem-idn-ruby/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/rubygem-idn-ruby/distinfo Tue Jul 25 19:46:46 2017 (r446619) @@ -0,0 +1,3 @@ +TIMESTAMP = 1501011358 +SHA256 (rubygem/idn-ruby-0.1.0.gem) = 99abba21c66e61fa16f2ddb2a507b4fd5a8d84ece77711f0d2e2bc313da36b1f +SIZE (rubygem/idn-ruby-0.1.0.gem) = 17408 Added: head/dns/rubygem-idn-ruby/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/rubygem-idn-ruby/pkg-descr Tue Jul 25 19:46:46 2017 (r446619) @@ -0,0 +1,10 @@ +Ruby Bindings for the GNU LibIDN library, an implementation of the +Stringprep, Punycode and IDNA specifications defined by the IETF +Internationalized Domain Names (IDN) working group. + +Included are the most important parts of the Stringprep, Punycode and +IDNA APIs like performing Stringprep processings, encoding to and +decoding from Punycode strings and converting entire domain names to and +from the ACE encoded form. + +WWW: https://github.com/deepfryed/idn-ruby