26 lines
694 B
Bash
Executable File
26 lines
694 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DIROFDIST="$1"
|
|
NEWNAME="$2"
|
|
OLDNAME="$3"
|
|
# this can be old($3 exists), new($2 exists) or change (both):
|
|
STATUS="$4"
|
|
BASENAME="`basename "$OLDNAME"`"
|
|
|
|
# with reprepro <= 0.7 this could also be Packages.gz or Sources.gz,
|
|
# but now only the uncompressed name is given. (even if not generated)
|
|
if [ "xPackages" = "x$BASENAME" ] || [ "xSources" = "x$BASENAME" ] ; then
|
|
if [ "x$STATUS" = "xold" ] ; then
|
|
if [ -f "$DIROFDIST/$OLDNAME.xz" ] ; then
|
|
echo "$OLDNAME.xz" >&3
|
|
else
|
|
xz -c -- "$DIROFDIST/$OLDNAME" >"$DIROFDIST/$OLDNAME.xz.new" 3>/dev/null
|
|
echo "$OLDNAME.xz.new" >&3
|
|
fi
|
|
else
|
|
xz -c -- "$DIROFDIST/$NEWNAME" >"$DIROFDIST/$OLDNAME.xz.new" 3>/dev/null
|
|
echo "$OLDNAME.xz.new" >&3
|
|
fi
|
|
fi
|
|
|