mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-11-17 08:17:57 +00:00
88578bed10
Co-authored-by: Alva Swanson <alvasw@protonmail.com> Co-authored-by: andyheko <haoen.ko@gmail.com> Co-authored-by: Bisq GitHub Admin <51445974+bisq-github-admin-3@users.noreply.github.com> Co-authored-by: BtcContributor <79100296+BtcContributor@users.noreply.github.com> Co-authored-by: cd2357 <cd2357@users.noreply.github.com> Co-authored-by: chimp1984 <chimp1984@gmx.com> Co-authored-by: Chris Beams <chris@beams.io> Co-authored-by: Christoph Atteneder <christoph.atteneder@gmail.com> Co-authored-by: Devin Bileck <603793+devinbileck@users.noreply.github.com> Co-authored-by: ghubstan <36207203+ghubstan@users.noreply.github.com> Co-authored-by: Huey <hueydane@gmail.com> Co-authored-by: Jakub Loucký <jakub.loucky@outlook.cz> Co-authored-by: jmacxx <47253594+jmacxx@users.noreply.github.com> Co-authored-by: KanoczTomas <tomas.kanocz@cnl.sk> Co-authored-by: m52go <735155+m52go@users.noreply.github.com> Co-authored-by: Marcus0x <marcus0x@xrhodium.org> Co-authored-by: MarnixCroes <93143998+MarnixCroes@users.noreply.github.com> Co-authored-by: Martin Harrigan <martinharrigan@gmail.com> Co-authored-by: MwithM <50149324+MwithM@users.noreply.github.com> Co-authored-by: sqrrm <sqrrm@users.noreply.github.com> Co-authored-by: Stan <36207203+ghubstan@users.noreply.github.com> Co-authored-by: Stephan Oeste <emzy@emzy.de> Co-authored-by: Steven Barclay <stejbac@gmail.com> Co-authored-by: WAT <shiido.it@gmail.com> Co-authored-by: wiz <j@wiz.biz> Co-authored-by: xyzmaker123 <84982606+xyzmaker123@users.noreply.github.com>
71 lines
1.9 KiB
Bash
Executable file
71 lines
1.9 KiB
Bash
Executable file
#! /bin/bash
|
|
|
|
VERSION="$1"
|
|
if [[ -z "$VERSION" ]]; then
|
|
VERSION="SNAPSHOT"
|
|
fi
|
|
|
|
export BISQ_RELEASE_NAME="bisq-cli-$VERSION"
|
|
export BISQ_RELEASE_ZIP_NAME="$BISQ_RELEASE_NAME.zip"
|
|
|
|
export GRADLE_DIST_NAME="cli.tar"
|
|
export GRADLE_DIST_PATH="../build/distributions/$GRADLE_DIST_NAME"
|
|
|
|
arrangegradledist() {
|
|
# Arrange $BISQ_RELEASE_NAME directory structure to contain a runnable
|
|
# jar at the top-level, and a lib dir containing dependencies:
|
|
# .
|
|
# |
|
|
# |__ cli.jar
|
|
# |__ lib
|
|
# |__ |__ dep1.jar
|
|
# |__ |__ dep2.jar
|
|
# |__ |__ ...
|
|
# Copy the build's distribution tarball to this directory.
|
|
cp -v $GRADLE_DIST_PATH .
|
|
# Create a clean directory to hold the tarball's content.
|
|
rm -rf $BISQ_RELEASE_NAME
|
|
mkdir $BISQ_RELEASE_NAME
|
|
# Extract the tarball's content into $BISQ_RELEASE_NAME.
|
|
tar -xf $GRADLE_DIST_NAME -C $BISQ_RELEASE_NAME
|
|
cd $BISQ_RELEASE_NAME
|
|
# Rearrange $BISQ_RELEASE_NAME contents: move the lib directory up one level.
|
|
mv -v cli/lib .
|
|
# Rearrange $BISQ_RELEASE_NAME contents: remove the cli/bin and cli directories.
|
|
rm -rf cli
|
|
# Rearrange $BISQ_RELEASE_NAME contents: move the lib/cli.jar up one level.
|
|
mv -v lib/cli.jar .
|
|
}
|
|
|
|
writemanifest() {
|
|
# Make the cli.jar runnable, and define its dependencies in a MANIFEST.MF update.
|
|
echo "Main-Class: bisq.cli.CliMain" > manifest-update.txt
|
|
printf "Class-Path: " >> manifest-update.txt
|
|
for file in lib/*
|
|
do
|
|
# Each new line in the classpath must be preceded by two spaces.
|
|
printf " %s\n" "$file" >> manifest-update.txt
|
|
done
|
|
}
|
|
|
|
updatemanifest() {
|
|
# Append contents of to cli.jar's MANIFEST.MF.
|
|
jar uvfm cli.jar manifest-update.txt
|
|
}
|
|
|
|
ziprelease() {
|
|
cd ..
|
|
zip -r $BISQ_RELEASE_ZIP_NAME $BISQ_RELEASE_NAME/lib $BISQ_RELEASE_NAME/cli.jar
|
|
}
|
|
|
|
cleanup() {
|
|
rm -v ./$GRADLE_DIST_NAME
|
|
rm -r ./$BISQ_RELEASE_NAME
|
|
}
|
|
|
|
arrangegradledist
|
|
writemanifest
|
|
updatemanifest
|
|
ziprelease
|
|
cleanup
|
|
|