mirror of
https://github.com/pygos/build.git
synced 2024-11-22 11:09:46 +01:00
cleanup: use package files instead of source package dotfiles
Try to build a source package if at least one binary package is missing. If that is the case, clean up possibly built packages so we can cleanly recover from a prior crash. Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
This commit is contained in:
parent
2184f4dae7
commit
a9eb892920
1 changed files with 28 additions and 18 deletions
22
mk.sh
22
mk.sh
|
@ -89,9 +89,23 @@ done < "$PACKAGELIST"
|
|||
echo "--- building packages ---"
|
||||
|
||||
while read pkg; do
|
||||
if [ ! -e "$PKGLOGDIR/.$pkg" ]; then
|
||||
include_pkg "$pkg"
|
||||
|
||||
found="yes"
|
||||
|
||||
for f in $SUBPKG; do
|
||||
if [ ! -f "$REPODIR/${f}.pkg" ]; then
|
||||
found="no"
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
[ "x$found" == "xno" ] || continue;
|
||||
|
||||
for f in $SUBPKG; do
|
||||
rm -f "$REPODIR/${f}.pkg"
|
||||
done
|
||||
|
||||
rm -rf "$TCDIR/$TARGET" "$PKGBUILDDIR" "$PKGDEPLOYDIR"
|
||||
mkdir -p "$TCDIR/$TARGET" "$PKGBUILDDIR" "$PKGDEPLOYDIR"
|
||||
|
||||
|
@ -105,15 +119,11 @@ while read pkg; do
|
|||
strip_files ${PKGDEPLOYDIR}/{bin,lib}
|
||||
|
||||
for f in $SUBPKG; do
|
||||
pkg pack -r "$REPODIR" \
|
||||
-d "$PKGDEPLOYDIR/${f}.desc" \
|
||||
pkg pack -r "$REPODIR" -d "$PKGDEPLOYDIR/${f}.desc" \
|
||||
-l "$PKGDEPLOYDIR/${f}.files"
|
||||
done
|
||||
|
||||
rm -rf "$TCDIR/$TARGET" "$PKGBUILDDIR" "$PKGDEPLOYDIR"
|
||||
touch "$PKGLOGDIR/.$pkg"
|
||||
fi
|
||||
done < "$PACKAGELIST"
|
||||
|
||||
echo "--- done ---"
|
||||
|
||||
|
|
Loading…
Reference in a new issue