git.annexia.org
/
fedora-ocaml-rebuild.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0548903
)
Reduce verbosity of source-dependencies.
author
Richard W.M. Jones
<rjones@redhat.com>
Wed, 8 Jan 2020 22:08:55 +0000
(22:08 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Wed, 8 Jan 2020 22:08:55 +0000
(22:08 +0000)
Doesn't work well with parallel builds.
Goalfile
patch
|
blob
|
history
diff --git
a/Goalfile
b/Goalfile
index
16e63e1
..
98a56d0
100644
(file)
--- a/
Goalfile
+++ b/
Goalfile
@@
-139,7
+139,7
@@
goal rebuild (pkg) =
pure function source-dependencies (pkg) = @{
specfile=%fedora-dir/%pkg/%branch/%pkg.spec
- echo
-n Dependencies of %pkg:
>&2
+ echo
Calculating dependencies of %pkg
>&2
echo '['
for r in $(rpmspec -q --buildrequires $specfile 2>/dev/null |
@@
-153,10
+153,8
@@
pure function source-dependencies (pkg) = @{
grep -sq "^$r\$"
then
echo "*built-in-koji(\"$p\"),"
- echo -n '' $p >&2
fi
done
done
echo ']'
- echo >&2
}