From kde-commits Thu May 31 21:09:29 2018 From: Ralf Habacker Date: Thu, 31 May 2018 21:09:29 +0000 To: kde-commits Subject: [kmymoney/4.8] maintainer: Add tar.xz file to released files on generating windows package Message-Id: X-MARC-Message: https://marc.info/?l=kde-commits&m=152780098013708 Git commit bc8b64914fbc9e6cee611b7fd6b66ab5681072b7 by Ralf Habacker. Committed on 31/05/2018 at 21:07. Pushed by habacker into branch '4.8'. Add tar.xz file to released files on generating windows package M +3 -2 maintainer/release-windows-packages https://commits.kde.org/kmymoney/bc8b64914fbc9e6cee611b7fd6b66ab5681072b7 diff --git a/maintainer/release-windows-packages b/maintainer/release-windo= ws-packages index 8f1afae1..2a2153d5 100755 --- a/maintainer/release-windows-packages +++ b/maintainer/release-windows-packages @@ -93,6 +93,7 @@ movepackage) ## move windows binary packages into upload = folder mkdir -p out find tmp/ -type f -name '*.exe' -exec cp {} out \; find tmp/ -type f -name '*.7z' -exec cp {} out \; + find tmp/ -type f -name '*.xz' -exec cp {} out \; touch $1.finished ;; = @@ -105,12 +106,12 @@ repacksource) ## repackage source tar ball to 7z ;; = createsha) ## create sha256sums - (cd work/out; find -type f -name '*.7z' -o -name '*.exe' | sed 's,= \./,,g' | sort | xargs sha256sum > $NAME.sha256sum) + (cd work/out; find -type f -name '*.7z' -o -name '*.exe' -o -name = '*.xz' | sed 's,\./,,g' | sort | xargs sha256sum > $NAME.sha256sum) touch work/$1.finished ;; = upload) ## upload files to staging area - for i in $(find work/out -name '*.7z' -o -name '*.exe'); do + for i in $(find work/out -name '*.7z' -o -name '*.exe' -o -name '*= .xz'); do curl -T $i ftp://upload.kde.org/incoming/ done touch work/$1.finished