From e6d2571b10ab284456fe04d2e2f7475670521968 Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Sat, 13 Apr 2019 14:41:11 -0500 Subject: [PATCH] Ensure the correct upload target is put in. --- templates/package-stable.xml | 2 +- templates/package-unstable.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/package-stable.xml b/templates/package-stable.xml index d2c774b..284d47e 100644 --- a/templates/package-stable.xml +++ b/templates/package-stable.xml @@ -50,7 +50,7 @@ export DEBFULLNAME="Lugito" export DEBEMAIL="info@lubuntu.me" (cd {{ NAME }}; uscan --download-current-version) bash -c 'for FILENAME in {{ NAME }}_$UPSTREAM_VERSION.orig*; do mv $FILENAME $(echo $FILENAME | sed "s/$UPSTREAM_VERSION/$VERSION/"); done' -(cd {{ NAME }}; dch --distribution {{ RELEASE }} --package "{{ NAME }}" --newversion "$VERSION-0ubuntu1~ppa1" "CI upload."; debuild -S -d -sa -k959BC9B671870639A1AC6E2F7FE7CC578F23E4CA; dput {{ UPLOAD_TARGET }} ../{{ NAME }}_$VERSION-0ubuntu1~ppa1_source.changes) +(cd {{ NAME }}; dch --distribution {{ RELEASE }} --package "{{ NAME }}" --newversion "$VERSION-0ubuntu1~ppa1" "CI upload."; debuild -S -d -sa -k959BC9B671870639A1AC6E2F7FE7CC578F23E4CA; dput {{ UPLOAD_TARGET_S }} ../{{ NAME }}_$VERSION-0ubuntu1~ppa1_source.changes) sleep 2m; git clone https://phab.lubuntu.me/source/ci-tooling.git tooling; ./tooling/ci/lp_check.py -p {{ NAME }} -v $VERSION-0ubuntu1~ppa1 -t lubuntu-ci -r stable-ci-proposed; diff --git a/templates/package-unstable.xml b/templates/package-unstable.xml index 699eaf0..90a54e8 100644 --- a/templates/package-unstable.xml +++ b/templates/package-unstable.xml @@ -50,7 +50,7 @@ export DEBFULLNAME="Lugito" export DEBEMAIL="info@lubuntu.me" tar cvf {{ NAME }}_$VERSION.orig.tar upstream; gzip {{ NAME }}_$VERSION.orig.tar; -(cd {{ NAME }}; dch --distribution {{ RELEASE }} --package "{{ NAME }}" --newversion "$VERSION-0ubuntu1~ppa1" "CI upload."; debuild -S -d -sa -k959BC9B671870639A1AC6E2F7FE7CC578F23E4CA; dput {{ UPLOAD_TARGET }} ../{{ NAME }}_$VERSION-0ubuntu1~ppa1_source.changes) +(cd {{ NAME }}; dch --distribution {{ RELEASE }} --package "{{ NAME }}" --newversion "$VERSION-0ubuntu1~ppa1" "CI upload."; debuild -S -d -sa -k959BC9B671870639A1AC6E2F7FE7CC578F23E4CA; dput {{ UPLOAD_TARGET_U }} ../{{ NAME }}_$VERSION-0ubuntu1~ppa1_source.changes) sleep 2m; git clone https://phab.lubuntu.me/source/ci-tooling.git tooling; ./tooling/ci/lp_check.py -p {{ NAME }} -v $VERSION-0ubuntu1~ppa1 -t lubuntu-ci -r unstable-ci-proposed;