From fac49ed64a8838d5fc344c79d30d6991f1d51ec8 Mon Sep 17 00:00:00 2001 From: Adam Talbot <12817534+adamrtalbot@users.noreply.github.com> Date: Fri, 18 Oct 2024 16:16:21 +0100 Subject: [PATCH 1/4] Update tower-cli version to v0.10.3 --- recipes/tower-cli/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/tower-cli/meta.yaml b/recipes/tower-cli/meta.yaml index 4df0c97fac1f8..32dba5fa204da 100644 --- a/recipes/tower-cli/meta.yaml +++ b/recipes/tower-cli/meta.yaml @@ -1,6 +1,6 @@ {% set name = "tw"%} -{% set version = "0.9.2" %} -{% set sha = "c9ebabdfe7aaeea0ce823c39819b0091503e6e8bf751281f90b620d20d365cec" %} +{% set version = "0.10.3" %} +{% set sha = "fe2aa1fe127196a33527f075ab23526a7fb98c00b152fa6adf32ccbc1802f2cb" %} package: name: tower-cli From 92540ea7e681d5d095d8677e71715f102f239b03 Mon Sep 17 00:00:00 2001 From: Adam Talbot <12817534+adamrtalbot@users.noreply.github.com> Date: Fri, 18 Oct 2024 16:25:11 +0100 Subject: [PATCH 2/4] Update meta.yaml --- recipes/tower-cli/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/tower-cli/meta.yaml b/recipes/tower-cli/meta.yaml index 32dba5fa204da..f293268a93a4f 100644 --- a/recipes/tower-cli/meta.yaml +++ b/recipes/tower-cli/meta.yaml @@ -7,7 +7,7 @@ package: version: {{ version }} build: - number: 1 + number: 0 noarch: generic run_exports: - {{ pin_subpackage("tower-cli", max_pin="x.x") }} From b71cac8b84554f29fe4b488ea2fe74ee42729778 Mon Sep 17 00:00:00 2001 From: Adam Talbot <12817534+adamrtalbot@users.noreply.github.com> Date: Mon, 21 Oct 2024 09:27:37 +0100 Subject: [PATCH 3/4] tower-cli: Correct jar path --- recipes/tower-cli/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/tower-cli/meta.yaml b/recipes/tower-cli/meta.yaml index f293268a93a4f..c20c0901b5fb6 100644 --- a/recipes/tower-cli/meta.yaml +++ b/recipes/tower-cli/meta.yaml @@ -13,7 +13,7 @@ build: - {{ pin_subpackage("tower-cli", max_pin="x.x") }} source: - - url: https://github.com/seqeralabs/tower-cli/releases/download/v{{ version }}/tw.jar + - url: https://github.com/seqeralabs/tower-cli/releases/download/v{{ version }}/tw-jar.jar sha256: {{ sha }} requirements: From 5ebe1f3beba181f1849fb6fa5151b4dcd34f20b4 Mon Sep 17 00:00:00 2001 From: Adam Talbot <12817534+adamrtalbot@users.noreply.github.com> Date: Mon, 21 Oct 2024 10:02:10 +0100 Subject: [PATCH 4/4] Switch to tw-jar.jar --- recipes/tower-cli/tw.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/tower-cli/tw.sh b/recipes/tower-cli/tw.sh index 09af6ae2257ff..c8de881445863 100644 --- a/recipes/tower-cli/tw.sh +++ b/recipes/tower-cli/tw.sh @@ -4,7 +4,7 @@ set -eu -o pipefail export LC_ALL=en_US.UTF-8 -jar_file="tw.jar" +jar_file="tw-jar.jar" # Find original directory of bash script, resolving symlinks # http://stackoverflow.com/questions/59895/can-a-bash-script-tell-what-directory-its-stored-in/246128#246128 @@ -61,4 +61,4 @@ if [ "$jvm_mem_opts" == "" ]; then fi pass_arr=($pass_args) -eval "$java" $jvm_mem_opts $jvm_prop_opts -jar "$JAR_DIR/$jar_file" $pass_args \ No newline at end of file +eval "$java" $jvm_mem_opts $jvm_prop_opts -jar "$JAR_DIR/$jar_file" $pass_args