From owner-svn-ports-all@freebsd.org Fri Apr 14 13:22:05 2017 Return-Path: Delivered-To: svn-ports-all@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 CE1B4D3D6B1; Fri, 14 Apr 2017 13:22:05 +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 8F9D6CA7; Fri, 14 Apr 2017 13:22:05 +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 v3EDM4sY040982; Fri, 14 Apr 2017 13:22:04 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3EDM42r040978; Fri, 14 Apr 2017 13:22:04 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201704141322.v3EDM42r040978@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Fri, 14 Apr 2017 13:22:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r438512 - in head/www: . rubygem-oembed X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Apr 2017 13:22:05 -0000 Author: jrm Date: Fri Apr 14 13:22:04 2017 New Revision: 438512 URL: https://svnweb.freebsd.org/changeset/ports/438512 Log: New port, www/rubygem-oembed: Slim library to work with oEmbed format Adding www/rubygem-oembed, because it is a dependency of the upcoming www/mastodon port. WWW: http://soulim.github.com/oembed/ Approved by: swills (mentor, implicit) Added: head/www/rubygem-oembed/ head/www/rubygem-oembed/Makefile (contents, props changed) head/www/rubygem-oembed/distinfo (contents, props changed) head/www/rubygem-oembed/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Apr 14 13:14:03 2017 (r438511) +++ head/www/Makefile Fri Apr 14 13:22:04 2017 (r438512) @@ -2041,6 +2041,7 @@ SUBDIR += rubygem-nicovideo SUBDIR += rubygem-ntlm-http SUBDIR += rubygem-octopress + SUBDIR += rubygem-oembed SUBDIR += rubygem-ostatus2 SUBDIR += rubygem-pagerduty SUBDIR += rubygem-passenger Added: head/www/rubygem-oembed/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-oembed/Makefile Fri Apr 14 13:22:04 2017 (r438512) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= oembed +PORTVERSION= 0.2.0 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= jrm@FreeBSD.org +COMMENT= Slim library to work with oEmbed format + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes + +USE_RUBY= yes +USES= gem + +.include Added: head/www/rubygem-oembed/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-oembed/distinfo Fri Apr 14 13:22:04 2017 (r438512) @@ -0,0 +1,3 @@ +TIMESTAMP = 1492174164 +SHA256 (rubygem/oembed-0.2.0.gem) = 8542cbc249bfbe3f292b885ed740026490421b163105302f5eaec74c9ec6dc48 +SIZE (rubygem/oembed-0.2.0.gem) = 11264 Added: head/www/rubygem-oembed/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-oembed/pkg-descr Fri Apr 14 13:22:04 2017 (r438512) @@ -0,0 +1,8 @@ +oEmbed is a format for allowing an embedded representation of a URL on third +party sites. The simple API allows a website to display embedded content (such +as photos or videos) when a user posts a link to that resource, without having +to parse the resource directly. This gem is a simple-to-use and slim library to +work with oEmbed format. It has no external dependencies at runtime. All you +need to have is Ruby itself. + +WWW: http://soulim.github.com/oembed/