Skip to content

Commit 82ec931

Browse files
committedMay 22, 2015
conda: add pyqtgraph+quamash dependencies/recipes and remove gbulb and cairoplot3
1 parent 2570444 commit 82ec931

File tree

7 files changed

+69
-3
lines changed

7 files changed

+69
-3
lines changed
 

‎conda/artiq/meta.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ build:
2121
- pdq2_controller = artiq.frontend.pdq2_controller:main
2222
- pxi6733_controller = artiq.frontend.pxi6733_controller:main
2323
- thorlabs_tcube_controller = artiq.frontend.thorlabs_tcube_controller:main
24-
- artiq_gui = artiq.frontend.artiq_gui:main # [not win]
24+
- artiq_gui = artiq.frontend.artiq_gui:main
2525

2626
requirements:
2727
build:
@@ -43,8 +43,8 @@ requirements:
4343
- dateutil
4444
- pydaqmx
4545
- pyelftools
46-
- gbulb-artiq # [not win]
47-
- cairoplot3-artiq # [not win]
46+
- quamash
47+
- pyqtgraph
4848

4949
test:
5050
imports:

‎conda/pyqtgraph/bld.bat

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"%PYTHON%" setup.py install
2+
if errorlevel 1 exit 1

‎conda/pyqtgraph/build.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
$PYTHON setup.py install

‎conda/pyqtgraph/meta.yaml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
package:
2+
name: pyqtgraph
3+
version: "0.9.10"
4+
5+
source:
6+
fn: pyqtgraph-0.9.10.tar.gz
7+
url: https://pypi.python.org/packages/source/p/pyqtgraph/pyqtgraph-0.9.10.tar.gz
8+
md5: bd84bf7537c43cf38db81cc1ad4f743a
9+
10+
requirements:
11+
build:
12+
- python
13+
- setuptools
14+
- numpy
15+
16+
run:
17+
- python
18+
- numpy
19+
- pyqt >=4.7
20+
21+
test:
22+
imports:
23+
- pyqtgraph
24+
25+
about:
26+
home: http://www.pyqtgraph.org
27+
license: MIT License
28+
summary: 'Scientific Graphics and GUI Library for Python'

‎conda/quamash/bld.bat

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
%PYTHON% setup.py install

‎conda/quamash/build.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
$PYTHON setup.py install

‎conda/quamash/meta.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
package:
2+
name: quamash
3+
version: 0.5.1
4+
5+
source:
6+
fn: Quamash-0.5.1.tar.gz
7+
url: https://pypi.python.org/packages/source/Q/Quamash/Quamash-0.5.1.tar.gz#md5=c5fa317f615eafd492560771bc2caeca
8+
md5: c5fa317f615eafd492560771bc2caeca
9+
10+
build:
11+
number: 0
12+
13+
requirements:
14+
build:
15+
- python
16+
- setuptools
17+
- pyqt 4.*
18+
run:
19+
- python
20+
- pyqt 4.*
21+
22+
test:
23+
imports:
24+
- quamash
25+
26+
about:
27+
home: https://github.com/harvimt/quamash
28+
license: BSD
29+
summary: 'Implementation of the PEP 3156 Event-Loop with Qt'

0 commit comments

Comments
 (0)
Please sign in to comment.