From owner-svn-ports-all@freebsd.org Fri Jul 24 07:08:13 2020 Return-Path: Delivered-To: svn-ports-all@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 5B1F9371EE7; Fri, 24 Jul 2020 07:08:13 +0000 (UTC) (envelope-from sunpoet@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BCgJr6G5Nz3WnW; Fri, 24 Jul 2020 07:08:12 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 64B89267BA; Fri, 24 Jul 2020 07:08:12 +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 06O78CXu041909; Fri, 24 Jul 2020 07:08:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06O78BCL041905; Fri, 24 Jul 2020 07:08:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202007240708.06O78BCL041905@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 24 Jul 2020 07:08:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r543012 - in head/biology: . rubygem-bio-shell X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/biology: . rubygem-bio-shell X-SVN-Commit-Revision: 543012 X-SVN-Commit-Repository: ports 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.33 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, 24 Jul 2020 07:08:13 -0000 Author: sunpoet Date: Fri Jul 24 07:08:11 2020 New Revision: 543012 URL: https://svnweb.freebsd.org/changeset/ports/543012 Log: Add rubygem-bio-shell 1.0.0 bio-shell, providing BioRuby Shell, is a command-line interface for BioRuby, an open source bioinformatics library for Ruby. This code has historically been part of the BioRuby gem, but has been split into its own gem as part of an effort to modularize BioRuby. bio-shell and many more plugins are available at biogems.info. WWW: https://github.com/bioruby/bioruby-shell Added: head/biology/rubygem-bio-shell/ head/biology/rubygem-bio-shell/Makefile (contents, props changed) head/biology/rubygem-bio-shell/distinfo (contents, props changed) head/biology/rubygem-bio-shell/pkg-descr (contents, props changed) Modified: head/biology/Makefile Modified: head/biology/Makefile ============================================================================== --- head/biology/Makefile Fri Jul 24 07:08:05 2020 (r543011) +++ head/biology/Makefile Fri Jul 24 07:08:11 2020 (r543012) @@ -150,6 +150,7 @@ SUBDIR += rubygem-bio SUBDIR += rubygem-bio-executables SUBDIR += rubygem-bio-old-biofetch-emulator + SUBDIR += rubygem-bio-shell SUBDIR += samtools SUBDIR += scrm SUBDIR += seaview Added: head/biology/rubygem-bio-shell/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/rubygem-bio-shell/Makefile Fri Jul 24 07:08:11 2020 (r543012) @@ -0,0 +1,26 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= bio-shell +PORTVERSION= 1.0.0 +CATEGORIES= biology rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Command-line interface on BioRuby + +LICENSE= BSD2CLAUSE RUBY +LICENSE_COMB= dual +LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL +LICENSE_FILE_RUBY= ${WRKSRC}/COPYING + +RUN_DEPENDS= rubygem-bio>=2.0.0:biology/rubygem-bio + +USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +PLIST_FILES= bin/bioruby + +.include Added: head/biology/rubygem-bio-shell/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/rubygem-bio-shell/distinfo Fri Jul 24 07:08:11 2020 (r543012) @@ -0,0 +1,3 @@ +TIMESTAMP = 1595416511 +SHA256 (rubygem/bio-shell-1.0.0.gem) = 5a41c4226c12de49476bda8e59dd17ac3340b15cebc2f241842334d9de822528 +SIZE (rubygem/bio-shell-1.0.0.gem) = 46592 Added: head/biology/rubygem-bio-shell/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/rubygem-bio-shell/pkg-descr Fri Jul 24 07:08:11 2020 (r543012) @@ -0,0 +1,8 @@ +bio-shell, providing BioRuby Shell, is a command-line interface for BioRuby, an +open source bioinformatics library for Ruby. + +This code has historically been part of the BioRuby gem, but has been split into +its own gem as part of an effort to modularize BioRuby. bio-shell and many more +plugins are available at biogems.info. + +WWW: https://github.com/bioruby/bioruby-shell