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 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
3 changes: 3 additions & 0 deletions recipes/comet-ms/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ set -x
export INCLUDE_PATH="${PREFIX}/MSToolkit/include"
export CPPFLAGS="-I${PREFIX}/MSToolkit/include"

# To switch from static to dynamic linking on linux. The Makefile does not have this flag for macOS
# Dynamic linking does not work with mulled container tests
#sed -i.bak 's#-static##' Makefile
sed -i.bak "s#gcc#${CC}#;s#g++#${CXX}#" MSToolkit/Makefile
sed -i.bak "s#gcc#${CC}#;s#g++#${CXX}#" CometSearch/Makefile

Expand Down
14 changes: 9 additions & 5 deletions recipes/comet-ms/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,29 @@
{% 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:
- make
- unzip
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- unzip
# To have clock_gettime in glibc. Linking to librt did not work due to inflexible Makefiles
- sysroot_linux-64 2.17 # [linux64]

test:
commands:
Expand Down