Date: Friday, October 25, 2019 @ 16:21:23
Author: foutrelis
Revision: 519435
archrelease: copy trunk to community-staging-any
Added:
python-buildbot-pkg/repos/community-staging-any/
python-buildbot-pkg/repos/community-staging-any/PKGBUILD
(from rev 519434, python-buildbot-pkg/trunk/PKGBUILD)
----------+
PKGBUILD | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Copied: python-buildbot-pkg/repos/community-staging-any/PKGBUILD (from rev
519434, python-buildbot-pkg/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2019-10-25 16:21:23 UTC (rev 519435)
@@ -0,0 +1,30 @@
+# Maintainer: Chih-Hsuan Yen <[email protected]>
+# Contributor: xRemaLx <[email protected]>
+# Contributor: Sergej Pupykin <[email protected]>
+# Contributor: William Rea <[email protected]>
+
+pkgname=python-buildbot-pkg
+pkgdesc='Utilities and common code for building and testing www plugins'
+pkgver=2.5.0
+pkgrel=2
+arch=(any)
+url='https://buildbot.net'
+license=(GPL2)
+depends=(python-setuptools yarn)
+source=("https://github.com/buildbot/buildbot/releases/download/v$pkgver/buildbot-v$pkgver.gitarchive.tar.gz"{,.sig})
+sha256sums=('b5af824031c2bac87a73cd580fe597b439c113352f3f5d8c8146afbbf077fc77'
+ 'SKIP')
+validpgpkeys=(
+ '390EB159056ED56F66AB1092AECD456B4D2531FC' # Pierre Tardy
<[email protected]> (@tardyp on GitHub)
+ 'FD0004A26EADFE43A4C3F249C6F7AE200374452D' # Povilas Kanapickas
<[email protected]> (@p12tic on GitHub)
+)
+
+build() {
+ cd buildbot-$pkgver/pkg
+ python setup.py build
+}
+
+package() {
+ cd buildbot-$pkgver/pkg
+ python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}