diff options
-rw-r--r-- | testing/kitty/APKBUILD | 10 | ||||
-rw-r--r-- | testing/kitty/py3.patch | 14 |
2 files changed, 4 insertions, 20 deletions
diff --git a/testing/kitty/APKBUILD b/testing/kitty/APKBUILD index 67caaaacee..065ea85fe5 100644 --- a/testing/kitty/APKBUILD +++ b/testing/kitty/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=kitty pkgver=0.14.6 -pkgrel=0 +pkgrel=1 pkgdesc="A modern, hackable, featureful, OpenGL based terminal emulator" url="https://sw.kovidgoyal.net/kitty/" arch="all" @@ -22,14 +22,13 @@ makedepends="py3-setuptools harfbuzz-dev zlib-dev libpng-dev freetype-dev subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/kovidgoyal/kitty/archive/v$pkgver.tar.gz fix-ppc64le-build-ioctl-with-musl.patch - py3.patch " # Remove once sphinx-build gets py-attrs dependency makedepends="$makedepends py3-attrs" build() { - python3 setup.py linux-package + SPHINXBUILD=sphinx-build python3 setup.py linux-package } check() { @@ -37,9 +36,8 @@ check() { } package() { - python3 setup.py linux-package --prefix $pkgdir/usr + python3 setup.py linux-package --prefix "$pkgdir/usr" } sha512sums="0949db2daf0e1cd6e725a8d242fc43f15108964b2acdcf9e307168db99e44cffc339b6c98f3f571d54a8aa3f019442f76b9c4dd6553c715eeeef92057ff84006 kitty-0.14.6.tar.gz -330f56f5fd60607c57f4f2cffdf33768b3af9e4c3e271a60a05cc3c653d70f7402af91ba0cdfe0257c8b4779884a6440eb52496078bce11799aaa1829ced9245 fix-ppc64le-build-ioctl-with-musl.patch -e1efe3353721143bef6e198466e84ba5888c6c5f336807c47af4453a2b063d248d3893143dff1792beb71b67bb155dcf5c0bb30d1c265b2fca24e35c6e34a1e2 py3.patch" +330f56f5fd60607c57f4f2cffdf33768b3af9e4c3e271a60a05cc3c653d70f7402af91ba0cdfe0257c8b4779884a6440eb52496078bce11799aaa1829ced9245 fix-ppc64le-build-ioctl-with-musl.patch" diff --git a/testing/kitty/py3.patch b/testing/kitty/py3.patch deleted file mode 100644 index 0634882156..0000000000 --- a/testing/kitty/py3.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/docs/Makefile b/docs/Makefile -index 2e07b01..4f77cc3 100644 ---- a/docs/Makefile -+++ b/docs/Makefile -@@ -3,7 +3,7 @@ - - # You can set these variables from the command line. - SPHINXOPTS = -j auto -T $(FAIL_WARN) --SPHINXBUILD = sphinx-build -+SPHINXBUILD = sphinx-build-3 - SPHINXPROJ = kitty - SOURCEDIR = . - BUILDDIR = _build - |