From 9a74a341c906e7ea8a4d73149b087f0a07a57a76 Mon Sep 17 00:00:00 2001 From: agudys Date: Thu, 1 Aug 2024 14:48:20 +0200 Subject: [PATCH 01/20] Update kmer-db --- recipes/kmer-db/build.sh | 5 ++++- recipes/kmer-db/meta.yaml | 27 ++++++++++++++++----------- 2 files changed, 20 insertions(+), 12 deletions(-) diff --git a/recipes/kmer-db/build.sh b/recipes/kmer-db/build.sh index 6a8bc644b0283..45e67e06dbbf9 100644 --- a/recipes/kmer-db/build.sh +++ b/recipes/kmer-db/build.sh @@ -1,9 +1,12 @@ #!/bin/bash +ln -s ${CC} gcc +ln -s ${CXX} g++ +export PATH=$PATH:$(pwd) CFLAGS="$CFLAGS -I${PREFIX}/include" LDFLAGS="$LDFLAGS -L${PREFIX}/lib" -make CC="${CXX}" +make -j${CPU_COUNT} install -d "${PREFIX}/bin" install kmer-db "${PREFIX}/bin" diff --git a/recipes/kmer-db/meta.yaml b/recipes/kmer-db/meta.yaml index f8fca76dc2efc..996824f698d57 100644 --- a/recipes/kmer-db/meta.yaml +++ b/recipes/kmer-db/meta.yaml @@ -1,27 +1,24 @@ -{% set version = "1.11.1" %} -{% set sha256 = "63886057a752a890f492bf4ca7ec97435eceebb4ac5ecb5664c69ae2736eaa80" %} - +{% set version = "2.0.3-b" %} package: name: kmer-db version: {{ version }} build: - number: 2 + number: 3 + run_exports: + - {{ pin_subpackage('kmer-db', max_pin='x.x.x') }} source: - url: https://github.com/refresh-bio/kmer-db/archive/v{{ version }}.tar.gz - sha256: {{ sha256 }} + git_url: https://github.com/refresh-bio/kmer-db.git + git_rev: v{{ version }} requirements: build: - make + - {{ compiler('cc') }} - {{ compiler('cxx') }} - - make - host: - - zlib - run: - - zlib + - nasm about: home: https://github.com/refresh-bio/kmer-db @@ -33,3 +30,11 @@ about: test: commands: - kmer-db > /dev/null + +extra: + additional-platforms: + - linux-aarch64 + - osx-arm64 + skip-lints: + - uses_vcs_url + - missing_hash \ No newline at end of file From e885a28845045c92bd66f63374c3b97af6610ffd Mon Sep 17 00:00:00 2001 From: agudys Date: Thu, 1 Aug 2024 14:59:00 +0200 Subject: [PATCH 02/20] build number reset --- recipes/kmer-db/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/kmer-db/meta.yaml b/recipes/kmer-db/meta.yaml index 996824f698d57..5500191e3bcd4 100644 --- a/recipes/kmer-db/meta.yaml +++ b/recipes/kmer-db/meta.yaml @@ -5,7 +5,7 @@ package: version: {{ version }} build: - number: 3 + number: 0 run_exports: - {{ pin_subpackage('kmer-db', max_pin='x.x.x') }} From 7fd97465ab2333fb930ef17079f8111749ac6856 Mon Sep 17 00:00:00 2001 From: agudys Date: Thu, 1 Aug 2024 15:09:13 +0200 Subject: [PATCH 03/20] fixed tag name --- recipes/kmer-db/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/kmer-db/meta.yaml b/recipes/kmer-db/meta.yaml index 5500191e3bcd4..9da31f617419a 100644 --- a/recipes/kmer-db/meta.yaml +++ b/recipes/kmer-db/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "2.0.3-b" %} +{% set version = "2.0.3b" %} package: name: kmer-db From 43dbfea31349983e237b6a33e91cd84d8d97b2b0 Mon Sep 17 00:00:00 2001 From: agudys Date: Thu, 1 Aug 2024 18:16:36 +0200 Subject: [PATCH 04/20] fix --- recipes/kmer-db/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/kmer-db/meta.yaml b/recipes/kmer-db/meta.yaml index 9da31f617419a..89ebf62c28625 100644 --- a/recipes/kmer-db/meta.yaml +++ b/recipes/kmer-db/meta.yaml @@ -16,7 +16,7 @@ source: requirements: build: - make - - {{ compiler('cc') }} + - {{ compiler('c') }} - {{ compiler('cxx') }} - nasm From 73edda5d8a38fac1c805aaff5f1995896bd46cb0 Mon Sep 17 00:00:00 2001 From: agudys Date: Fri, 2 Aug 2024 11:04:38 +0200 Subject: [PATCH 05/20] custom build steps --- recipes/kmer-db/conda_build_config.yaml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 recipes/kmer-db/conda_build_config.yaml diff --git a/recipes/kmer-db/conda_build_config.yaml b/recipes/kmer-db/conda_build_config.yaml new file mode 100644 index 0000000000000..d82dac0268769 --- /dev/null +++ b/recipes/kmer-db/conda_build_config.yaml @@ -0,0 +1,4 @@ +c_compiler: + - gcc # [linux or osx] +cxx_compiler: + - gxx # [linux or osx] \ No newline at end of file From 671bf6d4fe506a30d929c92501b974c15f0e9517 Mon Sep 17 00:00:00 2001 From: agudys Date: Fri, 2 Aug 2024 11:47:43 +0200 Subject: [PATCH 06/20] fix --- recipes/kmer-db/conda_build_config.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/recipes/kmer-db/conda_build_config.yaml b/recipes/kmer-db/conda_build_config.yaml index d82dac0268769..15af003f00f2d 100644 --- a/recipes/kmer-db/conda_build_config.yaml +++ b/recipes/kmer-db/conda_build_config.yaml @@ -1,4 +1,8 @@ c_compiler: - gcc # [linux or osx] cxx_compiler: - - gxx # [linux or osx] \ No newline at end of file + - gxx # [linux or osx] +c_compiler_version: + - 12 # [linux or osx] +cxx_compiler_version: + - 12 # [linux or osx] \ No newline at end of file From f2e29db57e35ce794fe02fd0bac16b43b915f907 Mon Sep 17 00:00:00 2001 From: agudys Date: Thu, 3 Oct 2024 15:10:52 +0200 Subject: [PATCH 07/20] fix --- recipes/kmer-db/build.sh | 7 +++---- recipes/kmer-db/conda_build_config.yaml | 8 -------- recipes/kmer-db/meta.yaml | 2 +- 3 files changed, 4 insertions(+), 13 deletions(-) delete mode 100644 recipes/kmer-db/conda_build_config.yaml diff --git a/recipes/kmer-db/build.sh b/recipes/kmer-db/build.sh index 45e67e06dbbf9..4e4b2bb02cb2b 100644 --- a/recipes/kmer-db/build.sh +++ b/recipes/kmer-db/build.sh @@ -1,12 +1,11 @@ #!/bin/bash -ln -s ${CC} gcc -ln -s ${CXX} g++ -export PATH=$PATH:$(pwd) +uname_S=`uname -s 2>/dev/null || echo not` +if [ "$uname_S" == "Darwin" ]; then brew install g++-12; CFLAGS="$CFLAGS -I${PREFIX}/include" LDFLAGS="$LDFLAGS -L${PREFIX}/lib" -make -j${CPU_COUNT} +make -j${CPU_COUNT} CXX=g++-12 install -d "${PREFIX}/bin" install kmer-db "${PREFIX}/bin" diff --git a/recipes/kmer-db/conda_build_config.yaml b/recipes/kmer-db/conda_build_config.yaml deleted file mode 100644 index 15af003f00f2d..0000000000000 --- a/recipes/kmer-db/conda_build_config.yaml +++ /dev/null @@ -1,8 +0,0 @@ -c_compiler: - - gcc # [linux or osx] -cxx_compiler: - - gxx # [linux or osx] -c_compiler_version: - - 12 # [linux or osx] -cxx_compiler_version: - - 12 # [linux or osx] \ No newline at end of file diff --git a/recipes/kmer-db/meta.yaml b/recipes/kmer-db/meta.yaml index 89ebf62c28625..4089e39f6e20c 100644 --- a/recipes/kmer-db/meta.yaml +++ b/recipes/kmer-db/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "2.0.3b" %} +{% set version = "2.2.0" %} package: name: kmer-db From 0d20f19dce5a921bb835844284d3826fad7ecb07 Mon Sep 17 00:00:00 2001 From: agudys Date: Thu, 3 Oct 2024 15:14:15 +0200 Subject: [PATCH 08/20] fix --- recipes/kmer-db/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/kmer-db/build.sh b/recipes/kmer-db/build.sh index 4e4b2bb02cb2b..94f1ada8ed51a 100644 --- a/recipes/kmer-db/build.sh +++ b/recipes/kmer-db/build.sh @@ -1,7 +1,7 @@ #!/bin/bash uname_S=`uname -s 2>/dev/null || echo not` -if [ "$uname_S" == "Darwin" ]; then brew install g++-12; +if [ "$uname_S" == "Darwin" ]; then brew install gcc@12; CFLAGS="$CFLAGS -I${PREFIX}/include" LDFLAGS="$LDFLAGS -L${PREFIX}/lib" From 4699e199d3d957a403491f66272865b10bc91550 Mon Sep 17 00:00:00 2001 From: agudys Date: Thu, 3 Oct 2024 21:24:27 +0200 Subject: [PATCH 09/20] script fix --- recipes/kmer-db/build.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/recipes/kmer-db/build.sh b/recipes/kmer-db/build.sh index 94f1ada8ed51a..7013f9444b931 100644 --- a/recipes/kmer-db/build.sh +++ b/recipes/kmer-db/build.sh @@ -1,7 +1,16 @@ #!/bin/bash uname_S=`uname -s 2>/dev/null || echo not` -if [ "$uname_S" == "Darwin" ]; then brew install gcc@12; +if [ "$uname_S" == "Darwin" ]; then + if ! command -v brew &> /dev/null; then + echo "Homebrew is required but not installed. Please install Homebrew first." + exit 1 + fi + if ! brew install gcc@12; then + echo "Failed to install gcc@12. Please check your Homebrew installation and permissions." + exit 1 + fi +fi CFLAGS="$CFLAGS -I${PREFIX}/include" LDFLAGS="$LDFLAGS -L${PREFIX}/lib" From 38799bc01979dc427280ab2e09a45c854232cf80 Mon Sep 17 00:00:00 2001 From: agudys Date: Fri, 4 Oct 2024 09:05:01 +0200 Subject: [PATCH 10/20] Kmer-db downloads precompiled binaries. --- recipes/kmer-db/build.sh | 20 -------------------- recipes/kmer-db/meta.yaml | 26 ++++++++++++++++---------- 2 files changed, 16 insertions(+), 30 deletions(-) delete mode 100644 recipes/kmer-db/build.sh diff --git a/recipes/kmer-db/build.sh b/recipes/kmer-db/build.sh deleted file mode 100644 index 7013f9444b931..0000000000000 --- a/recipes/kmer-db/build.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -uname_S=`uname -s 2>/dev/null || echo not` -if [ "$uname_S" == "Darwin" ]; then - if ! command -v brew &> /dev/null; then - echo "Homebrew is required but not installed. Please install Homebrew first." - exit 1 - fi - if ! brew install gcc@12; then - echo "Failed to install gcc@12. Please check your Homebrew installation and permissions." - exit 1 - fi -fi - -CFLAGS="$CFLAGS -I${PREFIX}/include" -LDFLAGS="$LDFLAGS -L${PREFIX}/lib" - -make -j${CPU_COUNT} CXX=g++-12 -install -d "${PREFIX}/bin" -install kmer-db "${PREFIX}/bin" diff --git a/recipes/kmer-db/meta.yaml b/recipes/kmer-db/meta.yaml index 4089e39f6e20c..52b5699d9ea28 100644 --- a/recipes/kmer-db/meta.yaml +++ b/recipes/kmer-db/meta.yaml @@ -1,4 +1,15 @@ -{% set version = "2.2.0" %} +{% set version = "2.2.1" %} + +{% set system = "x64_linux"%} # [linux and x86_64] +{% set system = "x64_mac"%} # [osx and x86_64] +{% set system = "arm64_linux"%} # [linux and aarch64] +{% set system = "arm64_mac"%} # [osx and arm64] + +{% set sha256 = "2B41020DDF67B89B26AEDA066248D331D269304D0261EDE18B3CEA9931B17063" %} # [linux and x86_64] +{% set sha256 = "C178CF354BBAF4DCF947C05245833CB242D7A76804BE9EA2B392A79846A4CAF2" %} # [osx and x86_64] +{% set sha256 = "499E32E8AD9D5AF4E295BBDA67E0BBCB465DEEC85B14428D3C99689669812C08" %} # [linux and arm64] +{% set sha256 = "13F8C22E0E08154AF4F0CAC4AE5BC17D8D741FE76E16DCFA3BB57D6069E241D8" %} # [osx and arm64] + package: name: kmer-db @@ -8,17 +19,12 @@ build: number: 0 run_exports: - {{ pin_subpackage('kmer-db', max_pin='x.x.x') }} + script: mkdir -p ${PREFIX}/bin; ls; cp kmer-db ${PREFIX}/bin + source: - git_url: https://github.com/refresh-bio/kmer-db.git - git_rev: v{{ version }} - -requirements: - build: - - make - - {{ compiler('c') }} - - {{ compiler('cxx') }} - - nasm + url: https://github.com/refresh-bio/kmer-db/releases/download/v{{ version }}/kmer-db-v{{ version }}_{{ system }}.tar.gz + sha256: {{ sha256 } about: home: https://github.com/refresh-bio/kmer-db From 203643278605632a9321b0891c9b4b6fe6628169 Mon Sep 17 00:00:00 2001 From: agudys Date: Fri, 4 Oct 2024 09:19:32 +0200 Subject: [PATCH 11/20] fix --- recipes/kmer-db/meta.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/recipes/kmer-db/meta.yaml b/recipes/kmer-db/meta.yaml index 52b5699d9ea28..a73d2114ec498 100644 --- a/recipes/kmer-db/meta.yaml +++ b/recipes/kmer-db/meta.yaml @@ -1,9 +1,9 @@ {% set version = "2.2.1" %} -{% set system = "x64_linux"%} # [linux and x86_64] -{% set system = "x64_mac"%} # [osx and x86_64] -{% set system = "arm64_linux"%} # [linux and aarch64] -{% set system = "arm64_mac"%} # [osx and arm64] +{% set system = "x64_linux" %} # [linux and x86_64] +{% set system = "x64_mac" %} # [osx and x86_64] +{% set system = "arm64_linux" %} # [linux and aarch64] +{% set system = "arm64_mac" %} # [osx and arm64] {% set sha256 = "2B41020DDF67B89B26AEDA066248D331D269304D0261EDE18B3CEA9931B17063" %} # [linux and x86_64] {% set sha256 = "C178CF354BBAF4DCF947C05245833CB242D7A76804BE9EA2B392A79846A4CAF2" %} # [osx and x86_64] @@ -19,7 +19,7 @@ build: number: 0 run_exports: - {{ pin_subpackage('kmer-db', max_pin='x.x.x') }} - script: mkdir -p ${PREFIX}/bin; ls; cp kmer-db ${PREFIX}/bin + script: mkdir -p ${PREFIX}/bin; ls; cp -r kmer-db ${PREFIX}/bin source: @@ -36,6 +36,7 @@ about: test: commands: - kmer-db > /dev/null + - kmer-db -help extra: additional-platforms: @@ -43,4 +44,4 @@ extra: - osx-arm64 skip-lints: - uses_vcs_url - - missing_hash \ No newline at end of file + - missing_hash From edef118e81b60fac543e6b569f8676fad81562fe Mon Sep 17 00:00:00 2001 From: agudys Date: Fri, 4 Oct 2024 09:26:02 +0200 Subject: [PATCH 12/20] another one --- recipes/kmer-db/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/kmer-db/meta.yaml b/recipes/kmer-db/meta.yaml index a73d2114ec498..d34dff7e81407 100644 --- a/recipes/kmer-db/meta.yaml +++ b/recipes/kmer-db/meta.yaml @@ -24,7 +24,7 @@ build: source: url: https://github.com/refresh-bio/kmer-db/releases/download/v{{ version }}/kmer-db-v{{ version }}_{{ system }}.tar.gz - sha256: {{ sha256 } + sha256: {{ sha256 }} about: home: https://github.com/refresh-bio/kmer-db From 0eb8b136fe6babb800834fedfa1ee28b8592e62d Mon Sep 17 00:00:00 2001 From: agudys Date: Fri, 4 Oct 2024 09:39:44 +0200 Subject: [PATCH 13/20] fix --- recipes/kmer-db/meta.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/recipes/kmer-db/meta.yaml b/recipes/kmer-db/meta.yaml index d34dff7e81407..61ff3d62a8920 100644 --- a/recipes/kmer-db/meta.yaml +++ b/recipes/kmer-db/meta.yaml @@ -43,5 +43,7 @@ extra: - linux-aarch64 - osx-arm64 skip-lints: - - uses_vcs_url - - missing_hash + - should_not_be_noarch_source + - should_not_be_noarch_compiler + + From bb4eeb47972a979fbe9bdfc0c02be3b024c633f7 Mon Sep 17 00:00:00 2001 From: agudys Date: Fri, 4 Oct 2024 23:20:41 +0200 Subject: [PATCH 14/20] noarch fix --- recipes/kmer-db/meta.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/recipes/kmer-db/meta.yaml b/recipes/kmer-db/meta.yaml index 61ff3d62a8920..d23c8269d3188 100644 --- a/recipes/kmer-db/meta.yaml +++ b/recipes/kmer-db/meta.yaml @@ -43,7 +43,6 @@ extra: - linux-aarch64 - osx-arm64 skip-lints: + - should_be_noarch_generic - should_not_be_noarch_source - - should_not_be_noarch_compiler - From ba2639c219df070c5a19e5b3029e8cbfcbbc79f4 Mon Sep 17 00:00:00 2001 From: agudys Date: Fri, 4 Oct 2024 23:35:59 +0200 Subject: [PATCH 15/20] version fix --- recipes/kmer-db/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/kmer-db/meta.yaml b/recipes/kmer-db/meta.yaml index d23c8269d3188..642e981ae9ee7 100644 --- a/recipes/kmer-db/meta.yaml +++ b/recipes/kmer-db/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "2.2.1" %} +{% set version = "2.2.2" %} {% set system = "x64_linux" %} # [linux and x86_64] {% set system = "x64_mac" %} # [osx and x86_64] From a6be9b276415d8bf98cae5521a9c258ecffda430 Mon Sep 17 00:00:00 2001 From: agudys Date: Fri, 4 Oct 2024 23:52:42 +0200 Subject: [PATCH 16/20] better verbosity --- recipes/kmer-db/meta.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/recipes/kmer-db/meta.yaml b/recipes/kmer-db/meta.yaml index 642e981ae9ee7..ad3aea845df16 100644 --- a/recipes/kmer-db/meta.yaml +++ b/recipes/kmer-db/meta.yaml @@ -7,7 +7,7 @@ {% set sha256 = "2B41020DDF67B89B26AEDA066248D331D269304D0261EDE18B3CEA9931B17063" %} # [linux and x86_64] {% set sha256 = "C178CF354BBAF4DCF947C05245833CB242D7A76804BE9EA2B392A79846A4CAF2" %} # [osx and x86_64] -{% set sha256 = "499E32E8AD9D5AF4E295BBDA67E0BBCB465DEEC85B14428D3C99689669812C08" %} # [linux and arm64] +{% set sha256 = "499E32E8AD9D5AF4E295BBDA67E0BBCB465DEEC85B14428D3C99689669812C08" %} # [linux and aarch64] {% set sha256 = "13F8C22E0E08154AF4F0CAC4AE5BC17D8D741FE76E16DCFA3BB57D6069E241D8" %} # [osx and arm64] @@ -19,7 +19,9 @@ build: number: 0 run_exports: - {{ pin_subpackage('kmer-db', max_pin='x.x.x') }} - script: mkdir -p ${PREFIX}/bin; ls; cp -r kmer-db ${PREFIX}/bin + script: | + mkdir -p "${PREFIX}/bin" + cp -v kmer-db "${PREFIX}/bin/" || { echo "Error: Failed to copy kmer-db binary"; exit 1; } source: From f890212f7d6b621f7ba07b4bcb182df15b0917ea Mon Sep 17 00:00:00 2001 From: agudys Date: Sat, 5 Oct 2024 00:00:29 +0200 Subject: [PATCH 17/20] fix --- recipes/kmer-db/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/kmer-db/meta.yaml b/recipes/kmer-db/meta.yaml index ad3aea845df16..24eaa48971d15 100644 --- a/recipes/kmer-db/meta.yaml +++ b/recipes/kmer-db/meta.yaml @@ -25,7 +25,7 @@ build: source: - url: https://github.com/refresh-bio/kmer-db/releases/download/v{{ version }}/kmer-db-v{{ version }}_{{ system }}.tar.gz + url: https://github.com/refresh-bio/kmer-db/releases/download/v{{ version }}/kmer-db-v{{ version }}-{{ system }}.tar.gz sha256: {{ sha256 }} about: From 11c9fac1434bd7e7a6d8c3bb50fc80aa006b6240 Mon Sep 17 00:00:00 2001 From: agudys Date: Sat, 5 Oct 2024 00:09:42 +0200 Subject: [PATCH 18/20] sha fix --- recipes/kmer-db/meta.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/recipes/kmer-db/meta.yaml b/recipes/kmer-db/meta.yaml index 24eaa48971d15..888b02b61fe29 100644 --- a/recipes/kmer-db/meta.yaml +++ b/recipes/kmer-db/meta.yaml @@ -5,10 +5,10 @@ {% set system = "arm64_linux" %} # [linux and aarch64] {% set system = "arm64_mac" %} # [osx and arm64] -{% set sha256 = "2B41020DDF67B89B26AEDA066248D331D269304D0261EDE18B3CEA9931B17063" %} # [linux and x86_64] -{% set sha256 = "C178CF354BBAF4DCF947C05245833CB242D7A76804BE9EA2B392A79846A4CAF2" %} # [osx and x86_64] -{% set sha256 = "499E32E8AD9D5AF4E295BBDA67E0BBCB465DEEC85B14428D3C99689669812C08" %} # [linux and aarch64] -{% set sha256 = "13F8C22E0E08154AF4F0CAC4AE5BC17D8D741FE76E16DCFA3BB57D6069E241D8" %} # [osx and arm64] +{% set sha256 = "E4BCCEE6380B7C0BFB4746285D36AF52A9874B1CF66D62A8862E8579097B5E77" %} # [linux and x86_64] +{% set sha256 = "BFB22576EEF88293AF4695D297B0B6D3CDDC726A882E09EF29BD4684A705977F" %} # [osx and x86_64] +{% set sha256 = "62055ECAF81FAC76CFC05A8CD64EBA958D2C45350312556777DC4DB7355A802A" %} # [linux and aarch64] +{% set sha256 = "6BA58753B1141A005E8A97BF581C1EADA5CEC6713A1F516518167F1DA71B820B" %} # [osx and arm64] package: From 21f20c5c87296bcfe4a1c71920c9f105c34f5a22 Mon Sep 17 00:00:00 2001 From: agudys Date: Sat, 5 Oct 2024 00:15:41 +0200 Subject: [PATCH 19/20] lowercase sha --- recipes/kmer-db/meta.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/recipes/kmer-db/meta.yaml b/recipes/kmer-db/meta.yaml index 888b02b61fe29..23ad71e522043 100644 --- a/recipes/kmer-db/meta.yaml +++ b/recipes/kmer-db/meta.yaml @@ -5,10 +5,10 @@ {% set system = "arm64_linux" %} # [linux and aarch64] {% set system = "arm64_mac" %} # [osx and arm64] -{% set sha256 = "E4BCCEE6380B7C0BFB4746285D36AF52A9874B1CF66D62A8862E8579097B5E77" %} # [linux and x86_64] -{% set sha256 = "BFB22576EEF88293AF4695D297B0B6D3CDDC726A882E09EF29BD4684A705977F" %} # [osx and x86_64] -{% set sha256 = "62055ECAF81FAC76CFC05A8CD64EBA958D2C45350312556777DC4DB7355A802A" %} # [linux and aarch64] -{% set sha256 = "6BA58753B1141A005E8A97BF581C1EADA5CEC6713A1F516518167F1DA71B820B" %} # [osx and arm64] +{% set sha256 = "e4bccee6380b7c0bfb4746285d36af52a9874b1cf66d62a8862e8579097b5e77" %} # [linux and x86_64] +{% set sha256 = "bfb22576eef88293af4695d297b0b6d3cddc726a882e09ef29bd4684a705977f" %} # [osx and x86_64] +{% set sha256 = "62055ecaf81fac76cfc05a8cd64eba958d2c45350312556777dc4db7355a802a" %} # [linux and aarch64] +{% set sha256 = "6ba58753b1141a005e8a97bf581c1eada5cec6713a1f516518167f1da71b820b" %} # [osx and arm64] package: From 06b940d182bb85e6a5103bf8b8da09318c542605 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Gudy=C5=9B?= Date: Wed, 9 Oct 2024 11:51:00 +0200 Subject: [PATCH 20/20] Update meta.yaml --- recipes/kmer-db/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/kmer-db/meta.yaml b/recipes/kmer-db/meta.yaml index 23ad71e522043..96e4c9045fe3d 100644 --- a/recipes/kmer-db/meta.yaml +++ b/recipes/kmer-db/meta.yaml @@ -18,7 +18,7 @@ package: build: number: 0 run_exports: - - {{ pin_subpackage('kmer-db', max_pin='x.x.x') }} + - {{ pin_subpackage('kmer-db', max_pin='x') }} script: | mkdir -p "${PREFIX}/bin" cp -v kmer-db "${PREFIX}/bin/" || { echo "Error: Failed to copy kmer-db binary"; exit 1; }