From owner-svn-ports-head@freebsd.org Mon Mar 14 19:50:36 2016 Return-Path: Delivered-To: svn-ports-head@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 0B372ACF940; Mon, 14 Mar 2016 19:50:36 +0000 (UTC) (envelope-from wg@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 DB05085F; Mon, 14 Mar 2016 19:50:35 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2EJoY7o006079; Mon, 14 Mar 2016 19:50:34 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2EJoYo3006074; Mon, 14 Mar 2016 19:50:34 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201603141950.u2EJoYo3006074@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Mon, 14 Mar 2016 19:50:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411111 - in head/sysutils: . sample X-SVN-Group: ports-head 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.21 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: Mon, 14 Mar 2016 19:50:36 -0000 Author: wg Date: Mon Mar 14 19:50:34 2016 New Revision: 411111 URL: https://svnweb.freebsd.org/changeset/ports/411111 Log: sysutils/sample A program for examining periodic stack traces of all running processes. WWW: https://github.com/freenas/sample Added: head/sysutils/sample/ head/sysutils/sample/Makefile (contents, props changed) head/sysutils/sample/distinfo (contents, props changed) head/sysutils/sample/pkg-descr (contents, props changed) head/sysutils/sample/pkg-plist (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Mar 14 19:46:09 2016 (r411110) +++ head/sysutils/Makefile Mon Mar 14 19:50:34 2016 (r411111) @@ -939,6 +939,7 @@ SUBDIR += safecat SUBDIR += samefile SUBDIR += samesame + SUBDIR += sample SUBDIR += sas2ircu SUBDIR += sas3ircu SUBDIR += savelogs Added: head/sysutils/sample/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/sample/Makefile Mon Mar 14 19:50:34 2016 (r411111) @@ -0,0 +1,35 @@ +# $FreeBSD$ + +PORTNAME= sample +PORTVERSION= 0.02f +PORTREVISION= 1 +CATEGORIES= sysutils + +MAINTAINER= wg@FreeBSD.org +COMMENT= Examine periodic stack traces of all running processes + +LICENSE= BSD3CLAUSE + +BUILD_DEPENDS= ${LOCALBASE}/lib/libbfd.a:${PORTSDIR}/devel/libbfd \ + ${LOCALBASE}/lib/libiberty.a:${PORTSDIR}/devel/gnulibiberty \ + ${LOCALBASE}/lib/libxo.a:${PORTSDIR}/devel/libxo \ + ${LOCALBASE}/bin/cython:${PORTSDIR}/lang/cython \ + ${LOCALBASE}/bin/python:${PORTSDIR}/lang/python + +USE_GITHUB= yes +GH_ACCOUNT= freenas +GH_PROJECT= sample +GH_TAGNAME= 45e2b86 + +USES= python:build kmod + +MAKE_ENV= SYSDIR=${SRC_BASE}/sys + +SSP_UNSAFE= YES + +do-install: + ${INSTALL_KLD} ${WRKSRC}/driver/sample_driver.ko ${STAGEDIR}${KMODDIR} + ${INSTALL_MAN} ${WRKSRC}/sample/sample.8 ${STAGEDIR}${PREFIX}/man/man8 + ${INSTALL_PROGRAM} ${WRKSRC}/sample/sample ${STAGEDIR}${PREFIX}/bin + +.include Added: head/sysutils/sample/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/sample/distinfo Mon Mar 14 19:50:34 2016 (r411111) @@ -0,0 +1,2 @@ +SHA256 (freenas-sample-0.02f-45e2b86_GH0.tar.gz) = 48d03eabd6c2acc3e311c16aac983d5d1aa2eac6577db48d668599f4b5717764 +SIZE (freenas-sample-0.02f-45e2b86_GH0.tar.gz) = 31533 Added: head/sysutils/sample/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/sample/pkg-descr Mon Mar 14 19:50:34 2016 (r411111) @@ -0,0 +1,3 @@ +A program for examining periodic stack traces of all running processes. + +WWW: https://github.com/freenas/sample Added: head/sysutils/sample/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/sample/pkg-plist Mon Mar 14 19:50:34 2016 (r411111) @@ -0,0 +1,3 @@ +/%%KMODDIR%%/sample_driver.ko +bin/sample +man/man8/sample.8.gz