From owner-svn-ports-all@freebsd.org Fri May 10 07:56:53 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9EE99159B45B; Fri, 10 May 2019 07:56:53 +0000 (UTC) (envelope-from trasz@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) server-signature RSA-PSS (4096 bits) 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 459E594D2D; Fri, 10 May 2019 07:56:53 +0000 (UTC) (envelope-from trasz@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 1BFA9149E; Fri, 10 May 2019 07:56:53 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4A7uqJI009223; Fri, 10 May 2019 07:56:52 GMT (envelope-from trasz@FreeBSD.org) Received: (from trasz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4A7upT0009213; Fri, 10 May 2019 07:56:51 GMT (envelope-from trasz@FreeBSD.org) Message-Id: <201905100756.x4A7upT0009213@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: trasz set sender to trasz@FreeBSD.org using -f From: Edward Tomasz Napierala Date: Fri, 10 May 2019 07:56:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r501160 - in head/devel: . linux-c7-strace X-SVN-Group: ports-head X-SVN-Commit-Author: trasz X-SVN-Commit-Paths: in head/devel: . linux-c7-strace X-SVN-Commit-Revision: 501160 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 459E594D2D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-0.99)[-0.993,0]; NEURAL_HAM_SHORT(-0.96)[-0.960,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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, 10 May 2019 07:56:53 -0000 Author: trasz Date: Fri May 10 07:56:51 2019 New Revision: 501160 URL: https://svnweb.freebsd.org/changeset/ports/501160 Log: New port: devel/linux-c7-strace strace is a system call tracer, i.e. a debugging tool which prints out a trace of all the system calls made by a another process/program. strace is similar to the native BSD ``truss'' utility, but it's output style is more convenient in most cases. For strace to work, linprocfs has to be mounted. FreeBSD does not mount it by default. For more information, man linprocfs. WWW: https://sourceforge.net/projects/strace/ Note that this does not currently work quite well; the kernel part is coming soon. Reviewed by: tijl Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D20030 Added: head/devel/linux-c7-strace/ head/devel/linux-c7-strace/Makefile (contents, props changed) head/devel/linux-c7-strace/distinfo (contents, props changed) head/devel/linux-c7-strace/pkg-descr (contents, props changed) head/devel/linux-c7-strace/pkg-plist.amd64 (contents, props changed) head/devel/linux-c7-strace/pkg-plist.i386 (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri May 10 06:29:57 2019 (r501159) +++ head/devel/Makefile Fri May 10 07:56:51 2019 (r501160) @@ -1402,6 +1402,7 @@ SUBDIR += linux-c7-qt SUBDIR += linux-c7-sdl12 SUBDIR += linux-c7-sdl20 + SUBDIR += linux-c7-strace SUBDIR += linux-ltp SUBDIR += linux_libusb SUBDIR += lion Added: head/devel/linux-c7-strace/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/linux-c7-strace/Makefile Fri May 10 07:56:51 2019 (r501160) @@ -0,0 +1,14 @@ +# $FreeBSD$ + +PORTNAME= strace +PORTVERSION= 4.12 +CATEGORIES= devel + +MAINTAINER= trasz@FreeBSD.org +COMMENT= System call tracer (CentOS ${LINUX_DIST_VER}) + +RPMVERSION= 4.el7 +USES= linux:c7 +USE_LINUX_RPM= yes + +.include Added: head/devel/linux-c7-strace/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/linux-c7-strace/distinfo Fri May 10 07:56:51 2019 (r501160) @@ -0,0 +1,7 @@ +TIMESTAMP = 1556054023 +SHA256 (centos/strace-4.12-4.el7.i686.rpm) = 4255eee58bc540c93f1c77c63c33a42abaacc58d1b84b233310aaa3fb5d53733 +SIZE (centos/strace-4.12-4.el7.i686.rpm) = 453520 +SHA256 (centos/strace-4.12-4.el7.x86_64.rpm) = 085effd2e3fe66d0db92ccc592cd05f83f2b0b749c4c3ed4ced4d673febc058c +SIZE (centos/strace-4.12-4.el7.x86_64.rpm) = 469928 +SHA256 (centos/strace-4.12-4.el7.src.rpm) = 3c864cf117fa49e4bc4187646f9d774211d96924371505c8abfb9535e9801fd7 +SIZE (centos/strace-4.12-4.el7.src.rpm) = 1659454 Added: head/devel/linux-c7-strace/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/linux-c7-strace/pkg-descr Fri May 10 07:56:51 2019 (r501160) @@ -0,0 +1,10 @@ +strace is a system call tracer, i.e. a debugging tool which prints out a trace +of all the system calls made by a another process/program. + +strace is similar to the native BSD ``truss'' utility, but it's output style is +more convenient in most cases. + +For strace to work, linprocfs has to be mounted. FreeBSD does not mount it by +default. For more information, man linprocfs. + +WWW: https://sourceforge.net/projects/strace/ Added: head/devel/linux-c7-strace/pkg-plist.amd64 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/linux-c7-strace/pkg-plist.amd64 Fri May 10 07:56:51 2019 (r501160) @@ -0,0 +1,4 @@ +usr/bin/strace +usr/bin/strace-log-merge +usr/share/man/man1/strace-log-merge.1.gz +usr/share/man/man1/strace.1.gz Added: head/devel/linux-c7-strace/pkg-plist.i386 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/linux-c7-strace/pkg-plist.i386 Fri May 10 07:56:51 2019 (r501160) @@ -0,0 +1,4 @@ +usr/bin/strace +usr/bin/strace-log-merge +usr/share/man/man1/strace-log-merge.1.gz +usr/share/man/man1/strace.1.gz