From ff211b06781a086bdfec6b65ee482840ba71bdad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Per=20=C3=98yvind=20Karlsen?= Date: Fri, 3 Aug 2012 19:54:03 +0000 Subject: ~fix filesize computation --- NEWS | 4 ++++ URPM.pm | 2 +- URPM.xs | 5 ++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 911a9b1..ce85c1f 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +Version 4.37.1 - 3 August 2012, by Per Øyvind Karlsen + +- ~fix filesize computation + Version 4.37 - 24 July 2011, by Per Øyvind Karlsen - fix URPM::Resolve::fullname_parts() to also work without disttag & distepoch diff --git a/URPM.pm b/URPM.pm index 253f8d0..47983f9 100644 --- a/URPM.pm +++ b/URPM.pm @@ -11,7 +11,7 @@ use URPM::Resolve; use URPM::Signature; our @ISA = qw(DynaLoader); -our $VERSION = '4.37'; +our $VERSION = '4.37.1'; URPM->bootstrap($VERSION); diff --git a/URPM.xs b/URPM.xs index 1bab88c..2ffdd58 100644 --- a/URPM.xs +++ b/URPM.xs @@ -359,9 +359,8 @@ get_fullname_parts(URPM__Package pkg, char **name, int *epoch, char **version, c } static size_t -get_filesize(Header h) { - /* XXX: 24 is padding..? */ - return rpmpkgSizeof("Lead", NULL) + 24 + headerSizeof(h) + get_int(h, RPMTAG_ARCHIVESIZE); +get_filesize(const Header h) { + return get_int(h, RPMTAG_SIGSIZE) + 440; /* 440 is the rpm header size (?) empirical, but works */ } static int -- cgit v1.2.1