apk-tools-2.1.0_pre1

cute-signatures
Timo Teräs 2011-03-29 14:51:57 +03:00
parent e783f20eff
commit 9eeb95470b
2 changed files with 4 additions and 5 deletions

View File

@ -4,7 +4,7 @@
-include config.mk
PACKAGE := apk-tools
VERSION := 2.0.7
VERSION := 2.1.0_pre1
##
# Default directories

View File

@ -109,12 +109,11 @@ static int fetch_package(struct fetch_ctx *fctx,
return 0;
}
apk_message("Downloading %s-" BLOB_FMT, pkg->name->name,
BLOB_PRINTF(*pkg->version));
apk_message("Downloading " PKG_VER_FMT, PKG_VER_PRINTF(pkg));
repo = apk_db_select_repo(db, pkg);
if (repo == NULL) {
apk_error("%s-" BLOB_FMT ": package is not currently available",
pkg->name->name, BLOB_PRINTF(*pkg->version));
apk_error(PKG_VER_FMT ": package is not currently available",
PKG_VER_PRINTF(pkg));
return -1;
}