Date: Monday, May 8, 2023 @ 15:04:06
  Author: yan12125
Revision: 1459457

archrelease: copy trunk to community-any

Added:
  buildbot/repos/community-any/PKGBUILD
    (from rev 1459456, buildbot/trunk/PKGBUILD)
  buildbot/repos/community-any/keys/
Deleted:
  buildbot/repos/community-any/PKGBUILD
  buildbot/repos/community-any/keys/

----------+
 PKGBUILD |  619 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 312 insertions(+), 307 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2023-05-08 15:02:58 UTC (rev 1459456)
+++ PKGBUILD    2023-05-08 15:04:06 UTC (rev 1459457)
@@ -1,307 +0,0 @@
-# Maintainer: Chih-Hsuan Yen <[email protected]>
-# Contributor: xRemaLx <[email protected]>
-# Contributor: Sergej Pupykin <[email protected]>
-# Contributor: William Rea <[email protected]>
-
-pkgbase=buildbot
-pkgname=(buildbot buildbot-worker buildbot-docs buildbot-common
-         python-buildbot-www python-buildbot-www-react
-         python-buildbot-waterfall-view
-         python-buildbot-console-view python-buildbot-grid-view
-         python-buildbot-wsgi-dashboards python-buildbot-badges
-         python-buildbot-react-console-view python-buildbot-react-grid-view)
-# https://github.com/buildbot/buildbot/releases
-pkgver=3.8.0
-_bb_contrib_commit=4c8615db51253f0be4bfd08210a3aaf903a74b4f
-pkgrel=2
-arch=(any)
-url='https://buildbot.net'
-license=(GPL2)
-checkdepends=(python-boto3 python-ldap3 python-lz4 python-treq 
python-txrequests
-              python-moto python-docker python-parameterized python-mock 
python-subunit
-              python-unidiff python-psutil python-ruamel-yaml
-              openssh chromium)
-makedepends=(python-twisted python-jinja python-msgpack python-zope-interface 
python-sqlalchemy
-             python-alembic python-dateutil python-txaio
-             python-autobahn python-pyjwt python-yaml
-             python-graphql-core python-hvac
-             python-influxdb libvirt-python python-novaclient python-pypugjs 
python-aiohttp
-             python-setuptools python-future
-             python-sphinx-jinja
-             python-sphinx_rtd_theme
-             git yarn)
-source=("https://github.com/buildbot/buildbot/releases/download/v$pkgver/buildbot-v$pkgver.gitarchive.tar.gz"{,.asc}
-        
"git+https://github.com/buildbot/buildbot-contrib.git#commit=$_bb_contrib_commit";
-        
"buildbot-contrib-systemd-common.patch::https://github.com/buildbot/buildbot-contrib/pull/22.patch";)
-sha256sums=('48a35cc3f47552a94c6eb7543c3b25fe7ef2da052028057754402652c060a92c'
-            'SKIP'
-            'SKIP'
-            '896eede4c33a8574d7c29ac4a28cebbe3d7e850931a86e945328f8ea358195a9')
-validpgpkeys=(
-  '390EB159056ED56F66AB1092AECD456B4D2531FC'  # Pierre Tardy 
<[email protected]> (@tardyp on GitHub)
-  'FD0004A26EADFE43A4C3F249C6F7AE200374452D'  # Povilas Kanapickas 
<[email protected]> (@p12tic on GitHub)
-)
-
-_buildbot_www_modules_with_tests=(base waterfall_view console_view grid_view 
wsgi_dashboards)
-_buildbot_www_react_modules_with_tests=(react-base react-console_view 
react-grid_view)
-_buildbot_www_modules=(${_buildbot_www_modules_with_tests[@]} 
${_buildbot_www_react_modules_with_tests[@]} badges)
-
-prepare() {
-  cd buildbot-$pkgver
-
-  # Some master tests use scripts from contrib
-  ln -s ../../buildbot-contrib/master/contrib master/contrib
-
-  # HACK: do not use virtualenv
-  sed -i -e 's#frontend_deps:.*#frontend_deps:#' Makefile
-
-  # HACK: Do not build JS again during install
-  # We take care about the command order manually
-  sed -i '/egg_info=EggInfoCommand/d' pkg/buildbot_pkg.py
-
-  sed -i '/buildbot_windows_service/d' master/setup.py
-  rm -v master/buildbot/scripts/windows_service.py
-  sed -i '/buildbot_worker_windows_service/d' worker/setup.py
-  rm -v worker/buildbot_worker/scripts/windows_service.py
-
-  # Don't treat warnings as errors. Arch often ships newer Python libraries 
than ones
-  # in upstream CI and introduces extra deprecation warnings
-  sed -r -i "s#warnings\\.filterwarnings\\('error'\\)##" 
master/buildbot/test/__init__.py
-
-  cd "$srcdir"/buildbot-contrib
-  patch -Np1 -i ../buildbot-contrib-systemd-common.patch
-}
-
-build() {
-  export NODE_OPTIONS="--max-old-space-size=2048 --openssl-legacy-provider"
-
-  cd "$srcdir"/buildbot-$pkgver/pkg
-  python setup.py egg_info
-
-  #################### buildbot ########################
-  cd "$srcdir"/buildbot-$pkgver/master
-  python setup.py build
-
-  ################## buildbot-worker ###################
-  cd "$srcdir"/buildbot-$pkgver/worker
-  python setup.py build
-
-  ################### buildbot-www #####################
-  cd "$srcdir"/buildbot-$pkgver
-
-  # HACK: use system packages instead of ones via pip
-  make PIP=/usr/bin/true frontend_deps
-
-  export PYTHONPATH="$srcdir"/buildbot-$pkgver/pkg
-  for module in ${_buildbot_www_modules[@]}
-  do
-    cd "$srcdir"/buildbot-$pkgver/www/$module
-    python setup.py build
-  done
-
-  ################### buildbot-docs ####################
-  cd "$srcdir"/buildbot-$pkgver/master/docs
-  # Default SPHINXOPTS used in upstream Makefile treats warnings as errors and 
may break the build when Arch uses newer sphinx
-  make SPHINXOPTS="-j$(nproc)" clean html singlehtml
-}
-
-check() {
-  # Install packages to a temp folder for tests
-  cd "$srcdir"/buildbot-$pkgver/master
-  python setup.py egg_info
-  python setup.py install_scripts --install-dir="$srcdir/tmp_install"
-
-  cd "$srcdir"/buildbot-$pkgver/worker
-  python setup.py egg_info
-
-  cd "$srcdir"/buildbot-$pkgver/www/base
-  python setup.py egg_info
-
-  # Run tests
-  _basedir="$srcdir/buildbot-$pkgver"
-  export 
PYTHONPATH="$_basedir/master:$_basedir/worker:$_basedir/www/base:$_basedir/pkg"
-  export PATH="$PATH:$srcdir/tmp_install"
-
-  cd "$srcdir"/buildbot-$pkgver/master
-  TZ=UTC trial --rterrors buildbot
-
-  cd "$srcdir"/buildbot-$pkgver/worker
-  PYTHONPATH=. trial buildbot_worker
-
-  export CHROME_BIN=/usr/bin/chromium
-
-  for module in ${_buildbot_www_modules_with_tests[@]}
-  do
-    cd "$srcdir"/buildbot-$pkgver/www/$module
-    yarn run test --browsers BBChromeHeadless
-  done
-
-  for module in ${_buildbot_www_react_modules_with_tests[@]}
-  do
-    cd "$srcdir"/buildbot-$pkgver/www/$module
-    yarn run test
-  done
-}
-
-package_buildbot() {
-  pkgdesc='The Continuous Integration Framework'
-  # include setuptools as plugins are enumerated via pkg_resources
-  depends=(buildbot-common python python-twisted python-jinja python-msgpack 
python-zope-interface python-sqlalchemy
-           python-alembic python-dateutil python-txaio
-           python-autobahn python-pyjwt python-yaml python-setuptools)
-  optdepends=(
-    # reporters
-    'python-pyopenssl: to use SSL/TLS in mail or IRC notifiers'
-    # secrets
-    'pass: to use SecretInPass provider'
-    'vault: to use HashiCorpVaultSecretProvider or 
HashiCorpVaultKvSecretProvider provider'
-    'python-hvac: to use HashiCorpVaultKvSecretProvider provider'
-    # statistics
-    'python-influxdb: for using InfluxDB to store statistics'
-    # steps
-    'python-subunit: for SubunitShellCommand'
-    'python-treq: for using HTTP requests as steps'
-    'python-requests: for using HTTP requests as steps'
-    'python-txrequests: for using HTTP requests as steps'
-    'python-unidiff: for GitDiffInfo'
-    # workers
-    'buildbot-worker: for local worker'
-    'libvirt-python: for libvirt worker'
-    'python-boto3: for AWS EC2 latent worker'
-    'python-botocore: for AWS EC2 latent worker'
-    'python-docker: for Docker latent worker'
-    'python-novaclient: for OpenStack latent worker'
-    'python-keystoneauth1: for OpenStack latent worker'
-    # www
-    'python-graphql-core: GraphQL API for buildbot'
-    'python-ldap3: to authenticate users via LDAP'
-    'python-pypugjs: to use custom Pug.js templates'
-
-    # misc
-    'python-lz4: to compress logs using lz4'
-    'python-aiohttp: for dev-proxy'
-  )
-
-  cd buildbot-$pkgver/master
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 
"$srcdir"/buildbot-contrib/master/contrib/systemd/[email protected] \
-    -t "$pkgdir"/usr/lib/systemd/system/
-}
-
-package_buildbot-worker() {
-  pkgdesc='Buildbot worker daemon'
-  depends=(buildbot-common python python-twisted python-future python-autobahn 
python-msgpack python-zope-interface)
-  optdepends=(
-    'buildbot: for local worker'
-  )
-
-  cd buildbot-$pkgver/worker
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 
"$srcdir"/buildbot-contrib/worker/contrib/systemd/[email protected] \
-    -t "$pkgdir"/usr/lib/systemd/system/
-}
-
-package_buildbot-docs() {
-  pkgdesc='Buildbot docs'
-
-  cd buildbot-$pkgver/master/docs
-  install -Ddm755 "$pkgdir"/usr/share/doc/buildbot
-  for kind in html singlehtml ; do
-    cp -dr --no-preserve=ownership _build/$kind 
"$pkgdir"/usr/share/doc/buildbot/$kind
-  done
-}
-
-package_buildbot-common() {
-  pkgdesc='Contributed scripts for Buildbot'
-
-  cd buildbot-contrib
-  install -Dm644 common/contrib/systemd/sysusers.d/buildbot.conf -t 
"$pkgdir"/usr/lib/sysusers.d/
-  install -Dm644 common/contrib/systemd/tmpfiles.d/buildbot.conf -t 
"$pkgdir"/usr/lib/tmpfiles.d/
-}
-
-package_python-buildbot-www() {
-  pkgdesc='Buildbot UI'
-  depends=(python buildbot)
-  optdepends=(
-    'python-buildbot-waterfall-view'
-    'python-buildbot-console-view'
-    'python-buildbot-grid-view'
-    'python-buildbot-badges'
-  )
-
-  cd buildbot-$pkgver/www/base
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python-buildbot-www-react() {
-  pkgdesc='React-based Buildbot UI (experimental)'
-  depends=(python buildbot)
-  optdepends=(
-    'python-buildbot-react-console-view'
-    'python-buildbot-react-grid-view'
-  )
-
-  cd buildbot-$pkgver/www/react-base
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python-buildbot-waterfall-view() {
-  pkgdesc='Buildbot Waterfall View plugin'
-  depends=(buildbot python-buildbot-www)
-
-  cd buildbot-$pkgver/www/waterfall_view
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python-buildbot-console-view() {
-  pkgdesc='Buildbot Console View plugin'
-  depends=(buildbot python-buildbot-www)
-
-  cd buildbot-$pkgver/www/console_view
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python-buildbot-grid-view() {
-  pkgdesc='Buildbot Grid View plugin'
-  depends=(buildbot python-buildbot-www)
-
-  cd buildbot-$pkgver/www/grid_view
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python-buildbot-wsgi-dashboards() {
-  pkgdesc='Buildbot plugin to integrate flask or bottle dashboards to buildbot 
UI'
-  depends=(buildbot python-buildbot-www python-twisted)
-
-  cd buildbot-$pkgver/www/wsgi_dashboards
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python-buildbot-badges() {
-  pkgdesc='Buildbot badges'
-  depends=(python buildbot python-buildbot-www python-klein python-cairosvg 
python-cairocffi python-jinja python-twisted)
-  # 
https://github.com/buildbot/buildbot/blob/v1.6.0/www/badges/buildbot_badges/__init__.py#L40
-  optdepends=(
-    'ttf-dejavu: the default font for rendering badges as PNGs'
-  )
-
-  cd buildbot-$pkgver/www/badges
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python-buildbot-react-console-view() {
-pkgdesc='Buildbot Console View plugin (React)'
-  depends=(buildbot python-buildbot-www-react)
-
-  cd buildbot-$pkgver/www/react-console_view
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python-buildbot-react-grid-view() {
-  pkgdesc='Buildbot Grid View plugin (React)'
-  depends=(buildbot python-buildbot-www-react)
-
-  cd buildbot-$pkgver/www/react-grid_view
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-

Copied: buildbot/repos/community-any/PKGBUILD (from rev 1459456, 
buildbot/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2023-05-08 15:04:06 UTC (rev 1459457)
@@ -0,0 +1,312 @@
+# Maintainer: Chih-Hsuan Yen <[email protected]>
+# Contributor: xRemaLx <[email protected]>
+# Contributor: Sergej Pupykin <[email protected]>
+# Contributor: William Rea <[email protected]>
+
+pkgbase=buildbot
+pkgname=(buildbot buildbot-worker buildbot-docs buildbot-common
+         python-buildbot-www python-buildbot-www-react
+         python-buildbot-waterfall-view
+         python-buildbot-console-view python-buildbot-grid-view
+         python-buildbot-wsgi-dashboards python-buildbot-badges
+         python-buildbot-react-console-view python-buildbot-react-grid-view)
+# https://github.com/buildbot/buildbot/releases
+pkgver=3.8.0
+_bb_contrib_commit=4c8615db51253f0be4bfd08210a3aaf903a74b4f
+pkgrel=3
+arch=(any)
+url='https://buildbot.net'
+license=(GPL2)
+checkdepends=(python-boto3 python-ldap3 python-lz4 python-treq 
python-txrequests
+              python-moto python-docker python-parameterized python-subunit
+              python-unidiff python-psutil python-ruamel-yaml
+              openssh chromium)
+makedepends=(python-twisted python-jinja python-msgpack python-zope-interface 
python-sqlalchemy
+             python-alembic python-dateutil python-txaio
+             python-autobahn python-pyjwt python-yaml
+             python-graphql-core python-hvac
+             python-influxdb libvirt-python python-novaclient python-pypugjs 
python-aiohttp
+             python-setuptools python-future
+             python-sphinx-jinja
+             python-sphinx_rtd_theme
+             git yarn)
+source=("https://github.com/buildbot/buildbot/releases/download/v$pkgver/buildbot-v$pkgver.gitarchive.tar.gz"{,.asc}
+        
"git+https://github.com/buildbot/buildbot-contrib.git#commit=$_bb_contrib_commit";
+        
"buildbot-contrib-systemd-common.patch::https://github.com/buildbot/buildbot-contrib/pull/22.patch";
+        
"buildbot-unittest-mock.patch::https://github.com/buildbot/buildbot/commit/c8d0eb3fa4150969ae546a80844e8c8c58529c7f.patch";)
+sha256sums=('48a35cc3f47552a94c6eb7543c3b25fe7ef2da052028057754402652c060a92c'
+            'SKIP'
+            'SKIP'
+            '896eede4c33a8574d7c29ac4a28cebbe3d7e850931a86e945328f8ea358195a9'
+            '7d37a1d712f050e9c62a30f23a574204595e78d45032a41dd86fe34ed0ddd4b7')
+validpgpkeys=(
+  '390EB159056ED56F66AB1092AECD456B4D2531FC'  # Pierre Tardy 
<[email protected]> (@tardyp on GitHub)
+  'FD0004A26EADFE43A4C3F249C6F7AE200374452D'  # Povilas Kanapickas 
<[email protected]> (@p12tic on GitHub)
+)
+
+_buildbot_www_modules_with_tests=(base waterfall_view console_view grid_view 
wsgi_dashboards)
+_buildbot_www_react_modules_with_tests=(react-base react-console_view 
react-grid_view)
+_buildbot_www_modules=(${_buildbot_www_modules_with_tests[@]} 
${_buildbot_www_react_modules_with_tests[@]} badges)
+
+prepare() {
+  cd buildbot-$pkgver
+
+  # Some master tests use scripts from contrib
+  ln -s ../../buildbot-contrib/master/contrib master/contrib
+
+  # HACK: do not use virtualenv
+  sed -i -e 's#frontend_deps:.*#frontend_deps:#' Makefile
+
+  # HACK: Do not build JS again during install
+  # We take care about the command order manually
+  sed -i '/egg_info=EggInfoCommand/d' pkg/buildbot_pkg.py
+
+  sed -i '/buildbot_windows_service/d' master/setup.py
+  rm -v master/buildbot/scripts/windows_service.py
+  sed -i '/buildbot_worker_windows_service/d' worker/setup.py
+  rm -v worker/buildbot_worker/scripts/windows_service.py
+
+  # Don't treat warnings as errors. Arch often ships newer Python libraries 
than ones
+  # in upstream CI and introduces extra deprecation warnings
+  sed -r -i "s#warnings\\.filterwarnings\\('error'\\)##" 
master/buildbot/test/__init__.py
+
+  # https://github.com/buildbot/buildbot/pull/6780 (not merged yet)
+  patch -Np1 -i ../buildbot-unittest-mock.patch
+
+  cd "$srcdir"/buildbot-contrib
+  patch -Np1 -i ../buildbot-contrib-systemd-common.patch
+}
+
+build() {
+  export NODE_OPTIONS="--max-old-space-size=2048 --openssl-legacy-provider"
+
+  cd "$srcdir"/buildbot-$pkgver/pkg
+  python setup.py egg_info
+
+  #################### buildbot ########################
+  cd "$srcdir"/buildbot-$pkgver/master
+  python setup.py build
+
+  ################## buildbot-worker ###################
+  cd "$srcdir"/buildbot-$pkgver/worker
+  python setup.py build
+
+  ################### buildbot-www #####################
+  cd "$srcdir"/buildbot-$pkgver
+
+  # HACK: use system packages instead of ones via pip
+  make PIP=/usr/bin/true frontend_deps
+
+  export PYTHONPATH="$srcdir"/buildbot-$pkgver/pkg
+  for module in ${_buildbot_www_modules[@]}
+  do
+    cd "$srcdir"/buildbot-$pkgver/www/$module
+    python setup.py build
+  done
+
+  ################### buildbot-docs ####################
+  cd "$srcdir"/buildbot-$pkgver/master/docs
+  # Default SPHINXOPTS used in upstream Makefile treats warnings as errors and 
may break the build when Arch uses newer sphinx
+  make SPHINXOPTS="-j$(nproc)" clean html singlehtml
+}
+
+check() {
+  # Install packages to a temp folder for tests
+  cd "$srcdir"/buildbot-$pkgver/master
+  python setup.py egg_info
+  python setup.py install_scripts --install-dir="$srcdir/tmp_install"
+
+  cd "$srcdir"/buildbot-$pkgver/worker
+  python setup.py egg_info
+
+  cd "$srcdir"/buildbot-$pkgver/www/base
+  python setup.py egg_info
+
+  # Run tests
+  _basedir="$srcdir/buildbot-$pkgver"
+  export 
PYTHONPATH="$_basedir/master:$_basedir/worker:$_basedir/www/base:$_basedir/pkg"
+  export PATH="$PATH:$srcdir/tmp_install"
+
+  cd "$srcdir"/buildbot-$pkgver/master
+  TZ=UTC trial --rterrors buildbot
+
+  cd "$srcdir"/buildbot-$pkgver/worker
+  PYTHONPATH=. trial buildbot_worker
+
+  export CHROME_BIN=/usr/bin/chromium
+
+  for module in ${_buildbot_www_modules_with_tests[@]}
+  do
+    cd "$srcdir"/buildbot-$pkgver/www/$module
+    yarn run test --browsers BBChromeHeadless
+  done
+
+  for module in ${_buildbot_www_react_modules_with_tests[@]}
+  do
+    cd "$srcdir"/buildbot-$pkgver/www/$module
+    yarn run test
+  done
+}
+
+package_buildbot() {
+  pkgdesc='The Continuous Integration Framework'
+  # include setuptools as plugins are enumerated via pkg_resources
+  depends=(buildbot-common python python-twisted python-jinja python-msgpack 
python-zope-interface python-sqlalchemy
+           python-alembic python-dateutil python-txaio
+           python-autobahn python-pyjwt python-yaml python-setuptools)
+  optdepends=(
+    # reporters
+    'python-pyopenssl: to use SSL/TLS in mail or IRC notifiers'
+    # secrets
+    'pass: to use SecretInPass provider'
+    'vault: to use HashiCorpVaultSecretProvider or 
HashiCorpVaultKvSecretProvider provider'
+    'python-hvac: to use HashiCorpVaultKvSecretProvider provider'
+    # statistics
+    'python-influxdb: for using InfluxDB to store statistics'
+    # steps
+    'python-subunit: for SubunitShellCommand'
+    'python-treq: for using HTTP requests as steps'
+    'python-requests: for using HTTP requests as steps'
+    'python-txrequests: for using HTTP requests as steps'
+    'python-unidiff: for GitDiffInfo'
+    # workers
+    'buildbot-worker: for local worker'
+    'libvirt-python: for libvirt worker'
+    'python-boto3: for AWS EC2 latent worker'
+    'python-botocore: for AWS EC2 latent worker'
+    'python-docker: for Docker latent worker'
+    'python-novaclient: for OpenStack latent worker'
+    'python-keystoneauth1: for OpenStack latent worker'
+    # www
+    'python-graphql-core: GraphQL API for buildbot'
+    'python-ldap3: to authenticate users via LDAP'
+    'python-pypugjs: to use custom Pug.js templates'
+
+    # misc
+    'python-lz4: to compress logs using lz4'
+    'python-aiohttp: for dev-proxy'
+  )
+
+  cd buildbot-$pkgver/master
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 
"$srcdir"/buildbot-contrib/master/contrib/systemd/[email protected] \
+    -t "$pkgdir"/usr/lib/systemd/system/
+}
+
+package_buildbot-worker() {
+  pkgdesc='Buildbot worker daemon'
+  depends=(buildbot-common python python-twisted python-future python-autobahn 
python-msgpack python-zope-interface)
+  optdepends=(
+    'buildbot: for local worker'
+  )
+
+  cd buildbot-$pkgver/worker
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 
"$srcdir"/buildbot-contrib/worker/contrib/systemd/[email protected] \
+    -t "$pkgdir"/usr/lib/systemd/system/
+}
+
+package_buildbot-docs() {
+  pkgdesc='Buildbot docs'
+
+  cd buildbot-$pkgver/master/docs
+  install -Ddm755 "$pkgdir"/usr/share/doc/buildbot
+  for kind in html singlehtml ; do
+    cp -dr --no-preserve=ownership _build/$kind 
"$pkgdir"/usr/share/doc/buildbot/$kind
+  done
+}
+
+package_buildbot-common() {
+  pkgdesc='Contributed scripts for Buildbot'
+
+  cd buildbot-contrib
+  install -Dm644 common/contrib/systemd/sysusers.d/buildbot.conf -t 
"$pkgdir"/usr/lib/sysusers.d/
+  install -Dm644 common/contrib/systemd/tmpfiles.d/buildbot.conf -t 
"$pkgdir"/usr/lib/tmpfiles.d/
+}
+
+package_python-buildbot-www() {
+  pkgdesc='Buildbot UI'
+  depends=(python buildbot)
+  optdepends=(
+    'python-buildbot-waterfall-view'
+    'python-buildbot-console-view'
+    'python-buildbot-grid-view'
+    'python-buildbot-badges'
+  )
+
+  cd buildbot-$pkgver/www/base
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python-buildbot-www-react() {
+  pkgdesc='React-based Buildbot UI (experimental)'
+  depends=(python buildbot)
+  optdepends=(
+    'python-buildbot-react-console-view'
+    'python-buildbot-react-grid-view'
+  )
+
+  cd buildbot-$pkgver/www/react-base
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python-buildbot-waterfall-view() {
+  pkgdesc='Buildbot Waterfall View plugin'
+  depends=(buildbot python-buildbot-www)
+
+  cd buildbot-$pkgver/www/waterfall_view
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python-buildbot-console-view() {
+  pkgdesc='Buildbot Console View plugin'
+  depends=(buildbot python-buildbot-www)
+
+  cd buildbot-$pkgver/www/console_view
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python-buildbot-grid-view() {
+  pkgdesc='Buildbot Grid View plugin'
+  depends=(buildbot python-buildbot-www)
+
+  cd buildbot-$pkgver/www/grid_view
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python-buildbot-wsgi-dashboards() {
+  pkgdesc='Buildbot plugin to integrate flask or bottle dashboards to buildbot 
UI'
+  depends=(buildbot python-buildbot-www python-twisted)
+
+  cd buildbot-$pkgver/www/wsgi_dashboards
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python-buildbot-badges() {
+  pkgdesc='Buildbot badges'
+  depends=(python buildbot python-buildbot-www python-klein python-cairosvg 
python-cairocffi python-jinja python-twisted)
+  # 
https://github.com/buildbot/buildbot/blob/v1.6.0/www/badges/buildbot_badges/__init__.py#L40
+  optdepends=(
+    'ttf-dejavu: the default font for rendering badges as PNGs'
+  )
+
+  cd buildbot-$pkgver/www/badges
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python-buildbot-react-console-view() {
+pkgdesc='Buildbot Console View plugin (React)'
+  depends=(buildbot python-buildbot-www-react)
+
+  cd buildbot-$pkgver/www/react-console_view
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python-buildbot-react-grid-view() {
+  pkgdesc='Buildbot Grid View plugin (React)'
+  depends=(buildbot python-buildbot-www-react)
+
+  cd buildbot-$pkgver/www/react-grid_view
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+

Reply via email to