From 4dc346c8d1e6e20201d9a36847aa406df291f0d8 Mon Sep 17 00:00:00 2001 From: Jason Travis Date: Fri, 3 Aug 2018 07:47:55 +0000 Subject: [PATCH 1/2] Update helperlibs to release-0-1-9 --- recipes/helperlibs/meta.yaml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/recipes/helperlibs/meta.yaml b/recipes/helperlibs/meta.yaml index 98adfc59cb17c..b6e6f09d20a17 100644 --- a/recipes/helperlibs/meta.yaml +++ b/recipes/helperlibs/meta.yaml @@ -1,20 +1,22 @@ +{% set version = "0_1_9" %} +{% set sha256 = "7fb8bdcb713f34d21c0c975508370de5491470971ad3739a260535e0868b09c4" %} + package: name: helperlibs - version: "0.1.8" + version: '{{ version }}' source: - url: https://github.com/kblin/bioinf-helperlibs/archive/release-0-1-8.tar.gz - md5: 80283b45767e08fb16f03c951732cd0d + url: https://github.com/kblin/bioinf-helperlibs/archive/release-0-1-9.tar.gz + sha256: '{{ sha256 }}' build: noarch: python - number: 1 + number: 0 requirements: host: - python - biopython >=1.62 - run: - python - biopython >=1.62 @@ -29,7 +31,7 @@ test: - helperlibs.wrappers about: - home: https://github.com/kblin/bioinf-helperlibs/wiki - license: GNU General Public License v3 or later (GPLv3+) - summary: 'A collection of bioinformatics-related helper functions' - license_family: GPL3 + home: https://github.com/kblin/bioinf-helperlibs + license: GPL-3.0 + license_family: GPL + summary: A collection of bioinformatics-related helper functions From ed2afe82571e29aba68fa12f2850f29d0a77e732 Mon Sep 17 00:00:00 2001 From: Jason Travis Date: Wed, 8 Aug 2018 03:46:48 -0700 Subject: [PATCH 2/2] use pip --- recipes/helperlibs/build.sh | 2 -- recipes/helperlibs/meta.yaml | 5 +++-- 2 files changed, 3 insertions(+), 4 deletions(-) delete mode 100755 recipes/helperlibs/build.sh diff --git a/recipes/helperlibs/build.sh b/recipes/helperlibs/build.sh deleted file mode 100755 index 6663875f9ce59..0000000000000 --- a/recipes/helperlibs/build.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -$PYTHON setup.py install diff --git a/recipes/helperlibs/meta.yaml b/recipes/helperlibs/meta.yaml index b6e6f09d20a17..9656a2a7935c6 100644 --- a/recipes/helperlibs/meta.yaml +++ b/recipes/helperlibs/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "0_1_9" %} +{% set version = "0.1.9" %} {% set sha256 = "7fb8bdcb713f34d21c0c975508370de5491470971ad3739a260535e0868b09c4" %} package: @@ -12,11 +12,12 @@ source: build: noarch: python number: 0 + script: $PYTHON -m pip install --no-deps --ignore-installed --no-cache-dir -vvv . requirements: host: - python - - biopython >=1.62 + - pip run: - python - biopython >=1.62