aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS4
-rw-r--r--URPM.pm2
-rw-r--r--URPM.xs2
3 files changed, 6 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index f37375e..e7a2c37 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+Version 4.32 - 31 May 2011, by Per Øyvind Karlsen
+
+- *really* fix URPM::Package->sourcerpm
+
Version 4.31 - 31 May 2011, by Per Øyvind Karlsen
- fix URPM::Package->sourcerpm returning summary in stead of source rpm
diff --git a/URPM.pm b/URPM.pm
index 7c28cdd..de4091d 100644
--- a/URPM.pm
+++ b/URPM.pm
@@ -11,7 +11,7 @@ use URPM::Resolve;
use URPM::Signature;
our @ISA = qw(DynaLoader);
-our $VERSION = '4.31';
+our $VERSION = '4.32';
URPM->bootstrap($VERSION);
diff --git a/URPM.xs b/URPM.xs
index 397fe9e..4873963 100644
--- a/URPM.xs
+++ b/URPM.xs
@@ -2154,7 +2154,7 @@ Pkg_sourcerpm(pkg)
URPM::Package pkg
PPCODE:
if (pkg->h)
- push_name(pkg, RPMTAG_SUMMARY);
+ push_name(pkg, RPMTAG_SOURCERPM);
void
Pkg_packager(pkg)