Date: Sat, 6 Dec 2014 03:09:50 +0000 (UTC) From: Rui Paulo <rpaulo@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374085 - in head/devel: . pructl Message-ID: <201412060309.sB639oOf010248@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412060309.sB639oOf010248>