The NetBSD Project

CVS log for pkgsrc/textproc/oniguruma/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / textproc / oniguruma

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.26 / (download) - annotate - [select for diffs], Thu Oct 19 14:44:45 2023 UTC (5 months, 4 weeks ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2024Q1-base, pkgsrc-2024Q1, pkgsrc-2023Q4-base, pkgsrc-2023Q4, HEAD
Changes since 1.25: +2 -2 lines
Diff to previous 1.25 (colored)

oniguruma: update to 6.9.9.

    Update Unicode version 15.1.0
    NEW API: ONIG_OPTION_MATCH_WHOLE_STRING
    Fixed: (?I) option was not enabled for character classes (Issue #264).
    Changed specification to check for incorrect POSIX bracket (Issue #253).
    Changed [[:punct:]] in Unicode encodings to be compatible with POSIX definition. (Issue #268)
    Fixed: ONIG_OPTION_FIND_LONGEST behavior

Revision 1.25 / (download) - annotate - [select for diffs], Wed May 4 06:39:51 2022 UTC (23 months, 2 weeks ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1, pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2
Changes since 1.24: +3 -3 lines
Diff to previous 1.24 (colored)

oniguruma: update to 6.9.8.

    Update Unicode version 14.0.0
    Whole options
        (?C) : ONIG_OPTION_DONT_CAPTURE_GROUP
        (?I) : ONIG_OPTION_IGNORECASE_IS_ASCII
        (?L) : ONIG_OPTION_FIND_LONGEST
    Fixed some problems found by OSS-Fuzz

Revision 1.24 / (download) - annotate - [select for diffs], Thu Apr 15 18:44:31 2021 UTC (3 years ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2022Q1-base, pkgsrc-2022Q1, pkgsrc-2021Q4-base, pkgsrc-2021Q4, pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2
Changes since 1.23: +5 -7 lines
Diff to previous 1.23 (colored)

oniguruma: updated to 6.9.7.1

Release 6.9.7 revised 1

fix: replace UChar to OnigUChar in oniguruma.h

Revision 1.23 / (download) - annotate - [select for diffs], Wed Apr 14 10:53:47 2021 UTC (3 years ago) by kim
Branch: MAIN
Changes since 1.22: +2 -2 lines
Diff to previous 1.22 (colored)

textproc/oniguruma: update to 6.9.7

Changes since 6.9.6:
- NEW API: ONIG_OPTION_CALLBACK_EACH_MATCH
- NEW API: ONIG_OPTION_IGNORECASE_IS_ASCII
- NEW API: ONIG_SYNTAX_PYTHON
- Fixed some problems found by OSS-Fuzz

Revision 1.22 / (download) - annotate - [select for diffs], Thu Nov 5 07:08:27 2020 UTC (3 years, 5 months ago) by kim
Branch: MAIN
CVS Tags: pkgsrc-2021Q1-base, pkgsrc-2021Q1, pkgsrc-2020Q4-base, pkgsrc-2020Q4
Changes since 1.21: +2 -2 lines
Diff to previous 1.21 (colored)

oniguruma: update to 6.9.6

No notable changes since 6.9.6rc4

Revision 1.21 / (download) - annotate - [select for diffs], Wed Oct 21 09:27:40 2020 UTC (3 years, 5 months ago) by kim
Branch: MAIN
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored)

oniguruma: update to 6.9.6rc4

Changes since 6.9.6rc3:
- Revert fix for CVE-2020-26159, which was actually a false positive from
  Coverity checks (issue #221).

Revision 1.20 / (download) - annotate - [select for diffs], Sat Oct 17 07:42:23 2020 UTC (3 years, 6 months ago) by kim
Branch: MAIN
Changes since 1.19: +2 -2 lines
Diff to previous 1.19 (colored)

oniguruma: update to 6.9.6rc3

Changes since 6.9.6rc2:
- Fix a binary compatibility issue (missing `reg_number_of_names' symbol)
- Fix a build issue using msys2 and mingw64 on Windows 10

Revision 1.19 / (download) - annotate - [select for diffs], Mon Oct 12 22:21:29 2020 UTC (3 years, 6 months ago) by kim
Branch: MAIN
Changes since 1.18: +2 -2 lines
Diff to previous 1.18 (colored)

oniguruma: update to 6.9.6rc2

Changes since 6.9.6rc1:
- Fix a Windows build issue.

Revision 1.18 / (download) - annotate - [select for diffs], Wed Oct 7 21:27:17 2020 UTC (3 years, 6 months ago) by kim
Branch: MAIN
Changes since 1.17: +6 -8 lines
Diff to previous 1.17 (colored)

oniguruma: updated to 6.9.6rc1

Add handling of -revN as plN (instead of .N) and -rcN as rcN in Makefile.
Use the -revN or -rcN naming in DISTFILE, as they are (apparently) created
automatically by GitHub. Munge GITHUB_RELEASE to produce the tag name with
an underscore instead of a hyphen before rev or rc. Munge WRKSRC to strip
both -revN and -rcN.

6.9.6 Release Candidate 1
- In a Unix environment, if you have the POSIX API enabled in
  an earlier version (disabled by default in 6.9.5) and you
  need application binary compatibility with the POSIX API,
  specify "--enable-binary-compatible-posix-api=yes" instead of
  "--enable-posix-api=yes". "--enable-posix-api=yes" only supports
  source-level compatibility for POSIX API since 6.9.6.
- NEW: configure option --enable-binary-compatible-posix-api=[yes/no]
- NEW API: Limiting the maximum number of calls of subexp-call
- NEW API: ONIG_OPTION_NOT_BEGIN_STRING / NOT_END_STRING /
  NOT_BEGIN_POSITION
- Fixed behavior of ONIG_OPTION_NOTBOL / NOTEOL
- Fixed many problems found by OSS-Fuzz
- Fixed many problems found by Coverity
- Fixed CVE-2020-26159

Revision 1.17 / (download) - annotate - [select for diffs], Wed Jun 10 13:57:20 2020 UTC (3 years, 10 months ago) by hauke
Branch: MAIN
CVS Tags: pkgsrc-2020Q3-base, pkgsrc-2020Q3, pkgsrc-2020Q2-base, pkgsrc-2020Q2
Changes since 1.16: +5 -1 lines
Diff to previous 1.16 (colored)

Upstream stoppped installing onigposix.h, which e.g. wip/libevhtp
expects to find.

Restore the old behaviour.

Revision 1.16 / (download) - annotate - [select for diffs], Mon Jun 8 11:26:32 2020 UTC (3 years, 10 months ago) by adam
Branch: MAIN
Changes since 1.15: +7 -4 lines
Diff to previous 1.15 (colored)

oniguruma: updated to 6.9.5.1

Release 6.9.5 revised 1
Fixed Issue 192

Release 6.9.5
(Same as Release Candidate 2)
POSIX API disabled by default for Unix (* Enabled by: configure --enable-posix-api=yes)
Update Unicode version 13.0.0
NEW: Code point sequence notation \x{HHHH HHHH ...}, \o{OOOO OOOO ...}
NEW API: retry limit in search functions
NEW API: maximum nesting level of subexp call
Fixed behavior of isolated options in Perl and Java syntaxes. /...(?i).../

Revision 1.15 / (download) - annotate - [select for diffs], Wed Dec 11 18:50:46 2019 UTC (4 years, 4 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2020Q1-base, pkgsrc-2020Q1, pkgsrc-2019Q4-base, pkgsrc-2019Q4
Changes since 1.14: +2 -2 lines
Diff to previous 1.14 (colored)

oniguruma: updated to 6.9.4

Release 6.9.4
(Almost same as Release Candidate 3)
NEW API: RegSet (set of regexes)
Fixed CVE-2019-19012
Fixed CVE-2019-19203 (Does not affect UTF-8, UTF-16 and UTF-32 encodings)
Fixed CVE-2019-19204 (Affects only PosixBasic, Emacs and Grep syntaxes)
Fixed CVE-2019-19246
Fixed some problems (found by libFuzzer test)

Revision 1.14 / (download) - annotate - [select for diffs], Fri Aug 16 14:34:44 2019 UTC (4 years, 8 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2019Q3-base, pkgsrc-2019Q3
Changes since 1.13: +2 -2 lines
Diff to previous 1.13 (colored)

oniguruma: update to 6.9.3.

2019/08/06: Version 6.9.3 (secirity fix release)

2019/07/30: add ONIG_SYN_ALLOW_INVALID_CODE_END_OF_RANGE
2019/07/29: add STK_PREC_READ_START/END stack type
2019/07/29: Fix #147: Stack Exhaustion Problem caused by some parsing functions
2019/07/11: add a dictionary file for libfuzzer
2019/07/07: add harnesses directory
2019/07/05-2019/07/29: fix many problems found by libfuzzer programs
2019/06/27: deprecate onig_new_deluxe()
2019/06/27: Fix CVE-2019-13224: don't allow different encodings for onig_new_deluxe()
2019/06/27: Fix CVE-2019-13225: problem in converting if-then-else pattern

Revision 1.13 / (download) - annotate - [select for diffs], Tue May 21 18:22:04 2019 UTC (4 years, 10 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2019Q2-base, pkgsrc-2019Q2
Changes since 1.12: +2 -2 lines
Diff to previous 1.12 (colored)

oniguruma: update to 6.9.2.

add doc/SYNTAX.md into distribution file
Update Unicode version 12.1.0
NEW: Unicode Text Segment mode option (?y{g}) (?y{w})

Revision 1.12 / (download) - annotate - [select for diffs], Wed Dec 12 12:46:58 2018 UTC (5 years, 4 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2019Q1-base, pkgsrc-2019Q1, pkgsrc-2018Q4-base, pkgsrc-2018Q4
Changes since 1.11: +2 -2 lines
Diff to previous 1.11 (colored)

oniguruma: updated to 6.9.1

release 6.9.1
Speed improvement (* especially UTF-8)

Revision 1.11 / (download) - annotate - [select for diffs], Thu Sep 6 09:44:23 2018 UTC (5 years, 7 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2018Q3-base, pkgsrc-2018Q3
Changes since 1.10: +4 -3 lines
Diff to previous 1.10 (colored)

oniguruma: updated to 6.9.0

6.9.0:
Update Unicode version 11.0.0
NEW: add Emoji properties

Revision 1.10 / (download) - annotate - [select for diffs], Wed Apr 18 07:04:22 2018 UTC (6 years ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2018Q2-base, pkgsrc-2018Q2
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored)

oniguruma: updated to 6.8.2

6.8.2:
Fix: UChar in header causes issue
NEW API: onig_set_callout_user_data_of_match_param() (* omission in 6.8.0)
add doc/CALLOUTS.API and doc/CALLOUTS.API.ja

Revision 1.9 / (download) - annotate - [select for diffs], Thu Mar 22 08:05:25 2018 UTC (6 years ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2018Q1-base, pkgsrc-2018Q1
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (colored)

oniguruma: updated to 6.8.1

6.8.1:
Update shared library version to 5.0.0 for API incompatible changes from 6.7.1

Revision 1.8 / (download) - annotate - [select for diffs], Fri Mar 16 08:03:02 2018 UTC (6 years, 1 month ago) by adam
Branch: MAIN
Changes since 1.7: +4 -5 lines
Diff to previous 1.7 (colored)

oniguruma: updated to 6.8.0

6.8.0:
Retry-limit-in-match function enabled by default
NEW: configure option --enable-posix-api=no (* enabled by default)
NEW API: onig_search_with_param(), onig_match_with_param()
NEW: Callouts of contents (?{...contents...}) (?{...}[X<>]) (?{{....}})
NEW: Callouts of name (*name) (*name[tag]{args...})
NEW: Builtin callouts (*FAIL) (*MISMATCH) (*ERROR{n}) (*COUNT) (*MAX{n}) etc..

Revision 1.7 / (download) - annotate - [select for diffs], Sun Jan 28 16:25:36 2018 UTC (6 years, 2 months ago) by wiz
Branch: MAIN
Changes since 1.6: +2 -2 lines
Diff to previous 1.6 (colored)

oniguruma: update to 6.7.1.

2018/01/26: Version 6.7.1

2018/01/25: disable USE_TRY_IN_MATCH_LIMIT by default
2018/01/24: implement mechanism of try-in-match-limit
2018/01/24: #76: rename EXPORT to ONIGURUMA_EXPORT
2018/01/15: #73: update for automake 1.15.1
2018/01/14: #74: update description of README
2018/01/10: #72: Correct spelling and grammar in FAQ (English)
2017/12/25: remove USE_COMBINATION_EXPLOSION_CHECK codes

Revision 1.6 / (download) - annotate - [select for diffs], Mon Jan 15 08:49:04 2018 UTC (6 years, 3 months ago) by adam
Branch: MAIN
Changes since 1.5: +9 -8 lines
Diff to previous 1.5 (colored)

oniguruma: updated to 6.7.0

New feature of version 6.7.0
NEW: hexadecimal codepoint \uHHHH
NEW: add ONIG_SYNTAX_ONIGURUMA (== ONIG_SYNTAX_DEFAULT)
Disabled \N and \O on ONIG_SYNTAX_RUBY
Reduced object size

New feature of version 6.6.1
Fix definition of \X

New feature of version 6.6.0
NEW: ASCII only mode options for character type/property (?WDSP)
NEW: Extended Grapheme Cluster boundary \y, \Y (*original)
NEW: Extended Grapheme Cluster \X
Range-clear (Absent-clear) operator restores previous range in backtrack.

New feature of version 6.5.0
NEW: \K (keep)
NEW: \R (general newline) \N (no newline)
NEW: \O (true anychar)
NEW: if-then-else syntax (?(...)...|...)
NEW: Backreference validity checker (?(xxx)) (*original)
NEW: Absent repeater (?~absent)
NEW: Absent expression (?~|absent|expr) (*original)
NEW: Absent stopper (?~|absent) (*original)

New feature of version 6.4.0
Fix fatal problem of endless repeat on Windows
NEW: call zero (call the total regexp) \g<0>
NEW: relative backref/call by positive number \k<+n>, \g<+n>

New feature of version 6.3.0
NEW: octal codepoint \o{.....}

New feature of version 6.1.2
allow word bound, word begin and word end in look-behind.
NEW option: ONIG_OPTION_CHECK_VALIDITY_OF_STRING

New feature of version 6.1
improved doc/RE
NEW API: onig_scan()

New feature of version 6.0
Update Unicode 8.0 Property/Case-folding
NEW API: onig_unicode_define_user_property()

Revision 1.5 / (download) - annotate - [select for diffs], Thu Oct 25 06:56:09 2012 UTC (11 years, 5 months ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3, pkgsrc-2017Q2-base, pkgsrc-2017Q2, pkgsrc-2017Q1-base, pkgsrc-2017Q1, pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3, pkgsrc-2016Q2-base, pkgsrc-2016Q2, pkgsrc-2016Q1-base, pkgsrc-2016Q1, pkgsrc-2015Q4-base, pkgsrc-2015Q4, pkgsrc-2015Q3-base, pkgsrc-2015Q3, pkgsrc-2015Q2-base, pkgsrc-2015Q2, pkgsrc-2015Q1-base, pkgsrc-2015Q1, pkgsrc-2014Q4-base, pkgsrc-2014Q4, pkgsrc-2014Q3-base, pkgsrc-2014Q3, pkgsrc-2014Q2-base, pkgsrc-2014Q2, pkgsrc-2014Q1-base, pkgsrc-2014Q1, pkgsrc-2013Q4-base, pkgsrc-2013Q4, pkgsrc-2013Q3-base, pkgsrc-2013Q3, pkgsrc-2013Q2-base, pkgsrc-2013Q2, pkgsrc-2013Q1-base, pkgsrc-2013Q1, pkgsrc-2012Q4-base, pkgsrc-2012Q4
Changes since 1.4: +1 -3 lines
Diff to previous 1.4 (colored)

Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.

Revision 1.4 / (download) - annotate - [select for diffs], Fri Sep 10 08:26:38 2010 UTC (13 years, 7 months ago) by taca
Branch: MAIN
CVS Tags: pkgsrc-2012Q3-base, pkgsrc-2012Q3, pkgsrc-2012Q2-base, pkgsrc-2012Q2, pkgsrc-2012Q1-base, pkgsrc-2012Q1, pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q3-base, pkgsrc-2011Q3, pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3
Changes since 1.3: +3 -2 lines
Diff to previous 1.3 (colored)

Update oniguruma to 5.9.2.

* Add LICENSE.

History

2010/01/09: Version 5.9.2

2010/01/05: [bug]  fix utf16be_code_to_mbc() and utf16le_code_to_mbc().
2008/09/16: [bug]  fix memory leaks in parse_exp().
2008/08/01: [bug]  fix memory leaks.
2008/06/17: [bug]  invalid type of argument was used
                   in onig_st_lookup_strend().
2008/06/16: [bug]  invalid CaseFoldMap entry in ISO-8859-5. 0xdf -> 0xde
2008/02/19: [new]  add: onig_reg_init().
2008/02/19: [new]  add: onig_free_body().
2008/02/19: [new]  add: onig_new_without_alloc().
2008/02/19: [API]  rename onig_alloc_init() to onig_reg_init(),
                   and argument type changed.
2008/01/31: [impl] move UTF16_IS_SURROGATE_XXX() to regenc.h.
2008/01/30: [bug]  (thanks akr)
                   fix euctw_islead().
2008/01/23: [bug]  update enc/koi8.c.

Revision 1.3 / (download) - annotate - [select for diffs], Fri May 7 08:34:23 2010 UTC (13 years, 11 months ago) by ahoka
Branch: MAIN
CVS Tags: pkgsrc-2010Q2-base, pkgsrc-2010Q2
Changes since 1.2: +2 -2 lines
Diff to previous 1.2 (colored)

Drop maintainership on these packages, I am no longer interested.

Revision 1.2 / (download) - annotate - [select for diffs], Sun Aug 10 01:19:46 2008 UTC (15 years, 8 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2010Q1-base, pkgsrc-2010Q1, pkgsrc-2009Q4-base, pkgsrc-2009Q4, pkgsrc-2009Q3-base, pkgsrc-2009Q3, pkgsrc-2009Q2-base, pkgsrc-2009Q2, pkgsrc-2009Q1-base, pkgsrc-2009Q1, pkgsrc-2008Q4-base, pkgsrc-2008Q4, pkgsrc-2008Q3-base, pkgsrc-2008Q3, cube-native-xorg-base, cube-native-xorg
Changes since 1.1: +3 -1 lines
Diff to previous 1.1 (colored)

Add test target.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sat Aug 9 17:33:22 2008 UTC (15 years, 8 months ago) by ahoka
Branch: TNF
CVS Tags: pkgsrc-base
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

Import oniguruma-5.9.1 as textproc/oniguruma.

Oniguruma is a regular expressions library.
The characteristics of this library is that different character encoding
for every regular expression object can be specified.

Supported APIs: GNU regex, POSIX and Oniguruma native

Revision 1.1 / (download) - annotate - [select for diffs], Sat Aug 9 17:33:22 2008 UTC (15 years, 8 months ago) by ahoka
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>