aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.com>2006-10-19 12:10:16 +0000
committerOlivier Blin <oblin@mandriva.com>2006-10-19 12:10:16 +0000
commit873ecb640b59a97b4d2ec1b00c2d2413f28d9475 (patch)
tree8b1627de40b3ce01c95c656c882d13b95c0cfe98
parentf4e84db35fec26c19b15bc163c139d183e7151a6 (diff)
downloadmgarepo-873ecb640b59a97b4d2ec1b00c2d2413f28d9475.tar
mgarepo-873ecb640b59a97b4d2ec1b00c2d2413f28d9475.tar.gz
mgarepo-873ecb640b59a97b4d2ec1b00c2d2413f28d9475.tar.bz2
mgarepo-873ecb640b59a97b4d2ec1b00c2d2413f28d9475.tar.xz
mgarepo-873ecb640b59a97b4d2ec1b00c2d2413f28d9475.zip
make get_srpm display the extracted .src.rpm (path + filename) (initially from pixel, frontport from V1_5_X)
-rw-r--r--RepSys/rpmutil.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/RepSys/rpmutil.py b/RepSys/rpmutil.py
index 9c0018a..e35639d 100644
--- a/RepSys/rpmutil.py
+++ b/RepSys/rpmutil.py
@@ -94,6 +94,7 @@ def get_srpm(pkgdirurl,
for targetdir in targetdirs:
targetsrpm = os.path.join(os.path.realpath(targetdir), os.path.basename(srpm))
targetsrpms.append(targetsrpm)
+ sys.stderr.write("Wrote: %s\n" % targetsrpm)
execcmd("cp -f", srpm, targetdir)
os.unlink(srpm)
return targetsrpms