I use this pure rpm command-line way to check for full package dependency resolution before burning a DVD:<br>    mkdir /tmp/rpmdb<br>    rpm --initdb --dbpath /tmp/rpmdb<br>    pushd trunk-f13/x86_64/os/Packages<br>    rpm --dbpath /tmp/rpmdb --test -Uvh *.rpm<br>
    ...<br><br>I do the pungi build install steps separately from split media, and after the build and install:<br><br>pungi -c pungi-f13.cfg -G -B -C --name=IE --ver=trunk-f13 --nosource --force<br><br>I see that I have some duplicative packages:<br>
<br>[root@FC13BUILD installer]# ls trunk-f13/x86_64/os/Packages/gcc-*<br>trunk-f13/x86_64/os/Packages/gcc-4.4.4-10.fc13.x86_64.rpm<br>trunk-f13/x86_64/os/Packages/gcc-4.4.4-2.fc13.x86_64.rpm<br>trunk-f13/x86_64/os/Packages/gcc-c++-4.4.4-10.fc13.x86_64.rpm<br>
trunk-f13/x86_64/os/Packages/gcc-gfortran-4.4.4-10.fc13.x86_64.rpm<br>trunk-f13/x86_64/os/Packages/gcc-gfortran-4.4.4-2.fc13.i686.rpm<br><br>Is there anyway to prevent that?   Is there a better way to check that all dependencies are resolved based on the manifest?<br>
<br>