From owner-svn-ports-head@freebsd.org Thu Jul 30 09:46:54 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 A0DAC37E7F1; Thu, 30 Jul 2020 09:46:54 +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 4BHQYB3jJmz42r3; Thu, 30 Jul 2020 09:46:54 +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 4F08EF0EB; Thu, 30 Jul 2020 09:46:54 +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 06U9ksMY071506; Thu, 30 Jul 2020 09:46:54 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06U9krE1071502; Thu, 30 Jul 2020 09:46:53 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202007300946.06U9krE1071502@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 30 Jul 2020 09:46:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r543727 - in head/devel: . rubygem-etc X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . rubygem-etc X-SVN-Commit-Revision: 543727 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.33 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: Thu, 30 Jul 2020 09:46:54 -0000 Author: sunpoet Date: Thu Jul 30 09:46:53 2020 New Revision: 543727 URL: https://svnweb.freebsd.org/changeset/ports/543727 Log: Add rubygem-etc 1.1.0 The Etc module provides access to information typically stored in files in the /etc directory on Unix systems. The information accessible consists of the information found in the /etc/passwd and /etc/group files, plus information about he system's temporary directory (/tmp) and configuration directory (/etc). The Etc module provides a more reliable way to access information about the logged in user than environment variables such as +$USER+. WWW: https://github.com/ruby/etc Added: head/devel/rubygem-etc/ head/devel/rubygem-etc/Makefile (contents, props changed) head/devel/rubygem-etc/distinfo (contents, props changed) head/devel/rubygem-etc/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Jul 30 09:46:44 2020 (r543726) +++ head/devel/Makefile Thu Jul 30 09:46:53 2020 (r543727) @@ -6000,6 +6000,7 @@ SUBDIR += rubygem-equatable SUBDIR += rubygem-errand SUBDIR += rubygem-et-orbi + SUBDIR += rubygem-etc SUBDIR += rubygem-eventmachine SUBDIR += rubygem-excon SUBDIR += rubygem-execjs Added: head/devel/rubygem-etc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-etc/Makefile Thu Jul 30 09:46:53 2020 (r543727) @@ -0,0 +1,20 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= etc +PORTVERSION= 1.1.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Provide access to information typically stored in UNIX /etc directory + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= gem +USE_RUBY= yes + +#NO_ARCH= yes + +.include Added: head/devel/rubygem-etc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-etc/distinfo Thu Jul 30 09:46:53 2020 (r543727) @@ -0,0 +1,3 @@ +TIMESTAMP = 1595865765 +SHA256 (rubygem/etc-1.1.0.gem) = 0651bcdecea5b005af640d8d3cd9155d8342035292cc8a341c78d88f4eb9f8c1 +SIZE (rubygem/etc-1.1.0.gem) = 23552 Added: head/devel/rubygem-etc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-etc/pkg-descr Thu Jul 30 09:46:53 2020 (r543727) @@ -0,0 +1,11 @@ +The Etc module provides access to information typically stored in files in the +/etc directory on Unix systems. + +The information accessible consists of the information found in the /etc/passwd +and /etc/group files, plus information about he system's temporary directory +(/tmp) and configuration directory (/etc). + +The Etc module provides a more reliable way to access information about the +logged in user than environment variables such as +$USER+. + +WWW: https://github.com/ruby/etc