Discussion:
[software/rpm/perl-URPM] 02/02: 4.30
root-odJJhXpcy38dnm+
2014-05-01 10:23:59 UTC
Permalink
This is an automated email from the git hooks/post-receive script.

tv pushed a commit to branch master
in repository software/rpm/perl-URPM.

commit 6ba0881fea52dfebcdfaf869c42bcf831b906374
Author: Thierry Vignaud <thierry.vignaud-***@public.gmane.org>
Date: Thu May 1 12:23:27 2014 +0200

4.30
---
Commit Link:
http://gitweb.mageia.org/software/rpm/perl-URPM/commit/?id=6ba0881fea52dfebcdfaf869c42bcf831b906374

NEWS | 2 ++
URPM.pm | 2 +-
2 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/NEWS b/NEWS
index 68dc4db..24d9fc7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+Version 4.30 - 1 May 2014
+
- fix 64k size limit on provides size that break installing 32 bit kernel for
drakx-installer-binaries
- fix a warning in debug mode
diff --git a/URPM.pm b/URPM.pm
index 2f78826..a84c0ce 100644
--- a/URPM.pm
+++ b/URPM.pm
@@ -11,7 +11,7 @@ use URPM::Resolve;
use URPM::Signature;

our @ISA = qw(DynaLoader);
-our $VERSION = '4.29';
+our $VERSION = '4.30';

URPM->bootstrap($VERSION);
--
Mageia Git Monkeys.
root-odJJhXpcy38dnm+
2014-05-01 10:23:58 UTC
Permalink
This is an automated email from the git hooks/post-receive script.

tv pushed a commit to branch master
in repository software/rpm/perl-URPM.

commit e019581d2e5a755f0a5646717d3d9a9eae91c0f6
Author: Thierry Vignaud <thierry.vignaud-***@public.gmane.org>
Date: Thu May 1 12:22:23 2014 +0200

fix 64k size limit on provides size

this broke installing 32 bit kernel for drakx-installer-binaries

(spotted by Pascal Terjan)
---
Commit Link:
http://gitweb.mageia.org/software/rpm/perl-URPM/commit/?id=e019581d2e5a755f0a5646717d3d9a9eae91c0f6

NEWS | 2 ++
URPM.xs | 6 +++---
2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index 487a675..68dc4db 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- fix 64k size limit on provides size that break installing 32 bit kernel for
+ drakx-installer-binaries
- fix a warning in debug mode

Version 4.29 - 5 November 2013
diff --git a/URPM.xs b/URPM.xs
index 12cfa92..beab778 100644
--- a/URPM.xs
+++ b/URPM.xs
@@ -719,7 +719,7 @@ return_problems(rpmps ps, int translate_message, int raw_message) {

static char *
pack_list(const Header header, rpmTag tag_name, rpmTag tag_flags, rpmTag tag_version) {
- char buff[65536];
+ char buff[65536*2];
char *p = buff;

struct rpmtd_s td;
@@ -2071,7 +2071,7 @@ Pkg_build_info(pkg, fileno, provides_files=NULL)
char *provides_files
CODE:
if (pkg->info) {
- char buff[65536];
+ char buff[65536*2];
size_t size;

/* info line should be the last to be written */
@@ -2811,7 +2811,7 @@ Urpm_parse_synthesis__XS(urpm, filename, ...)
HV *obsoletes = fobsoletes && SvROK(*fobsoletes) && SvTYPE(SvRV(*fobsoletes)) == SVt_PVHV ? (HV*)SvRV(*fobsoletes) : NULL;

if (depslist != NULL) {
- char buff[65536];
+ char buff[65536*2];
char *p, *eol, *t;
int buff_len;
struct s_Package pkg;
--
Mageia Git Monkeys.
Continue reading on narkive:
Loading...