Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Jul 2017 00:46:34 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r445974 - in head/www: . rubygem-fuzzyurl
Message-ID:  <201707160046.v6G0kYNc052398@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <sunpoet@FreeBSD.org>
+# $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 <bsd.port.mk>

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



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