apk-tools-2.1.0_pre1
parent
e783f20eff
commit
9eeb95470b
2
Makefile
2
Makefile
|
@ -4,7 +4,7 @@
|
||||||
-include config.mk
|
-include config.mk
|
||||||
|
|
||||||
PACKAGE := apk-tools
|
PACKAGE := apk-tools
|
||||||
VERSION := 2.0.7
|
VERSION := 2.1.0_pre1
|
||||||
|
|
||||||
##
|
##
|
||||||
# Default directories
|
# Default directories
|
||||||
|
|
|
@ -109,12 +109,11 @@ static int fetch_package(struct fetch_ctx *fctx,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
apk_message("Downloading %s-" BLOB_FMT, pkg->name->name,
|
apk_message("Downloading " PKG_VER_FMT, PKG_VER_PRINTF(pkg));
|
||||||
BLOB_PRINTF(*pkg->version));
|
|
||||||
repo = apk_db_select_repo(db, pkg);
|
repo = apk_db_select_repo(db, pkg);
|
||||||
if (repo == NULL) {
|
if (repo == NULL) {
|
||||||
apk_error("%s-" BLOB_FMT ": package is not currently available",
|
apk_error(PKG_VER_FMT ": package is not currently available",
|
||||||
pkg->name->name, BLOB_PRINTF(*pkg->version));
|
PKG_VER_PRINTF(pkg));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue