diff --git a/devel/arduino-irremote/Makefile b/devel/arduino-irremote/Makefile index 21f3ebc15d5e..723545f0423b 100644 --- a/devel/arduino-irremote/Makefile +++ b/devel/arduino-irremote/Makefile @@ -1,34 +1,34 @@ PORTNAME= arduino-irremote -PORTVERSION= 4.3.2 +PORTVERSION= 4.4.0 DISTVERSIONPREFIX= v CATEGORIES= devel MAINTAINER= leres@FreeBSD.org COMMENT= Multi-protocol infrared remote library for the Arduino WWW= https://arduino-irremote.github.io/Arduino-IRremote/ LICENSE= MIT USES= dos2unix USE_GITHUB= yes GH_ACCOUNT= z3t0 GH_PROJECT= Arduino-IRremote PORTSCOUT= limit:^[0-9] NO_BUILD= yes RELPATH= arduino/libraries/IRremote DATADIR= ${PREFIX}/${RELPATH} PORTDATA= * PORTEXAMPLES= * OPTIONS_DEFINE= EXAMPLES do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/${RELPATH} cd ${WRKSRC}/src && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${RELPATH} ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} .include diff --git a/devel/arduino-irremote/distinfo b/devel/arduino-irremote/distinfo index 66a34fd3a425..4b0ffbe530d0 100644 --- a/devel/arduino-irremote/distinfo +++ b/devel/arduino-irremote/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1718554724 -SHA256 (z3t0-Arduino-IRremote-v4.3.2_GH0.tar.gz) = f9fa16a03fd08a6d3e950fcabf301579603f73de980ff460f541a0b38ff2b311 -SIZE (z3t0-Arduino-IRremote-v4.3.2_GH0.tar.gz) = 1032154 +TIMESTAMP = 1719809779 +SHA256 (z3t0-Arduino-IRremote-v4.4.0_GH0.tar.gz) = 51868b6fddd68305014ef39508e178cfd66a0eb40cbd885ea7b330e51c0d3838 +SIZE (z3t0-Arduino-IRremote-v4.4.0_GH0.tar.gz) = 1040146 diff --git a/devel/arduino-irremote/files/patch-src_LongUnion.h b/devel/arduino-irremote/files/patch-src_LongUnion.h deleted file mode 100644 index 95e9a23b71a7..000000000000 --- a/devel/arduino-irremote/files/patch-src_LongUnion.h +++ /dev/null @@ -1,29 +0,0 @@ ---- src/LongUnion.h.orig 2024-06-16 17:07:29 UTC -+++ src/LongUnion.h -@@ -87,7 +87,7 @@ union LongUnion { - struct { - WordUnion LowWord; - WordUnion HighWord; -- } WordUnion; -+ } WordUnion2; - uint8_t UBytes[4]; // seems to have the same code size as using struct UByte - int8_t Bytes[4]; // Bytes[0] is LowByte - uint16_t UWords[2]; -@@ -122,7 +122,7 @@ union LongLongUnion { - WordUnion MidLowWord; - WordUnion MidHighWord; - WordUnion HighWord; -- } WordUnion; -+ } WordUnion3; - struct { - uint32_t LowLong; - uint32_t HighLong; -@@ -134,7 +134,7 @@ union LongLongUnion { - struct { - LongUnion LowLong; - LongUnion HighLong; -- } LongUnion; -+ } LongUnion2; - uint8_t UBytes[8]; // seems to have the same code size as using struct UByte - int8_t Bytes[8]; - uint16_t UWords[4];