[arch-commits] Commit in mosquitto/repos/community-x86_64 (6 files)

2020-06-06 Thread Jelle van der Waa via arch-commits
Date: Saturday, June 6, 2020 @ 14:17:08
  Author: jelle
Revision: 639491

archrelease: copy trunk to community-x86_64

Added:
  mosquitto/repos/community-x86_64/PKGBUILD
(from rev 639490, mosquitto/trunk/PKGBUILD)
  mosquitto/repos/community-x86_64/mosquitto.service
(from rev 639490, mosquitto/trunk/mosquitto.service)
  mosquitto/repos/community-x86_64/sysusers_mosquitto.conf
(from rev 639490, mosquitto/trunk/sysusers_mosquitto.conf)
Deleted:
  mosquitto/repos/community-x86_64/PKGBUILD
  mosquitto/repos/community-x86_64/mosquitto.service
  mosquitto/repos/community-x86_64/sysusers_mosquitto.conf

-+
 PKGBUILD|   94 +++---
 mosquitto.service   |   36 -
 sysusers_mosquitto.conf |2 
 3 files changed, 66 insertions(+), 66 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-06 14:16:57 UTC (rev 639490)
+++ PKGBUILD2020-06-06 14:17:08 UTC (rev 639491)
@@ -1,47 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Radek Podgorny 
-# Contributor: Dan Anderson 
-
-pkgname=mosquitto
-pkgver=1.6.9
-pkgrel=2
-pkgdesc="An Open Source MQTT v3.1/v3.1.1 Broker"
-arch=('x86_64')
-url="https://mosquitto.org/;
-depends=('openssl' 'c-ares' 'libwebsockets' 'libutil-linux')
-makedepends=('docbook-xsl' 'c-ares')
-license=('BSD')
-source=(https://mosquitto.org/files/source/mosquitto-$pkgver.tar.gz{,.asc}
-"$pkgname.service"
-"sysusers_mosquitto.conf")
-backup=("etc/$pkgname/$pkgname.conf")
-sha256sums=('412979b2db0a0020bd02fa64f0a0de9e7000b84462586e32b67f29bb1f6c1685'
-'SKIP'
-'539b6aa2f88bba25fead1a5cbb285f18470c244391c0dfcac8d3f59e99a0652d'
-'7ba9ae9e3219e24c1585760f39fab5632ded52172cd8193cc4adbd8af46c5197')
-validpgpkeys=('A0D6EEA1DCAE49A635A3B2F0779B22DFB3E717B7')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  # FIX upstream by making SBINDIR=foo or use CMAKE
-  sed -i 's|/sbin|/bin|g' src/Makefile
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  make WITH_WEBSOCKETS=yes
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make prefix=/usr DESTDIR="$pkgdir/" install
-
-  # Shipped in git.
-  install -Dm644 "$srcdir/$pkgname.service" 
"$pkgdir/usr/lib/systemd/system/$pkgname.service"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  mv "$pkgdir/etc/$pkgname/$pkgname.conf.example" 
"$pkgdir/etc/$pkgname/$pkgname.conf"
-
-  install -D -m644 "${srcdir}"/sysusers_mosquitto.conf 
"${pkgdir}"/usr/lib/sysusers.d/mosquitto.conf
-}

Copied: mosquitto/repos/community-x86_64/PKGBUILD (from rev 639490, 
mosquitto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-06 14:17:08 UTC (rev 639491)
@@ -0,0 +1,47 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Radek Podgorny 
+# Contributor: Dan Anderson 
+
+pkgname=mosquitto
+pkgver=1.6.10
+pkgrel=1
+pkgdesc="An Open Source MQTT v3.1/v3.1.1 Broker"
+arch=('x86_64')
+url="https://mosquitto.org/;
+depends=('openssl' 'c-ares' 'libwebsockets' 'libutil-linux')
+makedepends=('docbook-xsl' 'c-ares')
+license=('BSD')
+source=(https://mosquitto.org/files/source/mosquitto-$pkgver.tar.gz{,.asc}
+"$pkgname.service"
+"sysusers_mosquitto.conf")
+backup=("etc/$pkgname/$pkgname.conf")
+sha256sums=('92d1807717f0f6d57d1ac1207ffdb952e8377e916c7b0bb4718f745239774232'
+'SKIP'
+'539b6aa2f88bba25fead1a5cbb285f18470c244391c0dfcac8d3f59e99a0652d'
+'7ba9ae9e3219e24c1585760f39fab5632ded52172cd8193cc4adbd8af46c5197')
+validpgpkeys=('A0D6EEA1DCAE49A635A3B2F0779B22DFB3E717B7')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  # FIX upstream by making SBINDIR=foo or use CMAKE
+  sed -i 's|/sbin|/bin|g' src/Makefile
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  make WITH_WEBSOCKETS=yes
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make prefix=/usr DESTDIR="$pkgdir/" install
+
+  # Shipped in git.
+  install -Dm644 "$srcdir/$pkgname.service" 
"$pkgdir/usr/lib/systemd/system/$pkgname.service"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  mv "$pkgdir/etc/$pkgname/$pkgname.conf.example" 
"$pkgdir/etc/$pkgname/$pkgname.conf"
+
+  install -D -m644 "${srcdir}"/sysusers_mosquitto.conf 
"${pkgdir}"/usr/lib/sysusers.d/mosquitto.conf
+}

Deleted: mosquitto.service
===
--- mosquitto.service   2020-06-06 14:16:57 UTC (rev 639490)
+++ mosquitto.service   2020-06-06 14:17:08 UTC (rev 639491)
@@ -1,18 +0,0 @@
-[Unit]
-Description=Mosquitto MQTT Broker daemon
-Requires=network.target
-
-[Service]
-User=mosquitto
-ExecStart=/usr/bin/mosquitto -c /etc/mosquitto/mosquitto.conf
-ExecReload=/bin/kill -HUP $MAINPID
-Restart=on-failure
-
-NoNewPrivileges=yes
-ProtectSystem=full
-ProtectHome=true
-PrivateTmp=true
-PrivateDevices=true
-

[arch-commits] Commit in mosquitto/trunk (PKGBUILD)

2020-06-06 Thread Jelle van der Waa via arch-commits
Date: Saturday, June 6, 2020 @ 14:16:57
  Author: jelle
Revision: 639490

upgpkg: mosquitto 1.6.10-1

Modified:
  mosquitto/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-06 13:15:48 UTC (rev 639489)
+++ PKGBUILD2020-06-06 14:16:57 UTC (rev 639490)
@@ -3,8 +3,8 @@
 # Contributor: Dan Anderson 
 
 pkgname=mosquitto
-pkgver=1.6.9
-pkgrel=2
+pkgver=1.6.10
+pkgrel=1
 pkgdesc="An Open Source MQTT v3.1/v3.1.1 Broker"
 arch=('x86_64')
 url="https://mosquitto.org/;
@@ -15,7 +15,7 @@
 "$pkgname.service"
 "sysusers_mosquitto.conf")
 backup=("etc/$pkgname/$pkgname.conf")
-sha256sums=('412979b2db0a0020bd02fa64f0a0de9e7000b84462586e32b67f29bb1f6c1685'
+sha256sums=('92d1807717f0f6d57d1ac1207ffdb952e8377e916c7b0bb4718f745239774232'
 'SKIP'
 '539b6aa2f88bba25fead1a5cbb285f18470c244391c0dfcac8d3f59e99a0652d'
 '7ba9ae9e3219e24c1585760f39fab5632ded52172cd8193cc4adbd8af46c5197')


[arch-commits] Commit in django/trunk (PKGBUILD)

2020-06-05 Thread Jelle van der Waa via arch-commits
Date: Friday, June 5, 2020 @ 21:20:43
  Author: jelle
Revision: 388359

upgpkg: django 3.0.7-1

Modified:
  django/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-05 20:16:13 UTC (rev 388358)
+++ PKGBUILD2020-06-05 21:20:43 UTC (rev 388359)
@@ -4,8 +4,8 @@
 
 pkgbase=django
 pkgname=('python-django')
-pkgver=3.0.6
-pkgrel=2
+pkgver=3.0.7
+pkgrel=1
 pkgdesc="A high-level Python Web framework that encourages rapid development 
and clean design"
 arch=('any')
 license=('BSD')
@@ -15,7 +15,7 @@
 depends=('python' 'python-setuptools' 'python-pytz' 'python-sqlparse' 
'python-asgiref')
 optdepends=('python-psycopg2: for PostgreSQL backend')
 
source=("Django-$pkgver.tar.gz::https://www.djangoproject.com/download/$pkgver/tarball/;)
-sha512sums=('4c92c51386919c389037d6c6d1de3cb6ec443bd1f216f20797fb20fb24ea8d021701a03805ba693deadfa82b1aee38ae0d7fc03cae94cd744b1d1fa47ddc46ad')
+sha512sums=('566a78c3686baaea2ea8f2db2c1762a78ec5e5ae44f0be43f49c83899c2a0a9d1b2297a05ce8f4bc6bc580c494dde66bb2be47a8269cce3e1b007fedd857e5d3')
 
 build() {
   cd "$srcdir/Django-$pkgver"


[arch-commits] Commit in django/repos/extra-any (PKGBUILD PKGBUILD)

2020-06-05 Thread Jelle van der Waa via arch-commits
Date: Friday, June 5, 2020 @ 21:20:58
  Author: jelle
Revision: 388360

archrelease: copy trunk to extra-any

Added:
  django/repos/extra-any/PKGBUILD
(from rev 388359, django/trunk/PKGBUILD)
Deleted:
  django/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   96 ++---
 1 file changed, 48 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-05 21:20:43 UTC (rev 388359)
+++ PKGBUILD2020-06-05 21:20:58 UTC (rev 388360)
@@ -1,48 +0,0 @@
-# Maintainer: Angel Velasquez 
-# Maintainer: Dan McGee 
-# Contributor: Shahar Weiss 
-
-pkgbase=django
-pkgname=('python-django')
-pkgver=3.0.6
-pkgrel=2
-pkgdesc="A high-level Python Web framework that encourages rapid development 
and clean design"
-arch=('any')
-license=('BSD')
-url="http://www.djangoproject.com/;
-checkdepends=('python-pytest' 'python-tblib')
-makedepends=('python' 'python-setuptools')
-depends=('python' 'python-setuptools' 'python-pytz' 'python-sqlparse' 
'python-asgiref')
-optdepends=('python-psycopg2: for PostgreSQL backend')
-source=("Django-$pkgver.tar.gz::https://www.djangoproject.com/download/$pkgver/tarball/;)
-sha512sums=('4c92c51386919c389037d6c6d1de3cb6ec443bd1f216f20797fb20fb24ea8d021701a03805ba693deadfa82b1aee38ae0d7fc03cae94cd744b1d1fa47ddc46ad')
-
-build() {
-  cd "$srcdir/Django-$pkgver"
-  python setup.py build
-}
-
-package_python-django() {
-  cd "$srcdir/Django-$pkgver"
-
-  # fix reproducibility of .pyc files
-  export PYTHONHASHSEED=0
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  ln -s django-admin.py "$pkgdir"/usr/bin/django-admin3.py
-  ln -s django-admin "$pkgdir"/usr/bin/django-admin3
-  install -Dm644 extras/django_bash_completion \
-"$pkgdir"/usr/share/bash-completion/completions/django-admin.py
-  ln -s django-admin.py \
-"$pkgdir"/usr/share/bash-completion/completions/django-admin
-  ln -s django-admin.py \
-"$pkgdir"/usr/share/bash-completion/completions/manage.py
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-check() {
-  cd "$srcdir/Django-$pkgver"
-  PYTHONPATH="$PWD" python tests/runtests.py || echo 'tests failed'
-}

Copied: django/repos/extra-any/PKGBUILD (from rev 388359, django/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-05 21:20:58 UTC (rev 388360)
@@ -0,0 +1,48 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Dan McGee 
+# Contributor: Shahar Weiss 
+
+pkgbase=django
+pkgname=('python-django')
+pkgver=3.0.7
+pkgrel=1
+pkgdesc="A high-level Python Web framework that encourages rapid development 
and clean design"
+arch=('any')
+license=('BSD')
+url="http://www.djangoproject.com/;
+checkdepends=('python-pytest' 'python-tblib')
+makedepends=('python' 'python-setuptools')
+depends=('python' 'python-setuptools' 'python-pytz' 'python-sqlparse' 
'python-asgiref')
+optdepends=('python-psycopg2: for PostgreSQL backend')
+source=("Django-$pkgver.tar.gz::https://www.djangoproject.com/download/$pkgver/tarball/;)
+sha512sums=('566a78c3686baaea2ea8f2db2c1762a78ec5e5ae44f0be43f49c83899c2a0a9d1b2297a05ce8f4bc6bc580c494dde66bb2be47a8269cce3e1b007fedd857e5d3')
+
+build() {
+  cd "$srcdir/Django-$pkgver"
+  python setup.py build
+}
+
+package_python-django() {
+  cd "$srcdir/Django-$pkgver"
+
+  # fix reproducibility of .pyc files
+  export PYTHONHASHSEED=0
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  ln -s django-admin.py "$pkgdir"/usr/bin/django-admin3.py
+  ln -s django-admin "$pkgdir"/usr/bin/django-admin3
+  install -Dm644 extras/django_bash_completion \
+"$pkgdir"/usr/share/bash-completion/completions/django-admin.py
+  ln -s django-admin.py \
+"$pkgdir"/usr/share/bash-completion/completions/django-admin
+  ln -s django-admin.py \
+"$pkgdir"/usr/share/bash-completion/completions/manage.py
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+check() {
+  cd "$srcdir/Django-$pkgver"
+  PYTHONPATH="$PWD" python tests/runtests.py || echo 'tests failed'
+}


[arch-commits] Commit in v4l-utils/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-06-04 Thread Jelle van der Waa via arch-commits
Date: Thursday, June 4, 2020 @ 09:28:53
  Author: jelle
Revision: 388269

archrelease: copy trunk to extra-x86_64

Added:
  v4l-utils/repos/extra-x86_64/PKGBUILD
(from rev 388268, v4l-utils/trunk/PKGBUILD)
Deleted:
  v4l-utils/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-04 09:28:43 UTC (rev 388268)
+++ PKGBUILD2020-06-04 09:28:53 UTC (rev 388269)
@@ -1,32 +0,0 @@
-# Maintainer: Thomas Bächler 
-pkgname=v4l-utils
-pkgver=1.18.1
-pkgrel=1
-pkgdesc="Userspace tools and conversion library for Video 4 Linux"
-arch=('x86_64')
-url="https://linuxtv.org/;
-provides=("libv4l=$pkgver")
-replaces=('libv4l')
-conflicts=('libv4l')
-backup=(etc/rc_maps.cfg)
-license=('LGPL')
-makedepends=('qt5-base' 'alsa-lib')
-optdepends=('qt5-base: for qv4l2' 'alsa-lib: for qv4l2')
-depends=('hicolor-icon-theme' 'gcc-libs' 'sysfsutils' 'libjpeg-turbo')
-source=(https://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2{,.asc})
-sha256sums=('25fc42253722401f8742f04dc50a444dfa9b75378e7d09b55035bcbb44c5f342'
-'SKIP')
-validpgpkeys=('05D0169C26E41593418129DF199A64FADFB500FF') # Gregor Jasny 

-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  MAKEFLAGS="-j1" make install DESTDIR="${pkgdir}/"
-  rm "${pkgdir}/usr/bin/ivtv-ctl"
-}

Copied: v4l-utils/repos/extra-x86_64/PKGBUILD (from rev 388268, 
v4l-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-04 09:28:53 UTC (rev 388269)
@@ -0,0 +1,32 @@
+# Maintainer: Thomas Bächler 
+pkgname=v4l-utils
+pkgver=1.20.0
+pkgrel=1
+pkgdesc="Userspace tools and conversion library for Video 4 Linux"
+arch=('x86_64')
+url="https://linuxtv.org/;
+provides=("libv4l=$pkgver")
+replaces=('libv4l')
+conflicts=('libv4l')
+backup=(etc/rc_maps.cfg)
+license=('LGPL')
+makedepends=('qt5-base' 'alsa-lib')
+optdepends=('qt5-base: for qv4l2' 'alsa-lib: for qv4l2')
+depends=('hicolor-icon-theme' 'gcc-libs' 'sysfsutils' 'libjpeg-turbo')
+source=(https://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2{,.asc})
+sha256sums=('956118713f7ccb405c55c7088a6a2490c32d54300dd9a30d8d5008c28d3726f7'
+'SKIP')
+validpgpkeys=('05D0169C26E41593418129DF199A64FADFB500FF') # Gregor Jasny 

+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  MAKEFLAGS="-j1" make install DESTDIR="${pkgdir}/"
+  rm "${pkgdir}/usr/bin/ivtv-ctl"
+}


[arch-commits] Commit in v4l-utils/trunk (PKGBUILD)

2020-06-04 Thread Jelle van der Waa via arch-commits
Date: Thursday, June 4, 2020 @ 09:28:43
  Author: jelle
Revision: 388268

upgpkg: v4l-utils 1.20.0-1

Modified:
  v4l-utils/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-04 08:31:59 UTC (rev 388267)
+++ PKGBUILD2020-06-04 09:28:43 UTC (rev 388268)
@@ -1,6 +1,6 @@
 # Maintainer: Thomas Bächler 
 pkgname=v4l-utils
-pkgver=1.18.1
+pkgver=1.20.0
 pkgrel=1
 pkgdesc="Userspace tools and conversion library for Video 4 Linux"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt5-base: for qv4l2' 'alsa-lib: for qv4l2')
 depends=('hicolor-icon-theme' 'gcc-libs' 'sysfsutils' 'libjpeg-turbo')
 
source=(https://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2{,.asc})
-sha256sums=('25fc42253722401f8742f04dc50a444dfa9b75378e7d09b55035bcbb44c5f342'
+sha256sums=('956118713f7ccb405c55c7088a6a2490c32d54300dd9a30d8d5008c28d3726f7'
 'SKIP')
 validpgpkeys=('05D0169C26E41593418129DF199A64FADFB500FF') # Gregor Jasny 

 


[arch-commits] Commit in graphviz/trunk (PKGBUILD)

2020-06-03 Thread Jelle van der Waa via arch-commits
Date: Wednesday, June 3, 2020 @ 19:39:28
  Author: jelle
Revision: 388232

Add libpng as dependency

dot -Tpng is common usage along other packages depending on graphviz and
expecting it to be available. Since a post_install script is used libpng is
only avaialbe when it's a dependency of grahviz installing.

Modified:
  graphviz/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-03 19:31:50 UTC (rev 388231)
+++ PKGBUILD2020-06-03 19:39:28 UTC (rev 388232)
@@ -4,12 +4,12 @@
 
 pkgname=graphviz
 pkgver=2.44.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Graph visualization software'
 url='https://www.graphviz.org/'
 license=('EPL')
 arch=('x86_64')
-depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts' 
'gsfonts' 'libnsl')
+depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts' 
'gsfonts' 'libnsl' 'libpng')
 makedepends=('swig' 'mono' 'guile' 'lua' 'ocaml' 'perl' 'python' 'python2' 'r' 
'tk' 'qt5-base' 'gtk2' 'git')
 optdepends=('mono: sharp bindings'
 'guile: guile bindings'


[arch-commits] Commit in graphviz/repos/extra-x86_64 (6 files)

2020-06-03 Thread Jelle van der Waa via arch-commits
Date: Wednesday, June 3, 2020 @ 19:39:39
  Author: jelle
Revision: 388233

archrelease: copy trunk to extra-x86_64

Added:
  graphviz/repos/extra-x86_64/PKGBUILD
(from rev 388232, graphviz/trunk/PKGBUILD)
  graphviz/repos/extra-x86_64/ghostscript918.patch
(from rev 388232, graphviz/trunk/ghostscript918.patch)
  graphviz/repos/extra-x86_64/install
(from rev 388232, graphviz/trunk/install)
Deleted:
  graphviz/repos/extra-x86_64/PKGBUILD
  graphviz/repos/extra-x86_64/ghostscript918.patch
  graphviz/repos/extra-x86_64/install

--+
 PKGBUILD |  122 -
 ghostscript918.patch |   36 +++---
 install  |   24 -
 3 files changed, 91 insertions(+), 91 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-03 19:39:28 UTC (rev 388232)
+++ PKGBUILD2020-06-03 19:39:39 UTC (rev 388233)
@@ -1,61 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: kevin 
-# Contributor: John Proctor 
-
-pkgname=graphviz
-pkgver=2.44.0
-pkgrel=2
-pkgdesc='Graph visualization software'
-url='https://www.graphviz.org/'
-license=('EPL')
-arch=('x86_64')
-depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts' 
'gsfonts' 'libnsl')
-makedepends=('swig' 'mono' 'guile' 'lua' 'ocaml' 'perl' 'python' 'python2' 'r' 
'tk' 'qt5-base' 'gtk2' 'git')
-optdepends=('mono: sharp bindings'
-'guile: guile bindings'
-'lua: lua bindings'
-'ocaml: ocaml bindings'
-'perl: perl bindings'
-'python: python bindings'
-'python2: python2 bindings'
-'r: r bindings'
-'tcl: tcl bindings'
-'qt5-base: gvedit'
-'gtk2: gtk output plugin'
-'xterm: vimdot')
-source=("https://www2.graphviz.org/Packages/stable/portable_source/graphviz-${pkgver}.tar.gz;
-'ghostscript918.patch')
-sha256sums=('9aabd13a8018b708ab3c822de2326c19d0a52ed59f50a6b0f9318c07e2a6d93b'
-'0083d126e27f2223ec4226fc1d71c9c84106968a0fdf65de838aee1e4882bfdb')
-
-install=install
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i ../ghostscript918.patch
-   ./autogen.sh
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export PYTHON=python2
-   export LIBPOSTFIX=/
-   export CXXFLAGS+=' -fPIC -fpermissive'
-
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-
-   # fix symlink to symlink that doesn't get picked up by makepkg's zipman
-   ln -s gv2gxl.1.gz "${pkgdir}"/usr/share/man/man1/dot2gxl.1.gz
-   rm "${pkgdir}"/usr/share/man/man1/dot2gxl.1
-
-   # Deduplicates TCL libraries
-   cd "${pkgdir}/usr/lib/tcl8.6"
-   rm -fr graphviz
-   ln -s ../graphviz/tcl graphviz
-}

Copied: graphviz/repos/extra-x86_64/PKGBUILD (from rev 388232, 
graphviz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-03 19:39:39 UTC (rev 388233)
@@ -0,0 +1,61 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: kevin 
+# Contributor: John Proctor 
+
+pkgname=graphviz
+pkgver=2.44.0
+pkgrel=3
+pkgdesc='Graph visualization software'
+url='https://www.graphviz.org/'
+license=('EPL')
+arch=('x86_64')
+depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts' 
'gsfonts' 'libnsl' 'libpng')
+makedepends=('swig' 'mono' 'guile' 'lua' 'ocaml' 'perl' 'python' 'python2' 'r' 
'tk' 'qt5-base' 'gtk2' 'git')
+optdepends=('mono: sharp bindings'
+'guile: guile bindings'
+'lua: lua bindings'
+'ocaml: ocaml bindings'
+'perl: perl bindings'
+'python: python bindings'
+'python2: python2 bindings'
+'r: r bindings'
+'tcl: tcl bindings'
+'qt5-base: gvedit'
+'gtk2: gtk output plugin'
+'xterm: vimdot')
+source=("https://www2.graphviz.org/Packages/stable/portable_source/graphviz-${pkgver}.tar.gz;
+'ghostscript918.patch')
+sha256sums=('9aabd13a8018b708ab3c822de2326c19d0a52ed59f50a6b0f9318c07e2a6d93b'
+'0083d126e27f2223ec4226fc1d71c9c84106968a0fdf65de838aee1e4882bfdb')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../ghostscript918.patch
+   ./autogen.sh
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export PYTHON=python2
+   export LIBPOSTFIX=/
+   export CXXFLAGS+=' -fPIC -fpermissive'
+
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   # fix symlink to symlink that doesn't get picked up by makepkg's zipman
+   ln -s gv2gxl.1.gz "${pkgdir}"/usr/share/man/man1/dot2gxl.1.gz
+ 

[arch-commits] Commit in tamu-anova/trunk (PKGBUILD)

2020-06-03 Thread Jelle van der Waa via arch-commits
Date: Wednesday, June 3, 2020 @ 10:53:43
  Author: jelle
Revision: 388148

Rebuild for reproducible builds

Use the newly uploaded source as upstream is MIA.

Modified:
  tamu-anova/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-03 10:25:08 UTC (rev 388147)
+++ PKGBUILD2020-06-03 10:53:43 UTC (rev 388148)
@@ -3,7 +3,7 @@
 
 pkgname=tamu-anova
 pkgver=0.2.1
-pkgrel=6
+pkgrel=7
 pkgdesc="ANOVA Extensions to the GNU Scientific Library"
 arch=('x86_64')
 url="https://www.stat.tamu.edu/~aredd/tamuanova/;
@@ -11,7 +11,7 @@
 depends=('gsl')
 makedepends=('gcc')
 options=('staticlibs')
-source=(https://www.mirrorservice.org/sites/www.ibiblio.org/gentoo/distfiles/tamu_anova-$pkgver.tar.gz)
+source=(https://sources.archlinux.org/other/packages/tamu_anova/tamu_anova-0.2.1.tar.gz)
 sha1sums=('8c7ffae14ebe92f27d20ff1f0e325875fa6ced53')
 
 build() {


[arch-commits] Commit in tamu-anova/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-06-03 Thread Jelle van der Waa via arch-commits
Date: Wednesday, June 3, 2020 @ 10:53:54
  Author: jelle
Revision: 388149

archrelease: copy trunk to extra-x86_64

Added:
  tamu-anova/repos/extra-x86_64/PKGBUILD
(from rev 388148, tamu-anova/trunk/PKGBUILD)
Deleted:
  tamu-anova/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-03 10:53:43 UTC (rev 388148)
+++ PKGBUILD2020-06-03 10:53:54 UTC (rev 388149)
@@ -1,28 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: Gergely Imreh 
-
-pkgname=tamu-anova
-pkgver=0.2.1
-pkgrel=6
-pkgdesc="ANOVA Extensions to the GNU Scientific Library"
-arch=('x86_64')
-url="http://www.stat.tamu.edu/~aredd/tamuanova/;
-license=('GPL')
-depends=('gsl')
-makedepends=('gcc')
-options=('staticlibs')
-source=(http://www.mirrorservice.org/sites/www.ibiblio.org/gentoo/distfiles/tamu_anova-0.2.1.tar.gz)
-sha1sums=('8c7ffae14ebe92f27d20ff1f0e325875fa6ced53')
-
-build() {
-  cd ${srcdir}/tamu_anova-0.2
-  ./configure --prefix=/usr \
-  --infodir=/usr/share/info \
-  --includedir=/usr/include
-  make
-}
-
-package() {
-  cd ${srcdir}/tamu_anova-0.2
-  make DESTDIR=${pkgdir} install
-}

Copied: tamu-anova/repos/extra-x86_64/PKGBUILD (from rev 388148, 
tamu-anova/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-03 10:53:54 UTC (rev 388149)
@@ -0,0 +1,28 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Gergely Imreh 
+
+pkgname=tamu-anova
+pkgver=0.2.1
+pkgrel=7
+pkgdesc="ANOVA Extensions to the GNU Scientific Library"
+arch=('x86_64')
+url="https://www.stat.tamu.edu/~aredd/tamuanova/;
+license=('GPL')
+depends=('gsl')
+makedepends=('gcc')
+options=('staticlibs')
+source=(https://sources.archlinux.org/other/packages/tamu_anova/tamu_anova-0.2.1.tar.gz)
+sha1sums=('8c7ffae14ebe92f27d20ff1f0e325875fa6ced53')
+
+build() {
+  cd tamu_anova-0.2
+  ./configure --prefix=/usr \
+  --infodir=/usr/share/info \
+  --includedir=/usr/include
+  make
+}
+
+package() {
+  cd tamu_anova-0.2
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in spandsp/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-06-03 Thread Jelle van der Waa via arch-commits
Date: Wednesday, June 3, 2020 @ 10:22:32
  Author: jelle
Revision: 388144

archrelease: copy trunk to extra-x86_64

Added:
  spandsp/repos/extra-x86_64/PKGBUILD
(from rev 388143, spandsp/trunk/PKGBUILD)
Deleted:
  spandsp/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   57 -
 1 file changed, 28 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-03 10:22:21 UTC (rev 388143)
+++ PKGBUILD2020-06-03 10:22:32 UTC (rev 388144)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=spandsp
-pkgver=0.0.6
-pkgrel=2
-pkgdesc="A DSP library for telephony"
-arch=('x86_64')
-license=('GPL')
-url="http://www.soft-switch.org/;
-depends=('libtiff')
-source=(http://www.soft-switch.org/downloads/$pkgname/$pkgname-$pkgver.tar.gz)
-
-build() {
-  cd $pkgname-0.0.6
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-   cd $pkgname-0.0.6
-   make check
-}  
-
-package() {
-  cd $pkgname-0.0.6
-  make DESTDIR="$pkgdir" install
-}
-sha512sums=('16bb215ca89a39282e832403f69bc4c98ad3fe35ab3a6eb4731ee5029a6acd9b2df243c3701de845441cbdc16c88b3cd398ef15dc3502e45d5aeca8a161917d4')

Copied: spandsp/repos/extra-x86_64/PKGBUILD (from rev 388143, 
spandsp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-03 10:22:32 UTC (rev 388144)
@@ -0,0 +1,28 @@
+# Maintainer: Tobias Powalowski 
+
+pkgname=spandsp
+pkgver=0.0.6
+pkgrel=3
+pkgdesc="A DSP library for telephony"
+arch=('x86_64')
+license=('GPL')
+url="https://www.soft-switch.org/;
+depends=('libtiff')
+source=(https://www.soft-switch.org/downloads/$pkgname/$pkgname-$pkgver.tar.gz)
+sha512sums=('16bb215ca89a39282e832403f69bc4c98ad3fe35ab3a6eb4731ee5029a6acd9b2df243c3701de845441cbdc16c88b3cd398ef15dc3502e45d5aeca8a161917d4')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+   cd $pkgname-$pkgver
+   make check
+}  
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in spandsp/trunk (PKGBUILD)

2020-06-03 Thread Jelle van der Waa via arch-commits
Date: Wednesday, June 3, 2020 @ 10:22:21
  Author: jelle
Revision: 388143

Rebuild for reproducible builds

Modified:
  spandsp/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-03 09:34:27 UTC (rev 388142)
+++ PKGBUILD2020-06-03 10:22:21 UTC (rev 388143)
@@ -2,7 +2,7 @@
 
 pkgname=spandsp
 pkgver=0.0.6
-pkgrel=2
+pkgrel=3
 pkgdesc="A DSP library for telephony"
 arch=('x86_64')
 license=('GPL')


[arch-commits] Commit in eigen/repos/extra-any (PKGBUILD PKGBUILD eigen-c++17.patch)

2020-06-02 Thread Jelle van der Waa via arch-commits
Date: Tuesday, June 2, 2020 @ 19:41:28
  Author: jelle
Revision: 388113

archrelease: copy trunk to extra-any

Added:
  eigen/repos/extra-any/PKGBUILD
(from rev 388112, eigen/trunk/PKGBUILD)
  eigen/repos/extra-any/eigen-c++17.patch
(from rev 388112, eigen/trunk/eigen-c++17.patch)
Deleted:
  eigen/repos/extra-any/PKGBUILD

---+
 PKGBUILD  |   82 +-
 eigen-c++17.patch |   84 
 2 files changed, 125 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-02 19:41:18 UTC (rev 388112)
+++ PKGBUILD2020-06-02 19:41:28 UTC (rev 388113)
@@ -1,41 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: Chirantan Ekbote 
-# Contributor: Kringel
-
-pkgname=eigen
-pkgver=3.3.7
-pkgrel=5
-pkgdesc="Lightweight C++ template library for vector and matrix math, a.k.a. 
linear algebra."
-arch=('any')
-url='https://eigen.tuxfamily.org'
-license=('GPL3' 'LGPL2.1' 'BSD' 'custom:MPL2' 'custom:MINPACK')
-makedepends=('cmake' 'pkg-config' 'freeglut' 'gcc-fortran' 'fftw' 
'suitesparse' 'boost')
-replaces=('eigen3')
-provides=('eigen3')
-source=("${pkgname}-${pkgver}.tar.bz2::https://bitbucket.org/eigen/eigen/get/${pkgver}.tar.bz2;
- 
eigen-c++17.patch::"https://gitlab.com/libeigen/eigen/-/commit/2aa9eb3c.patch;)
-sha256sums=('9f13cf90dedbe3e52a19f43000d71fdf72e986beb9a5436dddcd61ff9d77a3ce'
-'241b9363362314f36fa6bfa7182e8d3c38fc2e92855ab1f44c352d8a7c7ad599')
-
-prepare() {
-  mkdir -p build
-
-  cd eigen-eigen-*
-  patch -p1 -i ../eigen-c++17.patch # 
https://gitlab.com/libeigen/eigen/-/issues/1676  
-}
-
-build() {
-  cd build
-  cmake ../eigen-eigen-* \
--DCMAKE_INSTALL_PREFIX=/usr
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  # install custom licenses
-  install -Dm644 ../eigen-eigen-*/COPYING.MPL2 -t 
"$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm644 ../eigen-eigen-*/COPYING.BSD -t 
"$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm644 ../eigen-eigen-*/COPYING.MINPACK -t 
"$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: eigen/repos/extra-any/PKGBUILD (from rev 388112, eigen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-02 19:41:28 UTC (rev 388113)
@@ -0,0 +1,41 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Chirantan Ekbote 
+# Contributor: Kringel
+
+pkgname=eigen
+pkgver=3.3.7
+pkgrel=6
+pkgdesc="Lightweight C++ template library for vector and matrix math, a.k.a. 
linear algebra."
+arch=('any')
+url='https://eigen.tuxfamily.org'
+license=('GPL3' 'LGPL2.1' 'BSD' 'custom:MPL2' 'custom:MINPACK')
+makedepends=('cmake' 'pkg-config' 'freeglut' 'gcc-fortran' 'fftw' 
'suitesparse' 'boost')
+replaces=('eigen3')
+provides=('eigen3')
+source=("${pkgname}-${pkgver}.tar.bz2::https://bitbucket.org/eigen/eigen/get/${pkgver}.tar.bz2;
+ eigen-c++17.patch)
+sha256sums=('9f13cf90dedbe3e52a19f43000d71fdf72e986beb9a5436dddcd61ff9d77a3ce'
+'d62ece0e05e4fc85282ff462d86b08dc85ff16e991d7ae4ddf24c3f33fbe8c49')
+
+prepare() {
+  mkdir -p build
+
+  cd eigen-eigen-*
+  patch -p1 -i ../eigen-c++17.patch # 
https://gitlab.com/libeigen/eigen/-/issues/1676  
+}
+
+build() {
+  cd build
+  cmake ../eigen-eigen-* \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  # install custom licenses
+  install -Dm644 ../eigen-eigen-*/COPYING.MPL2 -t 
"$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm644 ../eigen-eigen-*/COPYING.BSD -t 
"$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm644 ../eigen-eigen-*/COPYING.MINPACK -t 
"$pkgdir/usr/share/licenses/$pkgname"
+}

Copied: eigen/repos/extra-any/eigen-c++17.patch (from rev 388112, 
eigen/trunk/eigen-c++17.patch)
===
--- eigen-c++17.patch   (rev 0)
+++ eigen-c++17.patch   2020-06-02 19:41:28 UTC (rev 388113)
@@ -0,0 +1,84 @@
+From 2aa9eb3ce8fa6b2d61dce5be9d6d6460a28080c4 Mon Sep 17 00:00:00 2001
+From: Gael Guennebaud 
+Date: Thu, 7 Feb 2019 15:21:35 +0100
+Subject: [PATCH] bug #1676: workaround GCC's bug in c++17 mode. (grafted from
+ b3c4344a6852e55c849976dd46ec4e861399bf16 )
+
+---
+ Eigen/src/Core/DenseBase.h| 4 ++--
+ Eigen/src/Core/util/ForwardDeclarations.h | 6 +-
+ bench/bench_gemm.cpp  | 5 +++--
+ 3 files changed, 6 insertions(+), 9 deletions(-)
+
+diff --git a/Eigen/src/Core/DenseBase.h b/Eigen/src/Core/DenseBase.h
+index 90066ae73..a96aa7152 100644
+--- a/Eigen/src/Core/DenseBase.h
 b/Eigen/src/Core/DenseBase.h
+@@ -40,7 +40,7 @@ static inline void check_DenseIndex_is_signed() {
+   */
+ template class DenseBase
+ #ifndef EIGEN_PARSED_BY_DOXYGEN
+-  : public DenseCoeffsBase
++  : public DenseCoeffsBase::value>
+ 

[arch-commits] Commit in eigen/trunk (PKGBUILD eigen-c++17.patch)

2020-06-02 Thread Jelle van der Waa via arch-commits
Date: Tuesday, June 2, 2020 @ 19:41:18
  Author: jelle
Revision: 388112

Add gitlab patch, as gitlab's patches expire over time

Gitlab encodes the git version in the patch making it,.. unreproducible!

Added:
  eigen/trunk/eigen-c++17.patch
Modified:
  eigen/trunk/PKGBUILD

---+
 PKGBUILD  |6 +--
 eigen-c++17.patch |   84 
 2 files changed, 87 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-02 17:08:09 UTC (rev 388111)
+++ PKGBUILD2020-06-02 19:41:18 UTC (rev 388112)
@@ -4,7 +4,7 @@
 
 pkgname=eigen
 pkgver=3.3.7
-pkgrel=5
+pkgrel=6
 pkgdesc="Lightweight C++ template library for vector and matrix math, a.k.a. 
linear algebra."
 arch=('any')
 url='https://eigen.tuxfamily.org'
@@ -13,9 +13,9 @@
 replaces=('eigen3')
 provides=('eigen3')
 
source=("${pkgname}-${pkgver}.tar.bz2::https://bitbucket.org/eigen/eigen/get/${pkgver}.tar.bz2;
- 
eigen-c++17.patch::"https://gitlab.com/libeigen/eigen/-/commit/2aa9eb3c.patch;)
+ eigen-c++17.patch)
 sha256sums=('9f13cf90dedbe3e52a19f43000d71fdf72e986beb9a5436dddcd61ff9d77a3ce'
-'241b9363362314f36fa6bfa7182e8d3c38fc2e92855ab1f44c352d8a7c7ad599')
+'d62ece0e05e4fc85282ff462d86b08dc85ff16e991d7ae4ddf24c3f33fbe8c49')
 
 prepare() {
   mkdir -p build

Added: eigen-c++17.patch
===
--- eigen-c++17.patch   (rev 0)
+++ eigen-c++17.patch   2020-06-02 19:41:18 UTC (rev 388112)
@@ -0,0 +1,84 @@
+From 2aa9eb3ce8fa6b2d61dce5be9d6d6460a28080c4 Mon Sep 17 00:00:00 2001
+From: Gael Guennebaud 
+Date: Thu, 7 Feb 2019 15:21:35 +0100
+Subject: [PATCH] bug #1676: workaround GCC's bug in c++17 mode. (grafted from
+ b3c4344a6852e55c849976dd46ec4e861399bf16 )
+
+---
+ Eigen/src/Core/DenseBase.h| 4 ++--
+ Eigen/src/Core/util/ForwardDeclarations.h | 6 +-
+ bench/bench_gemm.cpp  | 5 +++--
+ 3 files changed, 6 insertions(+), 9 deletions(-)
+
+diff --git a/Eigen/src/Core/DenseBase.h b/Eigen/src/Core/DenseBase.h
+index 90066ae73..a96aa7152 100644
+--- a/Eigen/src/Core/DenseBase.h
 b/Eigen/src/Core/DenseBase.h
+@@ -40,7 +40,7 @@ static inline void check_DenseIndex_is_signed() {
+   */
+ template class DenseBase
+ #ifndef EIGEN_PARSED_BY_DOXYGEN
+-  : public DenseCoeffsBase
++  : public DenseCoeffsBase::value>
+ #else
+   : public DenseCoeffsBase
+ #endif // not EIGEN_PARSED_BY_DOXYGEN
+@@ -71,7 +71,7 @@ template class DenseBase
+ typedef Scalar value_type;
+ 
+ typedef typename NumTraits::Real RealScalar;
+-typedef DenseCoeffsBase Base;
++typedef DenseCoeffsBase::value> Base;
+ 
+ using Base::derived;
+ using Base::const_cast_derived;
+diff --git a/Eigen/src/Core/util/ForwardDeclarations.h 
b/Eigen/src/Core/util/ForwardDeclarations.h
+index ea107393a..134544f96 100644
+--- a/Eigen/src/Core/util/ForwardDeclarations.h
 b/Eigen/src/Core/util/ForwardDeclarations.h
+@@ -47,11 +47,7 @@ template struct NumTraits;
+ template struct EigenBase;
+ template class DenseBase;
+ template class PlainObjectBase;
+-
+-
+-template::value >
+-class DenseCoeffsBase;
++template class DenseCoeffsBase;
+ 
+ template() .lazyProduct( b.cast() );
+   if(!r.isApprox(c)) {
+-std::cout << r - c << "\n";
++std::cout << (r  - c).norm() << "\n";
+ std::cerr << "Warning, your product is crap!\n\n";
+   }
+ }
+-- 
+2.26.2
+


[arch-commits] Commit in python-prometheus_client/repos/extra-any (PKGBUILD PKGBUILD)

2020-06-01 Thread Jelle van der Waa via arch-commits
Date: Monday, June 1, 2020 @ 11:24:32
  Author: jelle
Revision: 388013

archrelease: copy trunk to extra-any

Added:
  python-prometheus_client/repos/extra-any/PKGBUILD
(from rev 388012, python-prometheus_client/trunk/PKGBUILD)
Deleted:
  python-prometheus_client/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-01 11:24:24 UTC (rev 388012)
+++ PKGBUILD2020-06-01 11:24:32 UTC (rev 388013)
@@ -1,33 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=python-prometheus_client
-pkgver=0.7.1
-pkgrel=4
-
-pkgdesc="Prometheus instrumentation library for Python applications"
-url="https://github.com/prometheus/client_python;
-arch=('any')
-license=('APACHE')
-
-depends=('python')
-makedepends=('python-setuptools')
-checkdepends=('python-twisted' 'python-pytest')
-
-source=(client_python-$pkgver.tar.gz::https://github.com/prometheus/client_python/archive/v${pkgver}.tar.gz)
-
-sha512sums=('84b145ed191c9903d390b152c72de4f2afcb4c500b8debba59ded081f00cc76109b336ed2d7783d59e9922ea2927632f7ef730f336974294b20048c51e9d58a4')
-
-build() {
-  cd client_python-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd client_python-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd client_python-$pkgver
-  python setup.py install --root="$pkgdir" --skip-build --optimize=1
-}

Copied: python-prometheus_client/repos/extra-any/PKGBUILD (from rev 388012, 
python-prometheus_client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-01 11:24:32 UTC (rev 388013)
@@ -0,0 +1,33 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=python-prometheus_client
+pkgver=0.8.0
+pkgrel=1
+
+pkgdesc="Prometheus instrumentation library for Python applications"
+url="https://github.com/prometheus/client_python;
+arch=('any')
+license=('APACHE')
+
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-twisted' 'python-pytest')
+
+source=(client_python-$pkgver.tar.gz::https://github.com/prometheus/client_python/archive/v${pkgver}.tar.gz)
+
+sha512sums=('a9d49bc4dac77168f94edf51344042bc5210b07ed01031dc50e323f86ea8292df7370956a4fbd9d9f85a0857a8ec9abaef30c0c2cd4dc5502df7264816eecc8f')
+
+build() {
+  cd client_python-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd client_python-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd client_python-$pkgver
+  python setup.py install --root="$pkgdir" --skip-build --optimize=1
+}


[arch-commits] Commit in python-prometheus_client/trunk (PKGBUILD)

2020-06-01 Thread Jelle van der Waa via arch-commits
Date: Monday, June 1, 2020 @ 11:24:24
  Author: jelle
Revision: 388012

upgpkg: python-prometheus_client 0.8.0-1

Modified:
  python-prometheus_client/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-01 11:23:34 UTC (rev 388011)
+++ PKGBUILD2020-06-01 11:24:24 UTC (rev 388012)
@@ -1,8 +1,8 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=python-prometheus_client
-pkgver=0.7.1
-pkgrel=4
+pkgver=0.8.0
+pkgrel=1
 
 pkgdesc="Prometheus instrumentation library for Python applications"
 url="https://github.com/prometheus/client_python;
@@ -15,7 +15,7 @@
 
 
source=(client_python-$pkgver.tar.gz::https://github.com/prometheus/client_python/archive/v${pkgver}.tar.gz)
 
-sha512sums=('84b145ed191c9903d390b152c72de4f2afcb4c500b8debba59ded081f00cc76109b336ed2d7783d59e9922ea2927632f7ef730f336974294b20048c51e9d58a4')
+sha512sums=('a9d49bc4dac77168f94edf51344042bc5210b07ed01031dc50e323f86ea8292df7370956a4fbd9d9f85a0857a8ec9abaef30c0c2cd4dc5502df7264816eecc8f')
 
 build() {
   cd client_python-$pkgver


[arch-commits] Commit in prometheus-node-exporter/trunk (PKGBUILD)

2020-06-01 Thread Jelle van der Waa via arch-commits
Date: Monday, June 1, 2020 @ 11:17:02
  Author: jelle
Revision: 388008

upgpkg: prometheus-node-exporter 1.0.0-1

Modified:
  prometheus-node-exporter/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-01 10:48:48 UTC (rev 388007)
+++ PKGBUILD2020-06-01 11:17:02 UTC (rev 388008)
@@ -1,8 +1,8 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=prometheus-node-exporter
-pkgver=0.18.1
-pkgrel=6
+pkgver=1.0.0
+pkgrel=1
 
 pkgdesc='Exporter for machine metrics'
 url='https://github.com/prometheus/node_exporter'
@@ -19,7 +19,7 @@
 prometheus-node-exporter.service
 prometheus-node-exporter.sysusers)
 
-sha256sums=('9ddf187c462f2681ab4516410ada0e6f0f03097db6986686795559ea71a07694'
+sha256sums=('2d82dac251e789b75879ebf1ebe94d1dc15c59ffa28ffe4e15b8d2ff63190607'
 'ce93e2b95bfc86a8a046e2f9175408e1cbffa784fd3b65dd141fde70b5bb2585'
 '457e305760323f941d20248e2ca5817ae4a8b5586f79a2331b968bf3baa66c5b'
 'c7fd0b1793dfe7a354a28e978d3c79e7195eaf43376b9eece37e996fe0772c5c')


[arch-commits] Commit in prometheus-node-exporter/repos/extra-x86_64 (8 files)

2020-06-01 Thread Jelle van der Waa via arch-commits
Date: Monday, June 1, 2020 @ 11:17:13
  Author: jelle
Revision: 388009

archrelease: copy trunk to extra-x86_64

Added:
  prometheus-node-exporter/repos/extra-x86_64/PKGBUILD
(from rev 388008, prometheus-node-exporter/trunk/PKGBUILD)
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.conf
(from rev 388008, 
prometheus-node-exporter/trunk/prometheus-node-exporter.conf)
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.service
(from rev 388008, 
prometheus-node-exporter/trunk/prometheus-node-exporter.service)
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.sysusers
(from rev 388008, 
prometheus-node-exporter/trunk/prometheus-node-exporter.sysusers)
Deleted:
  prometheus-node-exporter/repos/extra-x86_64/PKGBUILD
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.conf
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.service
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.sysusers

---+
 PKGBUILD  |  120 ++--
 prometheus-node-exporter.conf |2 
 prometheus-node-exporter.service  |   36 +-
 prometheus-node-exporter.sysusers |2 
 4 files changed, 80 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-01 11:17:02 UTC (rev 388008)
+++ PKGBUILD2020-06-01 11:17:13 UTC (rev 388009)
@@ -1,60 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=prometheus-node-exporter
-pkgver=0.18.1
-pkgrel=6
-
-pkgdesc='Exporter for machine metrics'
-url='https://github.com/prometheus/node_exporter'
-arch=('x86_64')
-license=('Apache')
-
-depends=('glibc')
-makedepends=('go' 'git')
-
-backup=('etc/conf.d/prometheus-node-exporter')
-
-source=("$pkgname-$pkgver.tar.gz::https://github.com/prometheus/node_exporter/archive/v$pkgver.tar.gz;
-prometheus-node-exporter.conf
-prometheus-node-exporter.service
-prometheus-node-exporter.sysusers)
-
-sha256sums=('9ddf187c462f2681ab4516410ada0e6f0f03097db6986686795559ea71a07694'
-'ce93e2b95bfc86a8a046e2f9175408e1cbffa784fd3b65dd141fde70b5bb2585'
-'457e305760323f941d20248e2ca5817ae4a8b5586f79a2331b968bf3baa66c5b'
-'c7fd0b1793dfe7a354a28e978d3c79e7195eaf43376b9eece37e996fe0772c5c')
-
-build() {
-  cd node_exporter-$pkgver
-
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags "-extldflags ${LDFLAGS} \
-  -X github.com/prometheus/common/version.Version=$pkgver \
-  -X github.com/prometheus/common/version.Revision=$pkgver \
-  -X github.com/prometheus/common/version.Branch=tarball \
-  -X github.com/prometheus/common/version.BuildUser=someone@builder \
-  -X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
-.
-}
-
-check() {
-  cd node_exporter-$pkgver
-
-  make collector/fixtures/sys/.unpacked
-  go test ./...
-  ./end-to-end-test.sh
-}
-
-package () {
-  install -Dm644 prometheus-node-exporter.conf 
"$pkgdir"/etc/conf.d/prometheus-node-exporter
-  install -Dm644 prometheus-node-exporter.service 
"$pkgdir"/usr/lib/systemd/system/prometheus-node-exporter.service
-  install -Dm644 prometheus-node-exporter.sysusers 
"$pkgdir"/usr/lib/sysusers.d/prometheus-node-exporter.conf
-
-  cd node_exporter-$pkgver
-
-  install -Dm755 node_exporter "$pkgdir"/usr/bin/prometheus-node-exporter
-}

Copied: prometheus-node-exporter/repos/extra-x86_64/PKGBUILD (from rev 388008, 
prometheus-node-exporter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-01 11:17:13 UTC (rev 388009)
@@ -0,0 +1,60 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=prometheus-node-exporter
+pkgver=1.0.0
+pkgrel=1
+
+pkgdesc='Exporter for machine metrics'
+url='https://github.com/prometheus/node_exporter'
+arch=('x86_64')
+license=('Apache')
+
+depends=('glibc')
+makedepends=('go' 'git')
+
+backup=('etc/conf.d/prometheus-node-exporter')
+
+source=("$pkgname-$pkgver.tar.gz::https://github.com/prometheus/node_exporter/archive/v$pkgver.tar.gz;
+prometheus-node-exporter.conf
+prometheus-node-exporter.service
+prometheus-node-exporter.sysusers)
+
+sha256sums=('2d82dac251e789b75879ebf1ebe94d1dc15c59ffa28ffe4e15b8d2ff63190607'
+'ce93e2b95bfc86a8a046e2f9175408e1cbffa784fd3b65dd141fde70b5bb2585'
+'457e305760323f941d20248e2ca5817ae4a8b5586f79a2331b968bf3baa66c5b'
+'c7fd0b1793dfe7a354a28e978d3c79e7195eaf43376b9eece37e996fe0772c5c')
+
+build() {
+  cd node_exporter-$pkgver
+
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-extldflags ${LDFLAGS} \
+  -X github.com/prometheus/common/version.Version=$pkgver 

[arch-commits] Commit in python-meilisearch/repos (2 files)

2020-05-31 Thread Jelle van der Waa via arch-commits
Date: Sunday, May 31, 2020 @ 18:40:25
  Author: jelle
Revision: 637711

archrelease: copy trunk to community-any

Added:
  python-meilisearch/repos/community-any/
  python-meilisearch/repos/community-any/PKGBUILD
(from rev 637709, python-meilisearch/trunk/PKGBUILD)

--+
 PKGBUILD |   32 
 1 file changed, 32 insertions(+)

Copied: python-meilisearch/repos/community-any/PKGBUILD (from rev 637709, 
python-meilisearch/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-05-31 18:40:25 UTC (rev 637711)
@@ -0,0 +1,32 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=python-meilisearch
+pkgver=0.10.1
+pkgrel=1
+pkgdesc='Python client for MeiliSearch API'
+arch=(any)
+license=('MIT')
+url='https://pypi.org/project/meilisearch/'
+depends=(python)
+makedepends=(python-requests)
+checkdepends=('python-pytest' 'python-pytest-ordering')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/meilisearch/meilisearch-python/archive/v${pkgver}.tar.gz)
+sha512sums=('46c7f2ae4d72fd84c8c2d1c6d994c8762e9829d8c149b78198b5bda99ce4928e61e17762ffd0fdb23b48dd695adc4c97669e2c1b10525886c09e3f3684fe2e03')
+
+build() {
+  cd "meilisearch-python-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  # requires running meilisearch 
https://github.com/meilisearch/meilisearch-python/blob/master/.github/workflows/test.yml#L20
+  cd "meilisearch-python-${pkgver}"
+  #pytest .
+}
+
+package() {
+  cd "meilisearch-python-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}"
+
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (4 files)

2020-05-31 Thread Jelle van der Waa via arch-commits
Date: Sunday, May 31, 2020 @ 18:38:37
  Author: jelle
Revision: 637709

Initial commit

Added:
  python-meilisearch/
  python-meilisearch/repos/
  python-meilisearch/trunk/
  python-meilisearch/trunk/PKGBUILD

--+
 PKGBUILD |   32 
 1 file changed, 32 insertions(+)

Added: python-meilisearch/trunk/PKGBUILD
===
--- python-meilisearch/trunk/PKGBUILD   (rev 0)
+++ python-meilisearch/trunk/PKGBUILD   2020-05-31 18:38:37 UTC (rev 637709)
@@ -0,0 +1,32 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=python-meilisearch
+pkgver=0.10.1
+pkgrel=1
+pkgdesc='Python client for MeiliSearch API'
+arch=(any)
+license=('MIT')
+url='https://pypi.org/project/meilisearch/'
+depends=(python)
+makedepends=(python-requests)
+checkdepends=('python-pytest' 'python-pytest-ordering')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/meilisearch/meilisearch-python/archive/v${pkgver}.tar.gz)
+sha512sums=('46c7f2ae4d72fd84c8c2d1c6d994c8762e9829d8c149b78198b5bda99ce4928e61e17762ffd0fdb23b48dd695adc4c97669e2c1b10525886c09e3f3684fe2e03')
+
+build() {
+  cd "meilisearch-python-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  # requires running meilisearch 
https://github.com/meilisearch/meilisearch-python/blob/master/.github/workflows/test.yml#L20
+  cd "meilisearch-python-${pkgver}"
+  #pytest .
+}
+
+package() {
+  cd "meilisearch-python-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}"
+
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
+}


[arch-commits] Commit in cmark/repos/extra-x86_64 (3 files)

2020-05-31 Thread Jelle van der Waa via arch-commits
Date: Sunday, May 31, 2020 @ 15:59:10
  Author: jelle
Revision: 387970

archrelease: copy trunk to extra-x86_64

Added:
  cmark/repos/extra-x86_64/PKGBUILD
(from rev 387969, cmark/trunk/PKGBUILD)
  cmark/repos/extra-x86_64/python3.8-normalize-test.patch
(from rev 387969, cmark/trunk/python3.8-normalize-test.patch)
Deleted:
  cmark/repos/extra-x86_64/PKGBUILD

+
 PKGBUILD   |   76 ---
 python3.8-normalize-test.patch |   32 
 2 files changed, 72 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-31 15:58:59 UTC (rev 387969)
+++ PKGBUILD2020-05-31 15:59:10 UTC (rev 387970)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Veeti Paananen 
-
-pkgname=cmark
-pkgver=0.29.0
-pkgrel=1
-pkgdesc="CommonMark parsing and rendering library and program in C"
-arch=('x86_64')
-url="https://github.com/jgm/cmark;
-license=('custom:BSD2')
-depends=('glibc')
-makedepends=('cmake' 'python')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/jgm/cmark/archive/$pkgver.tar.gz;)
-sha512sums=('06eb110cfd90c9e980c022b7588e28864d15a4da5d07d61ad4b27c6de47367492b9e58e9434e62b07517aa6dc484f17af13916808be3188f38c37d20cbf33112')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib 
../cmark-$pkgver
-  make
-}
-
-check() {
-  cd build
-  make test
-}
-
-package() {
-  cd build
-  make install DESTDIR="$pkgdir"
-
-  install -D -m 644 "$srcdir"/cmark-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}

Copied: cmark/repos/extra-x86_64/PKGBUILD (from rev 387969, 
cmark/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-31 15:59:10 UTC (rev 387970)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Veeti Paananen 
+
+pkgname=cmark
+pkgver=0.29.0
+pkgrel=2
+pkgdesc="CommonMark parsing and rendering library and program in C"
+arch=('x86_64')
+url="https://github.com/jgm/cmark;
+license=('custom:BSD2')
+depends=('glibc')
+makedepends=('cmake' 'python')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/jgm/cmark/archive/$pkgver.tar.gz;
 python3.8-normalize-test.patch)
+sha512sums=('06eb110cfd90c9e980c022b7588e28864d15a4da5d07d61ad4b27c6de47367492b9e58e9434e62b07517aa6dc484f17af13916808be3188f38c37d20cbf33112'
+
'74f2566b06fc9ea856d1ef784a1e72bd88eddcc2429d1009f43f6c1467eb6f0a4267c41fe93a585087b95032f72849209a0be9d97298b4a8129bb6329113b087')
+
+prepare() {
+  mkdir -p build
+
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/python3.8-normalize-test.patch
+}
+
+build() {
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib 
../cmark-$pkgver
+  make
+}
+
+check() {
+  cd build
+  make test
+}
+
+package() {
+  cd build
+  make install DESTDIR="$pkgdir"
+
+  install -D -m 644 "$srcdir"/cmark-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}

Copied: cmark/repos/extra-x86_64/python3.8-normalize-test.patch (from rev 
387969, cmark/trunk/python3.8-normalize-test.patch)
===
--- python3.8-normalize-test.patch  (rev 0)
+++ python3.8-normalize-test.patch  2020-05-31 15:59:10 UTC (rev 387970)
@@ -0,0 +1,32 @@
+From 68c3a91166347a32a57fb81223750a63cfd92105 Mon Sep 17 00:00:00 2001
+From: John MacFarlane 
+Date: Wed, 27 Nov 2019 22:04:16 -0800
+Subject: [PATCH] normalize.py: use html.escape instead of cgi.escape.
+
+Closes #313.
+---
+ test/normalize.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/test/normalize.py b/test/normalize.py
+index 6073bf01..f8ece18d 100644
+--- a/test/normalize.py
 b/test/normalize.py
+@@ -13,7 +13,7 @@ class HTMLParseError(Exception):
+ from html.entities import name2codepoint
+ import sys
+ import re
+-import cgi
++import html
+ 
+ # Normalization code, adapted from
+ # https://github.com/karlcow/markdown-testsuite/
+@@ -66,7 +66,7 @@ def handle_starttag(self, tag, attrs):
+ self.output += ("=" + '"' +
+ urllib.quote(urllib.unquote(v), safe='/') + '"')
+ elif v != None:
+-self.output += ("=" + '"' + cgi.escape(v,quote=True) + 
'"')
++self.output += ("=" + '"' + html.escape(v,quote=True) + 
'"')
+ self.output += ">"
+ self.last_tag = tag
+ self.last = "starttag"


[arch-commits] Commit in cmark/trunk (PKGBUILD python3.8-normalize-test.patch)

2020-05-31 Thread Jelle van der Waa via arch-commits
Date: Sunday, May 31, 2020 @ 15:58:59
  Author: jelle
Revision: 387969

Rebuild for reproducible builds

Add a patch for python 3.8 compatibility for tests.

Added:
  cmark/trunk/python3.8-normalize-test.patch
Modified:
  cmark/trunk/PKGBUILD

+
 PKGBUILD   |   10 +++---
 python3.8-normalize-test.patch |   32 
 2 files changed, 39 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-31 15:36:08 UTC (rev 387968)
+++ PKGBUILD2020-05-31 15:58:59 UTC (rev 387969)
@@ -3,7 +3,7 @@
 
 pkgname=cmark
 pkgver=0.29.0
-pkgrel=1
+pkgrel=2
 pkgdesc="CommonMark parsing and rendering library and program in C"
 arch=('x86_64')
 url="https://github.com/jgm/cmark;
@@ -10,11 +10,15 @@
 license=('custom:BSD2')
 depends=('glibc')
 makedepends=('cmake' 'python')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/jgm/cmark/archive/$pkgver.tar.gz;)
-sha512sums=('06eb110cfd90c9e980c022b7588e28864d15a4da5d07d61ad4b27c6de47367492b9e58e9434e62b07517aa6dc484f17af13916808be3188f38c37d20cbf33112')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/jgm/cmark/archive/$pkgver.tar.gz;
 python3.8-normalize-test.patch)
+sha512sums=('06eb110cfd90c9e980c022b7588e28864d15a4da5d07d61ad4b27c6de47367492b9e58e9434e62b07517aa6dc484f17af13916808be3188f38c37d20cbf33112'
+
'74f2566b06fc9ea856d1ef784a1e72bd88eddcc2429d1009f43f6c1467eb6f0a4267c41fe93a585087b95032f72849209a0be9d97298b4a8129bb6329113b087')
 
 prepare() {
   mkdir -p build
+
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/python3.8-normalize-test.patch
 }
 
 build() {

Added: python3.8-normalize-test.patch
===
--- python3.8-normalize-test.patch  (rev 0)
+++ python3.8-normalize-test.patch  2020-05-31 15:58:59 UTC (rev 387969)
@@ -0,0 +1,32 @@
+From 68c3a91166347a32a57fb81223750a63cfd92105 Mon Sep 17 00:00:00 2001
+From: John MacFarlane 
+Date: Wed, 27 Nov 2019 22:04:16 -0800
+Subject: [PATCH] normalize.py: use html.escape instead of cgi.escape.
+
+Closes #313.
+---
+ test/normalize.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/test/normalize.py b/test/normalize.py
+index 6073bf01..f8ece18d 100644
+--- a/test/normalize.py
 b/test/normalize.py
+@@ -13,7 +13,7 @@ class HTMLParseError(Exception):
+ from html.entities import name2codepoint
+ import sys
+ import re
+-import cgi
++import html
+ 
+ # Normalization code, adapted from
+ # https://github.com/karlcow/markdown-testsuite/
+@@ -66,7 +66,7 @@ def handle_starttag(self, tag, attrs):
+ self.output += ("=" + '"' +
+ urllib.quote(urllib.unquote(v), safe='/') + '"')
+ elif v != None:
+-self.output += ("=" + '"' + cgi.escape(v,quote=True) + 
'"')
++self.output += ("=" + '"' + html.escape(v,quote=True) + 
'"')
+ self.output += ">"
+ self.last_tag = tag
+ self.last = "starttag"


[arch-commits] Commit in npapi-sdk/repos/extra-any (PKGBUILD PKGBUILD)

2020-05-31 Thread Jelle van der Waa via arch-commits
Date: Sunday, May 31, 2020 @ 15:36:08
  Author: jelle
Revision: 387968

archrelease: copy trunk to extra-any

Added:
  npapi-sdk/repos/extra-any/PKGBUILD
(from rev 387967, npapi-sdk/trunk/PKGBUILD)
Deleted:
  npapi-sdk/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   48 
 1 file changed, 24 insertions(+), 24 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-31 15:35:55 UTC (rev 387967)
+++ PKGBUILD2020-05-31 15:36:08 UTC (rev 387968)
@@ -1,24 +0,0 @@
-# Maintainer: Ionut Biru 
-
-pkgname=npapi-sdk
-pkgver=0.27.2
-pkgrel=2
-pkgdesc="Netscape Plugin API (NPAPI)"
-arch=(any)
-url="https://bitbucket.org/mgorny/npapi-sdk;
-license=('MPL')
-source=(https://bitbucket.org/mgorny/$pkgname/downloads/$pkgname-$pkgver.tar.bz2)
-md5sums=('e81db61e206cd615cf56c4a9f301e636')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: npapi-sdk/repos/extra-any/PKGBUILD (from rev 387967, 
npapi-sdk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-31 15:36:08 UTC (rev 387968)
@@ -0,0 +1,24 @@
+# Maintainer:
+
+pkgname=npapi-sdk
+pkgver=0.27.2
+pkgrel=3
+pkgdesc="Netscape Plugin API (NPAPI)"
+arch=(any)
+url="https://bitbucket.org/mgorny/npapi-sdk;
+license=('MPL')
+source=(https://github.com/mgorny/${pkgname}/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('e81db61e206cd615cf56c4a9f301e636')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in npapi-sdk/trunk (PKGBUILD)

2020-05-31 Thread Jelle van der Waa via arch-commits
Date: Sunday, May 31, 2020 @ 15:35:55
  Author: jelle
Revision: 387967

Update source to a downloadable location

Modified:
  npapi-sdk/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-31 15:22:21 UTC (rev 387966)
+++ PKGBUILD2020-05-31 15:35:55 UTC (rev 387967)
@@ -1,13 +1,13 @@
-# Maintainer: Ionut Biru 
+# Maintainer:
 
 pkgname=npapi-sdk
 pkgver=0.27.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Netscape Plugin API (NPAPI)"
 arch=(any)
 url="https://bitbucket.org/mgorny/npapi-sdk;
 license=('MPL')
-source=(https://bitbucket.org/mgorny/$pkgname/downloads/$pkgname-$pkgver.tar.bz2)
+source=(https://github.com/mgorny/${pkgname}/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2)
 md5sums=('e81db61e206cd615cf56c4a9f301e636')
 
 build() {


[arch-commits] Commit in farstream/repos/extra-x86_64 (3 files)

2020-05-30 Thread Jelle van der Waa via arch-commits
Date: Saturday, May 30, 2020 @ 19:08:49
  Author: jelle
Revision: 387926

archrelease: copy trunk to extra-x86_64

Added:
  farstream/repos/extra-x86_64/PKGBUILD
(from rev 387925, farstream/trunk/PKGBUILD)
  farstream/repos/extra-x86_64/farstream-make-4.3.patch
(from rev 387925, farstream/trunk/farstream-make-4.3.patch)
Deleted:
  farstream/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   84 ++---
 farstream-make-4.3.patch |   38 
 2 files changed, 80 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-30 19:08:40 UTC (rev 387925)
+++ PKGBUILD2020-05-30 19:08:49 UTC (rev 387926)
@@ -1,42 +0,0 @@
-# Maintainer: Ionut Biru 
-
-pkgname=farstream
-pkgver=0.2.9
-pkgrel=1
-pkgdesc="Farstream (formerly Farsight) - Audio/Video Communications Framework"
-arch=('x86_64')
-url="https://www.freedesktop.org/wiki/Software/Farstream;
-license=('LGPL')
-depends=('gst-plugins-base-libs' 'libnice')
-makedepends=('gobject-introspection' 'python' 'gtk-doc')
-optdepends=('gst-plugins-good' 'gst-plugins-bad')
-conflicts=('farsight2')
-replaces=('farsight2')
-source=(https://freedesktop.org/software/$pkgname/releases/$pkgname/$pkgname-$pkgver.tar.gz{,.asc}
-
farstream-make-4.3.patch::"https://gitlab.freedesktop.org/farstream/farstream/-/commit/54987d44.patch;)
-sha256sums=('cb7d112433cf7c2e37a8ec918fb24f0ea5cb293cfa1002488e431de26482f47b'
-'SKIP'
-'39485c842498c57a0b88ced4897e4ac216426cdd8a8416231513af1513208f5c')
-validpgpkeys=('DB30B086FAF86CE7296FADC51D388E5A4ED9A2BB')  # Olivier Crête
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i ../farstream-make-4.3.patch # Fix build with make 4.3
-  ./autogen.sh
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---enable-gtk-doc \
---with-package-name='Arch Linux farstream package' \
---with-package-origin='http://archlinux.org'
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: farstream/repos/extra-x86_64/PKGBUILD (from rev 387925, 
farstream/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-30 19:08:49 UTC (rev 387926)
@@ -0,0 +1,42 @@
+# Maintainer:
+
+pkgname=farstream
+pkgver=0.2.9
+pkgrel=2
+pkgdesc="Farstream (formerly Farsight) - Audio/Video Communications Framework"
+arch=('x86_64')
+url="https://www.freedesktop.org/wiki/Software/Farstream;
+license=('LGPL')
+depends=('gst-plugins-base-libs' 'libnice')
+makedepends=('gobject-introspection' 'python' 'gtk-doc')
+optdepends=('gst-plugins-good' 'gst-plugins-bad')
+conflicts=('farsight2')
+replaces=('farsight2')
+source=(https://freedesktop.org/software/$pkgname/releases/$pkgname/$pkgname-$pkgver.tar.gz{,.asc}
+farstream-make-4.3.patch)
+sha256sums=('cb7d112433cf7c2e37a8ec918fb24f0ea5cb293cfa1002488e431de26482f47b'
+'SKIP'
+'2e7fe73d43c4b1baa5ba0f191aa54c1abb5f72a2bb801d149e7094f4c2c8d0c2')
+validpgpkeys=('DB30B086FAF86CE7296FADC51D388E5A4ED9A2BB')  # Olivier Crête
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../farstream-make-4.3.patch # Fix build with make 4.3
+  ./autogen.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--enable-gtk-doc \
+--with-package-name='Arch Linux farstream package' \
+--with-package-origin='http://archlinux.org'
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: farstream/repos/extra-x86_64/farstream-make-4.3.patch (from rev 387925, 
farstream/trunk/farstream-make-4.3.patch)
===
--- farstream-make-4.3.patch(rev 0)
+++ farstream-make-4.3.patch2020-05-30 19:08:49 UTC (rev 387926)
@@ -0,0 +1,38 @@
+From 54987d445ea714b467d901b7daf8c09ed0644189 Mon Sep 17 00:00:00 2001
+From: Debarshi Ray 
+Date: Thu, 12 Mar 2020 14:07:23 +0100
+Subject: [PATCH] build: Adapt to backwards incompatible change in GNU Make 4.3
+
+GNU Make 4.3 has a backwards incompatible change affecting the use of
+number signs or hashes (ie., #) inside function invocations. See:
+https://lists.gnu.org/archive/html/info-gnu/2020-01/msg4.html
+
+In this case, it would expand the '\#' in the '\n\#include \"$(h)\"'
+argument to the foreach call to '\#', not '#'. This would lead to
+spurious backslashes in front of the '#include' directives in the
+generated fs-enumtypes.c file.
+
+Spotted by Ernestas Kulik.
+
+https://gitlab.freedesktop.org/farstream/farstream/-/merge_requests/4
+---
+ common-modified/gst-glib-gen.mak | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/common-modified/gst-glib-gen.mak 
b/common-modified/gst-glib-gen.mak

[arch-commits] Commit in farstream/trunk (PKGBUILD farstream-make-4.3.patch)

2020-05-30 Thread Jelle van der Waa via arch-commits
Date: Saturday, May 30, 2020 @ 19:08:40
  Author: jelle
Revision: 387925

Add gitlab patch as it changes over time.

Added:
  farstream/trunk/farstream-make-4.3.patch
Modified:
  farstream/trunk/PKGBUILD

--+
 PKGBUILD |8 
 farstream-make-4.3.patch |   38 ++
 2 files changed, 42 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-30 18:54:19 UTC (rev 387924)
+++ PKGBUILD2020-05-30 19:08:40 UTC (rev 387925)
@@ -1,8 +1,8 @@
-# Maintainer: Ionut Biru 
+# Maintainer:
 
 pkgname=farstream
 pkgver=0.2.9
-pkgrel=1
+pkgrel=2
 pkgdesc="Farstream (formerly Farsight) - Audio/Video Communications Framework"
 arch=('x86_64')
 url="https://www.freedesktop.org/wiki/Software/Farstream;
@@ -13,10 +13,10 @@
 conflicts=('farsight2')
 replaces=('farsight2')
 
source=(https://freedesktop.org/software/$pkgname/releases/$pkgname/$pkgname-$pkgver.tar.gz{,.asc}
-
farstream-make-4.3.patch::"https://gitlab.freedesktop.org/farstream/farstream/-/commit/54987d44.patch;)
+farstream-make-4.3.patch)
 sha256sums=('cb7d112433cf7c2e37a8ec918fb24f0ea5cb293cfa1002488e431de26482f47b'
 'SKIP'
-'39485c842498c57a0b88ced4897e4ac216426cdd8a8416231513af1513208f5c')
+'2e7fe73d43c4b1baa5ba0f191aa54c1abb5f72a2bb801d149e7094f4c2c8d0c2')
 validpgpkeys=('DB30B086FAF86CE7296FADC51D388E5A4ED9A2BB')  # Olivier Crête
 
 prepare() {

Added: farstream-make-4.3.patch
===
--- farstream-make-4.3.patch(rev 0)
+++ farstream-make-4.3.patch2020-05-30 19:08:40 UTC (rev 387925)
@@ -0,0 +1,38 @@
+From 54987d445ea714b467d901b7daf8c09ed0644189 Mon Sep 17 00:00:00 2001
+From: Debarshi Ray 
+Date: Thu, 12 Mar 2020 14:07:23 +0100
+Subject: [PATCH] build: Adapt to backwards incompatible change in GNU Make 4.3
+
+GNU Make 4.3 has a backwards incompatible change affecting the use of
+number signs or hashes (ie., #) inside function invocations. See:
+https://lists.gnu.org/archive/html/info-gnu/2020-01/msg4.html
+
+In this case, it would expand the '\#' in the '\n\#include \"$(h)\"'
+argument to the foreach call to '\#', not '#'. This would lead to
+spurious backslashes in front of the '#include' directives in the
+generated fs-enumtypes.c file.
+
+Spotted by Ernestas Kulik.
+
+https://gitlab.freedesktop.org/farstream/farstream/-/merge_requests/4
+---
+ common-modified/gst-glib-gen.mak | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/common-modified/gst-glib-gen.mak 
b/common-modified/gst-glib-gen.mak
+index 14f1ba37..2247a41c 100644
+--- a/common-modified/gst-glib-gen.mak
 b/common-modified/gst-glib-gen.mak
+@@ -6,7 +6,8 @@
+ #glib_gen_prefix=gst_color_balance
+ #glib_gen_basename=colorbalance
+ 
+-enum_headers=$(foreach h,$(glib_enum_headers),\n\#include \"$(h)\")
++hash:=\#
++enum_headers=$(foreach h,$(glib_enum_headers),\n$(hash)include \"$(h)\")
+ 
+ # these are all the rules generating the relevant files
+ $(glib_gen_basename)-enumtypes.h: $(glib_enum_headers)
+-- 
+2.26.2
+


[arch-commits] Commit in fmt/repos/extra-x86_64 (3 files)

2020-05-30 Thread Jelle van der Waa via arch-commits
Date: Saturday, May 30, 2020 @ 18:39:41
  Author: jelle
Revision: 387922

archrelease: copy trunk to extra-x86_64

Added:
  fmt/repos/extra-x86_64/PKGBUILD
(from rev 387921, fmt/trunk/PKGBUILD)
  fmt/repos/extra-x86_64/dont-install-doctrees.patch
(from rev 387921, fmt/trunk/dont-install-doctrees.patch)
Deleted:
  fmt/repos/extra-x86_64/PKGBUILD

-+
 PKGBUILD|  119 ++
 dont-install-doctrees.patch |   24 
 2 files changed, 87 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-30 18:39:31 UTC (rev 387921)
+++ PKGBUILD2020-05-30 18:39:41 UTC (rev 387922)
@@ -1,56 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Mihai Bişog 
-
-pkgname=fmt
-pkgver=6.2.1
-pkgrel=2
-pkgdesc='Open-source formatting library for C++'
-arch=(x86_64)
-url=https://fmt.dev
-license=(BSD)
-depends=(gcc-libs)
-makedepends=(
-  cmake
-  doxygen
-  git
-  ninja
-  npm
-  python-pip
-  python-virtualenv
-)
-provides=(libfmt.so)
-source=(git+https://github.com/fmtlib/fmt.git#tag=19bd751020a1f3c3363b2eb67a039852f139a8d3)
-sha256sums=(SKIP)
-
-pkgver() {
-  cd fmt
-
-  git describe --tags
-}
-
-prepare() {
-  npm install less less-plugin-clean-css
-  sed "s/'lessc',/'npx', 'lessc',/" -i fmt/doc/build.py
-}
-
-build() {
-  cmake -S fmt -B build \
--G Ninja \
--DCMAKE_BUILD_TYPE=None \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DBUILD_SHARED_LIBS=1
-  cmake --build build
-  cmake --build build --target doc
-}
-
-check() {
-  cmake --build build --target test
-}
-
-package() {
-  DESTDIR="${pkgdir}" cmake --build build --target install
-  install -Dm 644 fmt/LICENSE.rst -t "${pkgdir}"/usr/share/licenses/fmt
-}
-
-# vim: ts=2 sw=2 et:

Copied: fmt/repos/extra-x86_64/PKGBUILD (from rev 387921, fmt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-30 18:39:41 UTC (rev 387922)
@@ -0,0 +1,63 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Mihai Bişog 
+
+pkgname=fmt
+pkgver=6.2.1
+pkgrel=3
+pkgdesc='Open-source formatting library for C++'
+arch=(x86_64)
+url=https://fmt.dev
+license=(BSD)
+depends=(gcc-libs)
+makedepends=(
+  cmake
+  doxygen
+  git
+  ninja
+  npm
+  python-pip
+  python-virtualenv
+)
+provides=(libfmt.so)
+source=(git+https://github.com/fmtlib/fmt.git#tag=19bd751020a1f3c3363b2eb67a039852f139a8d3
+dont-install-doctrees.patch) # 
https://github.com/fmtlib/fmt/commit/8f2b5fe74d34ba8bb20a362a4daa6cc5a99a2010
+
+
+pkgver() {
+  cd fmt
+
+  git describe --tags
+}
+
+prepare() {
+  npm install less less-plugin-clean-css
+  sed "s/'lessc',/'npx', 'lessc',/" -i fmt/doc/build.py
+
+  # Don't install sphinx cache doctrees directory
+  cd fmt
+  patch -Np1 -i ${srcdir}/dont-install-doctrees.patch
+}
+
+build() {
+  cmake -S fmt -B build \
+-G Ninja \
+-DCMAKE_BUILD_TYPE=None \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DBUILD_SHARED_LIBS=1
+  cmake --build build
+  cmake --build build --target doc
+}
+
+check() {
+  cmake --build build --target test
+}
+
+package() {
+  DESTDIR="${pkgdir}" cmake --build build --target install
+  install -Dm 644 fmt/LICENSE.rst -t "${pkgdir}"/usr/share/licenses/fmt
+}
+
+# vim: ts=2 sw=2 et:
+md5sums=('SKIP'
+ 'f29b10877482313f98456cc2674c0c37')

Copied: fmt/repos/extra-x86_64/dont-install-doctrees.patch (from rev 387921, 
fmt/trunk/dont-install-doctrees.patch)
===
--- dont-install-doctrees.patch (rev 0)
+++ dont-install-doctrees.patch 2020-05-30 18:39:41 UTC (rev 387922)
@@ -0,0 +1,24 @@
+From 8f2b5fe74d34ba8bb20a362a4daa6cc5a99a2010 Mon Sep 17 00:00:00 2001
+From: Jelle van der Waa 
+Date: Fri, 29 May 2020 23:19:16 +0200
+Subject: [PATCH] Don't install sphinx cache files
+
+When building documentation sphinx creates cached files in the .doctrees
+directory and aren't required for viewing documentation only for
+building. As added benefit this makes fmt reprodcubile as the cached
+files are different when the build environment is varied.
+---
+ doc/CMakeLists.txt | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
+index f3dae606e..108aa71e8 100644
+--- a/doc/CMakeLists.txt
 b/doc/CMakeLists.txt
+@@ -9,4 +9,5 @@ add_custom_target(doc
+   SOURCES api.rst syntax.rst usage.rst build.py conf.py 
_templates/layout.html)
+ 
+ install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html/
+-DESTINATION share/doc/fmt OPTIONAL)
++DESTINATION share/doc/fmt OPTIONAL
++PATTERN ".doctrees" EXCLUDE)


[arch-commits] Commit in fmt/trunk (PKGBUILD dont-install-doctrees.patch)

2020-05-30 Thread Jelle van der Waa via arch-commits
Date: Saturday, May 30, 2020 @ 18:39:31
  Author: jelle
Revision: 387921

Make fmt reproducible by not installing sphinx cached files

Added:
  fmt/trunk/dont-install-doctrees.patch
Modified:
  fmt/trunk/PKGBUILD

-+
 PKGBUILD|   13 ++---
 dont-install-doctrees.patch |   24 
 2 files changed, 34 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-30 18:33:52 UTC (rev 387920)
+++ PKGBUILD2020-05-30 18:39:31 UTC (rev 387921)
@@ -3,7 +3,7 @@
 
 pkgname=fmt
 pkgver=6.2.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Open-source formatting library for C++'
 arch=(x86_64)
 url=https://fmt.dev
@@ -19,9 +19,10 @@
   python-virtualenv
 )
 provides=(libfmt.so)
-source=(git+https://github.com/fmtlib/fmt.git#tag=19bd751020a1f3c3363b2eb67a039852f139a8d3)
-sha256sums=(SKIP)
+source=(git+https://github.com/fmtlib/fmt.git#tag=19bd751020a1f3c3363b2eb67a039852f139a8d3
+dont-install-doctrees.patch) # 
https://github.com/fmtlib/fmt/commit/8f2b5fe74d34ba8bb20a362a4daa6cc5a99a2010
 
+
 pkgver() {
   cd fmt
 
@@ -31,6 +32,10 @@
 prepare() {
   npm install less less-plugin-clean-css
   sed "s/'lessc',/'npx', 'lessc',/" -i fmt/doc/build.py
+
+  # Don't install sphinx cache doctrees directory
+  cd fmt
+  patch -Np1 -i ${srcdir}/dont-install-doctrees.patch
 }
 
 build() {
@@ -54,3 +59,5 @@
 }
 
 # vim: ts=2 sw=2 et:
+md5sums=('SKIP'
+ 'f29b10877482313f98456cc2674c0c37')

Added: dont-install-doctrees.patch
===
--- dont-install-doctrees.patch (rev 0)
+++ dont-install-doctrees.patch 2020-05-30 18:39:31 UTC (rev 387921)
@@ -0,0 +1,24 @@
+From 8f2b5fe74d34ba8bb20a362a4daa6cc5a99a2010 Mon Sep 17 00:00:00 2001
+From: Jelle van der Waa 
+Date: Fri, 29 May 2020 23:19:16 +0200
+Subject: [PATCH] Don't install sphinx cache files
+
+When building documentation sphinx creates cached files in the .doctrees
+directory and aren't required for viewing documentation only for
+building. As added benefit this makes fmt reprodcubile as the cached
+files are different when the build environment is varied.
+---
+ doc/CMakeLists.txt | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
+index f3dae606e..108aa71e8 100644
+--- a/doc/CMakeLists.txt
 b/doc/CMakeLists.txt
+@@ -9,4 +9,5 @@ add_custom_target(doc
+   SOURCES api.rst syntax.rst usage.rst build.py conf.py 
_templates/layout.html)
+ 
+ install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html/
+-DESTINATION share/doc/fmt OPTIONAL)
++DESTINATION share/doc/fmt OPTIONAL
++PATTERN ".doctrees" EXCLUDE)


[arch-commits] Commit in netpbm/trunk (PKGBUILD use-source-date-epoch.patch)

2020-05-30 Thread Jelle van der Waa via arch-commits
Date: Saturday, May 30, 2020 @ 16:11:30
  Author: jelle
Revision: 387916

Make netpbm really reproducible by fixing timestamps

Added:
  netpbm/trunk/use-source-date-epoch.patch
Modified:
  netpbm/trunk/PKGBUILD

-+
 PKGBUILD|8 +---
 use-source-date-epoch.patch |   13 +
 2 files changed, 18 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-30 15:06:22 UTC (rev 387915)
+++ PKGBUILD2020-05-30 16:11:30 UTC (rev 387916)
@@ -2,7 +2,7 @@
 
 pkgname=netpbm
 pkgver=10.73.31
-pkgrel=2
+pkgrel=3
 pkgdesc="A toolkit for manipulation of graphic images"
 arch=('x86_64')
 license=('custom' 'BSD' 'GPL' 'LGPL')
@@ -14,7 +14,7 @@
 
source=(https://downloads.sourceforge.net/project/netpbm/super_stable/$pkgver/netpbm-$pkgver.tgz
 
https://sources.archlinux.org/other/packages/netpbm/netpbm-doc-31Jan2014.tar.xz{,.sig}
 netpbm-CAN-2005-2471.patch netpbm-security-code.patch 
netpbm-security-scripts.patch
-reproducible-man-gzip.patch)
+reproducible-man-gzip.patch use-source-date-epoch.patch)
 sha256sums=('584c95f1ccdcd66d5ca68d7d5501728ae1184cba324d713f6b2a3ca86424243b'
 '74bcf840ee643c6917330c382484010cb99c004a3fcf05391bebcac63815acb3'
 'SKIP'
@@ -21,7 +21,8 @@
 '991aba7897e0710687369b4e2edfba1397ecd77d62578eac496afbc47b5ca970'
 'd39951cf96db6b3f430edef6fddcab5ef082db49968f09eb1c3e891205bcdb5f'
 '2c397588d9cba2c40dee55c07713d5e77e0e04245db939fdc1962d7de4cf4a33'
-'8e3efdb4fcbfdc8e9a5c8e9663c7d6b9ecef3a2379ce38d2acc5669c339f6814')
+'8e3efdb4fcbfdc8e9a5c8e9663c7d6b9ecef3a2379ce38d2acc5669c339f6814'
+'68055341833f482c6910a56c2fdfe046978a1a92fd8442a2a9209c82ce3e4d13')
 validpgpkeys=('5357F3B111688D88C1D88119FCF2CB179205AC90')
 
 prepare() {
@@ -31,6 +32,7 @@
   patch -p1 < ../netpbm-security-code.patch
   patch -p1 < ../netpbm-security-scripts.patch
   patch -p1 < ../reproducible-man-gzip.patch
+  patch -p1 < ../use-source-date-epoch.patch
   sed -i 's|#!/usr/bin/python|#!/usr/bin/python2|' buildtools/makeman
   sed -i 's|@python|@python2|' buildtools/manpage.mk
 

Added: use-source-date-epoch.patch
===
--- use-source-date-epoch.patch (rev 0)
+++ use-source-date-epoch.patch 2020-05-30 16:11:30 UTC (rev 387916)
@@ -0,0 +1,13 @@
+Only in netpbm-10.73.31/buildtools/: depend.mk
+diff -aur netpbm-10.73.31.old/buildtools/stamp-date 
netpbm-10.73.31/buildtools/stamp-date
+--- netpbm-10.73.31.old/buildtools/stamp-date  2020-05-30 17:34:29.833395465 
+0200
 netpbm-10.73.31/buildtools/stamp-date  2020-05-30 17:48:52.910091897 
+0200
+@@ -9,7 +9,7 @@
+ # documentation.  This software is provided "as is" without express or
+ # implied warranty.
+ #
+-DATE=$(date)
++DATE="$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}")"
+ LOGNAME_OR_UNKNOWN=${LOGNAME:-UNKNOWN}
+ USER=${USER:-$LOGNAME_OR_UNKNOWN}
+ if [ "$USER" = "UNKNOWN" ]; then


[arch-commits] Commit in grafana-zabbix/repos/community-any (PKGBUILD PKGBUILD)

2020-05-28 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 28, 2020 @ 17:20:32
  Author: jelle
Revision: 636531

archrelease: copy trunk to community-any

Added:
  grafana-zabbix/repos/community-any/PKGBUILD
(from rev 636530, grafana-zabbix/trunk/PKGBUILD)
Deleted:
  grafana-zabbix/repos/community-any/PKGBUILD

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-28 17:20:21 UTC (rev 636530)
+++ PKGBUILD2020-05-28 17:20:32 UTC (rev 636531)
@@ -1,31 +0,0 @@
-# Maintainer: Florian Pritz 
-pkgname=grafana-zabbix
-pkgver=3.12.1
-pkgrel=1
-pkgdesc="Zabbix plugin for Grafana dashboard"
-arch=('any')
-url="https://github.com/alexanderzobnin/grafana-zabbix;
-license=('APACHE')
-depends=('grafana')
-makedepends=(yarn python2) # node-sass depends on node-gyp 3.8.0 which is 
still python2 https://github.com/sass/node-sass/issues/2877
-source=("https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz;)
-sha256sums=('7cb75cc5f582c9bd60ecf4fb1ea980cd504cce5fde7a394c5d0bf7ec82d92feb')
-
-build() {
-   cd "$pkgname-$pkgver"
-   yarn install --pure-lockfile
-   yarn upgrade node-sass
-   yarn build
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   yarn test
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   install -dm755 
"$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app"
-   cp -r . "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app"
-   rm -rf 
"$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app/node_modules"
-}

Copied: grafana-zabbix/repos/community-any/PKGBUILD (from rev 636530, 
grafana-zabbix/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-28 17:20:32 UTC (rev 636531)
@@ -0,0 +1,31 @@
+# Maintainer: Florian Pritz 
+pkgname=grafana-zabbix
+pkgver=3.12.2
+pkgrel=1
+pkgdesc="Zabbix plugin for Grafana dashboard"
+arch=('any')
+url="https://github.com/alexanderzobnin/grafana-zabbix;
+license=('APACHE')
+depends=('grafana')
+makedepends=(yarn python2) # node-sass depends on node-gyp 3.8.0 which is 
still python2 https://github.com/sass/node-sass/issues/2877
+source=("https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz;)
+sha256sums=('e06664e9b22a72295741e1a76e7ed6f722fe52de6dc68eeb2038be78ca7807cb')
+
+build() {
+   cd "$pkgname-$pkgver"
+   yarn install --pure-lockfile
+   yarn upgrade node-sass
+   yarn build
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   yarn test
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   install -dm755 
"$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app"
+   cp -r . "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app"
+   rm -rf 
"$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app/node_modules"
+}


[arch-commits] Commit in grafana-zabbix/trunk (PKGBUILD)

2020-05-28 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 28, 2020 @ 17:20:21
  Author: jelle
Revision: 636530

upgpkg: grafana-zabbix 3.12.2-1

Upstream update

Modified:
  grafana-zabbix/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 17:20:16 UTC (rev 636529)
+++ PKGBUILD2020-05-28 17:20:21 UTC (rev 636530)
@@ -1,6 +1,6 @@
 # Maintainer: Florian Pritz 
 pkgname=grafana-zabbix
-pkgver=3.12.1
+pkgver=3.12.2
 pkgrel=1
 pkgdesc="Zabbix plugin for Grafana dashboard"
 arch=('any')
@@ -9,7 +9,7 @@
 depends=('grafana')
 makedepends=(yarn python2) # node-sass depends on node-gyp 3.8.0 which is 
still python2 https://github.com/sass/node-sass/issues/2877
 
source=("https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz;)
-sha256sums=('7cb75cc5f582c9bd60ecf4fb1ea980cd504cce5fde7a394c5d0bf7ec82d92feb')
+sha256sums=('e06664e9b22a72295741e1a76e7ed6f722fe52de6dc68eeb2038be78ca7807cb')
 
 build() {
cd "$pkgname-$pkgver"


[arch-commits] Commit in netpbm/trunk (PKGBUILD reproducible-man-gzip.patch)

2020-05-28 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 28, 2020 @ 16:54:28
  Author: jelle
Revision: 387775

Make netpbm reproducible by hiding gzip timestamps

Added:
  netpbm/trunk/reproducible-man-gzip.patch
Modified:
  netpbm/trunk/PKGBUILD

-+
 PKGBUILD|9 ++---
 reproducible-man-gzip.patch |   16 
 2 files changed, 22 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 16:36:57 UTC (rev 387774)
+++ PKGBUILD2020-05-28 16:54:28 UTC (rev 387775)
@@ -2,7 +2,7 @@
 
 pkgname=netpbm
 pkgver=10.73.31
-pkgrel=1
+pkgrel=2
 pkgdesc="A toolkit for manipulation of graphic images"
 arch=('x86_64')
 license=('custom' 'BSD' 'GPL' 'LGPL')
@@ -13,13 +13,15 @@
 # Get docs with: wget --recursive --relative -nH 
http://netpbm.sourceforge.net/doc/
 
source=(https://downloads.sourceforge.net/project/netpbm/super_stable/$pkgver/netpbm-$pkgver.tgz
 
https://sources.archlinux.org/other/packages/netpbm/netpbm-doc-31Jan2014.tar.xz{,.sig}
-netpbm-CAN-2005-2471.patch netpbm-security-code.patch 
netpbm-security-scripts.patch)
+netpbm-CAN-2005-2471.patch netpbm-security-code.patch 
netpbm-security-scripts.patch
+reproducible-man-gzip.patch)
 sha256sums=('584c95f1ccdcd66d5ca68d7d5501728ae1184cba324d713f6b2a3ca86424243b'
 '74bcf840ee643c6917330c382484010cb99c004a3fcf05391bebcac63815acb3'
 'SKIP'
 '991aba7897e0710687369b4e2edfba1397ecd77d62578eac496afbc47b5ca970'
 'd39951cf96db6b3f430edef6fddcab5ef082db49968f09eb1c3e891205bcdb5f'
-'2c397588d9cba2c40dee55c07713d5e77e0e04245db939fdc1962d7de4cf4a33')
+'2c397588d9cba2c40dee55c07713d5e77e0e04245db939fdc1962d7de4cf4a33'
+'8e3efdb4fcbfdc8e9a5c8e9663c7d6b9ecef3a2379ce38d2acc5669c339f6814')
 validpgpkeys=('5357F3B111688D88C1D88119FCF2CB179205AC90')
 
 prepare() {
@@ -28,6 +30,7 @@
   patch -p1 < ../netpbm-CAN-2005-2471.patch
   patch -p1 < ../netpbm-security-code.patch
   patch -p1 < ../netpbm-security-scripts.patch
+  patch -p1 < ../reproducible-man-gzip.patch
   sed -i 's|#!/usr/bin/python|#!/usr/bin/python2|' buildtools/makeman
   sed -i 's|@python|@python2|' buildtools/manpage.mk
 

Added: reproducible-man-gzip.patch
===
--- reproducible-man-gzip.patch (rev 0)
+++ reproducible-man-gzip.patch 2020-05-28 16:54:28 UTC (rev 387775)
@@ -0,0 +1,16 @@
+diff -aur netpbm-10.73.31.old/buildtools/manpage.mk 
netpbm-10.73.31/buildtools/manpage.mk
+--- netpbm-10.73.31.old/buildtools/manpage.mk  2020-05-28 18:41:20.400790506 
+0200
 netpbm-10.73.31/buildtools/manpage.mk  2020-05-28 18:50:50.444143414 
+0200
+@@ -388,9 +388,9 @@
+ # This will install the generated man pages
+ installman:
+   set -x
+-  for f in netpbm.1 $(MAN1); do if [ -f $$f ]; then gzip <$$f 
>$(MANDIR)/man1/$$f.gz; fi; done
+-  for f in $(MAN3); do if [ -f $$f ]; then gzip <$$f 
>$(MANDIR)/man3/$$f.gz; fi; done
+-  for f in $(MAN5); do if [ -f $$f ]; then gzip <$$f 
>$(MANDIR)/man5/$$f.gz; fi; done
++  for f in netpbm.1 $(MAN1); do if [ -f $$f ]; then gzip -n <$$f 
>$(MANDIR)/man1/$$f.gz; fi; done
++  for f in $(MAN3); do if [ -f $$f ]; then gzip -n <$$f 
>$(MANDIR)/man3/$$f.gz; fi; done
++  for f in $(MAN5); do if [ -f $$f ]; then gzip -n <$$f 
>$(MANDIR)/man5/$$f.gz; fi; done
+ 
+ # This will uninstall them
+ uninstallman:


[arch-commits] Commit in pkgfile/trunk (PKGBUILD)

2020-05-27 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 27, 2020 @ 19:41:59
  Author: jelle
Revision: 387729

Rebuild for reproducible builds

Modified:
  pkgfile/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 16:31:39 UTC (rev 387728)
+++ PKGBUILD2020-05-27 19:41:59 UTC (rev 387729)
@@ -2,7 +2,7 @@
 
 pkgname=pkgfile
 pkgver=21
-pkgrel=1
+pkgrel=2
 pkgdesc="a pacman .files metadata explorer"
 arch=('x86_64')
 url="https://github.com/falconindy/pkgfile;


[arch-commits] Commit in pkgfile/repos/extra-x86_64 (4 files)

2020-05-27 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 27, 2020 @ 19:42:06
  Author: jelle
Revision: 387730

archrelease: copy trunk to extra-x86_64

Added:
  pkgfile/repos/extra-x86_64/PKGBUILD
(from rev 387729, pkgfile/trunk/PKGBUILD)
  pkgfile/repos/extra-x86_64/pkgfile.install
(from rev 387729, pkgfile/trunk/pkgfile.install)
Deleted:
  pkgfile/repos/extra-x86_64/PKGBUILD
  pkgfile/repos/extra-x86_64/pkgfile.install

-+
 PKGBUILD|   60 +++---
 pkgfile.install |   38 +-
 2 files changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 19:41:59 UTC (rev 387729)
+++ PKGBUILD2020-05-27 19:42:06 UTC (rev 387730)
@@ -1,30 +0,0 @@
-# Maintainer: Dave Reisner 
-
-pkgname=pkgfile
-pkgver=21
-pkgrel=1
-pkgdesc="a pacman .files metadata explorer"
-arch=('x86_64')
-url="https://github.com/falconindy/pkgfile;
-license=('MIT')
-depends=('libarchive' 'curl' 'pcre' 'pacman')
-makedepends=('git' 'meson')
-source=("git+https://github.com/falconindy/pkgfile?signed#tag=v$pkgver;)
-validpgpkeys=('487EACC08557AD082088DABA1EB2638FF56C0C53')  # Dave Reisner
-install=pkgfile.install
-md5sums=('SKIP')
-
-build() {
-  cd "$pkgname"
-
-  arch-meson build
-  ninja -v -C build
-}
-
-package() {
-  cd "$pkgname"
-
-  DESTDIR=$pkgdir ninja -C build install
-}
-
-# vim: ft=sh syn=sh

Copied: pkgfile/repos/extra-x86_64/PKGBUILD (from rev 387729, 
pkgfile/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 19:42:06 UTC (rev 387730)
@@ -0,0 +1,30 @@
+# Maintainer: Dave Reisner 
+
+pkgname=pkgfile
+pkgver=21
+pkgrel=2
+pkgdesc="a pacman .files metadata explorer"
+arch=('x86_64')
+url="https://github.com/falconindy/pkgfile;
+license=('MIT')
+depends=('libarchive' 'curl' 'pcre' 'pacman')
+makedepends=('git' 'meson')
+source=("git+https://github.com/falconindy/pkgfile?signed#tag=v$pkgver;)
+validpgpkeys=('487EACC08557AD082088DABA1EB2638FF56C0C53')  # Dave Reisner
+install=pkgfile.install
+md5sums=('SKIP')
+
+build() {
+  cd "$pkgname"
+
+  arch-meson build
+  ninja -v -C build
+}
+
+package() {
+  cd "$pkgname"
+
+  DESTDIR=$pkgdir ninja -C build install
+}
+
+# vim: ft=sh syn=sh

Deleted: pkgfile.install
===
--- pkgfile.install 2020-05-27 19:41:59 UTC (rev 387729)
+++ pkgfile.install 2020-05-27 19:42:06 UTC (rev 387730)
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-post_install() {
-  printf "==> Run 'pkgfile --update' to initialize the database\n"
-}
-
-post_remove() {
-  # the cache dir might not be removed, notify the user
-  if [ -d var/cache/pkgfile ]; then
-printf "==> /var/cache/pkgfile has not been removed\n"
-  fi
-}
-
-post_upgrade() {
-  if [ "$(vercmp 19-1 "$2")" -eq 1 ]; then
-printf "==> Changing permissions on /var/cache/pkgfile from 775 to 755\n"
-chmod 755 /var/cache/pkgfile
-  fi
-}

Copied: pkgfile/repos/extra-x86_64/pkgfile.install (from rev 387729, 
pkgfile/trunk/pkgfile.install)
===
--- pkgfile.install (rev 0)
+++ pkgfile.install 2020-05-27 19:42:06 UTC (rev 387730)
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+post_install() {
+  printf "==> Run 'pkgfile --update' to initialize the database\n"
+}
+
+post_remove() {
+  # the cache dir might not be removed, notify the user
+  if [ -d var/cache/pkgfile ]; then
+printf "==> /var/cache/pkgfile has not been removed\n"
+  fi
+}
+
+post_upgrade() {
+  if [ "$(vercmp 19-1 "$2")" -eq 1 ]; then
+printf "==> Changing permissions on /var/cache/pkgfile from 775 to 755\n"
+chmod 755 /var/cache/pkgfile
+  fi
+}


[arch-commits] Commit in hplip/trunk (PKGBUILD reproducible-gzip.patch)

2020-05-27 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 27, 2020 @ 14:57:54
  Author: jelle
Revision: 387726

Make hplip reproducible

Added:
  hplip/trunk/reproducible-gzip.patch
Modified:
  hplip/trunk/PKGBUILD

-+
 PKGBUILD|   11 ---
 reproducible-gzip.patch |   38 ++
 2 files changed, 46 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 14:43:10 UTC (rev 387725)
+++ PKGBUILD2020-05-27 14:57:54 UTC (rev 387726)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.20.5
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -30,7 +30,8 @@
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
 https://launchpadlibrarian.net/480406888/hplip-configure-python.patch
-python3.diff)
+python3.diff
+reproducible-gzip.patch)
 
sha512sums=('fce3c7b8a2f3b0d2875bafd2ff65a3312fae867b658cd45eea16d9f3663646b6b0b70b58e6c2b46eb24627cdeefb318b6ca9ccf5a0e9790ff19519518992da07'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
@@ -38,7 +39,8 @@
 
'763949a0bc460dcc9faefc86f2a91cf342781bfce696ed0c3826758572dd03ac266bbeb7b6a4f9376ac298d7d3c9c4def42d94921a8e1d1695e39396e36d95ff'
 
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b'
 
'c41d5812ab9b5994e06f82acb0299c69edeaed548f5df2a3578c6c6428223e9cf7ec3b746f6e3071b6c858e2b0552417ba4695e1032ea41657bf852eb3ffc3fe'
-
'5885b223f96706bc09a147b5c141d620846c9058563e986983ca2ab90922cabe891a651d90d5004d45549b3874c40f8a1570a8a79e067d66f182668c7e82')
+
'5885b223f96706bc09a147b5c141d620846c9058563e986983ca2ab90922cabe891a651d90d5004d45549b3874c40f8a1570a8a79e067d66f182668c7e82'
+
'7bad907228b7c2f3c43128f087a2f8e03778760b7a26179ff441c1f60127e2fca08c94dff76baea2469d3a253a8f46b285d0af0f62a6d8738926caf7a10f670b')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
 prepare() {
@@ -61,6 +63,9 @@
  # broken scanning - https://bugs.archlinux.org/task/66704
  patch -Np1 -i ../hplip-configure-python.patch
 
+ # make gzip creation reproducible by removing the timestamp
+ patch -Np1 -i ../reproducible-gzip.patch
+
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install
 }

Added: reproducible-gzip.patch
===
--- reproducible-gzip.patch (rev 0)
+++ reproducible-gzip.patch 2020-05-27 14:57:54 UTC (rev 387726)
@@ -0,0 +1,38 @@
+--- hplip-3.20.5/createPPD.sh  2020-05-11 15:34:06.0 +0200
 hplip-3.20.5.old/createPPD.sh  2020-05-27 12:02:44.089477299 +0200
+@@ -54,15 +54,15 @@
+   else
+   cp prnt/ps/hp-postscript*.ppd ppd/classppd/ps
+   for i in ppd/classppd/ps/*.ppd; do
+-  gzip -c "$i" > "$i.gz"
++  gzip -nc "$i" > "$i.gz"
+   done
+   fi
+ #cp prnt/ps/hp-postscript*.ppd.gz ppd/classppd/ps
+   for i in ppd/classppd/hpcups/*.ppd; do
+-  gzip -c "$i" > "$i.gz"
++  gzip -nc "$i" > "$i.gz"
+   done
+   #for i in ppd/classppd/ps/*.ppd; do
+-  #   gzip -c "$i" > "$i.gz"
++  #   gzip -nc "$i" > "$i.gz"
+   #done
+ 
+   cat > class_cups_drv.inc < "$i.gz"
++  gzip -nc "$i" > "$i.gz"
+ done
+ 
+ install -d ppd/hpijs
+ ppdc -d ppd/hpijs prnt/drv/hpijs.drv
+ echo "gzip ppd files..."
+ for i in ppd/hpijs/*.ppd; do
+-  gzip -c "$i" > "$i.gz"
++  gzip -nc "$i" > "$i.gz"
+ done
+ echo "building foomatic_drv.inc..."
+ ./hpijs-drv > foomatic_drv.inc $shadow


[arch-commits] Commit in grafana-zabbix/repos/community-any (PKGBUILD PKGBUILD)

2020-05-26 Thread Jelle van der Waa via arch-commits
Date: Tuesday, May 26, 2020 @ 15:58:49
  Author: jelle
Revision: 635116

archrelease: copy trunk to community-any

Added:
  grafana-zabbix/repos/community-any/PKGBUILD
(from rev 635115, grafana-zabbix/trunk/PKGBUILD)
Deleted:
  grafana-zabbix/repos/community-any/PKGBUILD

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-26 15:58:38 UTC (rev 635115)
+++ PKGBUILD2020-05-26 15:58:49 UTC (rev 635116)
@@ -1,31 +0,0 @@
-# Maintainer: Florian Pritz 
-pkgname=grafana-zabbix
-pkgver=3.12.0
-pkgrel=1
-pkgdesc="Zabbix plugin for Grafana dashboard"
-arch=('any')
-url="https://github.com/alexanderzobnin/grafana-zabbix;
-license=('APACHE')
-depends=('grafana')
-makedepends=(yarn python2) # node-sass depends on node-gyp 3.8.0 which is 
still python2 https://github.com/sass/node-sass/issues/2877
-source=("https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz;)
-sha256sums=('89c8c717d6da6267457d381b78c0b166e87e261406dd82af7fe6dd6295f59ae4')
-
-build() {
-   cd "$pkgname-$pkgver"
-   yarn install --pure-lockfile
-   yarn upgrade node-sass
-   yarn build
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   yarn test
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   install -dm755 
"$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app"
-   cp -r . "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app"
-   rm -rf 
"$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app/node_modules"
-}

Copied: grafana-zabbix/repos/community-any/PKGBUILD (from rev 635115, 
grafana-zabbix/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-26 15:58:49 UTC (rev 635116)
@@ -0,0 +1,31 @@
+# Maintainer: Florian Pritz 
+pkgname=grafana-zabbix
+pkgver=3.12.1
+pkgrel=1
+pkgdesc="Zabbix plugin for Grafana dashboard"
+arch=('any')
+url="https://github.com/alexanderzobnin/grafana-zabbix;
+license=('APACHE')
+depends=('grafana')
+makedepends=(yarn python2) # node-sass depends on node-gyp 3.8.0 which is 
still python2 https://github.com/sass/node-sass/issues/2877
+source=("https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz;)
+sha256sums=('7cb75cc5f582c9bd60ecf4fb1ea980cd504cce5fde7a394c5d0bf7ec82d92feb')
+
+build() {
+   cd "$pkgname-$pkgver"
+   yarn install --pure-lockfile
+   yarn upgrade node-sass
+   yarn build
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   yarn test
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   install -dm755 
"$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app"
+   cp -r . "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app"
+   rm -rf 
"$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app/node_modules"
+}


[arch-commits] Commit in grafana-zabbix/trunk (PKGBUILD)

2020-05-26 Thread Jelle van der Waa via arch-commits
Date: Tuesday, May 26, 2020 @ 15:58:38
  Author: jelle
Revision: 635115

upgpkg: grafana-zabbix 3.12.1-1

Upstream update.

Modified:
  grafana-zabbix/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-26 15:56:06 UTC (rev 635114)
+++ PKGBUILD2020-05-26 15:58:38 UTC (rev 635115)
@@ -1,6 +1,6 @@
 # Maintainer: Florian Pritz 
 pkgname=grafana-zabbix
-pkgver=3.12.0
+pkgver=3.12.1
 pkgrel=1
 pkgdesc="Zabbix plugin for Grafana dashboard"
 arch=('any')
@@ -9,7 +9,7 @@
 depends=('grafana')
 makedepends=(yarn python2) # node-sass depends on node-gyp 3.8.0 which is 
still python2 https://github.com/sass/node-sass/issues/2877
 
source=("https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz;)
-sha256sums=('89c8c717d6da6267457d381b78c0b166e87e261406dd82af7fe6dd6295f59ae4')
+sha256sums=('7cb75cc5f582c9bd60ecf4fb1ea980cd504cce5fde7a394c5d0bf7ec82d92feb')
 
 build() {
cd "$pkgname-$pkgver"


[arch-commits] Commit in grafana/repos/community-x86_64 (10 files)

2020-05-26 Thread Jelle van der Waa via arch-commits
Date: Tuesday, May 26, 2020 @ 15:17:13
  Author: jelle
Revision: 635112

archrelease: copy trunk to community-x86_64

Added:
  grafana/repos/community-x86_64/PKGBUILD
(from rev 635111, grafana/trunk/PKGBUILD)
  grafana/repos/community-x86_64/grafana.install
(from rev 635111, grafana/trunk/grafana.install)
  grafana/repos/community-x86_64/grafana.service
(from rev 635111, grafana/trunk/grafana.service)
  grafana/repos/community-x86_64/grafana.sysusers
(from rev 635111, grafana/trunk/grafana.sysusers)
  grafana/repos/community-x86_64/grafana.tmpfiles
(from rev 635111, grafana/trunk/grafana.tmpfiles)
Deleted:
  grafana/repos/community-x86_64/PKGBUILD
  grafana/repos/community-x86_64/grafana.install
  grafana/repos/community-x86_64/grafana.service
  grafana/repos/community-x86_64/grafana.sysusers
  grafana/repos/community-x86_64/grafana.tmpfiles

--+
 PKGBUILD |  169 ++---
 grafana.install  |   44 ++---
 grafana.service  |   46 +++---
 grafana.sysusers |2 
 grafana.tmpfiles |4 -
 5 files changed, 133 insertions(+), 132 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-26 15:16:59 UTC (rev 635111)
+++ PKGBUILD2020-05-26 15:17:13 UTC (rev 635112)
@@ -1,84 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Carsten Feuls 
-# Contributor: Gilles Hamel 
-
-pkgname=grafana
-pkgver=7.0.0
-pkgrel=1
-pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
-url='https://grafana.com/'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc' 'freetype2' 'fontconfig' 'gsfonts')
-makedepends=('git' 'go-pie' 'npm' 'grunt-cli' 'python' 'nodejs-lts-erbium')
-backup=('etc/grafana.ini')
-source=("git+https://github.com/grafana/grafana.git?signed#tag=v$pkgver;
-'grafana.service'
-'grafana.sysusers'
-'grafana.tmpfiles'
-   )
-install=$pkgname.install
-sha512sums=('SKIP'
-
'02a597225ee6ba8da9491a94daa33fe681846e2140e02fbb461ff7d39acd4cf99694dc03fb5f2c5ecfd180b09c44a41fe639b121499b4222b67ada57dc60d850'
-
'38b46d953837a7afa5a654dfeef163b210d56cad57d937018531d00cd63b5341d6f9cd777299bdc7a994d0cb7df09b8157aad0f166e76ad47564e1ad6d5441d4'
-
'c1724bfc7cbd6a406f17acb661efca0f1e57e2c30cc1841f4cb7ccfc420adc40cc61cb1c023d00444827b2c40e9caa4c2fefbfd503419848c74a0b455b2375ab')
-validpgpkeys=("D45B6DC53E9057C46487E25CE17E9ABACEFA59EB"
-  "43511C6A68C9A1DE451EF51890AA4FDC4D63CBEA"
-  "AA70DF6234FBF96AB9101D09E6D5D452E87026E9"  # 
https://github.com/aknuds1.gpg
-  "622E7A764E0C94351E061C57F8D44788D50B48DF"  # 
https://github.com/xlson.gpg
-  "E9EBB044CD6A98482208FE569A774B897EAAB194"  # 
https://github.com/torkelo.gpg
-  "2E240E94A7ADC77A1DFE1085EBFE0FB04612DD4A") # 
https://github.com/marefr.gpg
-
-prepare() {
-  cd $pkgname
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  echo "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  # set arch linux paths
-  sed -ri 's,^(\s*data\s*=).*,\1 /var/lib/grafana,' conf/defaults.ini
-  sed -ri 's,^(\s*plugins\s*=).*,\1 /var/lib/grafana/plugins,' 
conf/defaults.ini
-  sed -ri 's,^(\s*provisioning\s*=).*,\1 /var/lib/grafana/conf/provisioning,' 
conf/defaults.ini
-  sed -ri 's,^(\s*logs\s*=).*,\1 /var/log/grafana,' conf/defaults.ini
-}
-
-build() {
-  echo 'GOPATH setup'
-  export GOPATH="$srcdir/gopath"
-  export PATH+=":$GOPATH/bin"
-  mkdir -p "$GOPATH/src/github.com/grafana/"
-  ln -fsrT "$srcdir/grafana/" "$GOPATH/src/github.com/grafana/grafana"
-  cd "$GOPATH/src/github.com/grafana/grafana"
-
-  echo 'building the backend'
-  go run build.go setup
-  go run build.go build
-
-  echo 'building the frontend'
-  export NPM_CONFIG_PREFIX="$srcdir/npm"
-  export PATH+=":$NPM_CONFIG_PREFIX/bin"
-  npm install -g yarn
-  yarn install --pure-lockfile --no-progress
-  npm run build release
-}
-
-package() {
-  install -Dm644 grafana.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/grafana.conf"
-  install -Dm644 grafana.sysusers "$pkgdir/usr/lib/sysusers.d/grafana.conf"
-  install -Dm644 grafana.service 
"$pkgdir/usr/lib/systemd/system/grafana.service"
-  cd $pkgname
-  install -Dsm755 bin/linux-amd64/grafana-server 
"$pkgdir/usr/bin/grafana-server"
-  install -Dsm755 bin/linux-amd64/grafana-cli "$pkgdir/usr/bin/grafana-cli"
-  install -Dm640 -o207 -g207 conf/sample.ini "$pkgdir/etc/$pkgname.ini"
-  install -Dm644 conf/defaults.ini 
"$pkgdir/usr/share/$pkgname/conf/defaults.ini"
-  install -dm755 "$pkgdir/usr/share/grafana/"
-  for i in public tools; do
-cp -r "$i" "$pkgdir/usr/share/grafana/$i"
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: grafana/repos/community-x86_64/PKGBUILD (from rev 

[arch-commits] Commit in grafana/trunk (PKGBUILD)

2020-05-26 Thread Jelle van der Waa via arch-commits
Date: Tuesday, May 26, 2020 @ 15:16:59
  Author: jelle
Revision: 635111

upgpkg: grafana 7.0.1-1

Upstream update.

Modified:
  grafana/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-26 14:55:20 UTC (rev 635110)
+++ PKGBUILD2020-05-26 15:16:59 UTC (rev 635111)
@@ -3,7 +3,7 @@
 # Contributor: Gilles Hamel 
 
 pkgname=grafana
-pkgver=7.0.0
+pkgver=7.0.1
 pkgrel=1
 pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
 url='https://grafana.com/'
@@ -12,7 +12,7 @@
 depends=('glibc' 'freetype2' 'fontconfig' 'gsfonts')
 makedepends=('git' 'go-pie' 'npm' 'grunt-cli' 'python' 'nodejs-lts-erbium')
 backup=('etc/grafana.ini')
-source=("git+https://github.com/grafana/grafana.git?signed#tag=v$pkgver;
+source=("git+https://github.com/grafana/grafana.git#tag=v$pkgver;
 'grafana.service'
 'grafana.sysusers'
 'grafana.tmpfiles'
@@ -27,7 +27,8 @@
   "AA70DF6234FBF96AB9101D09E6D5D452E87026E9"  # 
https://github.com/aknuds1.gpg
   "622E7A764E0C94351E061C57F8D44788D50B48DF"  # 
https://github.com/xlson.gpg
   "E9EBB044CD6A98482208FE569A774B897EAAB194"  # 
https://github.com/torkelo.gpg
-  "2E240E94A7ADC77A1DFE1085EBFE0FB04612DD4A") # 
https://github.com/marefr.gpg
+  "2E240E94A7ADC77A1DFE1085EBFE0FB04612DD4A"  # 
https://github.com/marefr.gpg
+  "5990A087E92D7E15FBF3161103BA4D7E39F0DAF8") # 
https://github.com/hugohaggmark.gpg
 
 prepare() {
   cd $pkgname


[arch-commits] Commit in keycloak-metrics-spi/trunk (PKGBUILD)

2020-05-25 Thread Jelle van der Waa via arch-commits
Date: Monday, May 25, 2020 @ 23:30:57
  Author: jelle
Revision: 634957

initial commit

Added:
  keycloak-metrics-spi/trunk/PKGBUILD

--+
 PKGBUILD |   30 ++
 1 file changed, 30 insertions(+)

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-25 23:30:57 UTC (rev 634957)
@@ -0,0 +1,30 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=keycloak-metrics-spi
+pkgver=2.0.0
+pkgrel=1
+pkgdesc='A Service Provider that adds a Prometheus metrics endpoint to 
Keycloak'
+url="https://github.com/aerogear/keycloak-metrics-spi;
+arch=('any')
+license=('Apache')
+depends=('java-runtime>=8')
+makedepends=('java-environment=8' 'gradle')
+source=($pkgname-$pkgver.tar.gz::https://github.com/aerogear/keycloak-metrics-spi/archive/${pkgver}.tar.gz)
+sha512sums=('608b33f8934c8f31b5e47ab8919debea286d66616313ce02527d15e3006c665f44dc09f90fb1ec34fb39818fe2542039c8b2c8e963ffc9814a5ae42e7be48e16')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  gradle jar
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  gradle test
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -dm 751 ${pkgdir}/opt/keycloak/standalone
+  install -dm 755 ${pkgdir}/opt/keycloak/standalone/deployments
+  install -Dm644 build/libs/keycloak-metrics-spi-*-SNAPSHOT.jar 
${pkgdir}/opt/keycloak/standalone/deployments/
+}


[arch-commits] Commit in (3 files)

2020-05-25 Thread Jelle van der Waa via arch-commits
Date: Monday, May 25, 2020 @ 22:20:07
  Author: jelle
Revision: 634956

initial commit

Added:
  keycloak-metrics-spi/
  keycloak-metrics-spi/repos/
  keycloak-metrics-spi/trunk/


[arch-commits] Commit in gl2ps/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-25 Thread Jelle van der Waa via arch-commits
Date: Monday, May 25, 2020 @ 18:36:33
  Author: jelle
Revision: 387526

archrelease: copy trunk to extra-x86_64

Added:
  gl2ps/repos/extra-x86_64/PKGBUILD
(from rev 387525, gl2ps/trunk/PKGBUILD)
Deleted:
  gl2ps/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   71 ++---
 1 file changed, 36 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-25 18:36:23 UTC (rev 387525)
+++ PKGBUILD2020-05-25 18:36:33 UTC (rev 387526)
@@ -1,35 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: hauptmech, figo.zhang, chubtuff, lubosz
-#
-# Matlab bindings are not built by default to reduce dependencies.
-
-pkgname=gl2ps
-pkgver=1.4.2
-pkgrel=1
-pkgdesc="an OpenGL to PostScript printing library"
-arch=('x86_64')
-url='https://geuz.org/gl2ps/'
-license=('LGPL')
-depends=('libpng' 'libgl')
-makedepends=('cmake' 'texlive-core')
-source=("https://geuz.org/gl2ps/src/gl2ps-${pkgver}.tgz;)
-sha512sums=('46652e1b3825ace61dbd77c4b0bf451e7671c248eb18bbd3369e2fac00056ea4cd5d2578561984313c239e3b02f78b9d9a76d963c935af65a13bc2abfc538620')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../gl2ps-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_EXE_LINKER_FLAGS=-lm
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir/" install
-}
-

Copied: gl2ps/repos/extra-x86_64/PKGBUILD (from rev 387525, 
gl2ps/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-25 18:36:33 UTC (rev 387526)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: hauptmech, figo.zhang, chubtuff, lubosz
+#
+# Matlab bindings are not built by default to reduce dependencies.
+
+pkgname=gl2ps
+pkgver=1.4.2
+pkgrel=2
+pkgdesc="an OpenGL to PostScript printing library"
+arch=('x86_64')
+url='https://geuz.org/gl2ps/'
+license=('LGPL')
+depends=('libpng' 'libgl')
+makedepends=('cmake' 'texlive-core')
+source=("https://geuz.org/gl2ps/src/gl2ps-${pkgver}.tgz;)
+sha512sums=('46652e1b3825ace61dbd77c4b0bf451e7671c248eb18bbd3369e2fac00056ea4cd5d2578561984313c239e3b02f78b9d9a76d963c935af65a13bc2abfc538620')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  export FORCE_SOURCE_DATE=1 # make pdftex adhere to SOURCE_DATE_EPOCH
+  cmake ../gl2ps-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_EXE_LINKER_FLAGS=-lm
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in gl2ps/trunk (PKGBUILD)

2020-05-25 Thread Jelle van der Waa via arch-commits
Date: Monday, May 25, 2020 @ 18:36:23
  Author: jelle
Revision: 387525

Make pdftex generated pdf's reproducible.

Modified:
  gl2ps/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-25 14:58:39 UTC (rev 387524)
+++ PKGBUILD2020-05-25 18:36:23 UTC (rev 387525)
@@ -5,7 +5,7 @@
 
 pkgname=gl2ps
 pkgver=1.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc="an OpenGL to PostScript printing library"
 arch=('x86_64')
 url='https://geuz.org/gl2ps/'
@@ -21,6 +21,7 @@
 
 build() {
   cd build
+  export FORCE_SOURCE_DATE=1 # make pdftex adhere to SOURCE_DATE_EPOCH
   cmake ../gl2ps-$pkgver \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \


[arch-commits] Commit in prometheus-blackbox-exporter/repos/extra-x86_64 (4 files)

2020-05-25 Thread Jelle van der Waa via arch-commits
Date: Monday, May 25, 2020 @ 14:58:39
  Author: jelle
Revision: 387524

archrelease: copy trunk to extra-x86_64

Added:
  prometheus-blackbox-exporter/repos/extra-x86_64/PKGBUILD
(from rev 387523, prometheus-blackbox-exporter/trunk/PKGBUILD)
  
prometheus-blackbox-exporter/repos/extra-x86_64/prometheus-blackbox-exporter.service
(from rev 387523, 
prometheus-blackbox-exporter/trunk/prometheus-blackbox-exporter.service)
Deleted:
  prometheus-blackbox-exporter/repos/extra-x86_64/PKGBUILD
  
prometheus-blackbox-exporter/repos/extra-x86_64/prometheus-blackbox-exporter.service

--+
 PKGBUILD |   81 -
 prometheus-blackbox-exporter.service |   56 +++---
 2 files changed, 69 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-25 14:58:28 UTC (rev 387523)
+++ PKGBUILD2020-05-25 14:58:39 UTC (rev 387524)
@@ -1,40 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=prometheus-blackbox-exporter
-pkgver=0.16.0
-pkgrel=3
-pkgdesc="Allows blackbox probing of endpoints over HTTP, HTTPS, DNS, TCP and 
ICMP"
-arch=('x86_64')
-url="https://github.com/prometheus/blackbox_exporter;
-license=('Apache')
-depends=(glibc)
-makedepends=(go-pie git)
-source=($pkgname-$pkgver.tar.gz::https://github.com/prometheus/blackbox_exporter/archive/v${pkgver}.tar.gz
 prometheus-blackbox-exporter.service)
-sha512sums=('85103b62e345ab5d59626e658047ac75649f9ef991c9bbaff32b95ea75ec2da2bf916573e664520766158805c6cf24163f2850c885a594d32b4f9c4c9dbed1a8'
-
'b32d7772cbd8a2fc741d827a7f221d1302ab0c5833c095e5b6dc6befa46a1b12c22e91252fd0e4cf07c9c309d6315c6e1d020508a3b891ab9f7f7d690eae')
-
-check() {
-  cd blackbox_exporter-$pkgver
-  go test ./...
-}
-
-build() {
-  cd blackbox_exporter-$pkgver
-  go build \
--mod=vendor \
--gcflags "all=-trimpath=${PWD}" \
--asmflags "all=-trimpath=${PWD}" \
--ldflags "-extldflags ${LDFLAGS} \
-  -X github.com/prometheus/common/version.Version=$pkgver \
-  -X github.com/prometheus/common/version.Revision=$pkgver \
-  -X github.com/prometheus/common/version.Branch=tarball \
-  -X github.com/prometheus/common/version.BuildUser=someone@builder \
-  -X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
-.
-}
-
-package() {
-  install -Dm644 prometheus-blackbox-exporter.service 
"$pkgdir"/usr/lib/systemd/system/prometheus-blackbox-exporter.service
-  cd blackbox_exporter-$pkgver
-  install -Dm755 blackbox_exporter 
"$pkgdir"/usr/bin/prometheus-blackbox-exporter
-}

Copied: prometheus-blackbox-exporter/repos/extra-x86_64/PKGBUILD (from rev 
387523, prometheus-blackbox-exporter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-25 14:58:39 UTC (rev 387524)
@@ -0,0 +1,41 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=prometheus-blackbox-exporter
+pkgver=0.16.0
+pkgrel=4
+pkgdesc="Allows blackbox probing of endpoints over HTTP, HTTPS, DNS, TCP and 
ICMP"
+arch=('x86_64')
+url="https://github.com/prometheus/blackbox_exporter;
+license=('Apache')
+depends=(glibc)
+makedepends=(go-pie git)
+source=($pkgname-$pkgver.tar.gz::https://github.com/prometheus/blackbox_exporter/archive/v${pkgver}.tar.gz
 prometheus-blackbox-exporter.service)
+sha512sums=('85103b62e345ab5d59626e658047ac75649f9ef991c9bbaff32b95ea75ec2da2bf916573e664520766158805c6cf24163f2850c885a594d32b4f9c4c9dbed1a8'
+
'b32d7772cbd8a2fc741d827a7f221d1302ab0c5833c095e5b6dc6befa46a1b12c22e91252fd0e4cf07c9c309d6315c6e1d020508a3b891ab9f7f7d690eae')
+
+check() {
+  cd blackbox_exporter-$pkgver
+  go test ./...
+}
+
+build() {
+  cd blackbox_exporter-$pkgver
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-extldflags ${LDFLAGS} \
+  -X github.com/prometheus/common/version.Version=$pkgver \
+  -X github.com/prometheus/common/version.Revision=$pkgver \
+  -X github.com/prometheus/common/version.Branch=tarball \
+  -X github.com/prometheus/common/version.BuildUser=someone@builder \
+  -X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
+.
+}
+
+package() {
+  install -Dm644 prometheus-blackbox-exporter.service 
"$pkgdir"/usr/lib/systemd/system/prometheus-blackbox-exporter.service
+  cd blackbox_exporter-$pkgver
+  install -Dm755 blackbox_exporter 
"$pkgdir"/usr/bin/prometheus-blackbox-exporter
+}

Deleted: prometheus-blackbox-exporter.service
===
--- prometheus-blackbox-exporter.service2020-05-25 14:58:28 UTC (rev 
387523)
+++ prometheus-blackbox-exporter.service2020-05-25 14:58:39 UTC (rev 
387524)
@@ -1,28 +0,0 @@
-[Unit]

[arch-commits] Commit in prometheus-blackbox-exporter/trunk (PKGBUILD)

2020-05-25 Thread Jelle van der Waa via arch-commits
Date: Monday, May 25, 2020 @ 14:58:28
  Author: jelle
Revision: 387523

upgpkg: prometheus-blackbox-exporter 0.16.0-4

Make the package reproducible

Modified:
  prometheus-blackbox-exporter/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-25 14:43:38 UTC (rev 387522)
+++ PKGBUILD2020-05-25 14:58:28 UTC (rev 387523)
@@ -2,7 +2,7 @@
 
 pkgname=prometheus-blackbox-exporter
 pkgver=0.16.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Allows blackbox probing of endpoints over HTTP, HTTPS, DNS, TCP and 
ICMP"
 arch=('x86_64')
 url="https://github.com/prometheus/blackbox_exporter;
@@ -21,9 +21,10 @@
 build() {
   cd blackbox_exporter-$pkgver
   go build \
--mod=vendor \
--gcflags "all=-trimpath=${PWD}" \
--asmflags "all=-trimpath=${PWD}" \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
 -ldflags "-extldflags ${LDFLAGS} \
   -X github.com/prometheus/common/version.Version=$pkgver \
   -X github.com/prometheus/common/version.Revision=$pkgver \


[arch-commits] Commit in alertmanager/repos/extra-x86_64 (6 files)

2020-05-25 Thread Jelle van der Waa via arch-commits
Date: Monday, May 25, 2020 @ 14:43:38
  Author: jelle
Revision: 387522

archrelease: copy trunk to extra-x86_64

Added:
  alertmanager/repos/extra-x86_64/PKGBUILD
(from rev 387521, alertmanager/trunk/PKGBUILD)
  alertmanager/repos/extra-x86_64/alertmanager.service
(from rev 387521, alertmanager/trunk/alertmanager.service)
  alertmanager/repos/extra-x86_64/alertmanager.sysusers
(from rev 387521, alertmanager/trunk/alertmanager.sysusers)
Deleted:
  alertmanager/repos/extra-x86_64/PKGBUILD
  alertmanager/repos/extra-x86_64/alertmanager.service
  alertmanager/repos/extra-x86_64/alertmanager.sysusers

---+
 PKGBUILD  |  114 
 alertmanager.service  |   56 +++
 alertmanager.sysusers |2 
 3 files changed, 88 insertions(+), 84 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-25 14:43:29 UTC (rev 387521)
+++ PKGBUILD2020-05-25 14:43:38 UTC (rev 387522)
@@ -1,55 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=alertmanager
-pkgver=0.20.0
-pkgrel=2
-pkgdesc="Service which handles alerts sent by client applications such as the 
Prometheus server"
-url="https://github.com/prometheus/alertmanager;
-arch=(x86_64)
-depends=(glibc)
-license=('Apache')
-makedepends=(go-pie git)
-backup=('etc/alertmanager/alertmanager.yml')
-source=($pkgname-$pkgver.tar.gz::https://github.com/prometheus/alertmanager/archive/v${pkgver}.tar.gz
 alertmanager.service alertmanager.sysusers)
-sha512sums=('4bb9353e6ce9b149c5f22a2c305829112dfdf87f9b74e6075a45be0e07fe0f17e869ef9be4bb5e9c53d215dd1f534b1b5a707dd981efce8c5bcae4c1d6ce18bb'
-
'e814d4aca46c2e243a2fe137b2ca102d5adfc18a5d4ab1d316ae593e60a256f8f7f699eb2d8c28b74e6f26fd17b682df927517db4819b167ab0269aa3f76894e'
-
'469f321f40b0dd6e1cc6d0791032c476449bb2ab2364d57b06d0e0309d09710be8751ded64d84e29dd6e28e96b71ef69e2bee6c71282500a9074a9d7ada8bdf0')
-
-build() {
-  cd $pkgname-$pkgver
-  go build \
--gcflags "all=-trimpath=$GOPATH" \
--asmflags "all=-trimpath=$GOPATH" \
--ldflags "-extldflags ${LDFLAGS} \
-  -X github.com/prometheus/common/version.Version=$pkgver \
-  -X github.com/prometheus/common/version.Revision=$pkgver \
-  -X github.com/prometheus/common/version.Branch=tarball \
-  -X github.com/prometheus/common/version.BuildUser=someone@builder \
-  -X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
-./cmd/alertmanager
-
-  go build \
--gcflags "all=-trimpath=$GOPATH" \
--asmflags "all=-trimpath=$GOPATH" \
--ldflags "-extldflags ${LDFLAGS} \
-  -X github.com/prometheus/common/version.Version=$pkgver \
-  -X github.com/prometheus/common/version.Revision=$pkgver \
-  -X github.com/prometheus/common/version.Branch=tarball \
-  -X github.com/prometheus/common/version.BuildUser=someone@builder \
-  -X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
-./cmd/amtool
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname"
-  install -Dm755 amtool "$pkgdir/usr/bin/amtool"
-
-  install -Dm644 examples/ha/${pkgname}.yml 
"${pkgdir}/etc/${pkgname}/${pkgname}.yml"
-  install -d -m755 "${pkgdir}/etc/${pkgname}/template/"
-
-  install -d -m755 -o 211 -g 211 "${pkgdir}/var/lib/${pkgname}"
-
-  install -Dm0644 "${srcdir}/${pkgname}.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
-  install -Dm644 "$srcdir/alertmanager.sysusers" 
"$pkgdir/usr/lib/sysusers.d/alertmanager.conf"
-}

Copied: alertmanager/repos/extra-x86_64/PKGBUILD (from rev 387521, 
alertmanager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-25 14:43:38 UTC (rev 387522)
@@ -0,0 +1,59 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=alertmanager
+pkgver=0.20.0
+pkgrel=3
+pkgdesc="Service which handles alerts sent by client applications such as the 
Prometheus server"
+url="https://github.com/prometheus/alertmanager;
+arch=(x86_64)
+depends=(glibc)
+license=('Apache')
+makedepends=(go git)
+backup=('etc/alertmanager/alertmanager.yml')
+source=($pkgname-$pkgver.tar.gz::https://github.com/prometheus/alertmanager/archive/v${pkgver}.tar.gz
 alertmanager.service alertmanager.sysusers)
+sha512sums=('4bb9353e6ce9b149c5f22a2c305829112dfdf87f9b74e6075a45be0e07fe0f17e869ef9be4bb5e9c53d215dd1f534b1b5a707dd981efce8c5bcae4c1d6ce18bb'
+
'e814d4aca46c2e243a2fe137b2ca102d5adfc18a5d4ab1d316ae593e60a256f8f7f699eb2d8c28b74e6f26fd17b682df927517db4819b167ab0269aa3f76894e'
+
'469f321f40b0dd6e1cc6d0791032c476449bb2ab2364d57b06d0e0309d09710be8751ded64d84e29dd6e28e96b71ef69e2bee6c71282500a9074a9d7ada8bdf0')
+
+build() {
+  cd $pkgname-$pkgver
+  go build \
+-trimpath \
+-buildmode=pie \
+   

[arch-commits] Commit in alertmanager/trunk (PKGBUILD)

2020-05-25 Thread Jelle van der Waa via arch-commits
Date: Monday, May 25, 2020 @ 14:43:29
  Author: jelle
Revision: 387521

upgpkg: alertmanager 0.20.0-3

Make alertmanager reproducible again!

Modified:
  alertmanager/trunk/PKGBUILD

--+
 PKGBUILD |   16 ++--
 1 file changed, 10 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-25 14:39:24 UTC (rev 387520)
+++ PKGBUILD2020-05-25 14:43:29 UTC (rev 387521)
@@ -2,13 +2,13 @@
 
 pkgname=alertmanager
 pkgver=0.20.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Service which handles alerts sent by client applications such as the 
Prometheus server"
 url="https://github.com/prometheus/alertmanager;
 arch=(x86_64)
 depends=(glibc)
 license=('Apache')
-makedepends=(go-pie git)
+makedepends=(go git)
 backup=('etc/alertmanager/alertmanager.yml')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/prometheus/alertmanager/archive/v${pkgver}.tar.gz
 alertmanager.service alertmanager.sysusers)
 
sha512sums=('4bb9353e6ce9b149c5f22a2c305829112dfdf87f9b74e6075a45be0e07fe0f17e869ef9be4bb5e9c53d215dd1f534b1b5a707dd981efce8c5bcae4c1d6ce18bb'
@@ -18,8 +18,10 @@
 build() {
   cd $pkgname-$pkgver
   go build \
--gcflags "all=-trimpath=$GOPATH" \
--asmflags "all=-trimpath=$GOPATH" \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
 -ldflags "-extldflags ${LDFLAGS} \
   -X github.com/prometheus/common/version.Version=$pkgver \
   -X github.com/prometheus/common/version.Revision=$pkgver \
@@ -29,8 +31,10 @@
 ./cmd/alertmanager
 
   go build \
--gcflags "all=-trimpath=$GOPATH" \
--asmflags "all=-trimpath=$GOPATH" \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
 -ldflags "-extldflags ${LDFLAGS} \
   -X github.com/prometheus/common/version.Version=$pkgver \
   -X github.com/prometheus/common/version.Revision=$pkgver \


[arch-commits] Commit in prometheus-node-exporter/repos/extra-x86_64 (8 files)

2020-05-25 Thread Jelle van der Waa via arch-commits
Date: Monday, May 25, 2020 @ 14:39:24
  Author: jelle
Revision: 387520

archrelease: copy trunk to extra-x86_64

Added:
  prometheus-node-exporter/repos/extra-x86_64/PKGBUILD
(from rev 387519, prometheus-node-exporter/trunk/PKGBUILD)
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.conf
(from rev 387519, 
prometheus-node-exporter/trunk/prometheus-node-exporter.conf)
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.service
(from rev 387519, 
prometheus-node-exporter/trunk/prometheus-node-exporter.service)
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.sysusers
(from rev 387519, 
prometheus-node-exporter/trunk/prometheus-node-exporter.sysusers)
Deleted:
  prometheus-node-exporter/repos/extra-x86_64/PKGBUILD
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.conf
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.service
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.sysusers

---+
 PKGBUILD  |  119 ++--
 prometheus-node-exporter.conf |2 
 prometheus-node-exporter.service  |   36 +-
 prometheus-node-exporter.sysusers |2 
 4 files changed, 80 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-25 14:39:14 UTC (rev 387519)
+++ PKGBUILD2020-05-25 14:39:24 UTC (rev 387520)
@@ -1,59 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=prometheus-node-exporter
-pkgver=0.18.1
-pkgrel=5
-
-pkgdesc='Exporter for machine metrics'
-url='https://github.com/prometheus/node_exporter'
-arch=('x86_64')
-license=('Apache')
-
-depends=('glibc')
-makedepends=('go-pie' 'git')
-
-backup=('etc/conf.d/prometheus-node-exporter')
-
-source=("$pkgname-$pkgver.tar.gz::https://github.com/prometheus/node_exporter/archive/v$pkgver.tar.gz;
-prometheus-node-exporter.conf
-prometheus-node-exporter.service
-prometheus-node-exporter.sysusers)
-
-sha256sums=('9ddf187c462f2681ab4516410ada0e6f0f03097db6986686795559ea71a07694'
-'ce93e2b95bfc86a8a046e2f9175408e1cbffa784fd3b65dd141fde70b5bb2585'
-'457e305760323f941d20248e2ca5817ae4a8b5586f79a2331b968bf3baa66c5b'
-'c7fd0b1793dfe7a354a28e978d3c79e7195eaf43376b9eece37e996fe0772c5c')
-
-build() {
-  cd node_exporter-$pkgver
-
-  go build \
--mod=vendor \
--gcflags "all=-trimpath=${PWD}" \
--asmflags "all=-trimpath=${PWD}" \
--ldflags "-extldflags ${LDFLAGS} \
-  -X github.com/prometheus/common/version.Version=$pkgver \
-  -X github.com/prometheus/common/version.Revision=$pkgver \
-  -X github.com/prometheus/common/version.Branch=tarball \
-  -X github.com/prometheus/common/version.BuildUser=someone@builder \
-  -X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
-.
-}
-
-check() {
-  cd node_exporter-$pkgver
-
-  make collector/fixtures/sys/.unpacked
-  go test ./...
-  ./end-to-end-test.sh
-}
-
-package () {
-  install -Dm644 prometheus-node-exporter.conf 
"$pkgdir"/etc/conf.d/prometheus-node-exporter
-  install -Dm644 prometheus-node-exporter.service 
"$pkgdir"/usr/lib/systemd/system/prometheus-node-exporter.service
-  install -Dm644 prometheus-node-exporter.sysusers 
"$pkgdir"/usr/lib/sysusers.d/prometheus-node-exporter.conf
-
-  cd node_exporter-$pkgver
-
-  install -Dm755 node_exporter "$pkgdir"/usr/bin/prometheus-node-exporter
-}

Copied: prometheus-node-exporter/repos/extra-x86_64/PKGBUILD (from rev 387519, 
prometheus-node-exporter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-25 14:39:24 UTC (rev 387520)
@@ -0,0 +1,60 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=prometheus-node-exporter
+pkgver=0.18.1
+pkgrel=6
+
+pkgdesc='Exporter for machine metrics'
+url='https://github.com/prometheus/node_exporter'
+arch=('x86_64')
+license=('Apache')
+
+depends=('glibc')
+makedepends=('go' 'git')
+
+backup=('etc/conf.d/prometheus-node-exporter')
+
+source=("$pkgname-$pkgver.tar.gz::https://github.com/prometheus/node_exporter/archive/v$pkgver.tar.gz;
+prometheus-node-exporter.conf
+prometheus-node-exporter.service
+prometheus-node-exporter.sysusers)
+
+sha256sums=('9ddf187c462f2681ab4516410ada0e6f0f03097db6986686795559ea71a07694'
+'ce93e2b95bfc86a8a046e2f9175408e1cbffa784fd3b65dd141fde70b5bb2585'
+'457e305760323f941d20248e2ca5817ae4a8b5586f79a2331b968bf3baa66c5b'
+'c7fd0b1793dfe7a354a28e978d3c79e7195eaf43376b9eece37e996fe0772c5c')
+
+build() {
+  cd node_exporter-$pkgver
+
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-extldflags ${LDFLAGS} \
+  -X 

[arch-commits] Commit in prometheus-node-exporter/trunk (PKGBUILD)

2020-05-25 Thread Jelle van der Waa via arch-commits
Date: Monday, May 25, 2020 @ 14:39:14
  Author: jelle
Revision: 387519

upgpkg: prometheus-node-exporter 0.18.1-6

Make node-exporter reproducible with trimpath

Modified:
  prometheus-node-exporter/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-25 14:35:17 UTC (rev 387518)
+++ PKGBUILD2020-05-25 14:39:14 UTC (rev 387519)
@@ -2,7 +2,7 @@
 
 pkgname=prometheus-node-exporter
 pkgver=0.18.1
-pkgrel=5
+pkgrel=6
 
 pkgdesc='Exporter for machine metrics'
 url='https://github.com/prometheus/node_exporter'
@@ -10,7 +10,7 @@
 license=('Apache')
 
 depends=('glibc')
-makedepends=('go-pie' 'git')
+makedepends=('go' 'git')
 
 backup=('etc/conf.d/prometheus-node-exporter')
 
@@ -28,9 +28,10 @@
   cd node_exporter-$pkgver
 
   go build \
--mod=vendor \
--gcflags "all=-trimpath=${PWD}" \
--asmflags "all=-trimpath=${PWD}" \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
 -ldflags "-extldflags ${LDFLAGS} \
   -X github.com/prometheus/common/version.Version=$pkgver \
   -X github.com/prometheus/common/version.Revision=$pkgver \


[arch-commits] Commit in prometheus/repos/extra-x86_64 (6 files)

2020-05-25 Thread Jelle van der Waa via arch-commits
Date: Monday, May 25, 2020 @ 14:35:17
  Author: jelle
Revision: 387518

archrelease: copy trunk to extra-x86_64

Added:
  prometheus/repos/extra-x86_64/PKGBUILD
(from rev 387517, prometheus/trunk/PKGBUILD)
  prometheus/repos/extra-x86_64/prometheus.service
(from rev 387517, prometheus/trunk/prometheus.service)
  prometheus/repos/extra-x86_64/prometheus.sysusers
(from rev 387517, prometheus/trunk/prometheus.sysusers)
Deleted:
  prometheus/repos/extra-x86_64/PKGBUILD
  prometheus/repos/extra-x86_64/prometheus.service
  prometheus/repos/extra-x86_64/prometheus.sysusers

-+
 PKGBUILD|  148 +-
 prometheus.service  |   56 +-
 prometheus.sysusers |2 
 3 files changed, 105 insertions(+), 101 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-25 14:35:04 UTC (rev 387517)
+++ PKGBUILD2020-05-25 14:35:17 UTC (rev 387518)
@@ -1,72 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=prometheus
-pkgver=2.18.1
-pkgrel=1
-
-pkgdesc='An open-source systems monitoring and alerting toolkit'
-url='https://prometheus.io'
-arch=('x86_64')
-license=('Apache')
-
-depends=('glibc')
-makedepends=('go-pie' 'git' 'bzr' 'yarn')
-
-backup=('etc/prometheus/prometheus.yml')
-
-source=("prometheus-v$pkgver.tar.gz::https://github.com/prometheus/prometheus/archive/v$pkgver.tar.gz;
-prometheus.service
-prometheus.sysusers)
-
-sha256sums=('fffb2e7f1f112b91d5ea7330cf6b5c5270374ea2c7c51beab464c10b9886a699'
-'7f0e6829300032c83912da9d89001c6d03f7f0fe20c4277294129c4ac03c83f3'
-'2747fabb4e56b808361eb7dd7acf9729ab8973d1ebe2f857dd56f6c71f71e45f')
-
-build() {
-  cd prometheus-$pkgver
-
-  LDFLAGS="-extldflags $LDFLAGS \
--X github.com/prometheus/common/version.Version=$pkgver \
--X github.com/prometheus/common/version.Revision=$pkgver \
--X github.com/prometheus/common/version.Branch=tarball \
--X github.com/prometheus/common/version.BuildUser=someone@builder \
--X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)"
-
-  make assets
-  go build \
--gcflags "all=-trimpath=$PWD" \
--asmflags "all=-trimpath=$PWD" \
--ldflags "$LDFLAGS" \
-./cmd/prometheus
-  go build \
--gcflags "all=-trimpath=$PWD" \
--asmflags "all=-trimpath=$PWD" \
--ldflags "$LDFLAGS" \
-./cmd/promtool
-}
-
-check() {
-  cd prometheus-$pkgver
-
-  go test -short ./...
-}
-
-package() {
-  install -Dm644 prometheus.service 
"$pkgdir"/usr/lib/systemd/system/prometheus.service
-  install -Dm644 prometheus.sysusers 
"$pkgdir"/usr/lib/sysusers.d/prometheus.conf
-
-  cd prometheus-$pkgver
-
-  install -Dm755 -t "$pkgdir"/usr/bin prometheus promtool
-  install -Dm640 -g210 -t "$pkgdir"/etc/prometheus 
documentation/examples/prometheus.yml
-  install -dm755 -o210 -g210 "$pkgdir"/var/lib/prometheus
-
-  # Web
-  install -dm755 "$pkgdir"/usr/share/prometheus/web/ui
-  cp -R web/ui/{static,templates} "$pkgdir"/usr/share/prometheus/web/ui/
-
-  # Examples
-  install -Dm644 -t "$pkgdir"/usr/share/doc/prometheus/examples 
documentation/examples/prometheus*.yml
-  cp -R consoles console_libraries "$pkgdir"/usr/share/doc/prometheus/examples
-
-}

Copied: prometheus/repos/extra-x86_64/PKGBUILD (from rev 387517, 
prometheus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-25 14:35:17 UTC (rev 387518)
@@ -0,0 +1,76 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=prometheus
+pkgver=2.18.1
+pkgrel=2
+
+pkgdesc='An open-source systems monitoring and alerting toolkit'
+url='https://prometheus.io'
+arch=('x86_64')
+license=('Apache')
+
+depends=('glibc')
+makedepends=('go' 'git' 'bzr' 'yarn')
+
+backup=('etc/prometheus/prometheus.yml')
+
+source=("prometheus-v$pkgver.tar.gz::https://github.com/prometheus/prometheus/archive/v$pkgver.tar.gz;
+prometheus.service
+prometheus.sysusers)
+
+sha256sums=('fffb2e7f1f112b91d5ea7330cf6b5c5270374ea2c7c51beab464c10b9886a699'
+'7f0e6829300032c83912da9d89001c6d03f7f0fe20c4277294129c4ac03c83f3'
+'2747fabb4e56b808361eb7dd7acf9729ab8973d1ebe2f857dd56f6c71f71e45f')
+
+build() {
+  cd prometheus-$pkgver
+
+  LDFLAGS="-extldflags $LDFLAGS \
+-X github.com/prometheus/common/version.Version=$pkgver \
+-X github.com/prometheus/common/version.Revision=$pkgver \
+-X github.com/prometheus/common/version.Branch=tarball \
+-X github.com/prometheus/common/version.BuildUser=someone@builder \
+-X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)"
+
+  make assets
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "$LDFLAGS" \
+./cmd/prometheus
+  go build \
+-trimpath \
+-buildmode=pie 

[arch-commits] Commit in prometheus/trunk (PKGBUILD)

2020-05-25 Thread Jelle van der Waa via arch-commits
Date: Monday, May 25, 2020 @ 14:35:04
  Author: jelle
Revision: 387517

upgpkg: prometheus 2.18.1-2

Make prometheus reproducible again, by applying trimpath

Modified:
  prometheus/trunk/PKGBUILD

--+
 PKGBUILD |   16 ++--
 1 file changed, 10 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-25 11:58:21 UTC (rev 387516)
+++ PKGBUILD2020-05-25 14:35:04 UTC (rev 387517)
@@ -2,7 +2,7 @@
 
 pkgname=prometheus
 pkgver=2.18.1
-pkgrel=1
+pkgrel=2
 
 pkgdesc='An open-source systems monitoring and alerting toolkit'
 url='https://prometheus.io'
@@ -10,7 +10,7 @@
 license=('Apache')
 
 depends=('glibc')
-makedepends=('go-pie' 'git' 'bzr' 'yarn')
+makedepends=('go' 'git' 'bzr' 'yarn')
 
 backup=('etc/prometheus/prometheus.yml')
 
@@ -34,13 +34,17 @@
 
   make assets
   go build \
--gcflags "all=-trimpath=$PWD" \
--asmflags "all=-trimpath=$PWD" \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
 -ldflags "$LDFLAGS" \
 ./cmd/prometheus
   go build \
--gcflags "all=-trimpath=$PWD" \
--asmflags "all=-trimpath=$PWD" \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
 -ldflags "$LDFLAGS" \
 ./cmd/promtool
 }


[arch-commits] Commit in openssl/repos (3 files)

2020-05-24 Thread Jelle van der Waa via arch-commits
Date: Sunday, May 24, 2020 @ 19:31:20
  Author: jelle
Revision: 387507

archrelease: copy trunk to community-x86_64

Added:
  openssl/repos/community-x86_64/
  openssl/repos/community-x86_64/PKGBUILD
(from rev 387506, openssl/trunk/PKGBUILD)
  openssl/repos/community-x86_64/ca-dir.patch
(from rev 387506, openssl/trunk/ca-dir.patch)

--+
 PKGBUILD |   57 +
 ca-dir.patch |   31 +++
 2 files changed, 88 insertions(+)

Copied: openssl/repos/community-x86_64/PKGBUILD (from rev 387506, 
openssl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-05-24 19:31:20 UTC (rev 387507)
@@ -0,0 +1,57 @@
+# Maintainer: Pierre Schmitz 
+
+pkgname=openssl
+_ver=1.1.1g
+# use a pacman compatible version scheme
+pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
+pkgrel=2
+pkgdesc='The Open Source toolkit for Secure Sockets Layer and Transport Layer 
Security'
+arch=('x86_64')
+url='https://www.openssl.org'
+license=('custom:BSD')
+depends=('perl')
+optdepends=('ca-certificates')
+backup=('etc/ssl/openssl.cnf')
+source=("https://www.openssl.org/source/${pkgname}-${_ver}.tar.gz"{,.asc}
+'ca-dir.patch')
+sha256sums=('ddb04774f1e32f0c49751e21b67216ac87852ceb056b75209af2443400636d46'
+'SKIP'
+'0938c8d68110768db4f350a7ec641070686904f2fe7ba630ac94399d7dc8cc5e')
+validpgpkeys=('8657ABB260F056B1E5190839D9C4D26D0E604491'
+  '7953AC1FBC3DC8B3B292393ED5E9E43F7DF9EE8C')
+
+prepare() {
+   cd "$srcdir/$pkgname-$_ver"
+
+   # set ca dir to /etc/ssl by default
+   patch -p0 -i "$srcdir/ca-dir.patch"
+}
+
+build() {
+   cd "$srcdir/$pkgname-$_ver"
+
+   # mark stack as non-executable: http://bugs.archlinux.org/task/12434
+   ./Configure --prefix=/usr --openssldir=/etc/ssl --libdir=lib \
+   shared no-ssl3-method enable-ec_nistp_64_gcc_128 linux-x86_64 \
+   "-Wa,--noexecstack ${CPPFLAGS} ${CFLAGS} ${LDFLAGS}"
+
+   make depend
+   make
+}
+
+check() {
+   cd "$srcdir/$pkgname-$_ver"
+   # the test fails due to missing write permissions in /etc/ssl
+   # revert this patch for make test
+   patch -p0 -R -i "$srcdir/ca-dir.patch"
+   make test
+   patch -p0 -i "$srcdir/ca-dir.patch"
+   # re-run make to re-generate CA.pl from th patched .in file.
+   make apps/CA.pl
+}
+
+package() {
+   cd "$srcdir/$pkgname-$_ver"
+   make DESTDIR=$pkgdir MANDIR=/usr/share/man MANSUFFIX=ssl install_sw 
install_ssldirs install_man_docs
+   install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: openssl/repos/community-x86_64/ca-dir.patch (from rev 387506, 
openssl/trunk/ca-dir.patch)
===
--- community-x86_64/ca-dir.patch   (rev 0)
+++ community-x86_64/ca-dir.patch   2020-05-24 19:31:20 UTC (rev 387507)
@@ -0,0 +1,31 @@
+--- apps/CA.pl.in  2018-09-11 14:48:19.0 +0200
 apps/CA.pl.in  2018-09-11 16:16:32.125629435 +0200
+@@ -33,7 +33,7 @@
+ my $PKCS12 = "$openssl pkcs12";
+ 
+ # default openssl.cnf file has setup as per the following
+-my $CATOP = "./demoCA";
++my $CATOP = "/etc/ssl";
+ my $CAKEY = "cakey.pem";
+ my $CAREQ = "careq.pem";
+ my $CACERT = "cacert.pem";
+--- apps/openssl.cnf   2018-09-11 14:48:20.0 +0200
 apps/openssl.cnf   2018-09-11 16:16:32.125629435 +0200
+@@ -43,7 +43,7 @@
+ 
+ [ CA_default ]
+ 
+-dir   = ./demoCA  # Where everything is kept
++dir   = /etc/ssl  # Where everything is kept
+ certs = $dir/certs# Where the issued certs are kept
+ crl_dir   = $dir/crl  # Where the issued crl are kept
+ database  = $dir/index.txt# database index file.
+@@ -327,7 +327,7 @@
+ [ tsa_config1 ]
+ 
+ # These are used by the TSA reply generation only.
+-dir   = ./demoCA  # TSA root directory
++dir   = /etc/ssl  # TSA root directory
+ serial= $dir/tsaserial# The current serial number 
(mandatory)
+ crypto_device = builtin   # OpenSSL engine to use for signing
+ signer_cert   = $dir/tsacert.pem  # The TSA signing certificate


[arch-commits] Commit in openssl/repos (community-x86_64)

2020-05-24 Thread Jelle van der Waa via arch-commits
Date: Sunday, May 24, 2020 @ 19:31:37
  Author: jelle
Revision: 387508

wrong release

Deleted:
  openssl/repos/community-x86_64/


[arch-commits] Commit in openssl/repos (3 files)

2020-05-24 Thread Jelle van der Waa via arch-commits
Date: Sunday, May 24, 2020 @ 19:31:56
  Author: jelle
Revision: 387509

archrelease: copy trunk to testing-x86_64

Added:
  openssl/repos/testing-x86_64/
  openssl/repos/testing-x86_64/PKGBUILD
(from rev 387508, openssl/trunk/PKGBUILD)
  openssl/repos/testing-x86_64/ca-dir.patch
(from rev 387508, openssl/trunk/ca-dir.patch)

--+
 PKGBUILD |   57 +
 ca-dir.patch |   31 +++
 2 files changed, 88 insertions(+)

Copied: openssl/repos/testing-x86_64/PKGBUILD (from rev 387508, 
openssl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-24 19:31:56 UTC (rev 387509)
@@ -0,0 +1,57 @@
+# Maintainer: Pierre Schmitz 
+
+pkgname=openssl
+_ver=1.1.1g
+# use a pacman compatible version scheme
+pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
+pkgrel=2
+pkgdesc='The Open Source toolkit for Secure Sockets Layer and Transport Layer 
Security'
+arch=('x86_64')
+url='https://www.openssl.org'
+license=('custom:BSD')
+depends=('perl')
+optdepends=('ca-certificates')
+backup=('etc/ssl/openssl.cnf')
+source=("https://www.openssl.org/source/${pkgname}-${_ver}.tar.gz"{,.asc}
+'ca-dir.patch')
+sha256sums=('ddb04774f1e32f0c49751e21b67216ac87852ceb056b75209af2443400636d46'
+'SKIP'
+'0938c8d68110768db4f350a7ec641070686904f2fe7ba630ac94399d7dc8cc5e')
+validpgpkeys=('8657ABB260F056B1E5190839D9C4D26D0E604491'
+  '7953AC1FBC3DC8B3B292393ED5E9E43F7DF9EE8C')
+
+prepare() {
+   cd "$srcdir/$pkgname-$_ver"
+
+   # set ca dir to /etc/ssl by default
+   patch -p0 -i "$srcdir/ca-dir.patch"
+}
+
+build() {
+   cd "$srcdir/$pkgname-$_ver"
+
+   # mark stack as non-executable: http://bugs.archlinux.org/task/12434
+   ./Configure --prefix=/usr --openssldir=/etc/ssl --libdir=lib \
+   shared no-ssl3-method enable-ec_nistp_64_gcc_128 linux-x86_64 \
+   "-Wa,--noexecstack ${CPPFLAGS} ${CFLAGS} ${LDFLAGS}"
+
+   make depend
+   make
+}
+
+check() {
+   cd "$srcdir/$pkgname-$_ver"
+   # the test fails due to missing write permissions in /etc/ssl
+   # revert this patch for make test
+   patch -p0 -R -i "$srcdir/ca-dir.patch"
+   make test
+   patch -p0 -i "$srcdir/ca-dir.patch"
+   # re-run make to re-generate CA.pl from th patched .in file.
+   make apps/CA.pl
+}
+
+package() {
+   cd "$srcdir/$pkgname-$_ver"
+   make DESTDIR=$pkgdir MANDIR=/usr/share/man MANSUFFIX=ssl install_sw 
install_ssldirs install_man_docs
+   install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: openssl/repos/testing-x86_64/ca-dir.patch (from rev 387508, 
openssl/trunk/ca-dir.patch)
===
--- testing-x86_64/ca-dir.patch (rev 0)
+++ testing-x86_64/ca-dir.patch 2020-05-24 19:31:56 UTC (rev 387509)
@@ -0,0 +1,31 @@
+--- apps/CA.pl.in  2018-09-11 14:48:19.0 +0200
 apps/CA.pl.in  2018-09-11 16:16:32.125629435 +0200
+@@ -33,7 +33,7 @@
+ my $PKCS12 = "$openssl pkcs12";
+ 
+ # default openssl.cnf file has setup as per the following
+-my $CATOP = "./demoCA";
++my $CATOP = "/etc/ssl";
+ my $CAKEY = "cakey.pem";
+ my $CAREQ = "careq.pem";
+ my $CACERT = "cacert.pem";
+--- apps/openssl.cnf   2018-09-11 14:48:20.0 +0200
 apps/openssl.cnf   2018-09-11 16:16:32.125629435 +0200
+@@ -43,7 +43,7 @@
+ 
+ [ CA_default ]
+ 
+-dir   = ./demoCA  # Where everything is kept
++dir   = /etc/ssl  # Where everything is kept
+ certs = $dir/certs# Where the issued certs are kept
+ crl_dir   = $dir/crl  # Where the issued crl are kept
+ database  = $dir/index.txt# database index file.
+@@ -327,7 +327,7 @@
+ [ tsa_config1 ]
+ 
+ # These are used by the TSA reply generation only.
+-dir   = ./demoCA  # TSA root directory
++dir   = /etc/ssl  # TSA root directory
+ serial= $dir/tsaserial# The current serial number 
(mandatory)
+ crypto_device = builtin   # OpenSSL engine to use for signing
+ signer_cert   = $dir/tsacert.pem  # The TSA signing certificate


[arch-commits] Commit in openssl/trunk (PKGBUILD)

2020-05-24 Thread Jelle van der Waa via arch-commits
Date: Sunday, May 24, 2020 @ 19:30:56
  Author: jelle
Revision: 387506

Fix CA.pl not being re-generated in check()

Thanks to reproducible builds a bug was uncovered when building without check()
which showed a difference in "/etc/ssl/misc/CA.pl" as check() reverses the patch
and runs make check which re-generates CA.pl without our change.

Modified:
  openssl/trunk/PKGBUILD

--+
 PKGBUILD |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-24 18:18:39 UTC (rev 387505)
+++ PKGBUILD2020-05-24 19:30:56 UTC (rev 387506)
@@ -4,7 +4,7 @@
 _ver=1.1.1g
 # use a pacman compatible version scheme
 pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
-pkgrel=1
+pkgrel=2
 pkgdesc='The Open Source toolkit for Secure Sockets Layer and Transport Layer 
Security'
 arch=('x86_64')
 url='https://www.openssl.org'
@@ -46,6 +46,8 @@
patch -p0 -R -i "$srcdir/ca-dir.patch"
make test
patch -p0 -i "$srcdir/ca-dir.patch"
+   # re-run make to re-generate CA.pl from th patched .in file.
+   make apps/CA.pl
 }
 
 package() {


[arch-commits] Commit in grafana-zabbix/repos/community-any (PKGBUILD PKGBUILD)

2020-05-22 Thread Jelle van der Waa via arch-commits
Date: Friday, May 22, 2020 @ 11:26:18
  Author: jelle
Revision: 631543

archrelease: copy trunk to community-any

Added:
  grafana-zabbix/repos/community-any/PKGBUILD
(from rev 631542, grafana-zabbix/trunk/PKGBUILD)
Deleted:
  grafana-zabbix/repos/community-any/PKGBUILD

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-22 11:25:58 UTC (rev 631542)
+++ PKGBUILD2020-05-22 11:26:18 UTC (rev 631543)
@@ -1,31 +0,0 @@
-# Maintainer: Florian Pritz 
-pkgname=grafana-zabbix
-pkgver=3.11.0
-pkgrel=1
-pkgdesc="Zabbix plugin for Grafana dashboard"
-arch=('any')
-url="https://github.com/alexanderzobnin/grafana-zabbix;
-license=('APACHE')
-depends=('grafana')
-makedepends=(yarn python)
-source=("https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz;)
-sha256sums=('79934cb011f8f36f09fece1a2f075aa213f1bdc6dc6b74b60b236bce883a01c7')
-
-build() {
-   cd "$pkgname-$pkgver"
-   yarn install --pure-lockfile
-   yarn upgrade node-sass
-   yarn build
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   yarn test
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   install -dm755 
"$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app"
-   cp -r . "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app"
-   rm -rf 
"$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app/node_modules"
-}

Copied: grafana-zabbix/repos/community-any/PKGBUILD (from rev 631542, 
grafana-zabbix/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-22 11:26:18 UTC (rev 631543)
@@ -0,0 +1,31 @@
+# Maintainer: Florian Pritz 
+pkgname=grafana-zabbix
+pkgver=3.12.0
+pkgrel=1
+pkgdesc="Zabbix plugin for Grafana dashboard"
+arch=('any')
+url="https://github.com/alexanderzobnin/grafana-zabbix;
+license=('APACHE')
+depends=('grafana')
+makedepends=(yarn python2) # node-sass depends on node-gyp 3.8.0 which is 
still python2 https://github.com/sass/node-sass/issues/2877
+source=("https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz;)
+sha256sums=('89c8c717d6da6267457d381b78c0b166e87e261406dd82af7fe6dd6295f59ae4')
+
+build() {
+   cd "$pkgname-$pkgver"
+   yarn install --pure-lockfile
+   yarn upgrade node-sass
+   yarn build
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   yarn test
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   install -dm755 
"$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app"
+   cp -r . "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app"
+   rm -rf 
"$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app/node_modules"
+}


[arch-commits] Commit in grafana-zabbix/trunk (PKGBUILD)

2020-05-22 Thread Jelle van der Waa via arch-commits
Date: Friday, May 22, 2020 @ 11:25:58
  Author: jelle
Revision: 631542

upgpkg: grafana-zabbix 3.12.0-1

Modified:
  grafana-zabbix/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-22 10:50:08 UTC (rev 631541)
+++ PKGBUILD2020-05-22 11:25:58 UTC (rev 631542)
@@ -1,6 +1,6 @@
 # Maintainer: Florian Pritz 
 pkgname=grafana-zabbix
-pkgver=3.11.0
+pkgver=3.12.0
 pkgrel=1
 pkgdesc="Zabbix plugin for Grafana dashboard"
 arch=('any')
@@ -7,9 +7,9 @@
 url="https://github.com/alexanderzobnin/grafana-zabbix;
 license=('APACHE')
 depends=('grafana')
-makedepends=(yarn python)
+makedepends=(yarn python2) # node-sass depends on node-gyp 3.8.0 which is 
still python2 https://github.com/sass/node-sass/issues/2877
 
source=("https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz;)
-sha256sums=('79934cb011f8f36f09fece1a2f075aa213f1bdc6dc6b74b60b236bce883a01c7')
+sha256sums=('89c8c717d6da6267457d381b78c0b166e87e261406dd82af7fe6dd6295f59ae4')
 
 build() {
cd "$pkgname-$pkgver"


[arch-commits] Commit in loki/repos (community-x86_64)

2020-05-20 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 20, 2020 @ 19:30:53
  Author: jelle
Revision: 387039

remove wrong repo state

Deleted:
  loki/repos/community-x86_64/


[arch-commits] Commit in loki/repos/extra-x86_64 (14 files)

2020-05-20 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 20, 2020 @ 19:29:50
  Author: jelle
Revision: 387036

archrelease: copy trunk to extra-x86_64

Added:
  loki/repos/extra-x86_64/PKGBUILD
(from rev 387035, loki/trunk/PKGBUILD)
  loki/repos/extra-x86_64/loki.service
(from rev 387035, loki/trunk/loki.service)
  loki/repos/extra-x86_64/loki.sysusers
(from rev 387035, loki/trunk/loki.sysusers)
  loki/repos/extra-x86_64/loki.tmpfiles
(from rev 387035, loki/trunk/loki.tmpfiles)
  loki/repos/extra-x86_64/promtail.service
(from rev 387035, loki/trunk/promtail.service)
  loki/repos/extra-x86_64/promtail.sysusers
(from rev 387035, loki/trunk/promtail.sysusers)
  loki/repos/extra-x86_64/promtail.tmpfiles
(from rev 387035, loki/trunk/promtail.tmpfiles)
Deleted:
  loki/repos/extra-x86_64/PKGBUILD
  loki/repos/extra-x86_64/loki.service
  loki/repos/extra-x86_64/loki.sysusers
  loki/repos/extra-x86_64/loki.tmpfiles
  loki/repos/extra-x86_64/promtail.service
  loki/repos/extra-x86_64/promtail.sysusers
  loki/repos/extra-x86_64/promtail.tmpfiles

---+
 PKGBUILD  |  146 ++--
 loki.service  |   54 +--
 loki.sysusers |2 
 loki.tmpfiles |2 
 promtail.service  |   52 +-
 promtail.sysusers |4 -
 promtail.tmpfiles |2 
 7 files changed, 133 insertions(+), 129 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 19:27:46 UTC (rev 387035)
+++ PKGBUILD2020-05-20 19:29:50 UTC (rev 387036)
@@ -1,71 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=loki
-pkgver=1.4.1
-pkgrel=1
-pkgdesc='like Prometheus, but for logs'
-url='https://github.com/grafana/loki'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc')
-makedepends=('go-pie')
-backup=('etc/loki/loki.yaml' 'etc/loki/promtail.yaml')
-source=($pkgname-$pkgver.tar.gz::https://github.com/grafana/loki/archive/v$pkgver.tar.gz
-promtail.sysusers promtail.service promtail.tmpfiles
-loki.sysusers loki.service loki.tmpfiles)
-sha512sums=('adcb95b044b2856d39d6febd0bc2f3945045c6f3097f92d4be107e91e2cd29f01a509553094642de5a05bd905410a4ad0ced184e5f2a2399ce715b06f2e978ed'
-
'2b6c44b18ea3c9f955a7450222180d0b20b5fc551d0b7e5d0d8949e40adc847c4166829146260f87a75732cc5473eab0347dd56fc2125517698bac0652738c74'
-
'a3427ddecada33b90658635962c4ea36ced6b9d0e1686ce898884980c2ce1a82be2ddcfa6b42736392653f48fa561408633d6016b77e2b513029ba0cec977727'
-
'598042c40673a7914c5a1eeccfb78f832379a61f4360212c5d86f667343cf2fc78e98d9025f9717ea64f3e16e0a28f08cd7709706d811656722019f6167dd788'
-
'f00b3cb64b71d3ca5a422a2bdff1f81a3e2707c4f73bcb27e24338eabff039b96125c847aaae43c9b22ccc47f89585118c1d0e0b29c4eb7b6f9260c68f8a8324'
-
'3c40d70366ee0ac3d11c87a818d82dfb4e64143e905187b287f7716ee009640bab6676b8a348e526458a00e4cff35fbd8e9d81bdaa6db38a5d673294f09e6638'
-
'de40d1e6752edbf8c21317ce1ee10f98dfc869e569c07092c613f7144e261e9438683a145a2e0e37e2a9fc758c5c2f02e1d0ac1c60347e98b147e4a550ec6040')
-
-build() {
-  cd loki-$pkgver
-
-  LDFLAGS="-extldflags $LDFLAGS"
-
-  go build \
--mod=vendor \
--trimpath \
--ldflags "$LDFLAGS" \
-./cmd/loki
-
-  go build \
--mod=vendor \
--trimpath \
--ldflags "$LDFLAGS" \
-./cmd/promtail
-
-  go build \
--mod=vendor \
--trimpath \
--ldflags "$LDFLAGS" \
-./cmd/logcli
-}
-
-check() {
-  cd loki-$pkgver
-
-  go test -v $(go list  ./... | grep -v "distributor")
-}
-
-package() {
-  cd loki-$pkgver
-
-  install -Dm755 -t "$pkgdir"/usr/bin loki promtail logcli
-
-  install -Dm644 cmd/promtail/promtail-local-config.yaml 
$pkgdir/etc/loki/promtail.yaml
-  install -Dm644 cmd/loki/loki-local-config.yaml $pkgdir/etc/loki/loki.yaml
-
-  # Promtail
-  install -Dm644 ${srcdir}/promtail.sysusers 
"$pkgdir/usr/lib/sysusers.d/promtail.conf"
-  install -Dm644 ${srcdir}/promtail.tmpfiles 
"$pkgdir/usr/lib/tmpfiles.d/promtail.conf"
-  install -Dm644 ${srcdir}/promtail.service 
"$pkgdir/usr/lib/systemd/system/promtail.service"
-
-  # Loki
-  install -Dm644 ${srcdir}/loki.sysusers "$pkgdir/usr/lib/sysusers.d/loki.conf"
-  install -Dm644 ${srcdir}/loki.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/loki.conf"
-  install -Dm644 ${srcdir}/loki.service 
"$pkgdir/usr/lib/systemd/system/loki.service"
-}

Copied: loki/repos/extra-x86_64/PKGBUILD (from rev 387035, loki/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 19:29:50 UTC (rev 387036)
@@ -0,0 +1,75 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=loki
+pkgver=1.5.0
+pkgrel=1
+pkgdesc='like Prometheus, but for logs'
+url='https://github.com/grafana/loki'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc')
+makedepends=('go' 'systemd')
+backup=('etc/loki/loki.yaml' 'etc/loki/promtail.yaml')

[arch-commits] Commit in loki/trunk (PKGBUILD)

2020-05-20 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 20, 2020 @ 19:27:29
  Author: jelle
Revision: 387034

Upstream update to 1.5.0 and apply golang changes

Modified:
  loki/trunk/PKGBUILD

--+
 PKGBUILD |   26 +++---
 1 file changed, 15 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 16:43:12 UTC (rev 387033)
+++ PKGBUILD2020-05-20 19:27:29 UTC (rev 387034)
@@ -1,7 +1,7 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=loki
-pkgver=1.4.1
+pkgver=1.5.0
 pkgrel=1
 pkgdesc='like Prometheus, but for logs'
 url='https://github.com/grafana/loki'
@@ -8,12 +8,12 @@
 arch=('x86_64')
 license=('Apache')
 depends=('glibc')
-makedepends=('go-pie')
+makedepends=('go' 'systemd')
 backup=('etc/loki/loki.yaml' 'etc/loki/promtail.yaml')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/grafana/loki/archive/v$pkgver.tar.gz
 promtail.sysusers promtail.service promtail.tmpfiles
 loki.sysusers loki.service loki.tmpfiles)
-sha512sums=('adcb95b044b2856d39d6febd0bc2f3945045c6f3097f92d4be107e91e2cd29f01a509553094642de5a05bd905410a4ad0ced184e5f2a2399ce715b06f2e978ed'
+sha512sums=('31d61ba9cb47afeb0971fe35347683cf96e3b7a4da44b640b0065e64268109c2a1e9011f94d3fcf7912e98f8b079a001cd892a06e3f8d11796f23c8acfc93fff'
 
'2b6c44b18ea3c9f955a7450222180d0b20b5fc551d0b7e5d0d8949e40adc847c4166829146260f87a75732cc5473eab0347dd56fc2125517698bac0652738c74'
 
'a3427ddecada33b90658635962c4ea36ced6b9d0e1686ce898884980c2ce1a82be2ddcfa6b42736392653f48fa561408633d6016b77e2b513029ba0cec977727'
 
'598042c40673a7914c5a1eeccfb78f832379a61f4360212c5d86f667343cf2fc78e98d9025f9717ea64f3e16e0a28f08cd7709706d811656722019f6167dd788'
@@ -24,24 +24,28 @@
 build() {
   cd loki-$pkgver
 
-  LDFLAGS="-extldflags $LDFLAGS"
-
   go build \
--mod=vendor \
 -trimpath \
--ldflags "$LDFLAGS" \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-extldflags ${LDFLAGS}" \
 ./cmd/loki
 
   go build \
--mod=vendor \
 -trimpath \
--ldflags "$LDFLAGS" \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-extldflags ${LDFLAGS}" \
 ./cmd/promtail
 
   go build \
--mod=vendor \
 -trimpath \
--ldflags "$LDFLAGS" \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-extldflags ${LDFLAGS}" \
 ./cmd/logcli
 }
 


[arch-commits] Commit in loki/repos (8 files)

2020-05-20 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 20, 2020 @ 19:27:46
  Author: jelle
Revision: 387035

archrelease: copy trunk to community-x86_64

Added:
  loki/repos/community-x86_64/
  loki/repos/community-x86_64/PKGBUILD
(from rev 387034, loki/trunk/PKGBUILD)
  loki/repos/community-x86_64/loki.service
(from rev 387034, loki/trunk/loki.service)
  loki/repos/community-x86_64/loki.sysusers
(from rev 387034, loki/trunk/loki.sysusers)
  loki/repos/community-x86_64/loki.tmpfiles
(from rev 387034, loki/trunk/loki.tmpfiles)
  loki/repos/community-x86_64/promtail.service
(from rev 387034, loki/trunk/promtail.service)
  loki/repos/community-x86_64/promtail.sysusers
(from rev 387034, loki/trunk/promtail.sysusers)
  loki/repos/community-x86_64/promtail.tmpfiles
(from rev 387034, loki/trunk/promtail.tmpfiles)

---+
 PKGBUILD  |   75 
 loki.service  |   27 ++
 loki.sysusers |1 
 loki.tmpfiles |1 
 promtail.service  |   26 ++
 promtail.sysusers |2 +
 promtail.tmpfiles |1 
 7 files changed, 133 insertions(+)

Copied: loki/repos/community-x86_64/PKGBUILD (from rev 387034, 
loki/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-05-20 19:27:46 UTC (rev 387035)
@@ -0,0 +1,75 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=loki
+pkgver=1.5.0
+pkgrel=1
+pkgdesc='like Prometheus, but for logs'
+url='https://github.com/grafana/loki'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc')
+makedepends=('go' 'systemd')
+backup=('etc/loki/loki.yaml' 'etc/loki/promtail.yaml')
+source=($pkgname-$pkgver.tar.gz::https://github.com/grafana/loki/archive/v$pkgver.tar.gz
+promtail.sysusers promtail.service promtail.tmpfiles
+loki.sysusers loki.service loki.tmpfiles)
+sha512sums=('31d61ba9cb47afeb0971fe35347683cf96e3b7a4da44b640b0065e64268109c2a1e9011f94d3fcf7912e98f8b079a001cd892a06e3f8d11796f23c8acfc93fff'
+
'2b6c44b18ea3c9f955a7450222180d0b20b5fc551d0b7e5d0d8949e40adc847c4166829146260f87a75732cc5473eab0347dd56fc2125517698bac0652738c74'
+
'a3427ddecada33b90658635962c4ea36ced6b9d0e1686ce898884980c2ce1a82be2ddcfa6b42736392653f48fa561408633d6016b77e2b513029ba0cec977727'
+
'598042c40673a7914c5a1eeccfb78f832379a61f4360212c5d86f667343cf2fc78e98d9025f9717ea64f3e16e0a28f08cd7709706d811656722019f6167dd788'
+
'f00b3cb64b71d3ca5a422a2bdff1f81a3e2707c4f73bcb27e24338eabff039b96125c847aaae43c9b22ccc47f89585118c1d0e0b29c4eb7b6f9260c68f8a8324'
+
'3c40d70366ee0ac3d11c87a818d82dfb4e64143e905187b287f7716ee009640bab6676b8a348e526458a00e4cff35fbd8e9d81bdaa6db38a5d673294f09e6638'
+
'de40d1e6752edbf8c21317ce1ee10f98dfc869e569c07092c613f7144e261e9438683a145a2e0e37e2a9fc758c5c2f02e1d0ac1c60347e98b147e4a550ec6040')
+
+build() {
+  cd loki-$pkgver
+
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-extldflags ${LDFLAGS}" \
+./cmd/loki
+
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-extldflags ${LDFLAGS}" \
+./cmd/promtail
+
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-extldflags ${LDFLAGS}" \
+./cmd/logcli
+}
+
+check() {
+  cd loki-$pkgver
+
+  go test -v $(go list  ./... | grep -v "distributor")
+}
+
+package() {
+  cd loki-$pkgver
+
+  install -Dm755 -t "$pkgdir"/usr/bin loki promtail logcli
+
+  install -Dm644 cmd/promtail/promtail-local-config.yaml 
$pkgdir/etc/loki/promtail.yaml
+  install -Dm644 cmd/loki/loki-local-config.yaml $pkgdir/etc/loki/loki.yaml
+
+  # Promtail
+  install -Dm644 ${srcdir}/promtail.sysusers 
"$pkgdir/usr/lib/sysusers.d/promtail.conf"
+  install -Dm644 ${srcdir}/promtail.tmpfiles 
"$pkgdir/usr/lib/tmpfiles.d/promtail.conf"
+  install -Dm644 ${srcdir}/promtail.service 
"$pkgdir/usr/lib/systemd/system/promtail.service"
+
+  # Loki
+  install -Dm644 ${srcdir}/loki.sysusers "$pkgdir/usr/lib/sysusers.d/loki.conf"
+  install -Dm644 ${srcdir}/loki.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/loki.conf"
+  install -Dm644 ${srcdir}/loki.service 
"$pkgdir/usr/lib/systemd/system/loki.service"
+}

Copied: loki/repos/community-x86_64/loki.service (from rev 387034, 
loki/trunk/loki.service)
===
--- community-x86_64/loki.service   (rev 0)
+++ community-x86_64/loki.service   2020-05-20 19:27:46 UTC (rev 387035)
@@ -0,0 +1,27 @@
+[Unit]
+Description=Loki is a horizontally-scalable, highly-available, multi-tenant 
log aggregation system
+After=network.target
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/loki -boltdb.dir /var/lib/loki/index -local.chunk-directory 
/var/lib/loki/chunks -config.file 

[arch-commits] Commit in grafana/repos/community-x86_64 (10 files)

2020-05-18 Thread Jelle van der Waa via arch-commits
Date: Monday, May 18, 2020 @ 19:03:33
  Author: jelle
Revision: 629635

archrelease: copy trunk to community-x86_64

Added:
  grafana/repos/community-x86_64/PKGBUILD
(from rev 629634, grafana/trunk/PKGBUILD)
  grafana/repos/community-x86_64/grafana.install
(from rev 629634, grafana/trunk/grafana.install)
  grafana/repos/community-x86_64/grafana.service
(from rev 629634, grafana/trunk/grafana.service)
  grafana/repos/community-x86_64/grafana.sysusers
(from rev 629634, grafana/trunk/grafana.sysusers)
  grafana/repos/community-x86_64/grafana.tmpfiles
(from rev 629634, grafana/trunk/grafana.tmpfiles)
Deleted:
  grafana/repos/community-x86_64/PKGBUILD
  grafana/repos/community-x86_64/grafana.install
  grafana/repos/community-x86_64/grafana.service
  grafana/repos/community-x86_64/grafana.sysusers
  grafana/repos/community-x86_64/grafana.tmpfiles

--+
 PKGBUILD |  167 ++---
 grafana.install  |   44 ++---
 grafana.service  |   46 +++---
 grafana.sysusers |2 
 grafana.tmpfiles |4 -
 5 files changed, 132 insertions(+), 131 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-18 19:03:16 UTC (rev 629634)
+++ PKGBUILD2020-05-18 19:03:33 UTC (rev 629635)
@@ -1,83 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Carsten Feuls 
-# Contributor: Gilles Hamel 
-
-pkgname=grafana
-pkgver=6.7.3
-pkgrel=1
-pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
-url='https://grafana.com/'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc' 'freetype2' 'fontconfig' 'gsfonts')
-makedepends=('git' 'go-pie' 'npm' 'grunt-cli' 'python' 'nodejs-lts-erbium')
-backup=('etc/grafana.ini')
-source=("git+https://github.com/grafana/grafana.git?signed#tag=v$pkgver;
-'grafana.service'
-'grafana.sysusers'
-'grafana.tmpfiles'
-   )
-install=$pkgname.install
-sha512sums=('SKIP'
-
'02a597225ee6ba8da9491a94daa33fe681846e2140e02fbb461ff7d39acd4cf99694dc03fb5f2c5ecfd180b09c44a41fe639b121499b4222b67ada57dc60d850'
-
'38b46d953837a7afa5a654dfeef163b210d56cad57d937018531d00cd63b5341d6f9cd777299bdc7a994d0cb7df09b8157aad0f166e76ad47564e1ad6d5441d4'
-
'c1724bfc7cbd6a406f17acb661efca0f1e57e2c30cc1841f4cb7ccfc420adc40cc61cb1c023d00444827b2c40e9caa4c2fefbfd503419848c74a0b455b2375ab')
-validpgpkeys=("D45B6DC53E9057C46487E25CE17E9ABACEFA59EB"
-  "43511C6A68C9A1DE451EF51890AA4FDC4D63CBEA"
-  "AA70DF6234FBF96AB9101D09E6D5D452E87026E9"  # 
https://github.com/aknuds1.gpg
-  "622E7A764E0C94351E061C57F8D44788D50B48DF"  # 
https://github.com/xlson.gpg
-  "E9EBB044CD6A98482208FE569A774B897EAAB194") # 
https://github.com/torkelo.gpg
-
-prepare() {
-  cd $pkgname
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  echo "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  # set arch linux paths
-  sed -ri 's,^(\s*data\s*=).*,\1 /var/lib/grafana,' conf/defaults.ini
-  sed -ri 's,^(\s*plugins\s*=).*,\1 /var/lib/grafana/plugins,' 
conf/defaults.ini
-  sed -ri 's,^(\s*provisioning\s*=).*,\1 /var/lib/grafana/conf/provisioning,' 
conf/defaults.ini
-  sed -ri 's,^(\s*logs\s*=).*,\1 /var/log/grafana,' conf/defaults.ini
-}
-
-build() {
-  echo 'GOPATH setup'
-  export GOPATH="$srcdir/gopath"
-  export PATH+=":$GOPATH/bin"
-  mkdir -p "$GOPATH/src/github.com/grafana/"
-  ln -fsrT "$srcdir/grafana/" "$GOPATH/src/github.com/grafana/grafana"
-  cd "$GOPATH/src/github.com/grafana/grafana"
-
-  echo 'building the backend'
-  go run build.go setup
-  go run build.go build
-
-  echo 'building the frontend'
-  export NPM_CONFIG_PREFIX="$srcdir/npm"
-  export PATH+=":$NPM_CONFIG_PREFIX/bin"
-  npm install -g yarn
-  yarn install --pure-lockfile --no-progress
-  npm run build release
-}
-
-package() {
-  install -Dm644 grafana.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/grafana.conf"
-  install -Dm644 grafana.sysusers "$pkgdir/usr/lib/sysusers.d/grafana.conf"
-  install -Dm644 grafana.service 
"$pkgdir/usr/lib/systemd/system/grafana.service"
-  cd $pkgname
-  install -Dsm755 bin/linux-amd64/grafana-server 
"$pkgdir/usr/bin/grafana-server"
-  install -Dsm755 bin/linux-amd64/grafana-cli "$pkgdir/usr/bin/grafana-cli"
-  install -Dm640 -o207 -g207 conf/sample.ini "$pkgdir/etc/$pkgname.ini"
-  install -Dm644 conf/defaults.ini 
"$pkgdir/usr/share/$pkgname/conf/defaults.ini"
-  install -dm755 "$pkgdir/usr/share/grafana/"
-  for i in vendor public tools; do
-cp -r "$i" "$pkgdir/usr/share/grafana/$i"
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: grafana/repos/community-x86_64/PKGBUILD (from rev 629634, 
grafana/trunk/PKGBUILD)

[arch-commits] Commit in grafana/trunk (PKGBUILD)

2020-05-18 Thread Jelle van der Waa via arch-commits
Date: Monday, May 18, 2020 @ 19:03:16
  Author: jelle
Revision: 629634

upgpkg: grafana 7.0.0-1

Upstream update to 7.0

Modified:
  grafana/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-18 18:50:47 UTC (rev 629633)
+++ PKGBUILD2020-05-18 19:03:16 UTC (rev 629634)
@@ -3,7 +3,7 @@
 # Contributor: Gilles Hamel 
 
 pkgname=grafana
-pkgver=6.7.3
+pkgver=7.0.0
 pkgrel=1
 pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
 url='https://grafana.com/'
@@ -26,7 +26,8 @@
   "43511C6A68C9A1DE451EF51890AA4FDC4D63CBEA"
   "AA70DF6234FBF96AB9101D09E6D5D452E87026E9"  # 
https://github.com/aknuds1.gpg
   "622E7A764E0C94351E061C57F8D44788D50B48DF"  # 
https://github.com/xlson.gpg
-  "E9EBB044CD6A98482208FE569A774B897EAAB194") # 
https://github.com/torkelo.gpg
+  "E9EBB044CD6A98482208FE569A774B897EAAB194"  # 
https://github.com/torkelo.gpg
+  "2E240E94A7ADC77A1DFE1085EBFE0FB04612DD4A") # 
https://github.com/marefr.gpg
 
 prepare() {
   cd $pkgname
@@ -75,7 +76,7 @@
   install -Dm640 -o207 -g207 conf/sample.ini "$pkgdir/etc/$pkgname.ini"
   install -Dm644 conf/defaults.ini 
"$pkgdir/usr/share/$pkgname/conf/defaults.ini"
   install -dm755 "$pkgdir/usr/share/grafana/"
-  for i in vendor public tools; do
+  for i in public tools; do
 cp -r "$i" "$pkgdir/usr/share/grafana/$i"
   done
 }


[arch-commits] Commit in oxipng/trunk (PKGBUILD)

2020-05-16 Thread Jelle van der Waa via arch-commits
Date: Saturday, May 16, 2020 @ 12:15:25
  Author: jelle
Revision: 628174

Upstream update.

Modified:
  oxipng/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-16 11:45:08 UTC (rev 628173)
+++ PKGBUILD2020-05-16 12:15:25 UTC (rev 628174)
@@ -2,8 +2,8 @@
 # Contributor: Nicolas F. 
 
 pkgname=oxipng
-pkgver=2.3.0
-pkgrel=2
+pkgver=3.0.0
+pkgrel=1
 pkgdesc="A lossless PNG compression optimiser"
 arch=(x86_64)
 url="https://github.com/shssoichiro/oxipng;
@@ -11,7 +11,7 @@
 depends=('gcc-libs')
 makedepends=('rust')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/shssoichiro/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('870c6ab802ca4df6d12a5570b6883e7e3b190bbe6e2fa91282af9b294c8e68b4')
+sha256sums=('fd7584299375a630322b152878756297b0083492b7e4b9b17ae9978662e8c36a')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in oxipng/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-16 Thread Jelle van der Waa via arch-commits
Date: Saturday, May 16, 2020 @ 12:15:40
  Author: jelle
Revision: 628175

archrelease: copy trunk to community-x86_64

Added:
  oxipng/repos/community-x86_64/PKGBUILD
(from rev 628174, oxipng/trunk/PKGBUILD)
Deleted:
  oxipng/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-16 12:15:25 UTC (rev 628174)
+++ PKGBUILD2020-05-16 12:15:40 UTC (rev 628175)
@@ -1,27 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Nicolas F. 
-
-pkgname=oxipng
-pkgver=2.3.0
-pkgrel=2
-pkgdesc="A lossless PNG compression optimiser"
-arch=(x86_64)
-url="https://github.com/shssoichiro/oxipng;
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('rust')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/shssoichiro/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('870c6ab802ca4df6d12a5570b6883e7e3b190bbe6e2fa91282af9b294c8e68b4')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  cargo build --release --locked
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -Dm755 target/release/oxipng "$pkgdir/usr/bin/oxipng"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: oxipng/repos/community-x86_64/PKGBUILD (from rev 628174, 
oxipng/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-16 12:15:40 UTC (rev 628175)
@@ -0,0 +1,27 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Nicolas F. 
+
+pkgname=oxipng
+pkgver=3.0.0
+pkgrel=1
+pkgdesc="A lossless PNG compression optimiser"
+arch=(x86_64)
+url="https://github.com/shssoichiro/oxipng;
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('rust')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/shssoichiro/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha256sums=('fd7584299375a630322b152878756297b0083492b7e4b9b17ae9978662e8c36a')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  cargo build --release --locked
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -Dm755 target/release/oxipng "$pkgdir/usr/bin/oxipng"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


[arch-commits] Commit in dmapi/repos/extra-x86_64 (4 files)

2020-05-15 Thread Jelle van der Waa via arch-commits
Date: Friday, May 15, 2020 @ 18:26:04
  Author: jelle
Revision: 383711

archrelease: copy trunk to extra-x86_64

Added:
  dmapi/repos/extra-x86_64/PKGBUILD
(from rev 383710, dmapi/trunk/PKGBUILD)
  dmapi/repos/extra-x86_64/dmapi-headers.patch
(from rev 383710, dmapi/trunk/dmapi-headers.patch)
Deleted:
  dmapi/repos/extra-x86_64/PKGBUILD
  dmapi/repos/extra-x86_64/dmapi-headers.patch

-+
 PKGBUILD|   90 +-
 dmapi-headers.patch |   32 -
 2 files changed, 61 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-15 18:25:41 UTC (rev 383710)
+++ PKGBUILD2020-05-15 18:26:04 UTC (rev 383711)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=dmapi
-pkgver=2.2.12
-pkgrel=3
-pkgdesc="Data migration API"
-arch=('x86_64')
-url="http://oss.sgi.com/projects/xfs/;
-license=('GPL')
-depends=('glibc')
-makedepends=('xfsprogs')
-provides=('xfsdmapi')
-conflicts=('xfsdmapi')
-replaces=('xfsdmapi')
-source=("ftp://oss.sgi.com/projects/xfs/cmd_tars/$pkgname-$pkgver.tar.gz; 
dmapi-headers.patch)
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i ../dmapi-headers.patch # Fix build (Gentoo)
-}
-
-build() {
-  cd $srcdir/dmapi-$pkgver
-  [ "$CARCH" = "x86_64" ] && export CFLAGS="$CLFAGS -fPIC"
-  export INSTALL_USER=root
-  export INSTALL_GROUP=root
-  export DEBUG=-DNDEBUG
-  autoconf
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/dmapi-$pkgver
-  make DIST_ROOT=$pkgdir install install-dev
-  # the static lib
-  install -D -m644 libdm/.libs/libdm.a $pkgdir/usr/lib/libdm.a
-  # and the header file, please
-  install -D -m644 include/dmapi.h $pkgdir/usr/include/xfs/dmapi.h
-  # kill libexec dir
-  rm -rf $pkgdir/usr/libexec
-}
-md5sums=('cd825d4e141c16011367e0a0dd98c9c5'
- '6360c428bb89a1585669c3cf7a632208')

Copied: dmapi/repos/extra-x86_64/PKGBUILD (from rev 383710, 
dmapi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-15 18:26:04 UTC (rev 383711)
@@ -0,0 +1,45 @@
+# Maintainer: Tobias Powalowski 
+
+pkgname=dmapi
+pkgver=2.2.12
+pkgrel=4
+pkgdesc="Data migration API"
+arch=('x86_64')
+url="http://oss.sgi.com/projects/xfs/;
+license=('GPL')
+depends=('glibc')
+makedepends=('xfsprogs')
+provides=('xfsdmapi')
+conflicts=('xfsdmapi')
+replaces=('xfsdmapi')
+#source=("ftp://oss.sgi.com/projects/xfs/previous/cmd_tars/$pkgname-$pkgver.tar.gz;
 dmapi-headers.patch)
+source=(https://sources.archlinux.org/other/packages/dmapi/dmapi-$pkgver.tar.gz
 dmapi-headers.patch)
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../dmapi-headers.patch # Fix build (Gentoo)
+}
+
+build() {
+  cd dmapi-$pkgver
+  [ "$CARCH" = "x86_64" ] && export CFLAGS="$CLFAGS -fPIC"
+  export INSTALL_USER=root
+  export INSTALL_GROUP=root
+  export DEBUG=-DNDEBUG
+  autoconf
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd dmapi-$pkgver
+  make DIST_ROOT="$pkgdir" install install-dev
+  # the static lib
+  install -D -m644 libdm/.libs/libdm.a "$pkgdir"/usr/lib/libdm.a
+  # and the header file, please
+  install -D -m644 include/dmapi.h "$pkgdir"/usr/include/xfs/dmapi.h
+  # kill libexec dir
+  rm -rf "$pkgdir"/usr/libexec
+}
+md5sums=('cd825d4e141c16011367e0a0dd98c9c5'
+ '6360c428bb89a1585669c3cf7a632208')

Deleted: dmapi-headers.patch
===
--- dmapi-headers.patch 2020-05-15 18:25:41 UTC (rev 383710)
+++ dmapi-headers.patch 2020-05-15 18:26:04 UTC (rev 383711)
@@ -1,16 +0,0 @@
-https://bugs.gentoo.org/560212
-
-pull in headers for funcs that are used
-
 a/libdm/dm_handle2path.c
-+++ b/libdm/dm_handle2path.c
-@@ -20,6 +20,9 @@
- #include 
- #include "dmapi_lib.h"
- 
-+#include  /* open */
-+#include  /* close */
-+#include  /* strlen */
- #include 
- #include 
- #ifdef linux

Copied: dmapi/repos/extra-x86_64/dmapi-headers.patch (from rev 383710, 
dmapi/trunk/dmapi-headers.patch)
===
--- dmapi-headers.patch (rev 0)
+++ dmapi-headers.patch 2020-05-15 18:26:04 UTC (rev 383711)
@@ -0,0 +1,16 @@
+https://bugs.gentoo.org/560212
+
+pull in headers for funcs that are used
+
+--- a/libdm/dm_handle2path.c
 b/libdm/dm_handle2path.c
+@@ -20,6 +20,9 @@
+ #include 
+ #include "dmapi_lib.h"
+ 
++#include  /* open */
++#include  /* close */
++#include  /* strlen */
+ #include 
+ #include 
+ #ifdef linux


[arch-commits] Commit in dmapi/trunk (PKGBUILD)

2020-05-15 Thread Jelle van der Waa via arch-commits
Date: Friday, May 15, 2020 @ 18:25:41
  Author: jelle
Revision: 383710

Reproducible builds rebuild

Modified:
  dmapi/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-15 18:19:02 UTC (rev 383709)
+++ PKGBUILD2020-05-15 18:25:41 UTC (rev 383710)
@@ -2,7 +2,7 @@
 
 pkgname=dmapi
 pkgver=2.2.12
-pkgrel=3
+pkgrel=4
 pkgdesc="Data migration API"
 arch=('x86_64')
 url="http://oss.sgi.com/projects/xfs/;


[arch-commits] Commit in a2ps/trunk (PKGBUILD adhere-source-date-epoch.patch)

2020-05-15 Thread Jelle van der Waa via arch-commits
Date: Friday, May 15, 2020 @ 15:22:31
  Author: jelle
Revision: 383695

Make a2ps reproducible by adhering to SOURCE_DATE_EPOCH.

Added:
  a2ps/trunk/adhere-source-date-epoch.patch
Modified:
  a2ps/trunk/PKGBUILD

+
 PKGBUILD   |9 ++---
 adhere-source-date-epoch.patch |   22 ++
 2 files changed, 28 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-15 14:12:08 UTC (rev 383694)
+++ PKGBUILD2020-05-15 15:22:31 UTC (rev 383695)
@@ -2,7 +2,7 @@
 
 pkgname=a2ps
 pkgver=4.14
-pkgrel=9
+pkgrel=10
 pkgdesc="An Any to PostScript filter"
 arch=('x86_64')
 url="https://www.gnu.org/software/a2ps/;
@@ -17,7 +17,8 @@
a2ps-4.13-security.patch
CVE-2014-0466.patch
CVE-2015-8107.patch
-   a2ps-texinfo67.patch)
+   a2ps-texinfo67.patch
+adhere-source-date-epoch.patch)
 sha1sums=('365abbbe4b7128bf70dad16d06e23c5701874852'
   'SKIP'
   '8783952d3410d8d59ed953e1db45e2ef1a0b8f65'
@@ -29,7 +30,8 @@
   '93a4db17edfaa99e3498c7d952c560dab49dbe42'
   '0a04f4c145d3aef8f3c7537eb00cb4040c7209c9'
   '08c51a9361eaefe76af61b70392fa5ac1c4356c7'
-  'f54b6b319a5c134e0ee9be8dc9c8f80a65dc98d6')
+  'f54b6b319a5c134e0ee9be8dc9c8f80a65dc98d6'
+  'd53042daa93db3969fbb5564c4f93ddc91ef6334')
 validpgpkeys=('6EB39358D8328FE3CDC903A8CB6FA340E7075A54')
 
 prepare() {
@@ -48,6 +50,7 @@
   patch -p1 -i "${srcdir}/CVE-2014-0466.patch"
   patch -p1 -i "${srcdir}/CVE-2015-8107.patch"
   patch -p1 -i "${srcdir}/a2ps-texinfo67.patch"
+  patch -p1 -i "${srcdir}/adhere-source-date-epoch.patch"
 }
 
 build() {

Added: adhere-source-date-epoch.patch
===
--- adhere-source-date-epoch.patch  (rev 0)
+++ adhere-source-date-epoch.patch  2020-05-15 15:22:31 UTC (rev 383695)
@@ -0,0 +1,22 @@
+diff -aur a2ps-4.14.old/etc/Makefile.am a2ps-4.14/etc/Makefile.am
+--- a2ps-4.14.old/etc/Makefile.am  2020-05-15 16:22:46.236954254 +0200
 a2ps-4.14/etc/Makefile.am  2020-05-15 16:58:42.382348094 +0200
+@@ -44,5 +44,5 @@
+ 
+ # Building a time stamp to know the version.
+ README: README.in Makefile
+-  sed "s!@date@!`date`!g;s!@version@!$(VERSION)!g"\
++  sed "s!@date@!$(shell date --utc --date="${SOURCE_DATE_EPOCH:-$(date 
+%s)}")!g;s!@version@!$(VERSION)!g"\
+   $(srcdir)/README.in > README
+diff -aur a2ps-4.14.old/etc/Makefile.in a2ps-4.14/etc/Makefile.in
+--- a2ps-4.14.old/etc/Makefile.in  2020-05-15 16:22:46.236954254 +0200
 a2ps-4.14/etc/Makefile.in  2020-05-15 16:59:00.132720058 +0200
+@@ -486,7 +486,7 @@
+ 
+ # Building a time stamp to know the version.
+ README: README.in Makefile
+-  sed "s!@date@!`date`!g;s!@version@!$(VERSION)!g"\
++  sed "s!@date@!$(shell date --utc --date="${SOURCE_DATE_EPOCH:-$(date 
+%s)}")!g;s!@version@!$(VERSION)!g"\
+   $(srcdir)/README.in > README
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.


[arch-commits] Commit in a2ps/repos/extra-x86_64 (23 files)

2020-05-15 Thread Jelle van der Waa via arch-commits
Date: Friday, May 15, 2020 @ 15:22:48
  Author: jelle
Revision: 383696

archrelease: copy trunk to extra-x86_64

Added:
  a2ps/repos/extra-x86_64/CVE-2014-0466.patch
(from rev 383695, a2ps/trunk/CVE-2014-0466.patch)
  a2ps/repos/extra-x86_64/CVE-2015-8107.patch
(from rev 383695, a2ps/trunk/CVE-2015-8107.patch)
  a2ps/repos/extra-x86_64/PKGBUILD
(from rev 383695, a2ps/trunk/PKGBUILD)
  a2ps/repos/extra-x86_64/a2ps-4.13-manpage-chmod.patch
(from rev 383695, a2ps/trunk/a2ps-4.13-manpage-chmod.patch)
  a2ps/repos/extra-x86_64/a2ps-4.13-security.patch
(from rev 383695, a2ps/trunk/a2ps-4.13-security.patch)
  a2ps/repos/extra-x86_64/a2ps-4.13c-emacs.patch
(from rev 383695, a2ps/trunk/a2ps-4.13c-emacs.patch)
  a2ps/repos/extra-x86_64/a2ps-4.13c-fnmatch-replacement.patch
(from rev 383695, a2ps/trunk/a2ps-4.13c-fnmatch-replacement.patch)
  a2ps/repos/extra-x86_64/a2ps-4.14-check-mempcpy.patch
(from rev 383695, a2ps/trunk/a2ps-4.14-check-mempcpy.patch)
  a2ps/repos/extra-x86_64/a2ps-4.14-fix-stpcpy-proto.patch
(from rev 383695, a2ps/trunk/a2ps-4.14-fix-stpcpy-proto.patch)
  a2ps/repos/extra-x86_64/a2ps-texinfo5.patch
(from rev 383695, a2ps/trunk/a2ps-texinfo5.patch)
  a2ps/repos/extra-x86_64/a2ps-texinfo67.patch
(from rev 383695, a2ps/trunk/a2ps-texinfo67.patch)
  a2ps/repos/extra-x86_64/adhere-source-date-epoch.patch
(from rev 383695, a2ps/trunk/adhere-source-date-epoch.patch)
Deleted:
  a2ps/repos/extra-x86_64/CVE-2014-0466.patch
  a2ps/repos/extra-x86_64/CVE-2015-8107.patch
  a2ps/repos/extra-x86_64/PKGBUILD
  a2ps/repos/extra-x86_64/a2ps-4.13-manpage-chmod.patch
  a2ps/repos/extra-x86_64/a2ps-4.13-security.patch
  a2ps/repos/extra-x86_64/a2ps-4.13c-emacs.patch
  a2ps/repos/extra-x86_64/a2ps-4.13c-fnmatch-replacement.patch
  a2ps/repos/extra-x86_64/a2ps-4.14-check-mempcpy.patch
  a2ps/repos/extra-x86_64/a2ps-4.14-fix-stpcpy-proto.patch
  a2ps/repos/extra-x86_64/a2ps-texinfo5.patch
  a2ps/repos/extra-x86_64/a2ps-texinfo67.patch

--+
 CVE-2014-0466.patch  |   50 ++--
 CVE-2015-8107.patch  |  134 -
 PKGBUILD |  133 
 a2ps-4.13-manpage-chmod.patch|   24 ++---
 a2ps-4.13-security.patch |  130 
 a2ps-4.13c-emacs.patch   |   20 ++--
 a2ps-4.13c-fnmatch-replacement.patch |   86 ++---
 a2ps-4.14-check-mempcpy.patch|   24 ++---
 a2ps-4.14-fix-stpcpy-proto.patch |   34 
 a2ps-texinfo5.patch  |   92 +++---
 a2ps-texinfo67.patch |   76 +-
 adhere-source-date-epoch.patch   |   22 +
 12 files changed, 425 insertions(+), 400 deletions(-)

Deleted: CVE-2014-0466.patch
===
--- CVE-2014-0466.patch 2020-05-15 15:22:31 UTC (rev 383695)
+++ CVE-2014-0466.patch 2020-05-15 15:22:48 UTC (rev 383696)
@@ -1,25 +0,0 @@
-From 5ea5ff8bc0094ca1eda0dd0e011d860e994c0a88 Mon Sep 17 00:00:00 2001
-From: David Seifert 
-Date: Sun, 17 Sep 2017 23:26:32 +0200
-Subject: Add fix for CVE-2014-0466
-

- contrib/fixps.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/contrib/fixps.in b/contrib/fixps.in
-index 45eeafc..bd6244e 100644
 a/contrib/fixps.in
-+++ b/contrib/fixps.in
-@@ -393,7 +393,7 @@ if test $task != check; then
-   eval "$command" ;;
-   gs)
- $verbose "$program: making a full rewrite of the file ($gs)." >&2
--  $gs -q -dNOPAUSE -dBATCH -sDEVICE=pswrite -sOutputFile=- -c save pop -f 
$file ;;
-+$gs -q -dSAFER -dNOPAUSE -dBATCH -sDEVICE=pswrite -sOutputFile=- -c 
save pop -f $file ;;
- esac
-   )
- fi
--- 
-cgit v1.2.1
-

Copied: a2ps/repos/extra-x86_64/CVE-2014-0466.patch (from rev 383695, 
a2ps/trunk/CVE-2014-0466.patch)
===
--- CVE-2014-0466.patch (rev 0)
+++ CVE-2014-0466.patch 2020-05-15 15:22:48 UTC (rev 383696)
@@ -0,0 +1,25 @@
+From 5ea5ff8bc0094ca1eda0dd0e011d860e994c0a88 Mon Sep 17 00:00:00 2001
+From: David Seifert 
+Date: Sun, 17 Sep 2017 23:26:32 +0200
+Subject: Add fix for CVE-2014-0466
+
+---
+ contrib/fixps.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/contrib/fixps.in b/contrib/fixps.in
+index 45eeafc..bd6244e 100644
+--- a/contrib/fixps.in
 b/contrib/fixps.in
+@@ -393,7 +393,7 @@ if test $task != check; then
+   eval "$command" ;;
+   gs)
+ $verbose "$program: making a full rewrite of the file ($gs)." >&2
+-  $gs -q -dNOPAUSE -dBATCH -sDEVICE=pswrite -sOutputFile=- -c save pop -f 
$file ;;
++$gs -q -dSAFER -dNOPAUSE -dBATCH -sDEVICE=pswrite -sOutputFile=- -c 
save pop -f $file ;;
+ esac
+   )
+ fi
+-- 
+cgit v1.2.1
+

Deleted: CVE-2015-8107.patch

[arch-commits] Commit in gtkspell/repos/extra-x86_64 (4 files)

2020-05-15 Thread Jelle van der Waa via arch-commits
Date: Friday, May 15, 2020 @ 14:12:08
  Author: jelle
Revision: 383694

archrelease: copy trunk to extra-x86_64

Added:
  gtkspell/repos/extra-x86_64/PKGBUILD
(from rev 383693, gtkspell/trunk/PKGBUILD)
  gtkspell/repos/extra-x86_64/enchant-2.diff
(from rev 383693, gtkspell/trunk/enchant-2.diff)
Deleted:
  gtkspell/repos/extra-x86_64/PKGBUILD
  gtkspell/repos/extra-x86_64/enchant-2.diff

+
 PKGBUILD   |   81 +++
 enchant-2.diff |   60 
 2 files changed, 70 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-15 14:11:52 UTC (rev 383693)
+++ PKGBUILD2020-05-15 14:12:08 UTC (rev 383694)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Roman Kyrylych 
-# Contributer: Ben 
-
-pkgname=gtkspell
-pkgver=2.0.16
-pkgrel=7
-url="http://gtkspell.sourceforge.net/;
-pkgdesc="Provides word-processor-style highlighting and replacement of 
misspelled words in a GtkTextView widget"
-arch=('x86_64')
-license=('GPL')
-depends=('gtk2' 'enchant')
-makedepends=('intltool' 'gtk-doc')
-validpgpkeys=('7C70E4D9927061BD840E82DB6BA6197569B23319') #Daniel Atallah 

-source=(https://downloads.sourceforge.net/sourceforge/gtkspell/${pkgname}-${pkgver}.tar.gz{,.asc}
-enchant-2.diff)
-sha256sums=('8fc7dc560167b2cb7193e76aca625a152dc19b0ebf49816b78539cbb90d80d02'
-'SKIP'
-'52e693590161bc285ec46a2beece802f47c7ede65ec0b72ffa224ab0db176bad')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # enchant 2.2
-  patch -Np1 -i ../enchant-2.diff
-
-  gtkdocize
-  autoreconf -fvi
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: gtkspell/repos/extra-x86_64/PKGBUILD (from rev 383693, 
gtkspell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-15 14:12:08 UTC (rev 383694)
@@ -0,0 +1,40 @@
+# Maintainer: Roman Kyrylych 
+# Contributer: Ben 
+
+pkgname=gtkspell
+pkgver=2.0.16
+pkgrel=8
+url="http://gtkspell.sourceforge.net/;
+pkgdesc="Provides word-processor-style highlighting and replacement of 
misspelled words in a GtkTextView widget"
+arch=('x86_64')
+license=('GPL')
+depends=('gtk2' 'enchant')
+makedepends=('intltool' 'gtk-doc')
+validpgpkeys=('7C70E4D9927061BD840E82DB6BA6197569B23319') #Daniel Atallah 

+source=(https://downloads.sourceforge.net/sourceforge/gtkspell/${pkgname}-${pkgver}.tar.gz{,.asc}
+enchant-2.diff)
+sha256sums=('8fc7dc560167b2cb7193e76aca625a152dc19b0ebf49816b78539cbb90d80d02'
+'SKIP'
+'52e693590161bc285ec46a2beece802f47c7ede65ec0b72ffa224ab0db176bad')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # enchant 2.2
+  patch -Np1 -i ../enchant-2.diff
+
+  gtkdocize
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Deleted: enchant-2.diff
===
--- enchant-2.diff  2020-05-15 14:11:52 UTC (rev 383693)
+++ enchant-2.diff  2020-05-15 14:12:08 UTC (rev 383694)
@@ -1,30 +0,0 @@
-diff -u -r gtkspell-2.0.16/configure.ac gtkspell-2.0.16-enchant2/configure.ac
 gtkspell-2.0.16/configure.ac   2009-10-23 04:52:31.0 +0200
-+++ gtkspell-2.0.16-enchant2/configure.ac  2018-01-18 12:42:06.366410232 
+0100
-@@ -12,12 +12,12 @@
- AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
- AC_CONFIG_HEADERS([config.h])
- 
--SPELLER_LIB=-lenchant
-+SPELLER_LIB=-lenchant-2
-   
- AC_SUBST(SPELLER_LIB)
- GTKSPELL_PACKAGES=gtk+-2.0
- AC_SUBST(GTKSPELL_PACKAGES)
--PKG_CHECK_MODULES(GTKSPELL, $GTKSPELL_PACKAGES enchant >= 0.4.0 )
-+PKG_CHECK_MODULES(GTKSPELL, $GTKSPELL_PACKAGES enchant-2 >= 2.2.0 )
- AC_SUBST(GTKSPELL_CFLAGS)
- AC_SUBST(GTKSPELL_LIBS)
- 
-diff -u -r gtkspell-2.0.16/gtkspell/gtkspell.c 
gtkspell-2.0.16-enchant2/gtkspell/gtkspell.c
 gtkspell-2.0.16/gtkspell/gtkspell.c2009-10-09 21:01:47.0 
+0200
-+++ gtkspell-2.0.16-enchant2/gtkspell/gtkspell.c   2018-01-18 
12:41:37.146338802 +0100
-@@ -277,7 +277,7 @@
-   get_word_extents_from_mark(spell->buffer, , , 
spell->mark_click);
-   word = gtk_text_buffer_get_text(spell->buffer, , , FALSE);
-   
--  enchant_dict_add_to_pwl( spell->speller, word, strlen(word));
-+  enchant_dict_add( spell->speller, word, strlen(word));
- 
-   gtkspell_recheck_all(spell);
- 

Copied: gtkspell/repos/extra-x86_64/enchant-2.diff (from rev 383693, 
gtkspell/trunk/enchant-2.diff)

[arch-commits] Commit in gtkspell/trunk (PKGBUILD)

2020-05-15 Thread Jelle van der Waa via arch-commits
Date: Friday, May 15, 2020 @ 14:11:52
  Author: jelle
Revision: 383693

Rebuild for new BUILDINFO format

Modified:
  gtkspell/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-15 13:52:13 UTC (rev 383692)
+++ PKGBUILD2020-05-15 14:11:52 UTC (rev 383693)
@@ -3,7 +3,7 @@
 
 pkgname=gtkspell
 pkgver=2.0.16
-pkgrel=7
+pkgrel=8
 url="http://gtkspell.sourceforge.net/;
 pkgdesc="Provides word-processor-style highlighting and replacement of 
misspelled words in a GtkTextView widget"
 arch=('x86_64')


[arch-commits] Commit in archiso/repos/extra-any (PKGBUILD PKGBUILD)

2020-05-15 Thread Jelle van der Waa via arch-commits
Date: Friday, May 15, 2020 @ 12:19:12
  Author: jelle
Revision: 383553

archrelease: copy trunk to extra-any

Added:
  archiso/repos/extra-any/PKGBUILD
(from rev 383552, archiso/trunk/PKGBUILD)
Deleted:
  archiso/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   42 +-
 1 file changed, 21 insertions(+), 21 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-15 12:19:03 UTC (rev 383552)
+++ PKGBUILD2020-05-15 12:19:12 UTC (rev 383553)
@@ -1,21 +0,0 @@
-# Maintainer: Gerardo Exequiel Pozzi 
-# Maintainer: Pierre Schmitz 
-
-pkgname=archiso
-pkgver=43
-pkgrel=1
-pkgdesc='Tools for creating Arch Linux live and install iso images'
-arch=('any')
-license=('GPL')
-url='https://projects.archlinux.org/archiso.git/'
-depends=('make' 'arch-install-scripts' 'squashfs-tools' 'libisoburn' 
'dosfstools' 'lynx')
-source=("https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-
"https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
-sha256sums=('4d2274cc5f1c48883941c3e37dfe7882632f9c455f97635aa079c1812571cb13'
-'SKIP')
-validpgpkeys=('0F334D8698881578F65D2AE55ED514A45BD5C938'  # Gerardo Exequiel 
Pozzi
-  '4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC') # Pierre Schmitz
-
-package() {
-make -C "${pkgname}-${pkgver}" DESTDIR="${pkgdir}" install
-}

Copied: archiso/repos/extra-any/PKGBUILD (from rev 383552, 
archiso/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-15 12:19:12 UTC (rev 383553)
@@ -0,0 +1,21 @@
+# Maintainer: Gerardo Exequiel Pozzi 
+# Maintainer: Pierre Schmitz 
+
+pkgname=archiso
+pkgver=43
+pkgrel=2
+pkgdesc='Tools for creating Arch Linux live and install iso images'
+arch=('any')
+license=('GPL')
+url='https://projects.archlinux.org/archiso.git/'
+depends=('make' 'arch-install-scripts' 'squashfs-tools' 'libisoburn' 
'dosfstools' 'lynx')
+source=("https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+
"https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
+sha256sums=('4d2274cc5f1c48883941c3e37dfe7882632f9c455f97635aa079c1812571cb13'
+'SKIP')
+validpgpkeys=('0F334D8698881578F65D2AE55ED514A45BD5C938'  # Gerardo Exequiel 
Pozzi
+  '4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC') # Pierre Schmitz
+
+package() {
+make -C "${pkgname}-${pkgver}" DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in archiso/trunk (PKGBUILD)

2020-05-15 Thread Jelle van der Waa via arch-commits
Date: Friday, May 15, 2020 @ 12:18:58
  Author: jelle
Revision: 383551

Rebuild for reproducible builds

Fix tar file ordering issue.

Modified:
  archiso/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-15 12:18:53 UTC (rev 383550)
+++ PKGBUILD2020-05-15 12:18:58 UTC (rev 383551)
@@ -3,7 +3,7 @@
 
 pkgname=archiso
 pkgver=43
-pkgrel=1
+pkgrel=2
 pkgdesc='Tools for creating Arch Linux live and install iso images'
 arch=('any')
 license=('GPL')


[arch-commits] Commit in pyprof2calltree/repos/community-any (PKGBUILD PKGBUILD)

2020-05-14 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 14, 2020 @ 13:12:29
  Author: jelle
Revision: 627934

archrelease: copy trunk to community-any

Added:
  pyprof2calltree/repos/community-any/PKGBUILD
(from rev 627933, pyprof2calltree/trunk/PKGBUILD)
Deleted:
  pyprof2calltree/repos/community-any/PKGBUILD

--+
 PKGBUILD |   75 +++--
 1 file changed, 29 insertions(+), 46 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-14 13:12:18 UTC (rev 627933)
+++ PKGBUILD2020-05-14 13:12:29 UTC (rev 627934)
@@ -1,46 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Florian Bruhin (The Compiler) 
-# Contributor: Brecht Machiels 
-
-pkgbase=pyprof2calltree
-pkgname=(pyprof2calltree python2-pyprof2calltree)
-pkgver=1.4.5
-pkgrel=1
-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=('9ad50a5c00881cbd8c361726b16fcb407c899c8dfe201769eddf10c3541531491f49cd5a08658b70d1e85e4c00d9a89801d600ab4f7d9906d357a0de82784f9e')
-
-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}
-}

Copied: pyprof2calltree/repos/community-any/PKGBUILD (from rev 627933, 
pyprof2calltree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-14 13:12:29 UTC (rev 627934)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+# Contributor: Florian Bruhin (The Compiler) 
+# Contributor: Brecht Machiels 
+
+pkgname=pyprof2calltree
+pkgver=1.4.5
+pkgrel=2
+pkgdesc="Help visualize profiling data from cProfile with kcachegrind"
+url="https://pypi.python.org/pypi/pyprof2calltree/;
+arch=('any')
+license=('BSD')
+depends=('python-setuptools')
+source=("https://pypi.io/packages/source/p/pyprof2calltree/pyprof2calltree-$pkgver.tar.gz;)
+sha512sums=('9ad50a5c00881cbd8c361726b16fcb407c899c8dfe201769eddf10c3541531491f49cd5a08658b70d1e85e4c00d9a89801d600ab4f7d9906d357a0de82784f9e')
+
+prepare() {
+  sed -n '/# Copyright/,/# THE SOFTWARE\./p' 
pyprof2calltree-$pkgver/pyprof2calltree.py > LICENSE
+}
+
+build() {
+  cd "$srcdir"/pyprof2calltree-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd pyprof2calltree-$pkgver
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -D -m644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in pyprof2calltree/trunk (PKGBUILD)

2020-05-14 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 14, 2020 @ 13:12:18
  Author: jelle
Revision: 627933

remove unused python2 module

Modified:
  pyprof2calltree/trunk/PKGBUILD

--+
 PKGBUILD |   25 -
 1 file changed, 4 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-14 13:09:27 UTC (rev 627932)
+++ PKGBUILD2020-05-14 13:12:18 UTC (rev 627933)
@@ -2,45 +2,28 @@
 # Contributor: Florian Bruhin (The Compiler) 
 # Contributor: Brecht Machiels 
 
-pkgbase=pyprof2calltree
-pkgname=(pyprof2calltree python2-pyprof2calltree)
+pkgname=pyprof2calltree
 pkgver=1.4.5
-pkgrel=1
+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')
+depends=('python-setuptools')
 
source=("https://pypi.io/packages/source/p/pyprof2calltree/pyprof2calltree-$pkgver.tar.gz;)
 
sha512sums=('9ad50a5c00881cbd8c361726b16fcb407c899c8dfe201769eddf10c3541531491f49cd5a08658b70d1e85e4c00d9a89801d600ab4f7d9906d357a0de82784f9e')
 
 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')
-
+package() {
   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}
-}


[arch-commits] Commit in python-sentinels/trunk (PKGBUILD)

2020-05-14 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 14, 2020 @ 13:09:20
  Author: jelle
Revision: 627931

Remove unused python2 module

Modified:
  python-sentinels/trunk/PKGBUILD

--+
 PKGBUILD |   32 ++--
 1 file changed, 6 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-14 13:04:44 UTC (rev 627930)
+++ PKGBUILD2020-05-14 13:09:20 UTC (rev 627931)
@@ -1,50 +1,30 @@
 # Maintainer: Felix Yan 
 
-pkgbase=python-sentinels
-pkgname=(python-sentinels python2-sentinels)
+pkgname=python-sentinels
 pkgver=1.0.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Various objects to denote special meanings in python"
 url="https://github.com/vmalloc/sentinels;
 license=('BSD')
 arch=('any')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/vmalloc/sentinels/archive/$pkgver.tar.gz;)
 
sha512sums=('80f5bc13eb902f7e8cba5a227eae3c92187d4d3203493e3e507998338c726985fe3b121e352a4235d5975bf19c3643b8120c1d15756768c268406689c2fc5489')
 
-prepare() {
-  cp -a sentinels-$pkgver{,-py2}
-}
-
 build() {
   cd "$srcdir"/sentinels-$pkgver
   python setup.py build
-
-  cd "$srcdir"/sentinels-$pkgver-py2
-  python2 setup.py build
 }
 
 check() {
   cd "$srcdir"/sentinels-$pkgver
   python setup.py pytest
-
-  cd "$srcdir"/sentinels-$pkgver-py2
-  python2 setup.py pytest
 }
 
-package_python-sentinels() {
-  depends=('python')
-
+package() {
   cd sentinels-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-
-package_python2-sentinels() {
-  depends=('python2')
-
-  cd sentinels-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}


[arch-commits] Commit in python-sentinels/repos/community-any (PKGBUILD PKGBUILD)

2020-05-14 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 14, 2020 @ 13:09:27
  Author: jelle
Revision: 627932

archrelease: copy trunk to community-any

Added:
  python-sentinels/repos/community-any/PKGBUILD
(from rev 627931, python-sentinels/trunk/PKGBUILD)
Deleted:
  python-sentinels/repos/community-any/PKGBUILD

--+
 PKGBUILD |   80 ++---
 1 file changed, 30 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-14 13:09:20 UTC (rev 627931)
+++ PKGBUILD2020-05-14 13:09:27 UTC (rev 627932)
@@ -1,50 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-sentinels
-pkgname=(python-sentinels python2-sentinels)
-pkgver=1.0.0
-pkgrel=3
-pkgdesc="Various objects to denote special meanings in python"
-url="https://github.com/vmalloc/sentinels;
-license=('BSD')
-arch=('any')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/vmalloc/sentinels/archive/$pkgver.tar.gz;)
-sha512sums=('80f5bc13eb902f7e8cba5a227eae3c92187d4d3203493e3e507998338c726985fe3b121e352a4235d5975bf19c3643b8120c1d15756768c268406689c2fc5489')
-
-prepare() {
-  cp -a sentinels-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/sentinels-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/sentinels-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/sentinels-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/sentinels-$pkgver-py2
-  python2 setup.py pytest
-}
-
-package_python-sentinels() {
-  depends=('python')
-
-  cd sentinels-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-sentinels() {
-  depends=('python2')
-
-  cd sentinels-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-sentinels/repos/community-any/PKGBUILD (from rev 627931, 
python-sentinels/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-14 13:09:27 UTC (rev 627932)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-sentinels
+pkgver=1.0.0
+pkgrel=4
+pkgdesc="Various objects to denote special meanings in python"
+url="https://github.com/vmalloc/sentinels;
+license=('BSD')
+arch=('any')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/vmalloc/sentinels/archive/$pkgver.tar.gz;)
+sha512sums=('80f5bc13eb902f7e8cba5a227eae3c92187d4d3203493e3e507998338c726985fe3b121e352a4235d5975bf19c3643b8120c1d15756768c268406689c2fc5489')
+
+build() {
+  cd "$srcdir"/sentinels-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/sentinels-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd sentinels-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-pykerberos/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-14 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 14, 2020 @ 13:04:44
  Author: jelle
Revision: 627930

archrelease: copy trunk to community-x86_64

Added:
  python-pykerberos/repos/community-x86_64/PKGBUILD
(from rev 627929, python-pykerberos/trunk/PKGBUILD)
Deleted:
  python-pykerberos/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   65 ++---
 1 file changed, 24 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-14 13:04:37 UTC (rev 627929)
+++ PKGBUILD2020-05-14 13:04:44 UTC (rev 627930)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-pykerberos
-pkgname=('python-pykerberos' 'python2-pykerberos')
-pkgver=1.2.1
-pkgrel=4
-pkgdesc="High-level interface to Kerberos"
-arch=('x86_64')
-license=('Apache')
-url="https://github.com/02strich/pykerberos;
-makedepends=('python-setuptools' 'python2-setuptools' 'krb5')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/02strich/pykerberos/archive/v$pkgver.tar.gz;)
-sha512sums=('1926a531e9aaa3ee71c3cb97f1bdf12b64478b96d9206d01b140db079cb9222a7e5f6dd39309eb6074ce4b86a4311162293537d1365c30b2d8ea0e6df0b44404')
-
-prepare() {
-  cp -a pykerberos-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pykerberos-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pykerberos-$pkgver-py2
-  python2 setup.py build
-}
-
-package_python-pykerberos() {
-  depends=('python' 'krb5')
-
-  cd pykerberos-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-pykerberos() {
-  depends=('python2' 'krb5')
-
-  cd pykerberos-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-pykerberos/repos/community-x86_64/PKGBUILD (from rev 627929, 
python-pykerberos/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-14 13:04:44 UTC (rev 627930)
@@ -0,0 +1,24 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-pykerberos
+pkgver=1.2.1
+pkgrel=5
+pkgdesc="High-level interface to Kerberos"
+arch=('x86_64')
+license=('Apache')
+url="https://github.com/02strich/pykerberos;
+depends=('python' 'krb5')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/02strich/pykerberos/archive/v$pkgver.tar.gz;)
+sha512sums=('1926a531e9aaa3ee71c3cb97f1bdf12b64478b96d9206d01b140db079cb9222a7e5f6dd39309eb6074ce4b86a4311162293537d1365c30b2d8ea0e6df0b44404')
+
+build() {
+  cd "$srcdir"/pykerberos-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd pykerberos-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-pykerberos/trunk (PKGBUILD)

2020-05-14 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 14, 2020 @ 13:04:37
  Author: jelle
Revision: 627929

remove unused python2 module

Modified:
  python-pykerberos/trunk/PKGBUILD

--+
 PKGBUILD |   29 ++---
 1 file changed, 6 insertions(+), 23 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-14 12:57:10 UTC (rev 627928)
+++ PKGBUILD2020-05-14 13:04:37 UTC (rev 627929)
@@ -1,41 +1,24 @@
 # Maintainer: Felix Yan 
 
-pkgbase=python-pykerberos
-pkgname=('python-pykerberos' 'python2-pykerberos')
+pkgname=python-pykerberos
 pkgver=1.2.1
-pkgrel=4
+pkgrel=5
 pkgdesc="High-level interface to Kerberos"
 arch=('x86_64')
 license=('Apache')
 url="https://github.com/02strich/pykerberos;
-makedepends=('python-setuptools' 'python2-setuptools' 'krb5')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/02strich/pykerberos/archive/v$pkgver.tar.gz;)
+depends=('python' 'krb5')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/02strich/pykerberos/archive/v$pkgver.tar.gz;)
 
sha512sums=('1926a531e9aaa3ee71c3cb97f1bdf12b64478b96d9206d01b140db079cb9222a7e5f6dd39309eb6074ce4b86a4311162293537d1365c30b2d8ea0e6df0b44404')
 
-prepare() {
-  cp -a pykerberos-$pkgver{,-py2}
-}
-
 build() {
   cd "$srcdir"/pykerberos-$pkgver
   python setup.py build
-
-  cd "$srcdir"/pykerberos-$pkgver-py2
-  python2 setup.py build
 }
 
-package_python-pykerberos() {
-  depends=('python' 'krb5')
-
+package() {
   cd pykerberos-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
   install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-
-package_python2-pykerberos() {
-  depends=('python2' 'krb5')
-
-  cd pykerberos-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}


[arch-commits] Commit in python-profilestats/repos/community-any (PKGBUILD PKGBUILD)

2020-05-14 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 14, 2020 @ 12:57:10
  Author: jelle
Revision: 627928

archrelease: copy trunk to community-any

Added:
  python-profilestats/repos/community-any/PKGBUILD
(from rev 627927, python-profilestats/trunk/PKGBUILD)
Deleted:
  python-profilestats/repos/community-any/PKGBUILD

--+
 PKGBUILD |   62 ++---
 1 file changed, 23 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-14 12:56:58 UTC (rev 627927)
+++ PKGBUILD2020-05-14 12:57:10 UTC (rev 627928)
@@ -1,39 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-profilestats
-pkgname=('python-profilestats' 'python2-profilestats')
-pkgver=2.0
-pkgrel=5
-pkgdesc="Decorator for profiling individual functions and converting profiling 
data to the kcachegrind/qcachegrind format."
-arch=('any')
-license=('BSD')
-url="https://pypi.python.org/pypi/profilestats;
-makedepends=('python-setuptools' 'python2-setuptools' 'pyprof2calltree' 
'python2-pyprof2calltree' 'git')
-source=("git+https://github.com/hannosch/profilestats.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a profilestats{,-py2}
-}
-
-build() {
-  cd "$srcdir"/profilestats
-  python setup.py build
-
-  cd "$srcdir"/profilestats-py2
-  python2 setup.py build
-}
-
-package_python-profilestats() {
-  depends=('python-setuptools' 'pyprof2calltree')
-
-  cd profilestats
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-profilestats() {
-  depends=('python2-setuptools' 'python2-pyprof2calltree')
-
-  cd profilestats-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-profilestats/repos/community-any/PKGBUILD (from rev 627927, 
python-profilestats/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-14 12:57:10 UTC (rev 627928)
@@ -0,0 +1,23 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-profilestats
+pkgver=2.0
+pkgrel=6
+pkgdesc="Decorator for profiling individual functions and converting profiling 
data to the kcachegrind/qcachegrind format."
+arch=('any')
+license=('BSD')
+url="https://pypi.python.org/pypi/profilestats;
+depends=('python-setuptools' 'pyprof2calltree')
+makedepends=('git')
+source=("git+https://github.com/hannosch/profilestats.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+build() {
+  cd "$srcdir"/profilestats
+  python setup.py build
+}
+
+package() {
+  cd profilestats
+  python setup.py install --root="$pkgdir" --optimize=1
+}


[arch-commits] Commit in python-profilestats/trunk (PKGBUILD)

2020-05-14 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 14, 2020 @ 12:56:58
  Author: jelle
Revision: 627927

remove unused python2 module

Modified:
  python-profilestats/trunk/PKGBUILD

--+
 PKGBUILD |   26 +-
 1 file changed, 5 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-14 12:30:43 UTC (rev 627926)
+++ PKGBUILD2020-05-14 12:56:58 UTC (rev 627927)
@@ -1,39 +1,23 @@
 # Maintainer: Felix Yan 
 
-pkgbase=python-profilestats
-pkgname=('python-profilestats' 'python2-profilestats')
+pkgname=python-profilestats
 pkgver=2.0
-pkgrel=5
+pkgrel=6
 pkgdesc="Decorator for profiling individual functions and converting profiling 
data to the kcachegrind/qcachegrind format."
 arch=('any')
 license=('BSD')
 url="https://pypi.python.org/pypi/profilestats;
-makedepends=('python-setuptools' 'python2-setuptools' 'pyprof2calltree' 
'python2-pyprof2calltree' 'git')
+depends=('python-setuptools' 'pyprof2calltree')
+makedepends=('git')
 source=("git+https://github.com/hannosch/profilestats.git#tag=$pkgver;)
 sha512sums=('SKIP')
 
-prepare() {
-  cp -a profilestats{,-py2}
-}
-
 build() {
   cd "$srcdir"/profilestats
   python setup.py build
-
-  cd "$srcdir"/profilestats-py2
-  python2 setup.py build
 }
 
-package_python-profilestats() {
-  depends=('python-setuptools' 'pyprof2calltree')
-
+package() {
   cd profilestats
   python setup.py install --root="$pkgdir" --optimize=1
 }
-
-package_python2-profilestats() {
-  depends=('python2-setuptools' 'python2-pyprof2calltree')
-
-  cd profilestats-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}


[arch-commits] Commit in python-mongomock/repos/community-any (PKGBUILD PKGBUILD)

2020-05-14 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 14, 2020 @ 09:29:18
  Author: jelle
Revision: 627906

archrelease: copy trunk to community-any

Added:
  python-mongomock/repos/community-any/PKGBUILD
(from rev 627905, python-mongomock/trunk/PKGBUILD)
Deleted:
  python-mongomock/repos/community-any/PKGBUILD

--+
 PKGBUILD |   85 ++---
 1 file changed, 32 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-14 09:29:11 UTC (rev 627905)
+++ PKGBUILD2020-05-14 09:29:18 UTC (rev 627906)
@@ -1,53 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-mongomock
-pkgname=(python-mongomock python2-mongomock)
-pkgver=3.19.0
-pkgrel=1
-pkgdesc="Fake pymongo stub for testing simple MongoDB-dependent code"
-url="https://github.com/mongomock/mongomock;
-license=('BSD')
-arch=('any')
-makedepends=('python-pbr' 'python2-pbr' 'python-sentinels' 'python2-sentinels' 
'python-six'
- 'python2-six')
-checkdepends=('python-nose' 'python2-nose' 'python2-mock')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/mongomock/mongomock/archive/$pkgver.tar.gz;)
-sha512sums=('1f89786d2c2db69a6f9552d3779da5e2cd68ce8dc0b526b46c1de27937b6fa080816b64828f85ad3f0337237fb882bc0644a76eb9bf1d6b6beb5f897e566cb01')
-
-export PBR_VERSION=$pkgver
-
-prepare() {
-  cp -a mongomock-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/mongomock-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/mongomock-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/mongomock-$pkgver
-  python setup.py nosetests
-
-  cd "$srcdir"/mongomock-$pkgver-py2
-  python2 setup.py nosetests
-}
-
-package_python-mongomock() {
-  depends=('python-sentinels' 'python-six')
-
-  cd mongomock-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-mongomock() {
-  depends=('python2-sentinels' 'python2-six')
-
-  cd mongomock-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-mongomock/repos/community-any/PKGBUILD (from rev 627905, 
python-mongomock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-14 09:29:18 UTC (rev 627906)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-mongomock
+pkgver=3.19.0
+pkgrel=2
+pkgdesc="Fake pymongo stub for testing simple MongoDB-dependent code"
+url="https://github.com/mongomock/mongomock;
+license=('BSD')
+arch=('any')
+depends=('python-sentinels' 'python-six')
+makedepends=('python-pbr')
+checkdepends=('python-nose')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/mongomock/mongomock/archive/$pkgver.tar.gz;)
+sha512sums=('1f89786d2c2db69a6f9552d3779da5e2cd68ce8dc0b526b46c1de27937b6fa080816b64828f85ad3f0337237fb882bc0644a76eb9bf1d6b6beb5f897e566cb01')
+
+export PBR_VERSION=$pkgver
+
+build() {
+  cd "$srcdir"/mongomock-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/mongomock-$pkgver
+  python setup.py nosetests
+}
+
+package_python-mongomock() {
+  cd mongomock-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-mongomock/trunk (PKGBUILD)

2020-05-14 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 14, 2020 @ 09:29:11
  Author: jelle
Revision: 627905

Remove unused python2 module

Modified:
  python-mongomock/trunk/PKGBUILD

--+
 PKGBUILD |   31 +--
 1 file changed, 5 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-14 09:22:58 UTC (rev 627904)
+++ PKGBUILD2020-05-14 09:29:11 UTC (rev 627905)
@@ -1,53 +1,32 @@
 # Maintainer: Felix Yan 
 
-pkgbase=python-mongomock
-pkgname=(python-mongomock python2-mongomock)
+pkgname=python-mongomock
 pkgver=3.19.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Fake pymongo stub for testing simple MongoDB-dependent code"
 url="https://github.com/mongomock/mongomock;
 license=('BSD')
 arch=('any')
-makedepends=('python-pbr' 'python2-pbr' 'python-sentinels' 'python2-sentinels' 
'python-six'
- 'python2-six')
-checkdepends=('python-nose' 'python2-nose' 'python2-mock')
+depends=('python-sentinels' 'python-six')
+makedepends=('python-pbr')
+checkdepends=('python-nose')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/mongomock/mongomock/archive/$pkgver.tar.gz;)
 
sha512sums=('1f89786d2c2db69a6f9552d3779da5e2cd68ce8dc0b526b46c1de27937b6fa080816b64828f85ad3f0337237fb882bc0644a76eb9bf1d6b6beb5f897e566cb01')
 
 export PBR_VERSION=$pkgver
 
-prepare() {
-  cp -a mongomock-$pkgver{,-py2}
-}
-
 build() {
   cd "$srcdir"/mongomock-$pkgver
   python setup.py build
-
-  cd "$srcdir"/mongomock-$pkgver-py2
-  python2 setup.py build
 }
 
 check() {
   cd "$srcdir"/mongomock-$pkgver
   python setup.py nosetests
-
-  cd "$srcdir"/mongomock-$pkgver-py2
-  python2 setup.py nosetests
 }
 
 package_python-mongomock() {
-  depends=('python-sentinels' 'python-six')
-
   cd mongomock-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-
-package_python2-mongomock() {
-  depends=('python2-sentinels' 'python2-six')
-
-  cd mongomock-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}


[arch-commits] Commit in python-pymongo/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-14 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 14, 2020 @ 09:22:58
  Author: jelle
Revision: 627904

archrelease: copy trunk to community-x86_64

Added:
  python-pymongo/repos/community-x86_64/PKGBUILD
(from rev 627903, python-pymongo/trunk/PKGBUILD)
Deleted:
  python-pymongo/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   73 +++--
 1 file changed, 28 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-14 09:22:51 UTC (rev 627903)
+++ PKGBUILD2020-05-14 09:22:58 UTC (rev 627904)
@@ -1,45 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Thomas S Hatch 
-# Contributor: Jelle van der Waa 
-
-pkgbase=python-pymongo
-pkgname=('python-pymongo' 'python2-pymongo')
-pkgver=3.10.1
-pkgrel=1
-pkgdesc='Python module for using MongoDB'
-arch=('x86_64')
-license=('APACHE')
-url='https://pypi.python.org/pypi/pymongo/'
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://pypi.io/packages/source/p/pymongo/pymongo-$pkgver.tar.gz;)
-sha512sums=('5a73ac17ef6f6783a573facd90879dbefa0c95d69123bc67c1a6af0987cb5786f637b8fa81a6810387acc34829a4cde33b848ac0f7b08f7d07faa90a8e13b595')
-
-prepare() {
-  cp -a "pymongo-$pkgver" "pymongo2-$pkgver"
-}
-
-build() {
-  cd "$srcdir"/pymongo-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pymongo2-$pkgver
-  python2 setup.py build
-}
-
-package_python2-pymongo() {
-  depends=('python2')
-  optdepends=('python2-monotonic: enable support for a monotonic clock')
-
-  cd "pymongo2-$pkgver"
-  python2 setup.py install --root="$pkgdir" --skip-build --optimize=1
-}
-
-package_python-pymongo() {
-  depends=('python')
-
-  cd "pymongo-$pkgver"
-  python setup.py install --root="$pkgdir" --skip-build --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pymongo/repos/community-x86_64/PKGBUILD (from rev 627903, 
python-pymongo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-14 09:22:58 UTC (rev 627904)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+# Contributor: Alexander Rødseth 
+# Contributor: Thomas S Hatch 
+# Contributor: Jelle van der Waa 
+
+pkgname=python-pymongo
+pkgver=3.10.1
+pkgrel=2
+pkgdesc='Python module for using MongoDB'
+arch=('x86_64')
+license=('APACHE')
+url='https://pypi.python.org/pypi/pymongo/'
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://pypi.io/packages/source/p/pymongo/pymongo-$pkgver.tar.gz;)
+sha512sums=('5a73ac17ef6f6783a573facd90879dbefa0c95d69123bc67c1a6af0987cb5786f637b8fa81a6810387acc34829a4cde33b848ac0f7b08f7d07faa90a8e13b595')
+
+build() {
+  cd "$srcdir"/pymongo-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd "pymongo-$pkgver"
+  python setup.py install --root="$pkgdir" --skip-build --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in python-pymongo/trunk (PKGBUILD)

2020-05-14 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 14, 2020 @ 09:22:51
  Author: jelle
Revision: 627903

Remove unused python2 module

Modified:
  python-pymongo/trunk/PKGBUILD

--+
 PKGBUILD |   27 +--
 1 file changed, 5 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-14 08:57:18 UTC (rev 627902)
+++ PKGBUILD2020-05-14 09:22:51 UTC (rev 627903)
@@ -3,41 +3,24 @@
 # Contributor: Thomas S Hatch 
 # Contributor: Jelle van der Waa 
 
-pkgbase=python-pymongo
-pkgname=('python-pymongo' 'python2-pymongo')
+pkgname=python-pymongo
 pkgver=3.10.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Python module for using MongoDB'
 arch=('x86_64')
 license=('APACHE')
 url='https://pypi.python.org/pypi/pymongo/'
-makedepends=('python-setuptools' 'python2-setuptools')
+depends=('python')
+makedepends=('python-setuptools')
 source=("https://pypi.io/packages/source/p/pymongo/pymongo-$pkgver.tar.gz;)
 
sha512sums=('5a73ac17ef6f6783a573facd90879dbefa0c95d69123bc67c1a6af0987cb5786f637b8fa81a6810387acc34829a4cde33b848ac0f7b08f7d07faa90a8e13b595')
 
-prepare() {
-  cp -a "pymongo-$pkgver" "pymongo2-$pkgver"
-}
-
 build() {
   cd "$srcdir"/pymongo-$pkgver
   python setup.py build
-
-  cd "$srcdir"/pymongo2-$pkgver
-  python2 setup.py build
 }
 
-package_python2-pymongo() {
-  depends=('python2')
-  optdepends=('python2-monotonic: enable support for a monotonic clock')
-
-  cd "pymongo2-$pkgver"
-  python2 setup.py install --root="$pkgdir" --skip-build --optimize=1
-}
-
-package_python-pymongo() {
-  depends=('python')
-
+package() {
   cd "pymongo-$pkgver"
   python setup.py install --root="$pkgdir" --skip-build --optimize=1
 }


[arch-commits] Commit in python-nosexcover/trunk (PKGBUILD)

2020-05-13 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 13, 2020 @ 19:55:01
  Author: jelle
Revision: 627771

remove unused python2 packages

Modified:
  python-nosexcover/trunk/PKGBUILD

--+
 PKGBUILD |   33 ++---
 1 file changed, 6 insertions(+), 27 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-13 19:48:57 UTC (rev 627770)
+++ PKGBUILD2020-05-13 19:55:01 UTC (rev 627771)
@@ -2,51 +2,30 @@
 # Contributor: Simon Sapin 
 # Contributor: Kyle Keen 
 
-pkgbase=python-nosexcover
-pkgname=(python-nosexcover python2-nosexcover)
+pkgname=python-nosexcover
 pkgver=1.0.11
-pkgrel=4
+pkgrel=5
 pkgdesc="Extends nose.plugins.cover to add Cobertura-style XML reports"
 url="https://pypi.python.org/pypi/nosexcover;
 license=('BSD')
 arch=('any')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-nose' 
'python2-nose' 'python-coverage'
- 'python2-coverage')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/cmheisel/nose-xcover/archive/v$pkgver.tar.gz;)
+depends=('python-nose' 'python-coverage')
+makedepends=('python-setuptools' 'python-nose' 'python-coverage')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/cmheisel/nose-xcover/archive/v$pkgver.tar.gz;)
 
sha512sums=('e606e89b75d51c728d1487200f4a38afe1af93defabe6bd847b80d597374e7bb10abc2e5c8e6778bbd4f17ba8b8d7a601864a8277cd14437ee94a9e04996cf22')
 
-prepare() {
-  cp -a nose-xcover-$pkgver{,-py2}
-}
-
 build() {
   cd "$srcdir"/nose-xcover-$pkgver
   python setup.py build
-
-  cd "$srcdir"/nose-xcover-$pkgver-py2
-  python2 setup.py build
 }
 
 check() {
   cd "$srcdir"/nose-xcover-$pkgver
   nosetests3 -v nosexcover/tests.py
-
-  cd "$srcdir"/nose-xcover-$pkgver-py2
-  nosetests2 -v nosexcover/tests.py
 }
 
-package_python-nosexcover() {
-  depends=('python-nose' 'python-coverage')
-
+package() {
   cd nose-xcover-$pkgver
   python3 setup.py install --root="$pkgdir" --optimize=1
   install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
 }
-
-package_python2-nosexcover() {
-  depends=('python2-nose' 'python2-coverage')
-
-  cd nose-xcover-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}


[arch-commits] Commit in python-nosexcover/repos/community-any (PKGBUILD PKGBUILD)

2020-05-13 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 13, 2020 @ 19:55:09
  Author: jelle
Revision: 627772

archrelease: copy trunk to community-any

Added:
  python-nosexcover/repos/community-any/PKGBUILD
(from rev 627771, python-nosexcover/trunk/PKGBUILD)
Deleted:
  python-nosexcover/repos/community-any/PKGBUILD

--+
 PKGBUILD |   83 ++---
 1 file changed, 31 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-13 19:55:01 UTC (rev 627771)
+++ PKGBUILD2020-05-13 19:55:09 UTC (rev 627772)
@@ -1,52 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Simon Sapin 
-# Contributor: Kyle Keen 
-
-pkgbase=python-nosexcover
-pkgname=(python-nosexcover python2-nosexcover)
-pkgver=1.0.11
-pkgrel=4
-pkgdesc="Extends nose.plugins.cover to add Cobertura-style XML reports"
-url="https://pypi.python.org/pypi/nosexcover;
-license=('BSD')
-arch=('any')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-nose' 
'python2-nose' 'python-coverage'
- 'python2-coverage')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/cmheisel/nose-xcover/archive/v$pkgver.tar.gz;)
-sha512sums=('e606e89b75d51c728d1487200f4a38afe1af93defabe6bd847b80d597374e7bb10abc2e5c8e6778bbd4f17ba8b8d7a601864a8277cd14437ee94a9e04996cf22')
-
-prepare() {
-  cp -a nose-xcover-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/nose-xcover-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/nose-xcover-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/nose-xcover-$pkgver
-  nosetests3 -v nosexcover/tests.py
-
-  cd "$srcdir"/nose-xcover-$pkgver-py2
-  nosetests2 -v nosexcover/tests.py
-}
-
-package_python-nosexcover() {
-  depends=('python-nose' 'python-coverage')
-
-  cd nose-xcover-$pkgver
-  python3 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}
-
-package_python2-nosexcover() {
-  depends=('python2-nose' 'python2-coverage')
-
-  cd nose-xcover-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}

Copied: python-nosexcover/repos/community-any/PKGBUILD (from rev 627771, 
python-nosexcover/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-13 19:55:09 UTC (rev 627772)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: Simon Sapin 
+# Contributor: Kyle Keen 
+
+pkgname=python-nosexcover
+pkgver=1.0.11
+pkgrel=5
+pkgdesc="Extends nose.plugins.cover to add Cobertura-style XML reports"
+url="https://pypi.python.org/pypi/nosexcover;
+license=('BSD')
+arch=('any')
+depends=('python-nose' 'python-coverage')
+makedepends=('python-setuptools' 'python-nose' 'python-coverage')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/cmheisel/nose-xcover/archive/v$pkgver.tar.gz;)
+sha512sums=('e606e89b75d51c728d1487200f4a38afe1af93defabe6bd847b80d597374e7bb10abc2e5c8e6778bbd4f17ba8b8d7a601864a8277cd14437ee94a9e04996cf22')
+
+build() {
+  cd "$srcdir"/nose-xcover-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/nose-xcover-$pkgver
+  nosetests3 -v nosexcover/tests.py
+}
+
+package() {
+  cd nose-xcover-$pkgver
+  python3 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


[arch-commits] Commit in python-jupyter_core/repos/community-any (PKGBUILD PKGBUILD)

2020-05-13 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 13, 2020 @ 19:48:57
  Author: jelle
Revision: 627770

archrelease: copy trunk to community-any

Added:
  python-jupyter_core/repos/community-any/PKGBUILD
(from rev 627769, python-jupyter_core/trunk/PKGBUILD)
Deleted:
  python-jupyter_core/repos/community-any/PKGBUILD

--+
 PKGBUILD |   80 ++---
 1 file changed, 29 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-13 19:48:50 UTC (rev 627769)
+++ PKGBUILD2020-05-13 19:48:57 UTC (rev 627770)
@@ -1,51 +0,0 @@
-# Maintainer: Kyle Keen 
-
-pkgbase=python-jupyter_core
-pkgname=(python-jupyter_core python2-jupyter_core)
-pkgver=4.6.3
-pkgrel=1
-pkgdesc="Jupyter core package. A base package on which Jupyter projects rely."
-arch=('any')
-url="https://pypi.python.org/pypi/jupyter_core;
-license=('BSD')
-depends=('python-traitlets')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("$pkgname-$pkgver.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;)
-md5sums=('29a4969de5c6a79d35d4ad2857489268')
-
-prepare() {
-  cd "$srcdir/jupyter_core-$pkgver"
-
-  cd "$srcdir"
-  cp -r jupyter_core-$pkgver python2-jupyter_core-$pkgver
-
-  cd python2-jupyter_core-$pkgver
-  sed -i 's/env python$/&2/' jupyter_core/troubleshoot.py
-}
-
-build() {
-  cd "$srcdir"
-}
-
-package_python-jupyter_core() {
-  cd "$srcdir/jupyter_core-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 examples/jupyter-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/jupyter"
-  install -Dm644 examples/completions-zsh 
"$pkgdir/usr/share/zsh/site-functions/_jupyter"
-}
-
-package_python2-jupyter_core() {
-  # todo: figure out how to remove this, it probably shouldn't be used
-  depends=('python2-traitlets')
-
-  cd "$srcdir/python2-jupyter_core-$pkgver"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  cd "$pkgdir/usr"
-  rm bin/jupyter
-  rm bin/jupyter-migrate
-  rm bin/jupyter-troubleshoot
-  rmdir bin
-}

Copied: python-jupyter_core/repos/community-any/PKGBUILD (from rev 627769, 
python-jupyter_core/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-13 19:48:57 UTC (rev 627770)
@@ -0,0 +1,29 @@
+# Maintainer: Kyle Keen 
+
+pkgname=python-jupyter_core
+pkgver=4.6.3
+pkgrel=2
+pkgdesc="Jupyter core package. A base package on which Jupyter projects rely."
+arch=('any')
+url="https://pypi.python.org/pypi/jupyter_core;
+license=('BSD')
+depends=('python-traitlets')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;)
+md5sums=('29a4969de5c6a79d35d4ad2857489268')
+
+prepare() {
+  cd "$srcdir/jupyter_core-$pkgver"
+}
+
+build() {
+  cd "$srcdir"
+}
+
+package() {
+  cd "$srcdir/jupyter_core-$pkgver"
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 examples/jupyter-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/jupyter"
+  install -Dm644 examples/completions-zsh 
"$pkgdir/usr/share/zsh/site-functions/_jupyter"
+}


[arch-commits] Commit in python-jupyter_core/trunk (PKGBUILD)

2020-05-13 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 13, 2020 @ 19:48:50
  Author: jelle
Revision: 627769

remove unused python2 module

Modified:
  python-jupyter_core/trunk/PKGBUILD

--+
 PKGBUILD |   30 --
 1 file changed, 4 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-13 19:39:44 UTC (rev 627768)
+++ PKGBUILD2020-05-13 19:48:50 UTC (rev 627769)
@@ -1,26 +1,19 @@
 # Maintainer: Kyle Keen 
 
-pkgbase=python-jupyter_core
-pkgname=(python-jupyter_core python2-jupyter_core)
+pkgname=python-jupyter_core
 pkgver=4.6.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Jupyter core package. A base package on which Jupyter projects rely."
 arch=('any')
 url="https://pypi.python.org/pypi/jupyter_core;
 license=('BSD')
 depends=('python-traitlets')
-makedepends=('python-setuptools' 'python2-setuptools')
+makedepends=('python-setuptools')
 
source=("$pkgname-$pkgver.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;)
 md5sums=('29a4969de5c6a79d35d4ad2857489268')
 
 prepare() {
   cd "$srcdir/jupyter_core-$pkgver"
-
-  cd "$srcdir"
-  cp -r jupyter_core-$pkgver python2-jupyter_core-$pkgver
-
-  cd python2-jupyter_core-$pkgver
-  sed -i 's/env python$/&2/' jupyter_core/troubleshoot.py
 }
 
 build() {
@@ -27,7 +20,7 @@
   cd "$srcdir"
 }
 
-package_python-jupyter_core() {
+package() {
   cd "$srcdir/jupyter_core-$pkgver"
   python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
   install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
@@ -34,18 +27,3 @@
   install -Dm644 examples/jupyter-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/jupyter"
   install -Dm644 examples/completions-zsh 
"$pkgdir/usr/share/zsh/site-functions/_jupyter"
 }
-
-package_python2-jupyter_core() {
-  # todo: figure out how to remove this, it probably shouldn't be used
-  depends=('python2-traitlets')
-
-  cd "$srcdir/python2-jupyter_core-$pkgver"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  cd "$pkgdir/usr"
-  rm bin/jupyter
-  rm bin/jupyter-migrate
-  rm bin/jupyter-troubleshoot
-  rmdir bin
-}


[arch-commits] Commit in python-aspectlib/trunk (PKGBUILD)

2020-05-13 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 13, 2020 @ 19:39:37
  Author: jelle
Revision: 627767

remove unused python2 module

Modified:
  python-aspectlib/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-13 19:35:39 UTC (rev 627766)
+++ PKGBUILD2020-05-13 19:39:37 UTC (rev 627767)
@@ -2,7 +2,7 @@
 
 pkgname=python-aspectlib
 pkgver=1.4.2
-pkgrel=5
+pkgrel=6
 pkgdesc="Development library for quickly writing configurable applications and 
daemons"
 arch=('any')
 license=('BSD')


[arch-commits] Commit in python-aspectlib/repos/community-any (PKGBUILD PKGBUILD)

2020-05-13 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 13, 2020 @ 19:39:44
  Author: jelle
Revision: 627768

archrelease: copy trunk to community-any

Added:
  python-aspectlib/repos/community-any/PKGBUILD
(from rev 627767, python-aspectlib/trunk/PKGBUILD)
Deleted:
  python-aspectlib/repos/community-any/PKGBUILD

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-13 19:39:37 UTC (rev 627767)
+++ PKGBUILD2020-05-13 19:39:44 UTC (rev 627768)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-aspectlib
-pkgver=1.4.2
-pkgrel=5
-pkgdesc="Development library for quickly writing configurable applications and 
daemons"
-arch=('any')
-license=('BSD')
-url="https://github.com/ionelmc/python-aspectlib;
-depends=('python-fields')
-makedepends=('python-setuptools')
-checkdepends=('python-mock' 'python-tornado' 'python-process-tests'
-  'python-profilestats' 'python-pytest') # 'mysql-python')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ionelmc/python-aspectlib/archive/v$pkgver.tar.gz;)
-sha512sums=('fadb90b625ce2faac8f6d29ee28efaee09b4338c3c516c79d9e8753b7fb2ff45e0033174c5c5302f47f1f9e332824f37d56667fb05e66f85b808e8aa3a086f57')
-
-build() {
-  cd "$srcdir"/python-aspectlib-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-aspectlib-$pkgver
-  LC_CTYPE=en_US.UTF-8 py.test || warning 
"https://github.com/ionelmc/python-aspectlib/issues/11;
-}
-
-package() {
-  cd python-aspectlib-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-aspectlib/repos/community-any/PKGBUILD (from rev 627767, 
python-aspectlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-13 19:39:44 UTC (rev 627768)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-aspectlib
+pkgver=1.4.2
+pkgrel=6
+pkgdesc="Development library for quickly writing configurable applications and 
daemons"
+arch=('any')
+license=('BSD')
+url="https://github.com/ionelmc/python-aspectlib;
+depends=('python-fields')
+makedepends=('python-setuptools')
+checkdepends=('python-mock' 'python-tornado' 'python-process-tests'
+  'python-profilestats' 'python-pytest') # 'mysql-python')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ionelmc/python-aspectlib/archive/v$pkgver.tar.gz;)
+sha512sums=('fadb90b625ce2faac8f6d29ee28efaee09b4338c3c516c79d9e8753b7fb2ff45e0033174c5c5302f47f1f9e332824f37d56667fb05e66f85b808e8aa3a086f57')
+
+build() {
+  cd "$srcdir"/python-aspectlib-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-aspectlib-$pkgver
+  LC_CTYPE=en_US.UTF-8 py.test || warning 
"https://github.com/ionelmc/python-aspectlib/issues/11;
+}
+
+package() {
+  cd python-aspectlib-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-aspectlib/repos/community-any (PKGBUILD PKGBUILD)

2020-05-13 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 13, 2020 @ 19:35:39
  Author: jelle
Revision: 627766

archrelease: copy trunk to community-any

Added:
  python-aspectlib/repos/community-any/PKGBUILD
(from rev 627765, python-aspectlib/trunk/PKGBUILD)
Deleted:
  python-aspectlib/repos/community-any/PKGBUILD

--+
 PKGBUILD |   83 ++---
 1 file changed, 31 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-13 19:35:31 UTC (rev 627765)
+++ PKGBUILD2020-05-13 19:35:39 UTC (rev 627766)
@@ -1,52 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-aspectlib
-pkgname=('python-aspectlib' 'python2-aspectlib')
-pkgver=1.4.2
-pkgrel=5
-pkgdesc="Development library for quickly writing configurable applications and 
daemons"
-arch=('any')
-license=('BSD')
-url="https://github.com/ionelmc/python-aspectlib;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-fields' 
'python2-fields')
-checkdepends=('python-mock' 'python2-mock' 'python-tornado' 'python2-tornado'
-  'python-process-tests' 'python2-process-tests' 'python2-trollius'
-  'python-profilestats' 'python2-profilestats' 'python-pytest' 
'python2-pytest') # 'mysql-python')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/ionelmc/python-aspectlib/archive/v$pkgver.tar.gz;)
-sha512sums=('fadb90b625ce2faac8f6d29ee28efaee09b4338c3c516c79d9e8753b7fb2ff45e0033174c5c5302f47f1f9e332824f37d56667fb05e66f85b808e8aa3a086f57')
-
-prepare() {
-  cp -a python-aspectlib-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/python-aspectlib-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/python-aspectlib-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-aspectlib-$pkgver
-  LC_CTYPE=en_US.UTF-8 py.test || warning 
"https://github.com/ionelmc/python-aspectlib/issues/11;
-
-  cd "$srcdir"/python-aspectlib-$pkgver-py2
-  py.test2 || warning "Tests failed"
-}
-
-package_python-aspectlib() {
-  depends=('python-fields')
-
-  cd python-aspectlib-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-aspectlib() {
-  depends=('python2-fields')
-
-  cd python-aspectlib-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-aspectlib/repos/community-any/PKGBUILD (from rev 627765, 
python-aspectlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-13 19:35:39 UTC (rev 627766)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-aspectlib
+pkgver=1.4.2
+pkgrel=5
+pkgdesc="Development library for quickly writing configurable applications and 
daemons"
+arch=('any')
+license=('BSD')
+url="https://github.com/ionelmc/python-aspectlib;
+depends=('python-fields')
+makedepends=('python-setuptools')
+checkdepends=('python-mock' 'python-tornado' 'python-process-tests'
+  'python-profilestats' 'python-pytest') # 'mysql-python')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ionelmc/python-aspectlib/archive/v$pkgver.tar.gz;)
+sha512sums=('fadb90b625ce2faac8f6d29ee28efaee09b4338c3c516c79d9e8753b7fb2ff45e0033174c5c5302f47f1f9e332824f37d56667fb05e66f85b808e8aa3a086f57')
+
+build() {
+  cd "$srcdir"/python-aspectlib-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-aspectlib-$pkgver
+  LC_CTYPE=en_US.UTF-8 py.test || warning 
"https://github.com/ionelmc/python-aspectlib/issues/11;
+}
+
+package() {
+  cd python-aspectlib-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-aspectlib/trunk (PKGBUILD)

2020-05-13 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 13, 2020 @ 19:35:31
  Author: jelle
Revision: 627765

remove unused python2 module

Modified:
  python-aspectlib/trunk/PKGBUILD

--+
 PKGBUILD |   35 +++
 1 file changed, 7 insertions(+), 28 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-13 19:31:20 UTC (rev 627764)
+++ PKGBUILD2020-05-13 19:35:31 UTC (rev 627765)
@@ -1,7 +1,6 @@
 # Maintainer: Felix Yan 
 
-pkgbase=python-aspectlib
-pkgname=('python-aspectlib' 'python2-aspectlib')
+pkgname=python-aspectlib
 pkgver=1.4.2
 pkgrel=5
 pkgdesc="Development library for quickly writing configurable applications and 
daemons"
@@ -8,45 +7,25 @@
 arch=('any')
 license=('BSD')
 url="https://github.com/ionelmc/python-aspectlib;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-fields' 
'python2-fields')
-checkdepends=('python-mock' 'python2-mock' 'python-tornado' 'python2-tornado'
-  'python-process-tests' 'python2-process-tests' 'python2-trollius'
-  'python-profilestats' 'python2-profilestats' 'python-pytest' 
'python2-pytest') # 'mysql-python')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/ionelmc/python-aspectlib/archive/v$pkgver.tar.gz;)
+depends=('python-fields')
+makedepends=('python-setuptools')
+checkdepends=('python-mock' 'python-tornado' 'python-process-tests'
+  'python-profilestats' 'python-pytest') # 'mysql-python')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ionelmc/python-aspectlib/archive/v$pkgver.tar.gz;)
 
sha512sums=('fadb90b625ce2faac8f6d29ee28efaee09b4338c3c516c79d9e8753b7fb2ff45e0033174c5c5302f47f1f9e332824f37d56667fb05e66f85b808e8aa3a086f57')
 
-prepare() {
-  cp -a python-aspectlib-$pkgver{,-py2}
-}
-
 build() {
   cd "$srcdir"/python-aspectlib-$pkgver
   python setup.py build
-
-  cd "$srcdir"/python-aspectlib-$pkgver-py2
-  python2 setup.py build
 }
 
 check() {
   cd "$srcdir"/python-aspectlib-$pkgver
   LC_CTYPE=en_US.UTF-8 py.test || warning 
"https://github.com/ionelmc/python-aspectlib/issues/11;
-
-  cd "$srcdir"/python-aspectlib-$pkgver-py2
-  py.test2 || warning "Tests failed"
 }
 
-package_python-aspectlib() {
-  depends=('python-fields')
-
+package() {
   cd python-aspectlib-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
   install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-
-package_python2-aspectlib() {
-  depends=('python2-fields')
-
-  cd python-aspectlib-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}


[arch-commits] Commit in python-pynacl/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-13 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 13, 2020 @ 19:31:20
  Author: jelle
Revision: 627764

archrelease: copy trunk to community-x86_64

Added:
  python-pynacl/repos/community-x86_64/PKGBUILD
(from rev 627763, python-pynacl/trunk/PKGBUILD)
Deleted:
  python-pynacl/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   89 +++--
 1 file changed, 35 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-13 19:31:13 UTC (rev 627763)
+++ PKGBUILD2020-05-13 19:31:20 UTC (rev 627764)
@@ -1,54 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Ivan Shapovalov 
-
-pkgbase=python-pynacl
-pkgname=(python-pynacl python2-pynacl)
-pkgver=1.3.0
-pkgrel=3
-
-pkgdesc='Python binding to the Networking and Cryptography (NaCl) library'
-url='https://pypi.python.org/pypi/PyNaCl'
-arch=('x86_64')
-license=('Apache')
-
-depends=('libsodium')
-makedepends=('python-setuptools' 'python-pycparser' 'python-cffi'
- 'python2-setuptools' 'python2-pycparser' 'python2-cffi')
-
-source=("https://pypi.org/packages/source/P/PyNaCl/PyNaCl-$pkgver.tar.gz;)
-
-sha512sums=('1762d7d9add6ca59ce83e394071861f78f27d0f06ad1481255ebb66023186127e1a67b49a2c2f51bcbd97bdd151a3a2adea099c47c2a9f456dda5e3b1508af50')
-
-prepare() {
-   cp -a PyNaCl-$pkgver{,-python2}
-}
-
-build() {
-   export SODIUM_INSTALL=system
-
-   cd "$srcdir"/PyNaCl-$pkgver
-   python setup.py build
-
-   cd "$srcdir"/PyNaCl-$pkgver-python2
-   python2 setup.py build
-}
-
-package_python-pynacl() {
-   depends=('libsodium' 'python' 'python-six' 'python-cffi')
-
-   export SODIUM_INSTALL=system
-
-   cd PyNaCl-$pkgver
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python2-pynacl() {
-   depends=('libsodium' 'python2' 'python2-six' 'python2-cffi')
-
-   export SODIUM_INSTALL=system
-
-   cd PyNaCl-$pkgver-python2
-   python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim: set ts=4 sw=4 tw=0 ft=PKGBUILD :

Copied: python-pynacl/repos/community-x86_64/PKGBUILD (from rev 627763, 
python-pynacl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-13 19:31:20 UTC (rev 627764)
@@ -0,0 +1,35 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Ivan Shapovalov 
+
+pkgname=python-pynacl
+pkgver=1.3.0
+pkgrel=4
+
+pkgdesc='Python binding to the Networking and Cryptography (NaCl) library'
+url='https://pypi.python.org/pypi/PyNaCl'
+arch=('x86_64')
+license=('Apache')
+
+depends=('libsodium')
+depends=('libsodium' 'python' 'python-six' 'python-cffi')
+makedepends=('python-setuptools' 'python-pycparser')
+
+source=("https://pypi.org/packages/source/P/PyNaCl/PyNaCl-$pkgver.tar.gz;)
+
+sha512sums=('1762d7d9add6ca59ce83e394071861f78f27d0f06ad1481255ebb66023186127e1a67b49a2c2f51bcbd97bdd151a3a2adea099c47c2a9f456dda5e3b1508af50')
+
+build() {
+   export SODIUM_INSTALL=system
+
+   cd "$srcdir"/PyNaCl-$pkgver
+   python setup.py build
+}
+
+package() {
+   export SODIUM_INSTALL=system
+
+   cd PyNaCl-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim: set ts=4 sw=4 tw=0 ft=PKGBUILD :


[arch-commits] Commit in python-pynacl/trunk (PKGBUILD)

2020-05-13 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 13, 2020 @ 19:31:13
  Author: jelle
Revision: 627763

remove python2 module

Modified:
  python-pynacl/trunk/PKGBUILD

--+
 PKGBUILD |   29 +
 1 file changed, 5 insertions(+), 24 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-13 19:27:46 UTC (rev 627762)
+++ PKGBUILD2020-05-13 19:31:13 UTC (rev 627763)
@@ -1,10 +1,9 @@
 # Maintainer: Johannes Löthberg 
 # Contributor: Ivan Shapovalov 
 
-pkgbase=python-pynacl
-pkgname=(python-pynacl python2-pynacl)
+pkgname=python-pynacl
 pkgver=1.3.0
-pkgrel=3
+pkgrel=4
 
 pkgdesc='Python binding to the Networking and Cryptography (NaCl) library'
 url='https://pypi.python.org/pypi/PyNaCl'
@@ -12,30 +11,21 @@
 license=('Apache')
 
 depends=('libsodium')
-makedepends=('python-setuptools' 'python-pycparser' 'python-cffi'
- 'python2-setuptools' 'python2-pycparser' 'python2-cffi')
+depends=('libsodium' 'python' 'python-six' 'python-cffi')
+makedepends=('python-setuptools' 'python-pycparser')
 
 source=("https://pypi.org/packages/source/P/PyNaCl/PyNaCl-$pkgver.tar.gz;)
 
 
sha512sums=('1762d7d9add6ca59ce83e394071861f78f27d0f06ad1481255ebb66023186127e1a67b49a2c2f51bcbd97bdd151a3a2adea099c47c2a9f456dda5e3b1508af50')
 
-prepare() {
-   cp -a PyNaCl-$pkgver{,-python2}
-}
-
 build() {
export SODIUM_INSTALL=system
 
cd "$srcdir"/PyNaCl-$pkgver
python setup.py build
-
-   cd "$srcdir"/PyNaCl-$pkgver-python2
-   python2 setup.py build
 }
 
-package_python-pynacl() {
-   depends=('libsodium' 'python' 'python-six' 'python-cffi')
-
+package() {
export SODIUM_INSTALL=system
 
cd PyNaCl-$pkgver
@@ -42,13 +32,4 @@
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
 }
 
-package_python2-pynacl() {
-   depends=('libsodium' 'python2' 'python2-six' 'python2-cffi')
-
-   export SODIUM_INSTALL=system
-
-   cd PyNaCl-$pkgver-python2
-   python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
 # vim: set ts=4 sw=4 tw=0 ft=PKGBUILD :


[arch-commits] Commit in python-requests-kerberos/repos/community-any (2 files)

2020-05-13 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 13, 2020 @ 19:27:46
  Author: jelle
Revision: 627762

archrelease: copy trunk to community-any

Added:
  python-requests-kerberos/repos/community-any/PKGBUILD
(from rev 627761, python-requests-kerberos/trunk/PKGBUILD)
Deleted:
  python-requests-kerberos/repos/community-any/PKGBUILD

--+
 PKGBUILD |   78 ++---
 1 file changed, 29 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-13 19:27:08 UTC (rev 627761)
+++ PKGBUILD2020-05-13 19:27:46 UTC (rev 627762)
@@ -1,49 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-requests-kerberos
-pkgname=('python-requests-kerberos' 'python2-requests-kerberos')
-pkgver=0.12.0
-pkgrel=4
-pkgdesc="A kerberos of useful classes and functions to be used with 
python-requests."
-arch=('any')
-url="https://github.com/requests/requests-kerberos;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests'
- 'python-pykerberos' 'python2-pykerberos' 'python-cryptography' 
'python2-cryptography')
-checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/requests/requests-kerberos/archive/v$pkgver.tar.gz;)
-sha512sums=('b925b5f9f6753e87368dce451927df09568d0d6126d4ae8514bbd99a794d983e32298b92b6239be9f95595483e2682259cf165c6997d17d9cea64a81d4af1a06')
-
-prepare() {
-  cp -a requests-kerberos-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/requests-kerberos-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/requests-kerberos-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/requests-kerberos-$pkgver
-  py.test
-
-  cd "$srcdir"/requests-kerberos-$pkgver-py2
-  py.test2
-}
-
-package_python-requests-kerberos() {
-  depends=('python-requests' 'python-pykerberos' 'python-cryptography')
-
-  cd "$srcdir"/requests-kerberos-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-requests-kerberos() {
-  depends=('python2-requests' 'python2-pykerberos' 'python2-cryptography')
-
-  cd "$srcdir"/requests-kerberos-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-requests-kerberos/repos/community-any/PKGBUILD (from rev 627761, 
python-requests-kerberos/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-13 19:27:46 UTC (rev 627762)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-requests-kerberos
+pkgver=0.12.0
+pkgrel=5
+pkgdesc="A kerberos of useful classes and functions to be used with 
python-requests."
+arch=('any')
+url="https://github.com/requests/requests-kerberos;
+license=('Apache')
+depends=('python-requests' 'python-pykerberos' 'python-cryptography')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-mock')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/requests/requests-kerberos/archive/v$pkgver.tar.gz;)
+sha512sums=('b925b5f9f6753e87368dce451927df09568d0d6126d4ae8514bbd99a794d983e32298b92b6239be9f95595483e2682259cf165c6997d17d9cea64a81d4af1a06')
+
+build() {
+  cd "$srcdir"/requests-kerberos-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/requests-kerberos-$pkgver
+  py.test
+}
+
+package_python-requests-kerberos() {
+  cd "$srcdir"/requests-kerberos-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


[arch-commits] Commit in python-requests-kerberos/trunk (PKGBUILD)

2020-05-13 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 13, 2020 @ 19:27:08
  Author: jelle
Revision: 627761

Remove unused python2 module

Modified:
  python-requests-kerberos/trunk/PKGBUILD

--+
 PKGBUILD |   32 ++--
 1 file changed, 6 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-13 19:25:30 UTC (rev 627760)
+++ PKGBUILD2020-05-13 19:27:08 UTC (rev 627761)
@@ -1,49 +1,29 @@
 # Maintainer: Felix Yan 
 
-pkgbase=python-requests-kerberos
-pkgname=('python-requests-kerberos' 'python2-requests-kerberos')
+pkgname=python-requests-kerberos
 pkgver=0.12.0
-pkgrel=4
+pkgrel=5
 pkgdesc="A kerberos of useful classes and functions to be used with 
python-requests."
 arch=('any')
 url="https://github.com/requests/requests-kerberos;
 license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests'
- 'python-pykerberos' 'python2-pykerberos' 'python-cryptography' 
'python2-cryptography')
-checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/requests/requests-kerberos/archive/v$pkgver.tar.gz;)
+depends=('python-requests' 'python-pykerberos' 'python-cryptography')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-mock')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/requests/requests-kerberos/archive/v$pkgver.tar.gz;)
 
sha512sums=('b925b5f9f6753e87368dce451927df09568d0d6126d4ae8514bbd99a794d983e32298b92b6239be9f95595483e2682259cf165c6997d17d9cea64a81d4af1a06')
 
-prepare() {
-  cp -a requests-kerberos-$pkgver{,-py2}
-}
-
 build() {
   cd "$srcdir"/requests-kerberos-$pkgver
   python setup.py build
-
-  cd "$srcdir"/requests-kerberos-$pkgver-py2
-  python2 setup.py build
 }
 
 check() {
   cd "$srcdir"/requests-kerberos-$pkgver
   py.test
-
-  cd "$srcdir"/requests-kerberos-$pkgver-py2
-  py.test2
 }
 
 package_python-requests-kerberos() {
-  depends=('python-requests' 'python-pykerberos' 'python-cryptography')
-
   cd "$srcdir"/requests-kerberos-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
 }
-
-package_python2-requests-kerberos() {
-  depends=('python2-requests' 'python2-pykerberos' 'python2-cryptography')
-
-  cd "$srcdir"/requests-kerberos-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}


[arch-commits] Commit in python-pyrfc3339/repos/community-any (4 files)

2020-05-13 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 13, 2020 @ 12:35:03
  Author: jelle
Revision: 627641

archrelease: copy trunk to community-any

Added:
  python-pyrfc3339/repos/community-any/LICENSE.txt
(from rev 627640, python-pyrfc3339/trunk/LICENSE.txt)
  python-pyrfc3339/repos/community-any/PKGBUILD
(from rev 627640, python-pyrfc3339/trunk/PKGBUILD)
Deleted:
  python-pyrfc3339/repos/community-any/LICENSE.txt
  python-pyrfc3339/repos/community-any/PKGBUILD

-+
 LICENSE.txt |   38 -
 PKGBUILD|   85 ++
 2 files changed, 52 insertions(+), 71 deletions(-)

Deleted: LICENSE.txt
===
--- LICENSE.txt 2020-05-13 12:34:51 UTC (rev 627640)
+++ LICENSE.txt 2020-05-13 12:35:03 UTC (rev 627641)
@@ -1,19 +0,0 @@
-Copyright (c) 2010 Kurt Raschke
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.

Copied: python-pyrfc3339/repos/community-any/LICENSE.txt (from rev 627640, 
python-pyrfc3339/trunk/LICENSE.txt)
===
--- LICENSE.txt (rev 0)
+++ LICENSE.txt 2020-05-13 12:35:03 UTC (rev 627641)
@@ -0,0 +1,19 @@
+Copyright (c) 2010 Kurt Raschke
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-13 12:34:51 UTC (rev 627640)
+++ PKGBUILD2020-05-13 12:35:03 UTC (rev 627641)
@@ -1,52 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Gordian Edenhofer 
-
-pkgname=(python-pyrfc3339 python2-pyrfc3339)
-pkgver=1.1
-pkgrel=4
-pkgdesc="Parses and generates RFC 3339-compliant timestamps using Python 
datetime.datetime objects."
-arch=('any')
-license=('MIT')
-url="https://pypi.python.org/pypi/pyRFC3339;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pytz' 
'python2-pytz')
-checkdepends=('python-nose' 'python2-nose')
-source=("https://pypi.python.org/packages/source/p/pyRFC3339/pyRFC3339-${pkgver}.tar.gz;
-LICENSE.txt)
-sha512sums=('958b7761fab590aa42bb57a955c5d834441f717796a452b60df21663099dcf2fc046afe60f8157fd0f1edfd95c5e9c9c5349ab10ca4078d210fc63d848496a2f'
-
'73c58b87e14593ee283cc323a93820c18a00e9af4e5027687fc8f6cd5735c98f341c6ac1aa90c040d0899766cabb976a85201b171874b4b81934ff02a9728f2d')
-
-prepare() {
-  cp -a pyRFC3339-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/pyRFC3339-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/pyRFC3339-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/pyRFC3339-$pkgver"
-  python setup.py test
-
-  cd "$srcdir/pyRFC3339-$pkgver-py2"
-  python2 setup.py test
-}
-
-package_python-pyrfc3339() {
-  depends=('python-pytz')
-
-  cd "$srcdir/pyRFC3339-$pkgver"
-  python setup.py install --root="$pkgdir/" --optimize=1
-  install -D -m644 ../LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
-}
-
-package_python2-pyrfc3339() {
-  depends=('python2-pytz')
-

[arch-commits] Commit in python-pyrfc3339/trunk (PKGBUILD)

2020-05-13 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 13, 2020 @ 12:34:51
  Author: jelle
Revision: 627640

Remove unused python2 module

Modified:
  python-pyrfc3339/trunk/PKGBUILD

--+
 PKGBUILD |   31 ++-
 1 file changed, 6 insertions(+), 25 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-13 12:26:25 UTC (rev 627639)
+++ PKGBUILD2020-05-13 12:34:51 UTC (rev 627640)
@@ -1,52 +1,33 @@
 # Maintainer: Felix Yan 
 # Contributor: Gordian Edenhofer 
 
-pkgname=(python-pyrfc3339 python2-pyrfc3339)
+pkgname=python-pyrfc3339
 pkgver=1.1
-pkgrel=4
+pkgrel=5
 pkgdesc="Parses and generates RFC 3339-compliant timestamps using Python 
datetime.datetime objects."
 arch=('any')
 license=('MIT')
 url="https://pypi.python.org/pypi/pyRFC3339;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pytz' 
'python2-pytz')
-checkdepends=('python-nose' 'python2-nose')
+depends=('python-pytz')
+makedepends=('python-setuptools' 'python-pytz')
+checkdepends=('python-nose')
 
source=("https://pypi.python.org/packages/source/p/pyRFC3339/pyRFC3339-${pkgver}.tar.gz;
 LICENSE.txt)
 
sha512sums=('958b7761fab590aa42bb57a955c5d834441f717796a452b60df21663099dcf2fc046afe60f8157fd0f1edfd95c5e9c9c5349ab10ca4078d210fc63d848496a2f'
 
'73c58b87e14593ee283cc323a93820c18a00e9af4e5027687fc8f6cd5735c98f341c6ac1aa90c040d0899766cabb976a85201b171874b4b81934ff02a9728f2d')
 
-prepare() {
-  cp -a pyRFC3339-$pkgver{,-py2}
-}
-
 build() {
   cd "$srcdir/pyRFC3339-$pkgver"
   python setup.py build
-
-  cd "$srcdir/pyRFC3339-$pkgver-py2"
-  python2 setup.py build
 }
 
 check() {
   cd "$srcdir/pyRFC3339-$pkgver"
   python setup.py test
-
-  cd "$srcdir/pyRFC3339-$pkgver-py2"
-  python2 setup.py test
 }
 
-package_python-pyrfc3339() {
-  depends=('python-pytz')
-
+package() {
   cd "$srcdir/pyRFC3339-$pkgver"
   python setup.py install --root="$pkgdir/" --optimize=1
   install -D -m644 ../LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
 }
-
-package_python2-pyrfc3339() {
-  depends=('python2-pytz')
-
-  cd "$srcdir/pyRFC3339-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-  install -D -m644 ../LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
-}


[arch-commits] Commit in (python2-backports.ssl_match_hostname)

2020-05-13 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 13, 2020 @ 10:00:03
  Author: jelle
Revision: 627597

remove unused pytho2 module

Deleted:
  python2-backports.ssl_match_hostname/


<    2   3   4   5   6   7   8   9   10   11   >