Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 Dec 2020 06:37:40 +0000 (UTC)
From:      =?UTF-8?Q?Romain_Tarti=c3=a8re?= <romain@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r558433 - in head/devel: . rubygem-scanf
Message-ID:  <202012190637.0BJ6bejW087328@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012190637.0BJ6bejW087328>