Commit 1529be40 authored by Vitaly Lipatov's avatar Vitaly Lipatov

small cleanup code

parent 37d90364
......@@ -214,9 +214,9 @@ __epm_repack_to_rpm()
cd $buildroot || fatal
__fix_spec $pkgname $buildroot $spec
__apply_fix_code "generic" $buildroot $spec $pkgname $abspkg $SUBGENERIC
__apply_fix_code "generic" $buildroot $spec $pkgname $abspkg $SUBGENERIC
__apply_fix_code "generic-$SUBGENERIC" $buildroot $spec $pkgname $abspkg
__apply_fix_code $pkgname $buildroot $spec $pkgname $abspkg
__apply_fix_code $pkgname $buildroot $spec $pkgname $abspkg
if ! has_repack_script $pkgname ; then
__apply_fix_code "generic-default" $buildroot $spec $pkgname $abspkg
fi
......
......@@ -386,13 +386,18 @@ get_libs_requires()
__get_binary_requires "$fdir" | LANG=C sort -u >$libreqlist
info " List of binary and libs requires:"
info $(cat $libreqlist)
info "$(cat $libreqlist | xargs -n1000)"
info " End of the list binary and libs requires."
__get_library_provides "$fdir" | LANG=C sort -u >$libpreslist
info " List of libraries provided:"
info $(cat $libpreslist)
info " End of the list provided by the library."
info "$(cat $libpreslist | xargs -n1000)"
info " End of the provided libraries list."
info " List of ignored libraries:"
info "$EEPM_IGNORE_LIB_REQUIRES"
info " End of the ignored libraries."
# print out result
LANG=C join -v2 $libpreslist $libreqlist
rm -f $libreqlist $libpreslist
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment