From owner-svn-ports-head@freebsd.org Sat Dec 19 06:37:41 2020 Return-Path: Delivered-To: svn-ports-head@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 17B534BDF35; Sat, 19 Dec 2020 06:37:41 +0000 (UTC) (envelope-from romain@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 4CybdK02Sjz4nY5; Sat, 19 Dec 2020 06:37:41 +0000 (UTC) (envelope-from romain@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 E845718C6C; Sat, 19 Dec 2020 06:37:40 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BJ6beYf087334; Sat, 19 Dec 2020 06:37:40 GMT (envelope-from romain@FreeBSD.org) Received: (from romain@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BJ6bejW087328; Sat, 19 Dec 2020 06:37:40 GMT (envelope-from romain@FreeBSD.org) Message-Id: <202012190637.0BJ6bejW087328@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: romain set sender to romain@FreeBSD.org using -f From: =?UTF-8?Q?Romain_Tarti=c3=a8re?= Date: Sat, 19 Dec 2020 06:37:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r558433 - in head/devel: . rubygem-scanf X-SVN-Group: ports-head X-SVN-Commit-Author: romain X-SVN-Commit-Paths: in head/devel: . rubygem-scanf X-SVN-Commit-Revision: 558433 X-SVN-Commit-Repository: ports 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.34 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, 19 Dec 2020 06:37:41 -0000 Author: romain Date: Sat Dec 19 06:37:39 2020 New Revision: 558433 URL: https://svnweb.freebsd.org/changeset/ports/558433 Log: New port: devel/rubygem-scanf scanf is an implementation of the C function scanf(3), modified as necessary for Ruby compatibility. The methods provided are String#scanf, IO#scanf, and Kernel#scanf. Kernel#scanf is a wrapper around STDIN.scanf. IO#scanf can be used on any IO stream, including file handles and sockets. scanf can be called either with or without a block. WWW: http://rubygems.org/gems/scanf Added: head/devel/rubygem-scanf/ head/devel/rubygem-scanf/Makefile (contents, props changed) head/devel/rubygem-scanf/distinfo (contents, props changed) head/devel/rubygem-scanf/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Dec 19 06:03:44 2020 (r558432) +++ head/devel/Makefile Sat Dec 19 06:37:39 2020 (r558433) @@ -6452,6 +6452,7 @@ SUBDIR += rubygem-runt SUBDIR += rubygem-ruport SUBDIR += rubygem-safe_yaml + SUBDIR += rubygem-scanf SUBDIR += rubygem-schash SUBDIR += rubygem-sdoc SUBDIR += rubygem-semantic_puppet Added: head/devel/rubygem-scanf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-scanf/Makefile Sat Dec 19 06:37:39 2020 (r558433) @@ -0,0 +1,16 @@ +# $FreeBSD$ + +PORTNAME= scanf +DISTVERSION= 1.0.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= romain@FreeBSD.org +COMMENT= Ruby implementation of the C function scanf(3) + +LICENSE= BSD2CLAUSE + +USES= gem +USE_RUBY= yes + +.include Added: head/devel/rubygem-scanf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-scanf/distinfo Sat Dec 19 06:37:39 2020 (r558433) @@ -0,0 +1,3 @@ +TIMESTAMP = 1608325929 +SHA256 (rubygem/scanf-1.0.0.gem) = 533db7f7e5acafea1a145d6c5329cef667a58fbcb7d64379a808ff1199ee1b00 +SIZE (rubygem/scanf-1.0.0.gem) = 12288 Added: head/devel/rubygem-scanf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-scanf/pkg-descr Sat Dec 19 06:37:39 2020 (r558433) @@ -0,0 +1,9 @@ +scanf is an implementation of the C function scanf(3), modified as necessary +for Ruby compatibility. + +The methods provided are String#scanf, IO#scanf, and Kernel#scanf. Kernel#scanf +is a wrapper around STDIN.scanf. IO#scanf can be used on any IO stream, +including file handles and sockets. scanf can be called either with or without +a block. + +WWW: http://rubygems.org/gems/scanf