mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-19 10:30:02 +02:00
- renamed conda-recipe folder - added a check to see if build and install folder exists in build.sh (conda recipe) - created VERSION file that has '0.0.0'for developer but can be updated using update_version.py that takes in a version. The script checks for semantic versioning and updates VERSION file - VERSION file also copied along with py files to slsdet in python cmakelist and build_pylib.sh (for conda), also copied in root folder for installations (for no coding purpose) - init.py and setup.py reads this file to get the version (a bit differently to find the VERSION file) - VERSION file read into cmake to get the version and also added to compile definition. So RELEASE removed from versionAPI.h (using SLS_DET_VERSION compile definiton instead) and also removed updateRelease script. - conda getting project version from environment variable SLS_DET_VERSION that is set in build_pylib.sh prior. - added 3.13 python to conda build - anything related to ctb removed from release notes as users will always use developer - sets 0.0.0 to VERSION file by running update_version.py without an argument
129 lines
2.3 KiB
YAML
Executable File
129 lines
2.3 KiB
YAML
Executable File
|
|
{% set version = environ.get('SLS_DET_VERSION', '0.0.0') %}
|
|
|
|
|
|
package:
|
|
name: sls_detector_software
|
|
version: "{{ version }}"
|
|
|
|
|
|
source:
|
|
path: ..
|
|
|
|
build:
|
|
number: 0
|
|
binary_relocation: True
|
|
rpaths:
|
|
- lib/
|
|
|
|
requirements:
|
|
build:
|
|
- {{ compiler('c') }}
|
|
- {{compiler('cxx')}}
|
|
- cmake
|
|
- qt 5.*
|
|
- xorg-libx11
|
|
- xorg-libice
|
|
- xorg-libxext
|
|
- xorg-libsm
|
|
- xorg-libxau
|
|
- xorg-libxrender
|
|
- xorg-libxfixes
|
|
- {{ cdt('mesa-libgl-devel') }} # [linux]
|
|
- {{ cdt('mesa-libegl-devel') }} # [linux]
|
|
- {{ cdt('mesa-dri-drivers') }} # [linux]
|
|
- {{ cdt('libselinux') }} # [linux]
|
|
- {{ cdt('libxdamage') }} # [linux]
|
|
- {{ cdt('libxxf86vm') }} # [linux]
|
|
- expat
|
|
|
|
host:
|
|
- libstdcxx-ng
|
|
- libgcc-ng
|
|
- xorg-libx11
|
|
- xorg-libice
|
|
- xorg-libxext
|
|
- xorg-libsm
|
|
- xorg-libxau
|
|
- xorg-libxrender
|
|
- xorg-libxfixes
|
|
- expat
|
|
|
|
run:
|
|
- libstdcxx-ng
|
|
- libgcc-ng
|
|
|
|
|
|
outputs:
|
|
- name: slsdetlib
|
|
script: copy_lib.sh
|
|
|
|
requirements:
|
|
build:
|
|
- {{ compiler('c') }}
|
|
- {{compiler('cxx')}}
|
|
- libstdcxx-ng
|
|
- libgcc-ng
|
|
|
|
run:
|
|
- libstdcxx-ng
|
|
- libgcc-ng
|
|
|
|
- name: slsdet
|
|
script: build_pylib.sh
|
|
|
|
requirements:
|
|
build:
|
|
- python
|
|
- {{ compiler('c') }}
|
|
- {{compiler('cxx')}}
|
|
- {{ pin_subpackage('slsdetlib', exact=True) }}
|
|
- setuptools
|
|
- pybind11=2.11
|
|
|
|
host:
|
|
- python
|
|
- {{ pin_subpackage('slsdetlib', exact=True) }}
|
|
- pybind11=2.11
|
|
|
|
|
|
run:
|
|
- libstdcxx-ng
|
|
- libgcc-ng
|
|
- python
|
|
- numpy
|
|
- {{ pin_subpackage('slsdetlib', exact=True) }}
|
|
|
|
test:
|
|
imports:
|
|
- slsdet
|
|
|
|
|
|
- name: slsdetgui
|
|
script: copy_gui.sh
|
|
requirements:
|
|
|
|
build:
|
|
- {{ compiler('c') }}
|
|
- {{compiler('cxx')}}
|
|
- {{ pin_subpackage('slsdetlib', exact=True) }}
|
|
|
|
run:
|
|
- {{ pin_subpackage('slsdetlib', exact=True) }}
|
|
- qt 5.*
|
|
- expat
|
|
|
|
- name: moenchzmq
|
|
script: copy_moench.sh
|
|
requirements:
|
|
|
|
build:
|
|
- {{ compiler('c') }}
|
|
- {{compiler('cxx')}}
|
|
- {{ pin_subpackage('slsdetlib', exact=True) }}
|
|
|
|
|
|
run:
|
|
- {{ pin_subpackage('slsdetlib', exact=True) }}
|
|
- expat
|