From 9af74468d1ac21b741a191694e32ff7b8b12de7b Mon Sep 17 00:00:00 2001 From: Nemo Date: Sun, 19 Dec 2021 19:41:53 +0530 Subject: [PATCH] v0.6.0 --- .SRCINFO | 18 ++++++++++++++++++ .gitignore | 1 + PKGBUILD | 22 ++++++++++++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..caee9e1 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,18 @@ +pkgbase = python-present + pkgdesc = A terminal-based presentation tool with colors and effects. + pkgver = 0.6.0 + pkgrel = 1 + url = https://github.com/vinayak-mehta/present + arch = any + license = Apache 2.0 + makedepends = python3 + depends = python>=3.7 + depends = python-asciimatics>=1.11.0 + depends = python-click>=7.0 + depends = python-mistune>=2.0 + depends = python-pyfiglet>=0.8 + depends = python-pyaml>=5.3 + source = https://files.pythonhosted.org/packages/f9/1b/b0bed47dec0557a83ea0e475e52796d7c31f3ab83009b44b041af1526740/present-0.6.0.tar.gz + md5sums = a1e59b4c198b3c5b9f2d81df70f3d4a7 + +pkgname = python-present diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e86a508 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.tar* \ No newline at end of file diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..a5116b9 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,22 @@ +# Automatically generated by pip2arch on 2021-12-19 +# Maintainer: Nemo + +pkgname=python-present +pkgver=0.6.0 +pkgrel=1 +pkgdesc="A terminal-based presentation tool with colors and effects." +url="https://github.com/vinayak-mehta/present" +depends=('python>=3.7' 'python-asciimatics>=1.11.0' 'python-click>=7.0' 'python-mistune>=2.0' 'python-pyfiglet>=0.8' 'python-pyaml>=5.3') +makedepends=('python3' ) +license=('Apache 2.0') +arch=('any') +source=('https://files.pythonhosted.org/packages/f9/1b/b0bed47dec0557a83ea0e475e52796d7c31f3ab83009b44b041af1526740/present-0.6.0.tar.gz') +md5sums=('a1e59b4c198b3c5b9f2d81df70f3d4a7') +build() { + cd $srcdir/present-0.6.0 + python setup.py build +} +package() { + cd $srcdir/present-0.6.0 + python setup.py install --root="$pkgdir" --optimize=1 +}