From owner-dev-commits-ports-main@freebsd.org Mon Jun 14 17:46:15 2021 Return-Path: Delivered-To: dev-commits-ports-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9921966183A; Mon, 14 Jun 2021 17:46:15 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4G3f530mcWz3vFq; Mon, 14 Jun 2021 17:46:14 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AD72719277; Mon, 14 Jun 2021 17:46:14 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 15EHkEc9052825; Mon, 14 Jun 2021 17:46:14 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 15EHkEYA052824; Mon, 14 Jun 2021 17:46:14 GMT (envelope-from git) Date: Mon, 14 Jun 2021 17:46:14 GMT Message-Id: <202106141746.15EHkEYA052824@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Po-Chuan Hsieh Subject: git: 3d53fce720d8 - main - devel/rubygem-fuzzy_match: Add rubygem-fuzzy_match 2.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: sunpoet X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 3d53fce720d883d2820518f2a1e5819b37bb3f0f Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jun 2021 17:46:15 -0000 The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=3d53fce720d883d2820518f2a1e5819b37bb3f0f commit 3d53fce720d883d2820518f2a1e5819b37bb3f0f Author: Po-Chuan Hsieh AuthorDate: 2021-06-14 17:32:47 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-06-14 17:32:47 +0000 devel/rubygem-fuzzy_match: Add rubygem-fuzzy_match 2.1.0 FuzzyMatch finds a needle in a haystack based on string similarity and regular expression rules. WWW: https://github.com/seamusabshere/fuzzy_match --- devel/Makefile | 1 + devel/rubygem-fuzzy_match/Makefile | 21 +++++++++++++++++++++ devel/rubygem-fuzzy_match/distinfo | 3 +++ devel/rubygem-fuzzy_match/pkg-descr | 4 ++++ 4 files changed, 29 insertions(+) diff --git a/devel/Makefile b/devel/Makefile index 76930d2e728f..8c51826153b2 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -6176,6 +6176,7 @@ SUBDIR += rubygem-forwardable-extended SUBDIR += rubygem-fugit SUBDIR += rubygem-fugit12 + SUBDIR += rubygem-fuzzy_match SUBDIR += rubygem-gapic-common SUBDIR += rubygem-gdata SUBDIR += rubygem-gem-compare diff --git a/devel/rubygem-fuzzy_match/Makefile b/devel/rubygem-fuzzy_match/Makefile new file mode 100644 index 000000000000..7be6284ed705 --- /dev/null +++ b/devel/rubygem-fuzzy_match/Makefile @@ -0,0 +1,21 @@ +# Created by: Po-Chuan Hsieh + +PORTNAME= fuzzy_match +PORTVERSION= 2.1.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Fuzzy match using string similarity and regexp rules + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +PLIST_FILES= bin/fuzzy_match + +.include diff --git a/devel/rubygem-fuzzy_match/distinfo b/devel/rubygem-fuzzy_match/distinfo new file mode 100644 index 000000000000..96c4d5da4229 --- /dev/null +++ b/devel/rubygem-fuzzy_match/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1622213976 +SHA256 (rubygem/fuzzy_match-2.1.0.gem) = e97e25d0eaee48a5f77ed970d007c7b6ff3c6a6858303fead2d1986859204dfc +SIZE (rubygem/fuzzy_match-2.1.0.gem) = 113152 diff --git a/devel/rubygem-fuzzy_match/pkg-descr b/devel/rubygem-fuzzy_match/pkg-descr new file mode 100644 index 000000000000..aa224c4556ae --- /dev/null +++ b/devel/rubygem-fuzzy_match/pkg-descr @@ -0,0 +1,4 @@ +FuzzyMatch finds a needle in a haystack based on string similarity and regular +expression rules. + +WWW: https://github.com/seamusabshere/fuzzy_match