Skip to content

Commit fbee38e

Browse files
committed
fix: glib and isl version extraction patterns
- glib: extract major.minor from directory structure, append .0 for patch version - isl: fix cleanup pattern to only remove 'isl-' prefix, add capturing group
1 parent cb435b4 commit fbee38e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

recipes/glib.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build_type: custom
99
description: "Low-level core library that forms the basis of GTK+"
1010

1111
download:
12-
download_url: "https://download.gnome.org/sources/glib/{version}/glib-{version}.tar.xz"
12+
download_url: "https://download.gnome.org/sources/glib/{version}/glib-{version}.0.tar.xz"
1313
platforms:
1414
darwin-x86_64:
1515
darwin-arm64:

recipes/isl.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: isl
22
version:
33
source: "url:https://libisl.sourceforge.io/"
44
exclude_patterns: "(alpha|beta|rc|dev|preview|pre|snapshot|nightly|test|unstable|canary|next|edge|weekly|daily)"
5-
extract_pattern: "isl-[0-9]+\\.[0-9]+(\\.[0-9]+)?"
6-
cleanup: "isl-:.tar.xz"
5+
extract_pattern: "isl-([0-9]+\\.[0-9]+(?:\\.[0-9]+)?)"
6+
cleanup: "isl-:"
77

88
build_type: gnu_autotools
99
description: "Integer Set Library for manipulating sets and relations of integer points"

0 commit comments

Comments
 (0)