aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rwxr-xr-xiurt2
-rw-r--r--lib/Iurt/Urpmi.pm2
3 files changed, 5 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index d6d0bde..faaa2bb 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+0.7.17.1
+- iurt: Fix src.rpm name (mga#30344)
+
0.7.17:
- iurt: record the list of generated packages
- iurt: allow generated src.rpm to have a different name, some packages use
diff --git a/iurt b/iurt
index 7aeae4d..c5bdb51 100755
--- a/iurt
+++ b/iurt
@@ -324,7 +324,7 @@ plog_init($program_name, $run{logfd} || $LOG, 7, 1); # For parsing command line
# Display version information
#
-my $version = '0.7.17';
+my $version = '0.7.17.1';
plog("MSG", "This is iurt version $version");
my $todo = parseCommandLine($program_name, \@ARGV, \@params);
diff --git a/lib/Iurt/Urpmi.pm b/lib/Iurt/Urpmi.pm
index 4214893..7cce25e 100644
--- a/lib/Iurt/Urpmi.pm
+++ b/lib/Iurt/Urpmi.pm
@@ -538,7 +538,7 @@ sub recreate_srpm {
plog("ERROR: failed to get the name of the generated src.rpm");
return;
}
- my $file = "$chroot_tmp/home/$luser/rpmbuild/SRPMS/$generated_srpm_name.src.rpm";
+ my $file = "$chroot_tmp/home/$luser/rpmbuild/SRPMS/$generated_srpm_name";
my ($new_srpm) = basename($file);
my $prefix = get_package_prefix($srpm);
my $newfile = "$chroot_tmp/home/$luser/rpmbuild/SRPMS/$prefix$new_srpm";