pck-update: print the list of packages before running the tests

Signed-off-by: Davide Madrisan <davide.madrisan@gmail.com>
This commit is contained in:
Davide Madrisan 2012-01-17 23:21:07 +01:00
parent 005f5b1082
commit e7cefb0ed0
2 changed files with 12 additions and 2 deletions

View File

@ -57,6 +57,14 @@ Sun Jan 15 2012 Davide Madrisan <davide.madrisan(a)gmail.com>
directories, to avoid false positives (seen for files whose names include
the substring '.so', like 'net.sourceforge.kile.main.xml').
* pck-update - Davide Madrisan:
Ignore lines starting with '#' while checking for 'configure' and 'make'
calls in the specfile.
+ update
* pck-update - Davide Madrisan:
Print the list of packages before running the tests.
--------------------------------------------------------------------------------
Changes in version 1.8.2

View File

@ -711,9 +711,9 @@ use rpm macros if possible:"" \`$token' --> \`$rpm_macro_make'" ;;
# - look in the block : `%install' to `%changelog'
sed -n '/%install/,/%changelog/p' $specfile | \
while read -a tokens; do
# ignore comments
[[ "${tokens[0]}" =~ ^\# ]] && continue
for token in ${tokens[*]}; do
# ignore comments
[[ "${tokens[0]}" =~ ^\# ]] && continue
case "$token" in
make)
[[ "$rpm_macro_make" ]] && notify.warning $"\
@ -2526,6 +2526,7 @@ $pck-$pck_rpmversion-$pck_rpmrelease$DISTRO_rpm.noarch.rpm"
notify.error $"package not found"": \`$pcknew_name'"
echo "rpmpkg_name[$i]=\"$rpms_dir/noarch/$pcknew_name\"" \
>> $tmpextractdir/rpmpkg.info
notify.note " $pcknew_name"
else
pcknew_name="\
$pck-$pck_rpmversion-$pck_rpmrelease$DISTRO_rpm.$target_cpu.rpm"
@ -2533,6 +2534,7 @@ $pck-$pck_rpmversion-$pck_rpmrelease$DISTRO_rpm.$target_cpu.rpm"
notify.error $"package not found"": \`$pcknew_name'"
echo "rpmpkg_name[$i]=\"$rpms_dir/$target_cpu/$pcknew_name\"" \
>> $tmpextractdir/rpmpkg.info
notify.note " $pcknew_name"
fi
notify.debug "$FUNCNAME: pcknew_name[$i] = $pcknew_name"
let "i += 1"