blob: 2722de138ffa8c04795fd7c0e90cfefae4965fa3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Maintainer: Damien Nguyen <damien1@huawei.com>
_name=openfermionprojectq
pkgbase=python-${_name}
pkgname=(${pkgbase} python-${_name}-hiq)
pkgver=0.2
pkgrel=2
pkgdesc="A plugin allowing OpenFermion to interaface with ProjectQ."
arch=('any')
url="https://github.com/quantumlib/OpenFermion-ProjectQ/"
license=('Apache')
makedepends=('python-pip'
'python-setuptools')
checkdepends=(# AUR dependencies
'python-openfermion-0.11'
'python-h5py'
'jupyter-nbformat')
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz"
"fix-failing-test.patch"
"openfermion-0.11.0.patch")
sha256sums=('bbaf9d2906a2f5893fa4ea49ce16a3dad640063ec365b21c8970bc88216820fd'
'56753a2b5237e7e6194bb964dba6a17350828b6321078cc3a217a2bac59d06ef'
'b20875b96e7eaed9db2871986043677fa8243c3dad6e10fb4302a03c22dace38')
prepare() {
cd "$srcdir/$_name-$pkgver"
patch -p1 -i "$srcdir/fix-failing-test.patch"
patch -p1 -i "$srcdir/openfermion-0.11.0.patch"
}
build() {
cd "$srcdir/$_name-$pkgver"
python setup.py build
}
check() {
cd "$srcdir/$_name-$pkgver"
# Not adding either python-projectq or python-hiq-projectq to makedepends as
# they conflitct one another.
# However, make sure that we have at least one of them installed in order to
# run the tests
if ! python -c 'import projectq' 2> /dev/null ; then
echo "Installing ProjectQ to temporary folder"
PYTHONUSERBASE=$PWD/tmp python3 -m pip install projectq > /dev/null
fi
PYTHONUSERBASE=$PWD/tmp python -m pytest --color=yes -x
rm -rf tmp
}
package_python-openfermionprojectq() {
conflicts=('python-openfermionprojectq-hiq')
depends+=('python-openfermion-0.11'
'python-projectq')
cd "$srcdir/$_name-$pkgver"
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
}
package_python-openfermionprojectq-hiq() {
pkgdesc="A plugin allowing OpenFermion to interaface with HiQ-ProjectQ."
conflicts=('python-openfermionprojectq')
groups=(python-hiq)
depends+=('python-openfermion-0.11'
'python-hiq-projectq')
cd "$srcdir/$_name-$pkgver"
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
}
# vim:set ts=2 sw=2 et:
|