Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Adélie Package Tree
Manage
Activity
Members
Labels
Plan
Issues
202
Issue boards
Milestones
Wiki
Code
Merge requests
24
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adélie Linux
Adélie Package Tree
Commits
1a458f96
Verified
Commit
1a458f96
authored
4 years ago
by
Anna Wilcox
🦊
Browse files
Options
Downloads
Patches
Plain Diff
user/oniguruma: Update to 6.9.5.1
parent
0b321aaa
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
user/oniguruma/192.patch
+25
-0
25 additions, 0 deletions
user/oniguruma/192.patch
user/oniguruma/APKBUILD
+6
-3
6 additions, 3 deletions
user/oniguruma/APKBUILD
with
31 additions
and
3 deletions
user/oniguruma/192.patch
0 → 100644
+
25
−
0
View file @
1a458f96
From 47af49af70a717ac31c54ae55ad242a27f213def Mon Sep 17 00:00:00 2001
From: "K.Kosako" <kkosako0@gmail.com>
Date: Wed, 22 Apr 2020 14:47:09 +0900
Subject: [PATCH] fix #192: Unexpected regex match
---
src/regcomp.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/regcomp.c b/src/regcomp.c
index 4d5b78f..b3193c5 100644
--- a/src/regcomp.c
+++ b/src/regcomp.c
@@ -3567,6 +3567,11 @@
check_node_in_look_behind(Node* node, int not, int* used)
if (IS_NOT_NULL(NODE_BODY(node)))
r = check_node_in_look_behind(NODE_BODY(node), not, used);
+
+ /* Issue 192
+ escape removing node in tune_look_behind()
+ */
+ *used = TRUE;
break;
case NODE_GIMMICK:
This diff is collapsed.
Click to expand it.
user/oniguruma/APKBUILD
+
6
−
3
View file @
1a458f96
...
...
@@ -2,7 +2,7 @@
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Samuel Holland <samuel@sholland.org>
pkgname
=
oniguruma
pkgver
=
6.9.
4
pkgver
=
6.9.
5
pkgrel
=
0
pkgdesc
=
"A regular expression library"
url
=
"https://github.com/kkos/oniguruma"
...
...
@@ -11,7 +11,9 @@ license="BSD-2-Clause"
depends
=
""
makedepends
=
""
subpackages
=
"
$pkgname
-dev"
source
=
"https://github.com/kkos/
$pkgname
/releases/download/v
$pkgver
/onig-
$pkgver
.tar.gz"
source
=
"https://github.com/kkos/
$pkgname
/releases/download/v
$pkgver
/onig-
$pkgver
.tar.gz
192.patch
"
builddir
=
"
$srcdir
/onig-
$pkgver
"
# secfixes:
...
...
@@ -39,4 +41,5 @@ package() {
make
DESTDIR
=
"
$pkgdir
"
install
}
sha512sums
=
"ed8f42f6893966c0ee3c168b4fdbcb04b2286ad69ecab43a754c1dbc8fc4656e01319991d776d7144b6a3f90d050781b321432278d83c74c9565c2743851c85b onig-6.9.4.tar.gz"
sha512sums
=
"2bdb24914e7069c6df9ab8a3d0190ddb58440d94b13860cdc36d259062ae0bc2aa85d564a4209ec596fc7ee47b0823d1b817d4f7ffcc3ea60e9870da84491dc1 onig-6.9.5.tar.gz
b2e9926e0b9a22b2036bb43297e24726439938b8cf349f55ab09bf47d16a4862bb3bbdec8b425c7d174524121e49c4d6e567e26168894d7c564b7645d5a1bff5 192.patch"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment