From owner-svn-ports-all@FreeBSD.ORG Sat Dec 6 03:09:51 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C987F6AA; Sat, 6 Dec 2014 03:09:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 AAA5F1D7; Sat, 6 Dec 2014 03:09:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sB639pXX010253; Sat, 6 Dec 2014 03:09:51 GMT (envelope-from rpaulo@FreeBSD.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sB639oOf010248; Sat, 6 Dec 2014 03:09:50 GMT (envelope-from rpaulo@FreeBSD.org) Message-Id: <201412060309.sB639oOf010248@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rpaulo set sender to rpaulo@FreeBSD.org using -f From: Rui Paulo Date: Sat, 6 Dec 2014 03:09:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374085 - in head/devel: . pructl X-SVN-Group: ports-head 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.18-1 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: Sat, 06 Dec 2014 03:09:52 -0000 Author: rpaulo Date: Sat Dec 6 03:09:49 2014 New Revision: 374085 URL: https://svnweb.freebsd.org/changeset/ports/374085 QAT: https://qat.redports.org/buildarchive/r374085/ Log: pructl is an utility to interface with PRUs. It uses libpru (devel/libpru) and currently supports the BeagleBone (white/black). Differential Revision: https://reviews.freebsd.org/D1271 Reviewed by: bapt Approved by: bapt Added: head/devel/pructl/ head/devel/pructl/Makefile (contents, props changed) head/devel/pructl/distinfo (contents, props changed) head/devel/pructl/pkg-descr (contents, props changed) head/devel/pructl/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Dec 6 01:12:55 2014 (r374084) +++ head/devel/Makefile Sat Dec 6 03:09:49 2014 (r374085) @@ -3530,6 +3530,7 @@ SUBDIR += protobuf SUBDIR += protobuf-c SUBDIR += protobuf25 + SUBDIR += pructl SUBDIR += psptoolchain SUBDIR += psptoolchain-binutils SUBDIR += psptoolchain-gcc-stage1 Added: head/devel/pructl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pructl/Makefile Sat Dec 6 03:09:49 2014 (r374085) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= pructl +PORTVERSION= 0.1 +CATEGORIES= devel +MASTER_SITES= https://bitbucket.org/rpaulo/pructl/get/ + +MAINTAINER= rpaulo@FreeBSD.org +COMMENT= Utilities to interface with PRUs + +LICENSE= BSD2CLAUSE + +LIB_DEPENDS= libpru.so:${PORTSDIR}/devel/libpru + +USES= cmake + +WRKSRC= ${WRKDIR}/rpaulo-pructl-fa406bee9133 + +.include Added: head/devel/pructl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pructl/distinfo Sat Dec 6 03:09:49 2014 (r374085) @@ -0,0 +1,2 @@ +SHA256 (pructl-0.1.tar.gz) = 2100c3c3ae5be7d2f26af18cb7ee3de361158ee49b76c61adf8911e6b750953b +SIZE (pructl-0.1.tar.gz) = 3330 Added: head/devel/pructl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pructl/pkg-descr Sat Dec 6 03:09:49 2014 (r374085) @@ -0,0 +1,5 @@ +pructl is a tool to interface with libpru. +It allows the user to reset the PRU, enable/disable the PRU and to +upload programs to the PRU. + +WWW: https://bitbucket.org/rpaulo/pructl Added: head/devel/pructl/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pructl/pkg-plist Sat Dec 6 03:09:49 2014 (r374085) @@ -0,0 +1,2 @@ +sbin/pructl +sbin/prudbg