From owner-svn-ports-all@freebsd.org Sun Mar 19 22:07:50 2017 Return-Path: Delivered-To: svn-ports-all@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 CC447D131CD; Sun, 19 Mar 2017 22:07:50 +0000 (UTC) (envelope-from bsam@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 7877D1272; Sun, 19 Mar 2017 22:07:50 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2JM7nJD055076; Sun, 19 Mar 2017 22:07:49 GMT (envelope-from bsam@FreeBSD.org) Received: (from bsam@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2JM7nlU055072; Sun, 19 Mar 2017 22:07:49 GMT (envelope-from bsam@FreeBSD.org) Message-Id: <201703192207.v2JM7nlU055072@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bsam set sender to bsam@FreeBSD.org using -f From: Boris Samorodov Date: Sun, 19 Mar 2017 22:07:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436513 - in head/devel: . arduinoOTA 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.23 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: Sun, 19 Mar 2017 22:07:50 -0000 Author: bsam Date: Sun Mar 19 22:07:49 2017 New Revision: 436513 URL: https://svnweb.freebsd.org/changeset/ports/436513 Log: Tool for performing OTA updates on Arduino boards and the ESP8266. WWW: https://www.arduino.cc PR: 217842 Submitted by: bsdports@kyle-evans.net Added: head/devel/arduinoOTA/ head/devel/arduinoOTA/Makefile (contents, props changed) head/devel/arduinoOTA/distinfo (contents, props changed) head/devel/arduinoOTA/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Mar 19 20:26:22 2017 (r436512) +++ head/devel/Makefile Sun Mar 19 22:07:49 2017 (r436513) @@ -106,6 +106,7 @@ SUBDIR += arduino-sevseg SUBDIR += arduino-tools SUBDIR += arduino16 + SUBDIR += arduinoOTA SUBDIR += argdata SUBDIR += argouml SUBDIR += argp-standalone Added: head/devel/arduinoOTA/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arduinoOTA/Makefile Sun Mar 19 22:07:49 2017 (r436513) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= arduinoOTA +PORTVERSION= 1.2.0 +CATEGORIES= devel + +MAINTAINER= bsdports@kyle-evans.net +COMMENT= OTA upload tool for Arduino/ESP8266 + +LICENSE= GPLv3 + +BUILD_DEPENDS= go:lang/go + +USE_GITHUB= yes +GH_ACCOUNT= arduino +GH_TAGNAME= c2b8306 + +PLIST_FILES= bin/${PORTNAME} +COMPILEINFO= ${OPSYS}${OSREL}-${ARCH}-${GH_TAGNAME} + +STRIP= # stripping can break go binaries + +do-build: + (cd ${WRKSRC} && ${SETENV} ${GO_ENV} go build -o ${PORTNAME} -ldflags "-X main.compileInfo=${COMPILEINFO}" main.go) + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include Added: head/devel/arduinoOTA/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arduinoOTA/distinfo Sun Mar 19 22:07:49 2017 (r436513) @@ -0,0 +1,3 @@ +TIMESTAMP = 1489629303 +SHA256 (arduino-arduinoOTA-1.2.0-c2b8306_GH0.tar.gz) = aa4ab21ce1d906793a4b9e1286fd4d38b2d255aa4a42111460c96bbe6d79b3b7 +SIZE (arduino-arduinoOTA-1.2.0-c2b8306_GH0.tar.gz) = 2549 Added: head/devel/arduinoOTA/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arduinoOTA/pkg-descr Sun Mar 19 22:07:49 2017 (r436513) @@ -0,0 +1,3 @@ +Tool for performing OTA updates on Arduino boards and the ESP8266. + +WWW: https://www.arduino.cc