Skip to content

Commit 21b24c5

Browse files
committed
lib: onigmo: upgrade 6.1.0 -> 6.1.2
Signed-off-by: Eduardo Silva <eduardo@treasure-data.com>
1 parent 996c6d4 commit 21b24c5

36 files changed

+1069
-17783
lines changed

lib/onigmo/.gitignore

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# ignore dot-files, binary files and backup files
2+
.*
3+
*.o
4+
*.lo
5+
*.so
6+
*.a
7+
*.la
8+
*.obj
9+
*.def
10+
*.dll
11+
*.exe
12+
*.exp
13+
*.lib
14+
*.pdb
15+
*.pyc
16+
*.bak
17+
*.BAK
18+
*~
19+
*.swp
20+
*.orig
21+
*.rej
22+
*.RES
23+
*.res
24+
25+
# gcov files
26+
*.gcda
27+
*.gcno
28+
*.gcov
29+
30+
# don't want to ignore
31+
!.gitignore
32+
!.editorconfig
33+
!.travis.yml
34+
35+
# working dirs
36+
.deps
37+
.libs
38+
/build*/
39+
40+
# autotools generated files
41+
/autom4te.cache
42+
/config.h
43+
/config.log
44+
/config.status
45+
/libtool
46+
/onigmo-config
47+
/onigmo.pc
48+
/Makefile
49+
/sample/Makefile
50+
/stamp-h1
51+
52+
# generated executable files
53+
/enc/mktable
54+
/sample/crnl
55+
/sample/encode
56+
/sample/listcap
57+
/sample/names
58+
/sample/posix
59+
/sample/scan
60+
/sample/simple
61+
/sample/sql
62+
/sample/syntax
63+
/testc
64+
/testcu
65+
/testp
66+
67+
# tag files
68+
tags
69+
TAGS
70+
71+
# GNU global files
72+
GPATH
73+
GRTAGS
74+
GSYMS
75+
GTAGS

lib/onigmo/.travis.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

lib/onigmo/HISTORY

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
History of Onigmo (Oniguruma-mod)
22

3+
2017/05/15: Version 6.1.2
4+
5+
2017/05/15: [dist] Update LTVERSION to "6:3:0".
6+
2017/05/01: [bug] Import Ruby r58468
7+
Fix macro expansion bug.
8+
2017/04/05: [doc] Improve document about absence operator (Issue #87)
9+
2017/04/03: [impl] Import the latest enc-unicode.rb from Ruby r58070.
10+
(Includes Ruby r58065, r58066, r58069 and r58070.)
11+
2017/03/14: [bug] Import Ruby r57816
12+
Fix UTF-32 valid_encoding?.
13+
2017/02/20: [bug] Import Ruby r57660
14+
Initialize return values.
15+
https://bugs.ruby-lang.org/issues/13234
16+
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-6181
17+
2017/01/31: [API] Fix missing const on onig_new_without_alloc. (Issue #85)
18+
19+
2017/01/29: Version 6.1.1
20+
21+
2017/01/29: [dist] Update LTVERSION to "6:2:0".
22+
2017/01/29: [bug] Fix that (?~\S+) might cause infinite loop.
23+
Reported at: http://sakura.qp.land.to/?BugReport%2F211
24+
325
2017/01/16: Version 6.1.0
426

527
2017/01/16: [dist] Update LTVERSION to "6:1:0".
@@ -254,7 +276,7 @@ History of Onigmo (Oniguruma-mod)
254276
Add the default multithread implementations for Win32 and
255277
Unix. Add --enable-multithread option in configure.
256278
2014/04/12: [bug] deadlock occurs when recursive lock is not allowed
257-
2014/04/12: [bug] fix: segmation fault occurs when many groups are used
279+
2014/04/12: [bug] fix: segmentation fault occurs when many groups are used
258280
(Issue #24)
259281
see: https://bugs.ruby-lang.org/issues/8716
260282
2014/01/22: [new] (thanks Allan Odgaard)

lib/onigmo/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ EXTRA_DIST = .gitignore onigmo.pc.in HISTORY README.ja README.md \
4444
doc/API doc/API.ja doc/RE doc/RE.ja doc/FAQ doc/FAQ.ja \
4545
doc/UnicodeProps.txt \
4646
tool/.gitignore tool/Makefile tool/case-folding.rb \
47-
tool/convert-name2ctype.sh tool/convert-jis-props.sh \
47+
tool/convert-jis-props.sh \
4848
tool/enc-unicode.rb tool/download-ucd.sh tool/update-doc.py \
4949
win32/Makefile win32/Makefile.mingw win32/config.h win32/testc.c \
5050
win32/makedef.py win32/onigmo.rc \

lib/onigmo/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ EXTRA_DIST = .gitignore onigmo.pc.in HISTORY README.ja README.md \
374374
doc/API doc/API.ja doc/RE doc/RE.ja doc/FAQ doc/FAQ.ja \
375375
doc/UnicodeProps.txt \
376376
tool/.gitignore tool/Makefile tool/case-folding.rb \
377-
tool/convert-name2ctype.sh tool/convert-jis-props.sh \
377+
tool/convert-jis-props.sh \
378378
tool/enc-unicode.rb tool/download-ucd.sh tool/update-doc.py \
379379
win32/Makefile win32/Makefile.mingw win32/config.h win32/testc.c \
380380
win32/makedef.py win32/onigmo.rc \

lib/onigmo/appveyor.yml

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)