From owner-svn-ports-all@freebsd.org Fri Aug 18 09:23:46 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C77F3DD4AD7; Fri, 18 Aug 2017 09:23:46 +0000 (UTC) (envelope-from tz@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 mx1.freebsd.org (Postfix) with ESMTPS id A14347E611; Fri, 18 Aug 2017 09:23:46 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7I9NjGf040944; Fri, 18 Aug 2017 09:23:45 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7I9NjCg040940; Fri, 18 Aug 2017 09:23:45 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201708180923.v7I9NjCg040940@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 18 Aug 2017 09:23:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448214 - in head/devel: . rubygem-peek-host X-SVN-Group: ports-head X-SVN-Commit-Author: tz X-SVN-Commit-Paths: in head/devel: . rubygem-peek-host X-SVN-Commit-Revision: 448214 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2017 09:23:46 -0000 Author: tz Date: Fri Aug 18 09:23:45 2017 New Revision: 448214 URL: https://svnweb.freebsd.org/changeset/ports/448214 Log: New port: devel/rubygem-peek-host Take a peek into the host which serves your reuest. Things this peek view provides: - Hostname of the instance which served your request. Its an addition to the Peek profiling tool. WWW: https://github.com/jacobbednarz/peek-host Added: head/devel/rubygem-peek-host/ head/devel/rubygem-peek-host/Makefile (contents, props changed) head/devel/rubygem-peek-host/distinfo (contents, props changed) head/devel/rubygem-peek-host/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Aug 18 09:12:51 2017 (r448213) +++ head/devel/Makefile Fri Aug 18 09:23:45 2017 (r448214) @@ -5591,6 +5591,7 @@ SUBDIR += rubygem-pathutil SUBDIR += rubygem-peek SUBDIR += rubygem-peek-gc + SUBDIR += rubygem-peek-host SUBDIR += rubygem-piston SUBDIR += rubygem-pkg-config SUBDIR += rubygem-platform Added: head/devel/rubygem-peek-host/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-peek-host/Makefile Fri Aug 18 09:23:45 2017 (r448214) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= peek-host +PORTVERSION= 1.0.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= tz@FreeBSD.org +COMMENT= Take a peek into the host which served your Rails request + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-peek>=0:devel/rubygem-peek + +NO_ARCH= yes +USES= gem +USE_RUBY= yes + +.include Added: head/devel/rubygem-peek-host/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-peek-host/distinfo Fri Aug 18 09:23:45 2017 (r448214) @@ -0,0 +1,3 @@ +TIMESTAMP = 1503047977 +SHA256 (rubygem/peek-host-1.0.0.gem) = 0b411e26aeeaf883ea9b366530cfe7d2081fa98eec4755d9b8dcb7d93e042a87 +SIZE (rubygem/peek-host-1.0.0.gem) = 6656 Added: head/devel/rubygem-peek-host/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-peek-host/pkg-descr Fri Aug 18 09:23:45 2017 (r448214) @@ -0,0 +1,8 @@ +Take a peek into the host which serves your reuest. + +Things this peek view provides: +- Hostname of the instance which served your request. + +Its an addition to the Peek profiling tool. + +WWW: https://github.com/jacobbednarz/peek-host