mirror of https://github.com/m-labs/artiq.git
windows: package qasync
This commit is contained in:
parent
64b56077cd
commit
113a36a9c0
|
@ -363,6 +363,7 @@
|
||||||
|
|
||||||
hydraJobs = {
|
hydraJobs = {
|
||||||
inherit (packages.x86_64-linux) artiq artiq-board-kc705-nist_clock openocd-bscanspi;
|
inherit (packages.x86_64-linux) artiq artiq-board-kc705-nist_clock openocd-bscanspi;
|
||||||
|
qasync-msys2-pkg = packages.x86_64-w64-mingw32.qasync-pkg;
|
||||||
pyqtgraph-msys2-pkg = packages.x86_64-w64-mingw32.pyqtgraph-pkg;
|
pyqtgraph-msys2-pkg = packages.x86_64-w64-mingw32.pyqtgraph-pkg;
|
||||||
sipyco-msys2-pkg = packages.x86_64-w64-mingw32.sipyco-pkg;
|
sipyco-msys2-pkg = packages.x86_64-w64-mingw32.sipyco-pkg;
|
||||||
artiq-comtools-msys2-pkg = packages.x86_64-w64-mingw32.artiq-comtools-pkg;
|
artiq-comtools-msys2-pkg = packages.x86_64-w64-mingw32.artiq-comtools-pkg;
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
pkgbase="mingw-w64-python-qasync"
|
||||||
|
pkgname="mingw-w64-x86_64-python-qasync"
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Implementation of the PEP 3156 Event-Loop with Qt"
|
||||||
|
license=("BSD")
|
||||||
|
depends=(
|
||||||
|
"mingw-w64-x86_64-python"
|
||||||
|
"mingw-w64-x86_64-python-pyqt5"
|
||||||
|
)
|
||||||
|
|
||||||
|
source PKGBUILD.common
|
|
@ -28,6 +28,11 @@ let
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
in rec {
|
in rec {
|
||||||
|
qasync-pkg = makeMsys2 {
|
||||||
|
name = "qasync";
|
||||||
|
src = artiq.packages.x86_64-linux.qasync.src;
|
||||||
|
inherit (artiq.packages.x86_64-linux.qasync) version;
|
||||||
|
};
|
||||||
pyqtgraph-pkg = makeMsys2 {
|
pyqtgraph-pkg = makeMsys2 {
|
||||||
name = "pyqtgraph";
|
name = "pyqtgraph";
|
||||||
src = pkgs.python3Packages.pyqtgraph.src;
|
src = pkgs.python3Packages.pyqtgraph.src;
|
||||||
|
@ -56,6 +61,7 @@ in rec {
|
||||||
''
|
''
|
||||||
mkdir $out
|
mkdir $out
|
||||||
cd $out
|
cd $out
|
||||||
|
ln -s ${qasync-pkg}/*.pkg.tar.zst .
|
||||||
ln -s ${pyqtgraph-pkg}/*.pkg.tar.zst .
|
ln -s ${pyqtgraph-pkg}/*.pkg.tar.zst .
|
||||||
ln -s ${sipyco-pkg}/*.pkg.tar.zst .
|
ln -s ${sipyco-pkg}/*.pkg.tar.zst .
|
||||||
ln -s ${artiq-comtools-pkg}/*.pkg.tar.zst .
|
ln -s ${artiq-comtools-pkg}/*.pkg.tar.zst .
|
||||||
|
|
Loading…
Reference in New Issue