Discussion:
[software/build-system/iurt] 02/03: Add missing use statement
root-odJJhXpcy38dnm+
2014-04-30 13:05:40 UTC
Permalink
This is an automated email from the git hooks/post-receive script.

pterjan pushed a commit to branch master
in repository software/build-system/iurt.

commit 54002cb66c9e5d691961feebca983b07c0452e89
Author: Pascal Terjan <pterjan-***@public.gmane.org>
Date: Wed Apr 30 13:03:48 2014 +0000

Add missing use statement
---
Commit Link:
http://gitweb.mageia.org/software/build-system/iurt/commit/?id=54002cb66c9e5d691961feebca983b07c0452e89

lib/Iurt/File.pm | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/lib/Iurt/File.pm b/lib/Iurt/File.pm
index ec77fae..6dc45d2 100644
--- a/lib/Iurt/File.pm
+++ b/lib/Iurt/File.pm
@@ -2,6 +2,7 @@ package Iurt::File;

use base qw(Exporter);
use File::Copy 'move';
+use File::Path 'make_path';
use Iurt::Util qw(plog);
use strict;
--
Mageia Git Monkeys.
root-odJJhXpcy38dnm+
2014-04-30 13:05:41 UTC
Permalink
This is an automated email from the git hooks/post-receive script.

pterjan pushed a commit to branch master
in repository software/build-system/iurt.

commit 7f6069f0278d77ad3c28a53bcad059c08193ca7e
Author: Pascal Terjan <pterjan-***@public.gmane.org>
Date: Wed Apr 30 13:05:16 2014 +0000

0.6.21
---
Commit Link:
http://gitweb.mageia.org/software/build-system/iurt/commit/?id=7f6069f0278d77ad3c28a53bcad059c08193ca7e

NEWS | 3 +++
iurt | 2 +-
2 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/NEWS b/NEWS
index 25fbbd9..23aa6c2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,7 @@
+0.6.21
- fix code handling dependencies
+- fix broken error email
+- fix lock cleanup

0.6.20
- close stdin when --shell is not used
diff --git a/iurt b/iurt
index 6882b6b..4269859 100755
--- a/iurt
+++ b/iurt
@@ -335,7 +335,7 @@ plog_init($program_name, $run{logfd} || $LOG, 7, 1); # For parsing command line

# Display version information
#
-my $version = '0.6.20';
+my $version = '0.6.21';
plog("MSG", "This is iurt version $version");

my $todo = parseCommandLine($program_name, \@ARGV, \@params);
--
Mageia Git Monkeys.
root-odJJhXpcy38dnm+
2014-04-30 13:05:39 UTC
Permalink
This is an automated email from the git hooks/post-receive script.

pterjan pushed a commit to branch master
in repository software/build-system/iurt.

commit d938ab80960ece31f3c01921c4a8611db15dacc1
Author: Pascal Terjan <pterjan-***@public.gmane.org>
Date: Wed Apr 30 12:36:10 2014 +0000

Set path properly when there is a lock file but no src.rpm left
---
Commit Link:
http://gitweb.mageia.org/software/build-system/iurt/commit/?id=d938ab80960ece31f3c01921c4a8611db15dacc1

ulri | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/ulri b/ulri
index 1d0ce24..6da5f20 100755
--- a/ulri
+++ b/ulri
@@ -248,6 +248,9 @@ sub todo_func {
if ($r =~ /(\d{14}\.\w+\.\w+\.\d+)_([\w-]+)\.(\w+)\.(\w+)\.(\d{14})\.(\d+)\.lock$/) {
my ($prefix, $arch, $bot, $host, $date, $pid) = ($1, $2, $3, $4, $5, $6);

+ # Set path here too has we may have a lock without the src.rpm
+ $pkg_tree{$prefix}{media}{$media}{path} = "/$f/$m/$s";
+
$arch = $config->{arch_translation}{$arch} if $config->{arch_translation}{$arch};
plog('DEBUG', "found lock on $host/$arch for $prefix");
--
Mageia Git Monkeys.
Loading...