Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update table2asn to 1.28.1179 #51951

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions recipes/table2asn/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
gunzip *table2asn.gz
mkdir -p ${PREFIX}/bin

if [ `uname` == Darwin ]; then
cp mac.table2asn ${PREFIX}/bin/table2asn
if [[ `uname` == Darwin ]]; then
cp -f mac.table2asn ${PREFIX}/bin/table2asn
else
cp *.table2asn ${PREFIX}/bin/table2asn
cp -f *.table2asn ${PREFIX}/bin/table2asn
fi

chmod 0755 "${PREFIX}/bin/table2asn"
Expand All @@ -15,7 +15,7 @@ chmod 0755 "${PREFIX}/bin/table2asn"

# patchelf to modify the RPATH of table2asn's libbz libraries; refer to:
# https://github.com/bioconda/bioconda-recipes/pull/38770#issuecomment-1473627378
if [ `uname` == Darwin ]; then
if [[ `uname` == Darwin ]]; then
install_name_tool -change libbz2.1.dylib libbz2.1.0.dylib "${PREFIX}/bin/table2asn"
install_name_tool -add_rpath "${PREFIX}/lib" "${PREFIX}/bin/table2asn"
else
Expand Down
8 changes: 4 additions & 4 deletions recipes/table2asn/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{% set name = "table2asn" %}
{% set version = "1.28.1111" %}
{% set sha256 = "626116210fea6b1426092e370c32c7f766a6cc98857c4202712eb7b265da23cb" %}
{% set release_date = "2024-06-18" %}
{% set version = "1.28.1179" %}
{% set sha256 = "7cdb95ccd7e025a54ad093f00c7d63f95ad2a4b0b433287657cb6a45e5125be7" %}
{% set release_date = "2024-10-23" %}

package:
name: {{ name }}
version: {{ version }}

source:
- url: https://ftp.ncbi.nlm.nih.gov/asn1-converters/versions/{{ release_date }}/by_program/{{ name }}/mac.{{ name }}.gz # [osx]
sha256: 1b3ce05a1d3ef5afaa38c9b5c5a520b74d27aea9b516513ec647576e3a98bb32 # [osx]
sha256: ccb439c328f40ef82dae12f84a5ad4f0ccd442b7e8dbef83bcbebe81efb85781 # [osx]
- url: https://ftp.ncbi.nlm.nih.gov/asn1-converters/versions/{{ release_date }}/by_program/{{ name }}/linux64.{{ name }}.gz # [linux]
sha256: {{ sha256 }} # [linux]

Expand Down