xbps: update to 0.9.1.

This commit is contained in:
Juan RP 2011-07-15 15:57:36 +02:00
parent 31272c9819
commit 4befae2504
3 changed files with 3 additions and 33 deletions

View file

@ -1,28 +0,0 @@
commit 5917fc74041d8e063b4945967fffce9d40e5c107
Author: Juan RP <xtraeme@gmail.com>
Date: Mon Jul 11 12:12:55 2011 +0200
xbps-repo: printf uint64_t with PRIu64.
diff --git a/bin/xbps-repo/main.c b/bin/xbps-repo/main.c
index a7ac504..5d61dc0 100644
--- bin/xbps-repo/main.c
+++ bin/xbps-repo/main.c
@@ -32,6 +32,7 @@
#include <limits.h>
#include <libgen.h>
#include <unistd.h>
+#include <inttypes.h>
#include <xbps_api.h>
#include "defs.h"
@@ -59,7 +60,8 @@ repo_list_uri_cb(struct repository_pool_index *rpi, void *arg, bool *done)
prop_dictionary_get_cstring_nocopy(rpi->rpi_repod,
"pkgindex-version", &pkgidx);
prop_dictionary_get_uint64(rpi->rpi_repod, "total-pkgs", &npkgs);
- printf("%s (index %s, %zu packages)\n", rpi->rpi_uri, pkgidx, npkgs);
+ printf("%s (index %s, " "%" PRIu64 " packages)\n",
+ rpi->rpi_uri, pkgidx, npkgs);
return 0;
}

View file

@ -1,7 +1,6 @@
# Template file for 'xbps'
pkgname=xbps
version=0.9.0
revision=1
version=0.9.1
distfiles="http://xbps.googlecode.com/files/xbps-$version.tar.gz"
build_style=configure
configure_args="--prefix=/ --includedir=/usr/include
@ -10,8 +9,8 @@ configure_args="--prefix=/ --includedir=/usr/include
short_desc="The XBPS package system utilities"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://code.google.com/p/xbps"
license="2-clause BSD"
checksum=7eb71a70e43bb4b816de9408f093ca4235b8a3a53385a386819c2b4c2a1a46f8
license="Simplified BSD"
checksum=e126575cfa65f47c16617f082e3e0bd0aca6bf70ecd9bfb2f7dbb009be7f6e33
long_desc="
The XBPS package system. A new, fast, from scratch and simple
binary package manager. This package includes the binary utilities

View file

@ -6,7 +6,6 @@ long_desc="${long_desc}
This package contains the static binaries and library, that can be
used on any GNU/Linux distribution matching the architecture."
revision=2
replaces="xbps-static>=0"
Add_dependency run xbps-triggers