[arch-commits] Commit in pyprof2calltree/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Fri Oct 25 15:26:40 UTC 2019
Date: Friday, October 25, 2019 @ 15:26:39
Author: felixonmars
Revision: 519032
archrelease: copy trunk to community-staging-any
Added:
pyprof2calltree/repos/community-staging-any/
pyprof2calltree/repos/community-staging-any/PKGBUILD
(from rev 519030, pyprof2calltree/trunk/PKGBUILD)
----------+
PKGBUILD | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
Copied: pyprof2calltree/repos/community-staging-any/PKGBUILD (from rev 519030, pyprof2calltree/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2019-10-25 15:26:39 UTC (rev 519032)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Florian Bruhin (The Compiler) <archlinux.org at the-compiler.org>
+# Contributor: Brecht Machiels <brecht at mos6581 dot org>
+
+pkgbase=pyprof2calltree
+pkgname=(pyprof2calltree python2-pyprof2calltree)
+pkgver=1.4.4
+pkgrel=2
+pkgdesc="Help visualize profiling data from cProfile with kcachegrind"
+url="https://pypi.python.org/pypi/pyprof2calltree/"
+arch=('any')
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://pypi.io/packages/source/p/pyprof2calltree/pyprof2calltree-$pkgver.tar.gz")
+sha512sums=('ebf07892d908e5bdacb67ed8afbdd513e540966efa6da6e68baaacc21183c8be61c39fe92bdc7b9532d067233a31806f8b3db1480e20979b937984d004b6900e')
+
+prepare() {
+ sed -n '/# Copyright/,/# THE SOFTWARE\./p' pyprof2calltree-$pkgver/pyprof2calltree.py > LICENSE
+ cp -a pyprof2calltree-$pkgver{,-py2}
+}
+
+build() {
+ cd "$srcdir"/pyprof2calltree-$pkgver
+ python setup.py build
+
+ cd "$srcdir"/pyprof2calltree-$pkgver-py2
+ python setup.py build
+}
+
+package_pyprof2calltree() {
+ depends=('python-setuptools')
+
+ cd pyprof2calltree-$pkgver
+ python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+ install -D -m644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pyprof2calltree() {
+ depends=('python2-setuptools')
+
+ cd pyprof2calltree-$pkgver-py2
+ python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+ install -D -m644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+ mv "$pkgdir/usr/bin/pyprof2calltree"{,2}
+}
More information about the arch-commits
mailing list