git: 360d7706b362 - main - textproc/peg: Update to 0.1.19
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 21 Nov 2023 13:40:05 UTC
The branch main has been updated by jrm: URL: https://cgit.FreeBSD.org/ports/commit/?id=360d7706b3626c0bc66d5b5f7b45635695169677 commit 360d7706b3626c0bc66d5b5f7b45635695169677 Author: Joseph Mingrone <jrm@FreeBSD.org> AuthorDate: 2023-11-21 13:31:26 +0000 Commit: Joseph Mingrone <jrm@FreeBSD.org> CommitDate: 2023-11-21 13:39:10 +0000 textproc/peg: Update to 0.1.19 Also correct a typo in pkg-descr. Changes: Experimental support for re-entrant parsing through yyparsefrom_r(). Sponsored by: The FreeBSD Foundation --- textproc/peg/Makefile | 2 +- textproc/peg/distinfo | 6 +++--- textproc/peg/pkg-descr | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/textproc/peg/Makefile b/textproc/peg/Makefile index 5d5e56334ea3..5b0e87949548 100644 --- a/textproc/peg/Makefile +++ b/textproc/peg/Makefile @@ -1,5 +1,5 @@ PORTNAME= peg -DISTVERSION= 0.1.18 +DISTVERSION= 0.1.19 CATEGORIES= textproc MASTER_SITES= https://www.piumarta.com/software/peg/ diff --git a/textproc/peg/distinfo b/textproc/peg/distinfo index 09745daa3e9f..ede4998b7fb0 100644 --- a/textproc/peg/distinfo +++ b/textproc/peg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1655934585 -SHA256 (peg-0.1.18.tar.gz) = 20193bdd673fc7487a38937e297fff08aa73751b633a086ac28c3b34890f9084 -SIZE (peg-0.1.18.tar.gz) = 57776 +TIMESTAMP = 1700573296 +SHA256 (peg-0.1.19.tar.gz) = 0013dd83a6739778445a64bced3d74b9f50c07553f86ea43333ae5fab5c2bbb4 +SIZE (peg-0.1.19.tar.gz) = 136241 diff --git a/textproc/peg/pkg-descr b/textproc/peg/pkg-descr index 67ab5201bb9c..b4a072846042 100644 --- a/textproc/peg/pkg-descr +++ b/textproc/peg/pkg-descr @@ -1,5 +1,5 @@ peg and leg are tools for generating recursive-descent parsers: programs -that perform pattern matching on text. They processes a Parsing +that perform pattern matching on text. They process a Parsing Expression Grammar (PEG) [Ford 2004] to produce a program that recognises legal sentences of that grammar. peg processes PEGs written using the original syntax described by Ford; leg processes PEGs written