summaryrefslogtreecommitdiff
path: root/src/add.c
diff options
context:
space:
mode:
authorWilliam Pitcock <nenolod@dereferenced.org>2017-05-27 21:49:53 +0000
committerWilliam Pitcock <nenolod@dereferenced.org>2017-05-27 21:49:53 +0000
commit693b4bcdb0f22904a521a7c8ac4f13e697dc4d71 (patch)
treea4cdf39e5c4ad6169bf3a3a261d1c833298238f5 /src/add.c
parentee5ce7284aef8679fabcf728dd5bd5a17c965798 (diff)
downloadapk-tools-693b4bcdb0f22904a521a7c8ac4f13e697dc4d71.tar.gz
apk-tools-693b4bcdb0f22904a521a7c8ac4f13e697dc4d71.tar.bz2
apk-tools-693b4bcdb0f22904a521a7c8ac4f13e697dc4d71.tar.xz
apk-tools-693b4bcdb0f22904a521a7c8ac4f13e697dc4d71.zip
version: add support for fuzzy version matching
This is useful for requirements such as: python3=~3.6, which would match python3-3.6.[0-9]. This implementation should in theory be backwards compatible with the implementation in Adelie.
Diffstat (limited to 'src/add.c')
-rw-r--r--src/add.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/add.c b/src/add.c
index 2df4dc8..742df07 100644
--- a/src/add.c
+++ b/src/add.c
@@ -137,7 +137,7 @@ static int add_main(void *ctx, struct apk_database *db, struct apk_string_array
apk_blob_pull_dep(&b, db, &dep);
if (APK_BLOB_IS_NULL(b) || b.len > 0) {
- apk_error("'%s' is not a valid dependency, format is name(@tag)([<>=]version)",
+ apk_error("'%s' is not a valid dependency, format is name(@tag)([<>~=]version)",
*parg);
return -1;
}