svn commit: r558433 - in head/devel: . rubygem-scanf

Romain Tartière romain at FreeBSD.org
Sat Dec 19 06:37:41 UTC 2020


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 at 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


More information about the svn-ports-all mailing list