From owner-svn-ports-head@freebsd.org Sun Jul 16 00:46:36 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 4C8E9B7F3DD; Sun, 16 Jul 2017 00:46:36 +0000 (UTC) (envelope-from sunpoet@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 292A264A3D; Sun, 16 Jul 2017 00:46:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6G0kZY1052402; Sun, 16 Jul 2017 00:46:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6G0kYNc052398; Sun, 16 Jul 2017 00:46:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201707160046.v6G0kYNc052398@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jul 2017 00:46:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r445974 - in head/www: . rubygem-fuzzyurl X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/www: . rubygem-fuzzyurl X-SVN-Commit-Revision: 445974 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: Sun, 16 Jul 2017 00:46:36 -0000 Author: sunpoet Date: Sun Jul 16 00:46:34 2017 New Revision: 445974 URL: https://svnweb.freebsd.org/changeset/ports/445974 Log: Add rubygem-fuzzyurl 0.9.0 Fuzzyurl provides two related functions: non-strict parsing of URLs or URL-like strings into their component pieces (protocol, username, password, hostname, port, path, query, and fragment), and fuzzy matching of URLs and URL patterns. Specifically, URLs that look like this: [protocol ://] [username [: password] @] [hostname] [: port] [/ path] [? query] [# fragment] Fuzzyurls can be constructed using some or all of the above fields, optionally replacing some or all of those fields with a * wildcard if you wish to use the Fuzzyurl as a URL mask. WWW: https://github.com/gamache/fuzzyurl.rb Added: head/www/rubygem-fuzzyurl/ head/www/rubygem-fuzzyurl/Makefile (contents, props changed) head/www/rubygem-fuzzyurl/distinfo (contents, props changed) head/www/rubygem-fuzzyurl/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Jul 16 00:46:18 2017 (r445973) +++ head/www/Makefile Sun Jul 16 00:46:34 2017 (r445974) @@ -1958,6 +1958,7 @@ SUBDIR += rubygem-feed-normalizer SUBDIR += rubygem-feedjira SUBDIR += rubygem-flowdock + SUBDIR += rubygem-fuzzyurl SUBDIR += rubygem-geminabox SUBDIR += rubygem-gitlab-flowdock-git-hook SUBDIR += rubygem-gitlab-gollum-lib Added: head/www/rubygem-fuzzyurl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-fuzzyurl/Makefile Sun Jul 16 00:46:34 2017 (r445974) @@ -0,0 +1,18 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= fuzzyurl +PORTVERSION= 0.9.0 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Non-strict parsing, composition, and wildcard-matching of URLs in Ruby + +LICENSE= MIT + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include Added: head/www/rubygem-fuzzyurl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-fuzzyurl/distinfo Sun Jul 16 00:46:34 2017 (r445974) @@ -0,0 +1,3 @@ +TIMESTAMP = 1500152292 +SHA256 (rubygem/fuzzyurl-0.9.0.gem) = 542efa80f2bcaadbdc402c2f0b572f2e335a1d53e375aecad68bbb3d86860c0f +SIZE (rubygem/fuzzyurl-0.9.0.gem) = 8704 Added: head/www/rubygem-fuzzyurl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-fuzzyurl/pkg-descr Sun Jul 16 00:46:34 2017 (r445974) @@ -0,0 +1,12 @@ +Fuzzyurl provides two related functions: non-strict parsing of URLs or URL-like +strings into their component pieces (protocol, username, password, hostname, +port, path, query, and fragment), and fuzzy matching of URLs and URL patterns. + +Specifically, URLs that look like this: +[protocol ://] [username [: password] @] [hostname] [: port] [/ path] [? query] [# fragment] + +Fuzzyurls can be constructed using some or all of the above fields, optionally +replacing some or all of those fields with a * wildcard if you wish to use the +Fuzzyurl as a URL mask. + +WWW: https://github.com/gamache/fuzzyurl.rb