git: 5c603a1731f7 - main - devel/lua-lpeg: Update to 1.1.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 09 Jul 2023 10:34:35 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=5c603a1731f7026d042fe623f00af0bb261182ef commit 5c603a1731f7026d042fe623f00af0bb261182ef Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2023-07-09 10:18:19 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2023-07-09 10:18:19 +0000 devel/lua-lpeg: Update to 1.1.0 - Update MASTER_SITES - Update WWW Changes: https://github.com/roberto-ieru/LPeg/blob/master/HISTORY --- devel/lua-lpeg/Makefile | 8 ++++---- devel/lua-lpeg/distinfo | 6 +++--- devel/lua-lpeg/files/patch-makefile | 12 ++++++------ 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/devel/lua-lpeg/Makefile b/devel/lua-lpeg/Makefile index d6df18f3694d..f26e1f492386 100644 --- a/devel/lua-lpeg/Makefile +++ b/devel/lua-lpeg/Makefile @@ -1,14 +1,14 @@ PORTNAME= lpeg -PORTVERSION= 1.0.2 -PORTREVISION= 1 +PORTVERSION= 1.1.0 CATEGORIES= devel -MASTER_SITES= http://www.inf.puc-rio.br/~roberto/lpeg/ \ +MASTER_SITES= https://www.inf.puc-rio.br/~roberto/lpeg/ \ LOCAL/sunpoet PKGNAMEPREFIX= ${LUA_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= PEG-based pattern-matching library for Lua -WWW= http://www.inf.puc-rio.br/~roberto/lpeg/ +WWW= https://www.inf.puc-rio.br/~roberto/lpeg/ \ + https://github.com/roberto-ieru/LPeg LICENSE= MIT diff --git a/devel/lua-lpeg/distinfo b/devel/lua-lpeg/distinfo index 9f3bff943131..aa6d951453de 100644 --- a/devel/lua-lpeg/distinfo +++ b/devel/lua-lpeg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1552404235 -SHA256 (lpeg-1.0.2.tar.gz) = 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe -SIZE (lpeg-1.0.2.tar.gz) = 71840 +TIMESTAMP = 1688166114 +SHA256 (lpeg-1.1.0.tar.gz) = 4b155d67d2246c1ffa7ad7bc466c1ea899bbc40fef0257cc9c03cecbaed4352a +SIZE (lpeg-1.1.0.tar.gz) = 78042 diff --git a/devel/lua-lpeg/files/patch-makefile b/devel/lua-lpeg/files/patch-makefile index 2cc70d42cecf..9b310585057d 100644 --- a/devel/lua-lpeg/files/patch-makefile +++ b/devel/lua-lpeg/files/patch-makefile @@ -1,13 +1,13 @@ ---- makefile.orig 2019-03-11 14:08:29 UTC +--- makefile.orig 2023-06-26 16:30:55 UTC +++ makefile @@ -1,5 +1,5 @@ LIBNAME = lpeg --LUADIR = ../lua/ -+LUADIR ?= ../lua/ +-LUADIR = ./lua/ ++LUADIR ?= ./lua/ COPT = -O2 -DNDEBUG - # COPT = -g -@@ -22,8 +22,8 @@ CWARNS = -Wall -Wextra -pedantic \ + # COPT = -O0 -DLPEG_DEBUG -g +@@ -25,8 +25,8 @@ CWARNS = -Wall -Wextra -pedantic \ # -Wunreachable-code \ @@ -16,5 +16,5 @@ +CFLAGS += $(CWARNS) $(COPT) -std=c99 -I$(LUADIR) -fPIC +CC ?= gcc - FILES = lpvm.o lpcap.o lptree.o lpcode.o lpprint.o + FILES = lpvm.o lpcap.o lptree.o lpcode.o lpprint.o lpcset.o