Date: Monday, March 11, 2019 @ 07:35:51
Author: yan12125
Revision: 439692
archrelease: copy trunk to community-testing-any
Added:
buildbot-worker/repos/community-testing-any/
buildbot-worker/repos/community-testing-any/PKGBUILD
(from rev 439691, buildbot-worker/trunk/PKGBUILD)
----------+
PKGBUILD | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
Copied: buildbot-worker/repos/community-testing-any/PKGBUILD (from rev 439691,
buildbot-worker/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD (rev 0)
+++ community-testing-any/PKGBUILD 2019-03-11 07:35:51 UTC (rev 439692)
@@ -0,0 +1,35 @@
+# Maintainer: Chih-Hsuan Yen <[email protected]>
+# Contributor: xRemaLx <[email protected]>
+# Contributor: Sergej Pupykin <[email protected]>
+# Contributor: William Rea <[email protected]>
+
+pkgname=buildbot-worker
+pkgdesc='Buildbot worker daemon'
+pkgver=2.1.0
+pkgrel=1
+arch=(any)
+url='https://buildbot.net'
+license=(GPL2)
+depends=(python-setuptools python-twisted python-future)
+checkdepends=(python-mock)
+source=("https://github.com/buildbot/buildbot/releases/download/v$pkgver/buildbot-v$pkgver.gitarchive.tar.gz"{,.sig})
+sha256sums=('a15491995d9168e8e50c2f958ce4bfef2984ca25dee21bd694c8ea0a12e47509'
+ 'SKIP')
+validpgpkeys=(
+ '390EB159056ED56F66AB1092AECD456B4D2531FC' # Pierre Tardy <[email protected]>
+)
+
+build() {
+ cd buildbot-$pkgver/worker
+ python setup.py build
+}
+
+check() {
+ cd buildbot-$pkgver/worker
+ PYTHONPATH=. trial3 buildbot_worker
+}
+
+package() {
+ cd buildbot-$pkgver/worker
+ python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}