aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testing/py3-python-editor/APKBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/py3-python-editor/APKBUILD b/testing/py3-python-editor/APKBUILD
new file mode 100644
index 0000000000..6f7a8a0d00
--- /dev/null
+++ b/testing/py3-python-editor/APKBUILD
@@ -0,0 +1,28 @@
+# Contributor: Rasmus Thomsen <oss@cogitri.dev>
+# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
+pkgname=py3-python-editor
+pkgver=1.0.4
+pkgrel=0
+pkgdesc="Programmatically open an editor, capture the result"
+url="https://github.com/fmoo/python-editor"
+arch="noarch"
+license="Apache-2.0"
+depends="python3"
+makedepends="py3-setuptools"
+options="!check" # tests are interactive
+source="https://files.pythonhosted.org/packages/source/p/python-editor/python-editor-$pkgver.tar.gz"
+builddir="$srcdir/python-editor-$pkgver"
+
+build() {
+ python3 setup.py build
+}
+
+check() {
+ python3 setup.py test
+}
+
+package() {
+ python3 setup.py install --prefix=/usr --root="$pkgdir"
+}
+
+sha512sums="c8ce2403bfe6c93935c7f4c384a8618a39cdaefe1ff5b1ff2cf4562866d8b3caa616e428c0a1634a56db934caeb474e7f84f8d5e009b9ed664189fdece8146f6 python-editor-1.0.4.tar.gz"