From 3e4f22faa4ac4c89620cd57965414f712ef65481 Mon Sep 17 00:00:00 2001 From: Alan Collins Date: Fri, 18 Oct 2024 12:43:16 -0400 Subject: [PATCH] bump version to 1.20.0 and (hopefully) fix build issues in #51051 --- recipes/el_gato/build.sh | 6 ------ recipes/el_gato/meta.yaml | 24 +++++++++++++++++------- 2 files changed, 17 insertions(+), 13 deletions(-) delete mode 100644 recipes/el_gato/build.sh diff --git a/recipes/el_gato/build.sh b/recipes/el_gato/build.sh deleted file mode 100644 index 73991f59b0666..0000000000000 --- a/recipes/el_gato/build.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -$PYTHON -m pip install . -vv - -mkdir -p $PREFIX/bin/db -cp el_gato/db/* $PREFIX/bin/db/ diff --git a/recipes/el_gato/meta.yaml b/recipes/el_gato/meta.yaml index 0c15f3b4c1530..2db884328a8c7 100644 --- a/recipes/el_gato/meta.yaml +++ b/recipes/el_gato/meta.yaml @@ -1,10 +1,10 @@ {% set name = "el_gato" %} -{% set version = "1.19.0" %} -{% set hash = "ad390572ce785707b67a00f25978c4032981ac7e6149ddc423443e9189b30e75" %} +{% set version = "1.20.0" %} +{% set hash = "0dc039d0b4c1663d50310146f40502c7a0be2966ad31013fa2e858dc154ebd1c" %} {% set user = "appliedbinf" %} package: - name: el_gato + name: {{ name }} version: {{ version }} source: @@ -14,14 +14,19 @@ source: build: number: 0 noarch: generic + script: + - mkdir -p $PREFIX/bin/db + - cp -rf el_gato/db/* $PREFIX/bin/db/ + - {{ PYTHON }} -m pip install . -vvv --no-deps --no-build-isolation --no-cache-dir run_exports: - - {{ pin_subpackage(name, max_pin='x.x') }} + - {{ pin_subpackage(name, max_pin='x') }} requirements: + build: + - python host: - python >=3.8,<3.12 - pip - - setuptools run: - python >=3.8,<3.12 - minimap2 >=2.24 @@ -31,13 +36,18 @@ requirements: - nextflow - fpdf2 - packaging + - colorama # [linux] + - importlib-metadata # [py <= 38] test: commands: - el_gato.py --version about: - home: https://github.com/{{ user }}/{{ name }} + home: "https://github.com/{{ user }}/{{ name }}" license: MIT + license_family: MIT license_file: LICENSE - summary: Perform Legionella pneumophila Sequence Based Typing (SBT) from short reads or assemblies + summary: "Perform Legionella pneumophila Sequence Based Typing (SBT) from short reads or assemblies." + dev_url: "https://github.com/{{ user }}/{{ name }}" + doc_url: "https://github.com/appliedbinf/el_gato/blob/{{ version }}/README.md"