Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Oct 2016 15:02:05 +0000 (UTC)
From:      Boris Samorodov <bsam@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r423766 - in head/devel: . arduino-builder
Message-ID:  <201610111502.u9BF25Gd081353@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bsam
Date: Tue Oct 11 15:02:05 2016
New Revision: 423766
URL: https://svnweb.freebsd.org/changeset/ports/423766

Log:
  arduino-builder is a command line tool for compiling Arduino sketches.
  It is used by newer versions of the Arduino IDE, and may also be used
  standalone if provided hardware definitions and a tools directory.
  
  WWW: https://github.com/arduino/arduino-builder
  
  PR:		212964
  Submitted by:	bsdports@kyle-evans.net

Added:
  head/devel/arduino-builder/
  head/devel/arduino-builder/Makefile   (contents, props changed)
  head/devel/arduino-builder/distinfo   (contents, props changed)
  head/devel/arduino-builder/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Oct 11 14:40:36 2016	(r423765)
+++ head/devel/Makefile	Tue Oct 11 15:02:05 2016	(r423766)
@@ -95,6 +95,7 @@
     SUBDIR += apr2
     SUBDIR += arcanist
     SUBDIR += arduino
+    SUBDIR += arduino-builder
     SUBDIR += arduino-glcd
     SUBDIR += arduino-irremote
     SUBDIR += arduino-mk

Added: head/devel/arduino-builder/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/arduino-builder/Makefile	Tue Oct 11 15:02:05 2016	(r423766)
@@ -0,0 +1,32 @@
+# $FreeBSD$
+
+PORTNAME=	arduino-builder
+PORTVERSION=	1.3.21
+CATEGORIES=	devel
+
+MAINTAINER=	bsdports@kyle-evans.net
+COMMENT=	Command line tool for building Arduino sketches
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+BUILD_DEPENDS=	go:lang/go
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	arduino
+GH_SUBDIR=	src/github.com/${GH_ACCOUNT}/${PORTNAME}
+GH_TUPLE=	go-errors:errors:a418503:goerrors/src/github.com/go-errors/errors \
+		stretchr:testify:v1.1.3:stretchr/src/github.com/stretchr/testify \
+		jstemmer:go-junit-report:833f8ea:jstemmer/src/github.com/jstemmer/go-junit-report
+
+STRIP=		# stripping can break go binaries
+
+do-build:
+	@( cd ${WRKSRC} ; ${SETENV} GOPATH=${WRKSRC} go build arduino.cc/arduino-builder )
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
+
+PLIST_FILES=	bin/${PORTNAME}
+
+.include <bsd.port.mk>

Added: head/devel/arduino-builder/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/arduino-builder/distinfo	Tue Oct 11 15:02:05 2016	(r423766)
@@ -0,0 +1,9 @@
+TIMESTAMP = 1474688787
+SHA256 (arduino-arduino-builder-1.3.21_GH0.tar.gz) = 3ccdc5657370600c350fdd7259755723640c6018a8f7c3e4393908365f8abc10
+SIZE (arduino-arduino-builder-1.3.21_GH0.tar.gz) = 202545
+SHA256 (go-errors-errors-a418503_GH0.tar.gz) = 6ab9a4b65930b72d0b94110670d22c6bdb0fe69d333dc5835f5ffd2b7a1d1080
+SIZE (go-errors-errors-a418503_GH0.tar.gz) = 7842
+SHA256 (stretchr-testify-v1.1.3_GH0.tar.gz) = 36c8493b914485dab92670fb39c4c105596fdc03493d4c007c6917c9637cd672
+SIZE (stretchr-testify-v1.1.3_GH0.tar.gz) = 81051
+SHA256 (jstemmer-go-junit-report-833f8ea_GH0.tar.gz) = 74519a9276270bc98e787b05ebcc9b8e90226d9594461d305e41bf648bc75f75
+SIZE (jstemmer-go-junit-report-833f8ea_GH0.tar.gz) = 6903

Added: head/devel/arduino-builder/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/arduino-builder/pkg-descr	Tue Oct 11 15:02:05 2016	(r423766)
@@ -0,0 +1,5 @@
+arduino-builder is a command line tool for compiling Arduino sketches.
+It is used by newer versions of the Arduino IDE, and may also be used
+standalone if provided hardware definitions and a tools directory. 
+
+WWW: https://github.com/arduino/arduino-builder



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610111502.u9BF25Gd081353>