From owner-svn-ports-head@FreeBSD.ORG Sat May 2 16:55:08 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8CC5B276; Sat, 2 May 2015 16:55:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 6308D1C33; Sat, 2 May 2015 16:55:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t42Gt8Oa069780; Sat, 2 May 2015 16:55:08 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t42Gt7Sv069776; Sat, 2 May 2015 16:55:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201505021655.t42Gt7Sv069776@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 2 May 2015 16:55:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385188 - in head/misc: . rubygem-mimemagic X-SVN-Group: ports-head 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.20 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: Sat, 02 May 2015 16:55:08 -0000 Author: sunpoet Date: Sat May 2 16:55:06 2015 New Revision: 385188 URL: https://svnweb.freebsd.org/changeset/ports/385188 Log: - Add rubygem-mimemagic 0.3.0 MimeMagic is a library to detect the mime type of a file by extension or by content. It uses the mime database provided by freedesktop.org. WWW: https://github.com/minad/mimemagic PR: 199689 Submitted by: Michael Fausten Added: head/misc/rubygem-mimemagic/ head/misc/rubygem-mimemagic/Makefile (contents, props changed) head/misc/rubygem-mimemagic/distinfo (contents, props changed) head/misc/rubygem-mimemagic/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Sat May 2 16:55:01 2015 (r385187) +++ head/misc/Makefile Sat May 2 16:55:06 2015 (r385188) @@ -394,6 +394,7 @@ SUBDIR += rubygem-iesd SUBDIR += rubygem-mime-types SUBDIR += rubygem-mime-types1 + SUBDIR += rubygem-mimemagic SUBDIR += rubygem-rabbit SUBDIR += rubygem-vpim SUBDIR += rump Added: head/misc/rubygem-mimemagic/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/rubygem-mimemagic/Makefile Sat May 2 16:55:06 2015 (r385188) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= mimemagic +PORTVERSION= 0.3.0 +CATEGORIES= misc rubygems +MASTER_SITES= RG + +MAINTAINER= ports@michael-fausten.de +COMMENT= MIME detection by extension or content in pure ruby +COMMENT= Detects the mime type of a file by extension or by content + +LICENSE= MIT + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/misc/rubygem-mimemagic/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/rubygem-mimemagic/distinfo Sat May 2 16:55:06 2015 (r385188) @@ -0,0 +1,2 @@ +SHA256 (rubygem/mimemagic-0.3.0.gem) = a9a1de1e5750b4e59d1126a84dd67ae55595feda835f1659e3fe686917c13480 +SIZE (rubygem/mimemagic-0.3.0.gem) = 354816 Added: head/misc/rubygem-mimemagic/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/rubygem-mimemagic/pkg-descr Sat May 2 16:55:06 2015 (r385188) @@ -0,0 +1,4 @@ +MimeMagic is a library to detect the mime type of a file by extension or by +content. It uses the mime database provided by freedesktop.org. + +WWW: https://github.com/minad/mimemagic