From owner-svn-ports-all@freebsd.org Tue Oct 11 21:16:27 2016 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 376A5C0E8EE; Tue, 11 Oct 2016 21:16:27 +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 0419FAE4; Tue, 11 Oct 2016 21:16:26 +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 u9BLGQMv025702; Tue, 11 Oct 2016 21:16:26 GMT (envelope-from bsam@FreeBSD.org) Received: (from bsam@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9BLGPeB025698; Tue, 11 Oct 2016 21:16:25 GMT (envelope-from bsam@FreeBSD.org) Message-Id: <201610112116.u9BLGPeB025698@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bsam set sender to bsam@FreeBSD.org using -f From: Boris Samorodov Date: Tue, 11 Oct 2016 21:16:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423798 - in head/devel/arduino-irremote: . files 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: Tue, 11 Oct 2016 21:16:27 -0000 Author: bsam Date: Tue Oct 11 21:16:25 2016 New Revision: 423798 URL: https://svnweb.freebsd.org/changeset/ports/423798 Log: devel/arduino-irremote: Update to 2.1.0 PR: 210367 Submitted by: leres@ee.lbl.gov (maintainer) Deleted: head/devel/arduino-irremote/files/ Modified: head/devel/arduino-irremote/Makefile head/devel/arduino-irremote/distinfo head/devel/arduino-irremote/pkg-descr Modified: head/devel/arduino-irremote/Makefile ============================================================================== --- head/devel/arduino-irremote/Makefile Tue Oct 11 21:03:38 2016 (r423797) +++ head/devel/arduino-irremote/Makefile Tue Oct 11 21:16:25 2016 (r423798) @@ -2,11 +2,8 @@ # $FreeBSD$ PORTNAME= arduino-irremote -PORTVERSION= 0.1 -PORTREVISION= 1 +PORTVERSION= 2.1.0 CATEGORIES= devel -MASTER_SITES= http://files.arcfn.com/files/ -DISTNAME= IRremote MAINTAINER= leres@ee.lbl.gov COMMENT= Multi-protocol infrared remote library for the Arduino @@ -15,23 +12,30 @@ LICENSE= LGPL21 RUN_DEPENDS= arduino:devel/arduino -WRKSRC= ${WRKDIR}/IRremote -USES= zip dos2unix +USES= dos2unix +USE_GITHUB= yes +GH_ACCOUNT= z3t0 +GH_PROJECT= Arduino-IRremote +GH_TAGNAME= 2.1.0 NO_BUILD= yes -PLIST_FILES= arduino/libraries/IRremote/IRremote.cpp \ - arduino/libraries/IRremote/IRremote.h \ - arduino/libraries/IRremote/IRremoteInt.h \ - arduino/libraries/IRremote/keywords.txt +FILES= IRremote.cpp IRremote.h IRremoteInt.h irPronto.cpp \ + irRecv.cpp irSend.cpp ir_Aiwa.cpp ir_Denon.cpp \ + ir_Dish.cpp ir_JVC.cpp ir_LG.cpp ir_Mitsubishi.cpp \ + ir_NEC.cpp ir_Panasonic.cpp ir_RC5_RC6.cpp \ + ir_Samsung.cpp ir_Sanyo.cpp ir_Sharp.cpp ir_Sony.cpp \ + ir_Template.cpp ir_Whynter.cpp keywords.txt \ + +PLIST_FILES= ${FILES:S,^,arduino/libraries/IRremote/,} PORTEXAMPLES= * OPTIONS_DEFINE= EXAMPLES do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/arduino/libraries/IRremote - (cd ${WRKSRC} && ${INSTALL_DATA} IRremote.cpp IRremote.h IRremoteInt.h \ - keywords.txt ${STAGEDIR}${PREFIX}/arduino/libraries/IRremote) + (cd ${WRKSRC} && ${INSTALL_DATA} ${FILES} \ + ${STAGEDIR}${PREFIX}/arduino/libraries/IRremote) ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} Modified: head/devel/arduino-irremote/distinfo ============================================================================== --- head/devel/arduino-irremote/distinfo Tue Oct 11 21:03:38 2016 (r423797) +++ head/devel/arduino-irremote/distinfo Tue Oct 11 21:16:25 2016 (r423798) @@ -1,2 +1,3 @@ -SHA256 (IRremote.zip) = 2eff9847285330796b1fc8bf007f4a2f16dea7546ba1fcbaef1592a2235a60d4 -SIZE (IRremote.zip) = 23732 +TIMESTAMP = 1465001274 +SHA256 (z3t0-Arduino-IRremote-2.1.0_GH0.tar.gz) = 4cd26f5037590e99b3d065f17c4327542625a986fe421e25288209e713aece5b +SIZE (z3t0-Arduino-IRremote-2.1.0_GH0.tar.gz) = 50373 Modified: head/devel/arduino-irremote/pkg-descr ============================================================================== --- head/devel/arduino-irremote/pkg-descr Tue Oct 11 21:03:38 2016 (r423797) +++ head/devel/arduino-irremote/pkg-descr Tue Oct 11 21:16:25 2016 (r423798) @@ -1,7 +1,7 @@ -A Multi-Protocol Infrared Remote Library for the Arduino +Infrared remote library for Arduino: send and receive infrared +signals with multiple protocols -This IR remote library, written by Ken Shirriff, lets you both send -and receive IR remote codes in multiple protocols. It supports NEC, -Sony SIRC, Philips RC5, Philips RC6, and raw protocols. +This library enables you to send and receive using infra-red signals +on an Arduino. -WWW: http://www.arcfn.com/2009/08/multi-protocol-infrared-remote-library.html +WWW: http://z3t0.github.io/Arduino-IRremote/