svn commit: r560074 - in head/devel: . rubygem-tmpdir

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Jan 3 20:01:47 UTC 2021


Author: sunpoet
Date: Sun Jan  3 20:01:42 2021
New Revision: 560074
URL: https://svnweb.freebsd.org/changeset/ports/560074

Log:
  Add rubygem-tmpdir 0.1.1
  
  Dir.mktmpdir creates a temporary directory. The directory is created with 0700
  permission.
  
  Application should not change the permission to make the temporary directory
  accessible from other users.
  
  WWW: https://github.com/ruby/tmpdir

Added:
  head/devel/rubygem-tmpdir/
  head/devel/rubygem-tmpdir/Makefile   (contents, props changed)
  head/devel/rubygem-tmpdir/distinfo   (contents, props changed)
  head/devel/rubygem-tmpdir/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Jan  3 20:01:37 2021	(r560073)
+++ head/devel/Makefile	Sun Jan  3 20:01:42 2021	(r560074)
@@ -6575,6 +6575,7 @@
     SUBDIR += rubygem-timers
     SUBDIR += rubygem-tins
     SUBDIR += rubygem-titlecase
+    SUBDIR += rubygem-tmpdir
     SUBDIR += rubygem-to_regexp
     SUBDIR += rubygem-tool
     SUBDIR += rubygem-transaction-simple

Added: head/devel/rubygem-tmpdir/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-tmpdir/Makefile	Sun Jan  3 20:01:42 2021	(r560074)
@@ -0,0 +1,22 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	tmpdir
+PORTVERSION=	0.1.1
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Extend the Dir class to manage the OS temporary file path
+
+LICENSE=	BSD2CLAUSE RUBY
+LICENSE_COMB=	dual
+
+RUN_DEPENDS=	rubygem-fileutils>=0:devel/rubygem-fileutils
+
+USES=		gem
+USE_RUBY=	yes
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/rubygem-tmpdir/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-tmpdir/distinfo	Sun Jan  3 20:01:42 2021	(r560074)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1609598801
+SHA256 (rubygem/tmpdir-0.1.1.gem) = 63876fb0d61e99601b86c67a2a8ede91ce58bb14dbab21ec5e3f4ef3f91ba507
+SIZE (rubygem/tmpdir-0.1.1.gem) = 8192

Added: head/devel/rubygem-tmpdir/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-tmpdir/pkg-descr	Sun Jan  3 20:01:42 2021	(r560074)
@@ -0,0 +1,7 @@
+Dir.mktmpdir creates a temporary directory. The directory is created with 0700
+permission.
+
+Application should not change the permission to make the temporary directory
+accessible from other users.
+
+WWW: https://github.com/ruby/tmpdir


More information about the svn-ports-all mailing list