Path to this page:
./
devel/ruby-parslet,
Parser construction library with great error reporting
Branch: CURRENT,
Version: 2.0.0,
Package name: ruby27-parslet-2.0.0,
Maintainer: pkgsrc-usersParslet makes developing complex parsers easy. It does so by
* providing the best error reporting possible
* not generating reams of code for you to debug
Parslet takes the long way around to make your job easier. It allows for
incremental language construction. Often, you start out small, implementing
the atoms of your language first; _parslet_ takes pride in making this
possible.
Required to run:[
devel/ruby-blankslate] [
lang/ruby26-base]
Required to build:[
pkgtools/cwrappers]
Master sites:
Filesize: 78 KB
Version history: (Expand)
- (2021-10-07) Updated to version: ruby27-parslet-2.0.0
- (2020-03-08) Updated to version: ruby26-parslet-2.0.0
- (2020-01-19) Updated to version: ruby26-parslet-1.8.2
- (2018-03-14) Updated to version: ruby24-parslet-1.8.2
- (2017-11-23) Package has been reborn
- (2017-04-23) Updated to version: ruby23-parslet-1.8.0
CVS history: (Expand)
2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016) |
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Could not be committed due to merge conflict:
devel/py-traitlets/distinfo
The following distfiles were unfetchable (note: some may be only fetched
conditionally):
./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
|
2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017) |
Log message:
devel: Remove SHA1 hashes for distfiles
|
2020-03-08 15:45:06 by Takahiro Kambe | Files touched by this commit (2) | |
Log message:
devel/ruby-parslet: update to 2.0.0
Update to ruby-parslet to 2.0.0.
= 2.0 / 16Feb2020
This release is essentially what is called a 'done' release, meaning I consider
that parslet meets its goals and doesn't need (much) more evolution.
- prsnt? and absnt? are now finally banned into oblivion. Wasting vocals for
the win.
- Because Ruby 2.6 broke Integer() conversion for non-Strings, we've removed
to_int for slices; to assert Integer type, you must now 'Integer(slice.to_s)'.
(Broken? How? Integer now (2.6) calls to_int - and when that fails - to_i.
A class that has both will never raise an exception. Incientially, this makes
String a unicorn class.)
|
2020-01-19 00:36:14 by Roland Illig | Files touched by this commit (3046) |
Log message:
all: migrate several HOMEPAGEs to https
pkglint --only "https instead of http" -r -F
With manual adjustments afterwards since pkglint 19.4.4 fixed a few
indentations in unrelated lines.
This mainly affects projects hosted at SourceForce, as well as
freedesktop.org, CTAN and GNU.
|
2019-11-03 11:00:25 by Roland Illig | Files touched by this commit (40) |
Log message:
devel/{go,ruby}-*: align variable assignments
pkglint -Wall -F --only aligned --only indent go-* ruby-*
No manual corrections.
|
2018-03-14 15:09:57 by Takahiro Kambe | Files touched by this commit (2) | |
Log message:
devel/ruby-parslet: update to 1.8.2
= 1.8.2 / 13Feb2018
! Improvements to performance in cases where atoms are dynamically generated
(Kevin Olbrich).
= 1.8.1 / 19Nov2017
- Minor fixes for language compatibility.
|
2017-04-22 18:27:32 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update ruby-parslet to 1.8.0.
= 1.8 / 3Apr2017
+ The `ignored` atom that allows to ignore a part of the matched text.
`str('foo').ignore` will match 'foo', but not yield any parse output.
Thanks to chrismwendt (Chris Wendt).
+ Infix expression parser (arithmetics, anyone?) now supports custom reducers
in block form. Thanks to chrismwendt (Chris Wendt).
! Small patches to memory footprint (Christophe Bliard).
- blankslate dependency removed. You should be good - but if things break,
please let us know (Nikita Shilnikov).
! Parslet now has `parse_failure_cause`, replaces the earlier `cause`.
! Fixes all these interpreter warnings on modern rubies.
|
2015-11-23 08:19:25 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update ruby-parslet to 1.7.1.
= 1.7 / 12Mar2015
! Small speed gains from improvements on the hot spots.
+ Contextual error reporter, a flavor of error reporting that emphasizes
context.
|