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 comet-ms from v2023.01.0 to v2023.01.2 #46567

Merged
merged 22 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
1 change: 1 addition & 0 deletions recipes/comet-ms/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export CPPFLAGS="-I${PREFIX}/MSToolkit/include"

sed -i.bak "s#gcc#${CC}#;s#g++#${CXX}#" MSToolkit/Makefile
sed -i.bak "s#gcc#${CC}#;s#g++#${CXX}#" CometSearch/Makefile
sed -i.bak "s#\$\(LIBS\)#\$\(LIBS\) -lrt#" Makefile
Copy link
Contributor

@jpfeuffer jpfeuffer Mar 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
sed -i.bak "s#\$\(LIBS\)#\$\(LIBS\) -lrt#" Makefile
sed -i.bak 's#$(LIBS)#$(LIBS) -lrt#' Makefile

Maybe try single quotes for bash?


make CXX=${CXX}

Expand Down
10 changes: 6 additions & 4 deletions recipes/comet-ms/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
{% set name = "comet-ms" %}
{% set version = "2023010" %}
{% set md5 = "f1899e07eeeefddedf22b93133f9aea8" %}
{% set version = "2023012" %}
{% set md5 = "d60433652e5a5e682288ddbdfb014eb4" %}

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

source:
url: https://github.com/UWPR/Comet/archive/refs/tags/v2023.01.0.zip
url: https://github.com/UWPR/Comet/archive/refs/tags/v2023.01.2.zip
md5: {{ md5 }}

build:
run_exports:
- {{ pin_subpackage('comet-ms', max_pin=None) }}
skip: True # [osx]
number: 2
number: 0

requirements:
build:
Expand Down
Loading