Skip to content

Commit 84c8fb7

Browse files
authored
Merge pull request #33406 from omid-earthscope/add-bline
Add bline
2 parents a386f19 + f98e67d commit 84c8fb7

2 files changed

Lines changed: 70 additions & 0 deletions

File tree

recipes/bline/conda-forge.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
noarch_platforms:
2+
- linux_64
3+
- osx_64

recipes/bline/recipe.yaml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
context:
2+
name: bline
3+
version: "1.0.0"
4+
5+
package:
6+
name: ${{ name }}
7+
version: ${{ version }}
8+
9+
source:
10+
url: https://gitlab.com/earthscope/public/epic/passoft/bline/-/archive/v${{ version }}/bline-v${{ version }}.tar.gz
11+
sha256: 29c7fd13e1d47402db64f9fe26f4f859dcdf073efa10ce99fa6a158260e9118a
12+
13+
build:
14+
noarch: python
15+
script: ${{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
16+
number: 0
17+
18+
requirements:
19+
host:
20+
- python ${{ python_min }}.*
21+
- pip
22+
- setuptools
23+
run:
24+
- python >=${{ python_min }}
25+
- psutil
26+
- pexpect
27+
- if: linux
28+
then:
29+
- __linux
30+
- if: osx
31+
then:
32+
- __osx
33+
34+
tests:
35+
- python:
36+
imports:
37+
- bline
38+
pip_check: true
39+
python_version:
40+
- ${{ python_min }}.*
41+
- "*"
42+
- script:
43+
- bline -h
44+
- script:
45+
- python -m unittest discover -s tests
46+
requirements:
47+
run:
48+
- python ${{ python_min }}.*
49+
files:
50+
source:
51+
- tests/
52+
53+
about:
54+
homepage: https://epic.earthscope.org/content/software-resources
55+
summary: Download data from Baler14
56+
description: |
57+
bline is a command-line utility to transfer data from Quanterra
58+
Baler 14 seismic instruments. It facilitates data extraction while
59+
performing quality control checks to ensure offloaded files arrive
60+
completely and without corruption.
61+
license: GPL-3.0-or-later
62+
license_file: LICENSE
63+
repository: https://gitlab.com/earthscope/public/epic/passoft/bline
64+
65+
extra:
66+
recipe-maintainers:
67+
- omid-earthscope

0 commit comments

Comments
 (0)