From: martin f. krafft Date: Fri, 16 May 2008 10:26:50 +0000 (+0200) Subject: minor updates X-Git-Url: https://git.madduck.net/code/mbuild.git/commitdiff_plain/674923e47fbeeedc74084c3774e8c6ef374dff5f?hp=d954c6cf7388acdf2b79095de89b5a93f6e4f1cf minor updates --- diff --git a/rc b/rc index 595d83d..78a4746 100644 --- a/rc +++ b/rc @@ -26,6 +26,8 @@ dinstall() { *) echo E: unknown distribution: "$1" >&2; exit 1;; esac + copy_back_files "$@" + GNUPGHOME="$REPREPRO_DIR"/.gnupg \ reprepro --basedir "$REPREPRO_DIR" include "$dist" "$2" || : @@ -35,6 +37,7 @@ dinstall() { print_bundle_location() { local file; file="${1##*/}" echo "$BASE_URL/bundles/$file" + #TODO: files does not work echo "$files" } diff --git a/sbuild-wrapper.sh b/sbuild-wrapper.sh index 0d561d4..731e1bd 100755 --- a/sbuild-wrapper.sh +++ b/sbuild-wrapper.sh @@ -14,10 +14,13 @@ trap "cd / && rm -R '$BUILDDIR'" 0 BUNDLE_DIR="${TMPDIR:-/tmp}" TARGET_DIR="$PWD" -dinstall() { +copy_back_files() { echo "Copying files destined for $1 back to $TARGET_DIR..." dcmd cp -v "$2" "$TARGET_DIR" } +dinstall() { + copy_back_files "$@" +} print_bundle_location() { echo "Bundle available at $@ ." } @@ -115,13 +118,14 @@ sbuild $sbuild_args --arch="$arch" --arch-all --dist="$dist" --keyid=$KEYID \ changesfile="${packagenameversion}_${arch}.changes" -dinstall "$dist" "$schangesfile" -dinstall "$dist" "$changesfile" - mv "$changesfile" "${changesfile}.binonly" mergechanges "$schangesfile" "${changesfile}.binonly" > "$changesfile" rm "${changesfile}.binonly" "$schangesfile" +#TODO sign here + +dinstall "$dist" "$changesfile" + DATESTR="$(date +%Y.%m.%d.%H%M%S)" BUILD_PREFIX="${packagenameversion}_${arch}.${DATESTR}"