author | Urja (ARMLFS builder)
<urja+armlfs@urja.dev> 2024-07-12 17:47:50 UTC |
committer | Urja (ARMLFS builder)
<urja+armlfs@urja.dev> 2024-07-12 17:47:50 UTC |
parent | c3c3dfe0ad35d7b83b9a0185ceb51a3f1f688dc1 |
.gitignore | +2 | -0 |
PKGBUILD | +8 | -6 |
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a43258a --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/src/ +/pkg/ diff --git a/PKGBUILD b/PKGBUILD index 6a57e61..6db7f17 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -11,7 +11,7 @@ arch=('any') license=('Apache-2.0') depends=('python') makedepends=('git' 'python-build' 'python-installer' 'python-setuptools-scm' 'python-wheel') -checkdepends=('fish' 'python-pexpect' 'python-pip' 'tcsh' 'zsh') +#checkdepends=('fish' 'python-pexpect' 'python-pip' 'tcsh' 'zsh') source=(${_pyname}::"git+$url?signed#tag=v$pkgver") sha512sums=('4dfbc2b3542d791948602b05fb7939b22509f8a81d7870be92ef37af045132198ef28add76c3e4485f431ebb6cf52b489a443a48e6a0580e72be642b68770d15') validpgpkeys=('29BCBADB4ECAAAC2382699388AFAFCD242818A52') # Andrey Kislyuk <kislyuk@gmail.com> @@ -25,6 +25,8 @@ prepare() { cd ${_pyname} # Python 3.12.3 compatibility git cherry-pick -n 54a4846b3a774cd9037167898f3cce38ba9d58e8 + # ARMLFS hack + sed -i -e 's/"setuptools>=67.7.2",//' pyproject.toml } build() { @@ -32,12 +34,12 @@ build() { python -m build --wheel --no-isolation } -check() { - cd ${_pyname} +#check() { +# cd ${_pyname} # workaround for https://github.com/kislyuk/argcomplete/issues/337 - echo "set enable-bracketed-paste off" > .inputrc - INPUTRC=$PWD/.inputrc python test/test.py -v -} +# echo "set enable-bracketed-paste off" > .inputrc +# INPUTRC=$PWD/.inputrc python test/test.py -v +#} package() { cd ${_pyname}