[arch-commits] Commit in sudo/repos (5 files)

2020-09-23 Thread Evangelos Foutras via arch-commits
Date: Thursday, September 24, 2020 @ 05:29:31
  Author: foutrelis
Revision: 396452

archrelease: copy trunk to testing-x86_64

Added:
  sudo/repos/testing-x86_64/
  sudo/repos/testing-x86_64/PKGBUILD
(from rev 396451, sudo/trunk/PKGBUILD)
  sudo/repos/testing-x86_64/sudo.install
(from rev 396451, sudo/trunk/sudo.install)
  sudo/repos/testing-x86_64/sudo.pam
(from rev 396451, sudo/trunk/sudo.pam)
  sudo/repos/testing-x86_64/sudo_logsrvd.service
(from rev 396451, sudo/trunk/sudo_logsrvd.service)

--+
 PKGBUILD |   79 +
 sudo.install |9 +
 sudo.pam |4 ++
 sudo_logsrvd.service |   13 
 4 files changed, 105 insertions(+)

Copied: sudo/repos/testing-x86_64/PKGBUILD (from rev 396451, 
sudo/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-09-24 05:29:31 UTC (rev 396452)
@@ -0,0 +1,79 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Allan McRae 
+# Contributor: Tom Newsom 
+
+pkgname=sudo
+_sudover=1.9.3p1
+pkgver=${_sudover/p/.p}
+pkgrel=1
+pkgdesc="Give certain users the ability to run some commands as root"
+arch=('x86_64')
+url="https://www.sudo.ws/sudo/;
+license=('custom')
+groups=('base-devel')
+depends=('glibc' 'libgcrypt' 'pam' 'libldap')
+backup=('etc/pam.d/sudo'
+'etc/sudo.conf'
+'etc/sudo_logsrvd.conf'
+'etc/sudoers')
+install=$pkgname.install
+source=(https://www.sudo.ws/sudo/dist/$pkgname-$_sudover.tar.gz{,.sig}
+sudo_logsrvd.service
+sudo.pam)
+sha256sums=('dcb9de53e45e1c39042074b847f5e0d8ae1890725dd6a9d9101a81569e6eb49e'
+'SKIP'
+'8b91733b73171827c360a3e01f4692772b78e62ceca0cf0fd4b770aba35081a1'
+'d1738818070684a5d2c9b26224906aad69a4fea77aabd960fc2675aee2df1fa2')
+validpgpkeys=('59D1E9CCBA2B376704FDD35BA9F4C021CEA470FB')
+
+prepare() {
+  cd "$srcdir/$pkgname-$_sudover"
+}
+
+build() {
+  cd "$srcdir/$pkgname-$_sudover"
+
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--with-rundir=/run/sudo \
+--with-vardir=/var/db/sudo \
+--with-logfac=auth \
+--enable-gcrypt \
+--enable-tmpfiles.d \
+--with-pam \
+--with-sssd \
+--with-ldap \
+--with-ldap-conf-file=/etc/openldap/ldap.conf \
+--with-env-editor \
+--with-passprompt="[sudo] password for %p: " \
+--with-all-insults
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$_sudover"
+  make check
+}
+
+package() {
+  cd "$srcdir/$pkgname-$_sudover"
+  make DESTDIR="$pkgdir" install
+
+  # sudo_logsrvd service file (taken from sudo-logsrvd-1.9.0-1.el8.x86_64.rpm)
+  install -Dm644 -t "$pkgdir/usr/lib/systemd/system" ../sudo_logsrvd.service
+
+  # Remove sudoers.dist; not needed since pacman manages updates to sudoers
+  rm "$pkgdir/etc/sudoers.dist"
+
+  # Remove /run/sudo directory; we create it using systemd-tmpfiles
+  rmdir "$pkgdir/run/sudo"
+  rmdir "$pkgdir/run"
+
+  install -Dm644 "$srcdir/sudo.pam" "$pkgdir/etc/pam.d/sudo"
+
+  install -Dm644 doc/LICENSE "$pkgdir/usr/share/licenses/sudo/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: sudo/repos/testing-x86_64/sudo.install (from rev 396451, 
sudo/trunk/sudo.install)
===
--- testing-x86_64/sudo.install (rev 0)
+++ testing-x86_64/sudo.install 2020-09-24 05:29:31 UTC (rev 396452)
@@ -0,0 +1,9 @@
+pre_upgrade() {
+  # Permissions of /var/db/sudo were changed from 0700 to 0711 in sudo 1.8.10
+  # http://www.sudo.ws/repos/sudo/rev/5c38d77a2d0c
+  if (($(vercmp $2 1.8.10-1) < 0)); then
+chmod 0711 var/db/sudo
+  fi
+}
+
+# vim:set ts=2 sw=2 et:

Copied: sudo/repos/testing-x86_64/sudo.pam (from rev 396451, 
sudo/trunk/sudo.pam)
===
--- testing-x86_64/sudo.pam (rev 0)
+++ testing-x86_64/sudo.pam 2020-09-24 05:29:31 UTC (rev 396452)
@@ -0,0 +1,4 @@
+#%PAM-1.0
+auth   include system-auth
+accountinclude system-auth
+sessioninclude system-auth

Copied: sudo/repos/testing-x86_64/sudo_logsrvd.service (from rev 396451, 
sudo/trunk/sudo_logsrvd.service)
===
--- testing-x86_64/sudo_logsrvd.service (rev 0)
+++ testing-x86_64/sudo_logsrvd.service 2020-09-24 05:29:31 UTC (rev 396452)
@@ -0,0 +1,13 @@
+[Unit]
+Description=Sudo central log server
+Documentation=man:sudo_logsrvd(8) man:sudo_logsrvd.conf(5)
+Documentation=https://www.sudo.ws/man.html
+After=syslog.target network.target auditd.service
+
+[Service]
+ExecStart=/usr/bin/sudo_logsrvd -n
+KillMode=process
+Type=exec
+
+[Install]
+WantedBy=multi-user.target


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

2020-09-23 Thread Evangelos Foutras via arch-commits
Date: Thursday, September 24, 2020 @ 05:29:26
  Author: foutrelis
Revision: 396451

upgpkg: sudo 1.9.3.p1-1: new upstream release

Modified:
  sudo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 05:26:41 UTC (rev 396450)
+++ PKGBUILD2020-09-24 05:29:26 UTC (rev 396451)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=sudo
-_sudover=1.9.3
+_sudover=1.9.3p1
 pkgver=${_sudover/p/.p}
 pkgrel=1
 pkgdesc="Give certain users the ability to run some commands as root"
@@ -20,7 +20,7 @@
 source=(https://www.sudo.ws/sudo/dist/$pkgname-$_sudover.tar.gz{,.sig}
 sudo_logsrvd.service
 sudo.pam)
-sha256sums=('1d9889cc3b3b15ed8c2c7c3de3aa392a3a726838d020815067c080525c3f5837'
+sha256sums=('dcb9de53e45e1c39042074b847f5e0d8ae1890725dd6a9d9101a81569e6eb49e'
 'SKIP'
 '8b91733b73171827c360a3e01f4692772b78e62ceca0cf0fd4b770aba35081a1'
 'd1738818070684a5d2c9b26224906aad69a4fea77aabd960fc2675aee2df1fa2')


[arch-commits] Commit in flameshot/repos/community-x86_64 (4 files)

2020-09-23 Thread Jiachen Yang via arch-commits
Date: Thursday, September 24, 2020 @ 04:39:52
  Author: farseerfc
Revision: 711651

archrelease: copy trunk to community-x86_64

Added:
  flameshot/repos/community-x86_64/PKGBUILD
(from rev 711650, flameshot/trunk/PKGBUILD)
  flameshot/repos/community-x86_64/flameshot.install
(from rev 711650, flameshot/trunk/flameshot.install)
Deleted:
  flameshot/repos/community-x86_64/PKGBUILD
  flameshot/repos/community-x86_64/flameshot.install

---+
 PKGBUILD  |   60 ++--
 flameshot.install |   44 +++---
 2 files changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 04:39:06 UTC (rev 711650)
+++ PKGBUILD2020-09-24 04:39:52 UTC (rev 711651)
@@ -1,30 +0,0 @@
-# Maintainer: Jiachen YANG 
-# Contributor: xyzzy <628...@gmail.com>
-
-pkgname=flameshot
-pkgver=0.8.0
-pkgrel=1
-pkgdesc="Powerful yet simple to use screenshot software"
-arch=('x86_64')
-url="https://github.com/lupoDharkael/flameshot;
-license=('GPL')
-depends=('qt5-svg' 'hicolor-icon-theme')
-makedepends=('make' 'qt5-tools' 'cmake')
-source=("https://github.com/lupoDharkael/flameshot/archive/v${pkgver}.tar.gz;)
-sha256sums=('41d04c1ccb5c492768d6b66252b554ff1e5fec11fccb7bb0bdb8ae878dd01909')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  mkdir build
-  cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}/build"
-  make DESTDIR="${pkgdir}" install
-  
-  # provided by zsh-completions so exclude from packaging
-  rm ${pkgdir}/usr/share/zsh/site-functions/_flameshot
-}

Copied: flameshot/repos/community-x86_64/PKGBUILD (from rev 711650, 
flameshot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 04:39:52 UTC (rev 711651)
@@ -0,0 +1,30 @@
+# Maintainer: Jiachen YANG 
+# Contributor: xyzzy <628...@gmail.com>
+
+pkgname=flameshot
+pkgver=0.8.1
+pkgrel=1
+pkgdesc="Powerful yet simple to use screenshot software"
+arch=('x86_64')
+url="https://github.com/lupoDharkael/flameshot;
+license=('GPL')
+depends=('qt5-svg' 'hicolor-icon-theme')
+makedepends=('make' 'qt5-tools' 'cmake')
+source=("${pkgname}-v${pkgver}.tar.gz::https://github.com/lupoDharkael/flameshot/archive/v${pkgver}.tar.gz;)
+sha256sums=('92394c469536b264f36e592b51468d9bbe4ea619888bb0090e8a4831c2ce2d7c')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  mkdir build
+  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/build"
+  make DESTDIR="${pkgdir}" install
+  
+  # zsh _flameshot completion is provided by zsh-completions so exclude from 
packaging
+  rm -rf ${pkgdir}/usr/share/zsh/
+}

Deleted: flameshot.install
===
--- flameshot.install   2020-09-24 04:39:06 UTC (rev 711650)
+++ flameshot.install   2020-09-24 04:39:52 UTC (rev 711651)
@@ -1,22 +0,0 @@
-echo_shortcut() {
-   echo "See the link about keyboard shortcuts: 
https://github.com/lupoDharkael/flameshot#keyboard-shortcuts;
-}
-
-echo_gnome3() {
-   echo "For Gnome3 users: please install one of the tray icons extension 
to use the systray icon"
-}
-
-post_upgrade(){
-   if [ $(vercmp $2 0.5.1) -lt 0 ]; then
-echo_shortcut
-   fi
-
-   if [ $(vercmp $2 0.5.1-3) -lt 0 ]; then
-echo_gnome3
-   fi
-}
-
-post_install(){
-echo_shortcut
-echo_gnome3
-}

Copied: flameshot/repos/community-x86_64/flameshot.install (from rev 711650, 
flameshot/trunk/flameshot.install)
===
--- flameshot.install   (rev 0)
+++ flameshot.install   2020-09-24 04:39:52 UTC (rev 711651)
@@ -0,0 +1,22 @@
+echo_shortcut() {
+   echo "See the link about keyboard shortcuts: 
https://github.com/lupoDharkael/flameshot#keyboard-shortcuts;
+}
+
+echo_gnome3() {
+   echo "For Gnome3 users: please install one of the tray icons extension 
to use the systray icon"
+}
+
+post_upgrade(){
+   if [ $(vercmp $2 0.5.1) -lt 0 ]; then
+echo_shortcut
+   fi
+
+   if [ $(vercmp $2 0.5.1-3) -lt 0 ]; then
+echo_gnome3
+   fi
+}
+
+post_install(){
+echo_shortcut
+echo_gnome3
+}


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

2020-09-23 Thread Jiachen Yang via arch-commits
Date: Thursday, September 24, 2020 @ 04:39:06
  Author: farseerfc
Revision: 711650

upgpkg: flameshot 0.8.1-1: flameshot 0.8.1

Modified:
  flameshot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 00:40:48 UTC (rev 711649)
+++ PKGBUILD2020-09-24 04:39:06 UTC (rev 711650)
@@ -2,7 +2,7 @@
 # Contributor: xyzzy <628...@gmail.com>
 
 pkgname=flameshot
-pkgver=0.8.0
+pkgver=0.8.1
 pkgrel=1
 pkgdesc="Powerful yet simple to use screenshot software"
 arch=('x86_64')
@@ -10,8 +10,8 @@
 license=('GPL')
 depends=('qt5-svg' 'hicolor-icon-theme')
 makedepends=('make' 'qt5-tools' 'cmake')
-source=("https://github.com/lupoDharkael/flameshot/archive/v${pkgver}.tar.gz;)
-sha256sums=('41d04c1ccb5c492768d6b66252b554ff1e5fec11fccb7bb0bdb8ae878dd01909')
+source=("${pkgname}-v${pkgver}.tar.gz::https://github.com/lupoDharkael/flameshot/archive/v${pkgver}.tar.gz;)
+sha256sums=('92394c469536b264f36e592b51468d9bbe4ea619888bb0090e8a4831c2ce2d7c')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
@@ -25,6 +25,6 @@
   cd "${srcdir}/${pkgname}-${pkgver}/build"
   make DESTDIR="${pkgdir}" install
   
-  # provided by zsh-completions so exclude from packaging
-  rm ${pkgdir}/usr/share/zsh/site-functions/_flameshot
+  # zsh _flameshot completion is provided by zsh-completions so exclude from 
packaging
+  rm -rf ${pkgdir}/usr/share/zsh/
 }


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

2020-09-23 Thread Nicola Squartini via arch-commits
Date: Thursday, September 24, 2020 @ 00:40:48
  Author: tensor5
Revision: 711649

archrelease: copy trunk to community-x86_64

Added:
  qpid-proton/repos/community-x86_64/PKGBUILD
(from rev 711648, qpid-proton/trunk/PKGBUILD)
Deleted:
  qpid-proton/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 00:40:13 UTC (rev 711648)
+++ PKGBUILD2020-09-24 00:40:48 UTC (rev 711649)
@@ -1,39 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=qpid-proton
-pkgver=0.31.0
-pkgrel=1
-pkgdesc='High-performance, lightweight messaging library'
-arch=('x86_64')
-url='https://qpid.apache.org/proton'
-license=('Apache')
-depends=('libjsoncpp.so' 'python')
-makedepends=('cmake' 'doxygen' 'go' 'python-setuptools' 'python-sphinx' 
'python-wheel' 'swig')
-checkdepends=('python-tox')
-source=("https://www.apache.org/dist/qpid/proton/${pkgver}/qpid-proton-${pkgver}.tar.gz;)
-sha512sums=('39487c34ae6ae1cc0c2f57f2ffb2bdf48a554e9ba8439a5c3f9776205cdb138f71284c9fc7626e4bbee3110ccce7da61ddb45f51ebddfede981ada0872074202')
-
-build() {
-cd ${pkgname}-${pkgver}
-
-mkdir build
-cd build
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_SUFFIX='' \
--DSYSINSTALL_BINDINGS=ON \
-..
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}/build
-
-make test
-}
-
-package() {
-cd ${pkgname}-${pkgver}/build
-
-make DESTDIR="${pkgdir}" install
-}

Copied: qpid-proton/repos/community-x86_64/PKGBUILD (from rev 711648, 
qpid-proton/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 00:40:48 UTC (rev 711649)
@@ -0,0 +1,39 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=qpid-proton
+pkgver=0.32.0
+pkgrel=1
+pkgdesc='High-performance, lightweight messaging library'
+arch=('x86_64')
+url='https://qpid.apache.org/proton'
+license=('Apache')
+depends=('libjsoncpp.so' 'python')
+makedepends=('cmake' 'doxygen' 'go' 'python-setuptools' 'python-sphinx' 
'python-wheel' 'swig')
+checkdepends=('python-tox')
+source=("https://www.apache.org/dist/qpid/proton/${pkgver}/qpid-proton-${pkgver}.tar.gz;)
+sha512sums=('4d1265308b685d5cdd28fd8746f13704c6e36a8dc35a2c121e07b9db21cabaf440da8dd1cf76892fc366845e7f472af2c29ae94dedee19d53756bba2bd4470b6')
+
+build() {
+cd ${pkgname}-${pkgver}
+
+mkdir build
+cd build
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_SUFFIX='' \
+-DSYSINSTALL_BINDINGS=ON \
+..
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}/build
+
+make test
+}
+
+package() {
+cd ${pkgname}-${pkgver}/build
+
+make DESTDIR="${pkgdir}" install
+}


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

2020-09-23 Thread Nicola Squartini via arch-commits
Date: Thursday, September 24, 2020 @ 00:40:13
  Author: tensor5
Revision: 711648

upgpkg: qpid-proton 0.32.0-1

Modified:
  qpid-proton/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 23:46:16 UTC (rev 711647)
+++ PKGBUILD2020-09-24 00:40:13 UTC (rev 711648)
@@ -1,7 +1,7 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=qpid-proton
-pkgver=0.31.0
+pkgver=0.32.0
 pkgrel=1
 pkgdesc='High-performance, lightweight messaging library'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 makedepends=('cmake' 'doxygen' 'go' 'python-setuptools' 'python-sphinx' 
'python-wheel' 'swig')
 checkdepends=('python-tox')
 
source=("https://www.apache.org/dist/qpid/proton/${pkgver}/qpid-proton-${pkgver}.tar.gz;)
-sha512sums=('39487c34ae6ae1cc0c2f57f2ffb2bdf48a554e9ba8439a5c3f9776205cdb138f71284c9fc7626e4bbee3110ccce7da61ddb45f51ebddfede981ada0872074202')
+sha512sums=('4d1265308b685d5cdd28fd8746f13704c6e36a8dc35a2c121e07b9db21cabaf440da8dd1cf76892fc366845e7f472af2c29ae94dedee19d53756bba2bd4470b6')
 
 build() {
 cd ${pkgname}-${pkgver}


[arch-commits] Commit in rofi-calc/repos/community-x86_64 (4 files)

2020-09-23 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, September 23, 2020 @ 23:46:16
  Author: svenstaro
Revision: 711647

archrelease: copy trunk to community-x86_64

Added:
  rofi-calc/repos/community-x86_64/PKGBUILD
(from rev 711646, rofi-calc/trunk/PKGBUILD)
  rofi-calc/repos/community-x86_64/rofi-calc.install
(from rev 711646, rofi-calc/trunk/rofi-calc.install)
Deleted:
  rofi-calc/repos/community-x86_64/PKGBUILD
  rofi-calc/repos/community-x86_64/rofi-calc.install

---+
 PKGBUILD  |   75 +---
 rofi-calc.install |   14 -
 2 files changed, 44 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 23:46:10 UTC (rev 711646)
+++ PKGBUILD2020-09-23 23:46:16 UTC (rev 711647)
@@ -1,38 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-pkgname=rofi-calc
-pkgver=1.8
-pkgrel=1
-pkgdesc="Do calculations in rofi"
-arch=('x86_64')
-url="https://github.com/svenstaro/rofi-calc;
-license=(MIT)
-depends=('rofi' 'libqalculate')
-install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/svenstaro/rofi-calc/archive/v${pkgver}.tar.gz)
-sha512sums=('654a5fad79ea69ed9dbabe736d9246516641a0a8d36739f38a4e1ed6d7562fe8a46ee575703d20dca0cda9802450bbd61084c74346445403ba737545de0726dd')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  autoreconf -i
-  rm -rf build
-  mkdir build
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver/build"
-
-  ../configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver/build"
-
-  make DESTDIR="$pkgdir/" install
-
-  install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rofi-calc/repos/community-x86_64/PKGBUILD (from rev 711646, 
rofi-calc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 23:46:16 UTC (rev 711647)
@@ -0,0 +1,37 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=rofi-calc
+pkgver=1.9
+pkgrel=1
+pkgdesc="Do calculations in rofi"
+arch=('x86_64')
+url="https://github.com/svenstaro/rofi-calc;
+license=(MIT)
+depends=('rofi' 'libqalculate')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/svenstaro/rofi-calc/archive/v${pkgver}.tar.gz)
+sha512sums=('c057498bccfff481d3c074b008a39d8c338a28fe6dbaeddb05866d70c7a84a8ea793d0b5f1fc7a08e32208b045207c5af4950b92ee13880921a821d07be5745e')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  autoreconf -i
+  mkdir build
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  ../configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  make DESTDIR="$pkgdir/" install
+
+  install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: rofi-calc.install
===
--- rofi-calc.install   2020-09-23 23:46:10 UTC (rev 711646)
+++ rofi-calc.install   2020-09-23 23:46:16 UTC (rev 711647)
@@ -1,7 +0,0 @@
-post_upgrade() {
-echo "Recommended way to launching rofi-calc: rofi -show calc -modi calc 
-no-show-match -no-sort"
-}
-
-post_install() {
-post_upgrade
-}

Copied: rofi-calc/repos/community-x86_64/rofi-calc.install (from rev 711646, 
rofi-calc/trunk/rofi-calc.install)
===
--- rofi-calc.install   (rev 0)
+++ rofi-calc.install   2020-09-23 23:46:16 UTC (rev 711647)
@@ -0,0 +1,7 @@
+post_upgrade() {
+echo "Recommended way to launching rofi-calc: rofi -show calc -modi calc 
-no-show-match -no-sort"
+}
+
+post_install() {
+post_upgrade
+}


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

2020-09-23 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, September 23, 2020 @ 23:46:10
  Author: svenstaro
Revision: 711646

upgpkg: rofi-calc 1.9-1

Modified:
  rofi-calc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 23:14:11 UTC (rev 711645)
+++ PKGBUILD2020-09-23 23:46:10 UTC (rev 711646)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 
 pkgname=rofi-calc
-pkgver=1.8
+pkgver=1.9
 pkgrel=1
 pkgdesc="Do calculations in rofi"
 arch=('x86_64')
@@ -10,13 +10,12 @@
 depends=('rofi' 'libqalculate')
 install=$pkgname.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/svenstaro/rofi-calc/archive/v${pkgver}.tar.gz)
-sha512sums=('654a5fad79ea69ed9dbabe736d9246516641a0a8d36739f38a4e1ed6d7562fe8a46ee575703d20dca0cda9802450bbd61084c74346445403ba737545de0726dd')
+sha512sums=('c057498bccfff481d3c074b008a39d8c338a28fe6dbaeddb05866d70c7a84a8ea793d0b5f1fc7a08e32208b045207c5af4950b92ee13880921a821d07be5745e')
 
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"
 
   autoreconf -i
-  rm -rf build
   mkdir build
 }
 


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 23:13:40
  Author: felixonmars
Revision: 711644

upgpkg: boinc 7.16.10-1

Modified:
  boinc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 23:00:24 UTC (rev 711643)
+++ PKGBUILD2020-09-23 23:13:40 UTC (rev 711644)
@@ -4,7 +4,7 @@
 
 pkgbase=boinc
 pkgname=(boinc boinc-nox)
-pkgver=7.16.9
+pkgver=7.16.10
 _tag="client_release/7.16/$pkgver"
 pkgrel=1
 arch=('x86_64')
@@ -18,7 +18,7 @@
 boinc.bash
 boinc.desktop
 boinc.sysusers)
-sha512sums=('9fe8c27a84840f02a22d31100be2a6d9c8bb24cfba8d0970a2e89cf6629b6e66004383f773053d4230d51ed873057e53171e5cdc98814c4043af1c108533035d'
+sha512sums=('1dd7b4a1cbdc6887e39fbf4e4401b24a6f6e2a9d506bf1a92edd105f175f2d6f5d42daa24d68ad791dc2c746249af01b022ff0e5e8f4376d9d730e766580e641'
 
'dec4bb6e571c2d99e1f57295149399eee03a8ec41b07ec3f7f197b910d246dcd6a5eb880301c9cd3a039d8c5aa6b07babf6ab4cae5f242c419c8cd71f56b90f5'
 
'b3fcd703a6f683d246242543c2f7b5fcfe403cb95b7786f1418b24c3dfb7c54c6b8c4816c0e9ae56b5ee4e4cae63f153ec522b04bf02f4f835dd90ac0e0ae204'
 
'85804d7e6b7e07f06e93e8c42507f5cd0b9415257d6ac7421603a2b6084699d847ae9720c1cf9e9793b750dfb768375116843b988b287ee7c66c1374e18f7934')


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 23:14:11
  Author: felixonmars
Revision: 711645

archrelease: copy trunk to community-x86_64

Added:
  boinc/repos/community-x86_64/PKGBUILD
(from rev 711644, boinc/trunk/PKGBUILD)
  boinc/repos/community-x86_64/boinc.bash
(from rev 711644, boinc/trunk/boinc.bash)
  boinc/repos/community-x86_64/boinc.desktop
(from rev 711644, boinc/trunk/boinc.desktop)
  boinc/repos/community-x86_64/boinc.install
(from rev 711644, boinc/trunk/boinc.install)
  boinc/repos/community-x86_64/boinc.sysusers
(from rev 711644, boinc/trunk/boinc.sysusers)
Deleted:
  boinc/repos/community-x86_64/PKGBUILD
  boinc/repos/community-x86_64/boinc.bash
  boinc/repos/community-x86_64/boinc.desktop
  boinc/repos/community-x86_64/boinc.install
  boinc/repos/community-x86_64/boinc.sysusers

+
 PKGBUILD   |  240 +++
 boinc.bash |  198 ++---
 boinc.desktop  |   32 +++
 boinc.install  |   30 +++---
 boinc.sysusers |4 
 5 files changed, 252 insertions(+), 252 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 23:13:40 UTC (rev 711644)
+++ PKGBUILD2020-09-23 23:14:11 UTC (rev 711645)
@@ -1,120 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Michal Krenek 
-
-pkgbase=boinc
-pkgname=(boinc boinc-nox)
-pkgver=7.16.9
-_tag="client_release/7.16/$pkgver"
-pkgrel=1
-arch=('x86_64')
-url="https://boinc.berkeley.edu/;
-license=('LGPL')
-makedepends=('curl' 'freeglut' 'glu' 'inetutils' 'libnotify' 'libnsl' 'libxmu' 
'libxslt' 'libxss'
- 'mesa' 'perl-xml-sax' 'sqlite3' 'webkit2gtk' 'wxgtk3')
-install=$pkgbase.install
-options=('!staticlibs')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/BOINC/boinc/archive/$_tag.tar.gz;
-boinc.bash
-boinc.desktop
-boinc.sysusers)
-sha512sums=('9fe8c27a84840f02a22d31100be2a6d9c8bb24cfba8d0970a2e89cf6629b6e66004383f773053d4230d51ed873057e53171e5cdc98814c4043af1c108533035d'
-
'dec4bb6e571c2d99e1f57295149399eee03a8ec41b07ec3f7f197b910d246dcd6a5eb880301c9cd3a039d8c5aa6b07babf6ab4cae5f242c419c8cd71f56b90f5'
-
'b3fcd703a6f683d246242543c2f7b5fcfe403cb95b7786f1418b24c3dfb7c54c6b8c4816c0e9ae56b5ee4e4cae63f153ec522b04bf02f4f835dd90ac0e0ae204'
-
'85804d7e6b7e07f06e93e8c42507f5cd0b9415257d6ac7421603a2b6084699d847ae9720c1cf9e9793b750dfb768375116843b988b287ee7c66c1374e18f7934')
-
-prepare() {
-  mv boinc-client_release-*-$pkgver $pkgbase-$pkgver
-  cp -a "$srcdir"/$pkgbase-$pkgver{,-nox}
-
-  cd $pkgbase-$pkgver
-  ./_autosetup
-
-  # Prepare boinc-nox
-  cd "$srcdir"/$pkgbase-$pkgver-nox
-  # Don't force xss
-  sed -i 's/^  enable_xss="yes"$/  enable_xss="no"/' configure.ac
-  ./_autosetup
-}
-
-build() {
-  cd "$srcdir"/$pkgbase-$pkgver
-  LDFLAGS='-lX11' ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---enable-libraries \
---enable-unicode \
---enable-shared \
---enable-dynamic-client-linkage \
---enable-client \
---enable-manager \
---disable-static \
---disable-server \
---with-ssl \
---with-x \
---with-wxdir=/usr/lib \
---with-wx-config=$(which wx-config-gtk3)
-  make
-
-  # Build boinc-nox
-  cd "$srcdir"/$pkgbase-$pkgver-nox
-  PKG_CONFIG=/usr/bin/pkg-config ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---enable-libraries \
---enable-unicode \
---enable-shared \
---enable-dynamic-client-linkage \
---enable-client \
---disable-server \
---disable-static \
---disable-manager \
---with-ssl \
---without-wxdir \
---without-x
-  make
-}
-
-package_boinc() {
-  pkgdesc="Berkeley Open Infrastructure for Network Computing for desktop"
-  depends=('curl' 'libnotify' 'libnsl' 'libxss' 'sqlite3' 'webkit2gtk' 
'wxgtk3')
-
-  cd $pkgbase-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  #install sysusers conf
-  install -Dm644 "${srcdir}/$pkgbase.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/$pkgbase.conf"
-
-  #install bash-completion
-  install -Dm644 "${srcdir}/$pkgbase.bash" 
"${pkgdir}/usr/share/bash-completion/completions/$pkgbase"
-
-  #install .desktop File
-  install -Dm644 "${srcdir}/$pkgbase.desktop" 
"${pkgdir}/usr/share/applications/$pkgbase.desktop"
-
-  #install icons
-  install -Dm644 
"${srcdir}/$pkgbase-$pkgver/packages/generic/sea/boincmgr.48x48.png" 
"${pkgdir}/usr/share/pixmaps/$pkgbase.png"
-
-  #remove initscripts stuff
-  rm -rf "$pkgdir/etc"
-}
-
-package_boinc-nox() {
-  pkgdesc="Berkeley Open Infrastructure for Network Computing for desktop 
without Xorg dependencies"
-  depends=('curl' 'libjpeg-turbo')
-  provides=('boinc')
-  conflicts=('boinc')
-
-  cd $pkgbase-$pkgver-nox
-
-  make DESTDIR="$pkgdir" install
-
-  #install sysusers conf
-  install -Dm644 "${srcdir}/$pkgbase.sysusers" 

[arch-commits] Commit in linux-hardened/trunk (PKGBUILD config)

2020-09-23 Thread Levente Polyak via arch-commits
Date: Wednesday, September 23, 2020 @ 23:07:41
  Author: anthraxx
Revision: 396448

upgpkg: linux-hardened 5.8.11.a-1

Modified:
  linux-hardened/trunk/PKGBUILD
  linux-hardened/trunk/config

--+
 PKGBUILD |8 
 config   |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 22:59:53 UTC (rev 396447)
+++ PKGBUILD2020-09-23 23:07:41 UTC (rev 396448)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-pkgver=5.8.10.a
+pkgver=5.8.11.a
 pkgrel=1
 pkgdesc='Security-Hardened Linux'
 url='https://github.com/anthraxx/linux-hardened'
@@ -28,11 +28,11 @@
   '65EEFE022108E2B708CBFCF7F9E712E59AF5F22A'  # Daniel Micay
   'E240B57E2C4630BA768E2F26FC1B547C8D8172C8'  # Levente Polyak
 )
-sha256sums=('9d6e126a7fad618a477540e242f148f7d61e0116b500312f788ac63e126b5af2'
+sha256sums=('3e5940ceb4b7a462c4886ab52ca3a957287951e2058c34694b14ff1e73f6c04b'
 'SKIP'
-'a9990b13af29eb510f105cc80ca337c68ebaff1e5173774e9292bef363b1ce57'
+'f400e8a377da3ff2a7cdeda40e5d3b19ce2c06bafa0c02e366f726f81da77531'
 'SKIP'
-'241767c92e8ce4a05b53fe1973bea17cc5038634466136c49ac0ad6bfbd85314'
+'c623dfe95219c44a0c930eec2f75a7ff0b668d24e3097852dd288fbbdfd209b5'
 '8cb21e0b3411327b627a9dd15b8eb773295a0d2782b1a41b2a8839d1b2f5778c')
 
 export KBUILD_BUILD_HOST=archlinux

Modified: config
===
--- config  2020-09-23 22:59:53 UTC (rev 396447)
+++ config  2020-09-23 23:07:41 UTC (rev 396448)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.8.10 Kernel Configuration
+# Linux/x86 5.8.11 Kernel Configuration
 #
 CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.2.0"
 CONFIG_CC_IS_GCC=y


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

2020-09-23 Thread Levente Polyak via arch-commits
Date: Wednesday, September 23, 2020 @ 23:07:46
  Author: anthraxx
Revision: 396449

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 396448, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config
(from rev 396448, linux-hardened/trunk/config)
  linux-hardened/repos/extra-x86_64/sphinx-workaround.patch
(from rev 396448, linux-hardened/trunk/sphinx-workaround.patch)
Deleted:
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config
  linux-hardened/repos/extra-x86_64/sphinx-workaround.patch

-+
 PKGBUILD|  412 
 config  |21978 +++---
 sphinx-workaround.patch |   26 
 3 files changed, 11208 insertions(+), 11208 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 396448:396449 to see the changes.


[arch-commits] Commit in agda-stdlib/repos/community-x86_64 (4 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 23:00:24
  Author: felixonmars
Revision: 711643

archrelease: copy trunk to community-x86_64

Added:
  agda-stdlib/repos/community-x86_64/PKGBUILD
(from rev 711642, agda-stdlib/trunk/PKGBUILD)
  agda-stdlib/repos/community-x86_64/standard-library.agda-lib.in
(from rev 711642, agda-stdlib/trunk/standard-library.agda-lib.in)
Deleted:
  agda-stdlib/repos/community-x86_64/PKGBUILD
  agda-stdlib/repos/community-x86_64/standard-library.agda-lib.in

--+
 PKGBUILD |   98 -
 standard-library.agda-lib.in |4 -
 2 files changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 23:00:03 UTC (rev 711642)
+++ PKGBUILD2020-09-23 23:00:24 UTC (rev 711643)
@@ -1,49 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=agda-stdlib
-pkgver=1.3
-_agdaver=2.6.1.1
-pkgrel=3
-pkgdesc="Agda standard libraries"
-url="https://github.com/agda/agda-stdlib;
-license=("MIT")
-arch=('x86_64')
-depends=("agda=$_agdaver")
-makedepends=('ghc' 'haskell-filemanip')
-options=('staticlibs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/agda/agda-stdlib/archive/v$pkgver.tar.gz;
-standard-library.agda-lib.in)
-sha512sums=('a1b78bd0e4bbca4cfa8c565cf14f05177cacbb28b63fae98bbdce482bca385a169c7aae0ac14973faf186e812abf7d8af47bfeb80110d9b0f671e1a475dbf109'
-
'92fad2f9b941af4506bb0d5d9d533d09823df89f7530ee5d787b741816ba07e68f25b96d6653ae6ed949ec23484c1fba47a63cc6401311462a55b5e06cfc032c')
-
-prepare() {
-cd $pkgname-$pkgver
-rm standard-library.agda-lib
-sed -i 's/< *4.14/<5/' lib.cabal
-}
-
-build() {
-cd $pkgname-$pkgver
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla
-runhaskell Setup build
-
-dist/build/GenerateEverything/GenerateEverything
-
-agda -i. -isrc Everything.agda
-}
-
-package() {
-install -Dm644 standard-library.agda-lib.in 
"$pkgdir"/usr/share/agda/lib/standard-library.agda-lib
-
-cd $pkgname-$pkgver
-install -dm755 "$pkgdir"/usr/share/agda/lib/stdlib
-cp -pr src/* "$pkgdir"/usr/share/agda/lib/stdlib/
-
-# Symlink to avoid writing to this place when agda-lib is present
-install -dm755 "$pkgdir"/usr/share/agda/lib/_build/$_agdaver/agda
-ln -s ../../../stdlib "$pkgdir"/usr/share/agda/lib/_build/$_agdaver/agda/
-
-install -D -m644 LICENCE "$pkgdir"/usr/share/licenses/$pkgname/LICENCE
-}

Copied: agda-stdlib/repos/community-x86_64/PKGBUILD (from rev 711642, 
agda-stdlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 23:00:24 UTC (rev 711643)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=agda-stdlib
+pkgver=1.4
+_agdaver=2.6.1.1
+pkgrel=1
+pkgdesc="Agda standard libraries"
+url="https://github.com/agda/agda-stdlib;
+license=("MIT")
+arch=('x86_64')
+depends=("agda=$_agdaver")
+makedepends=('ghc' 'haskell-filemanip')
+options=('staticlibs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/agda/agda-stdlib/archive/v$pkgver.tar.gz;
+standard-library.agda-lib.in)
+sha512sums=('90c05d54eaf1d7c78d00f73044afa1f3b4d99df622d40b3cea88fe280f0770ccaeddd787d8fb384c150123f592bb6a7ec24b842a9fcc2936f581d847928223ca'
+
'92fad2f9b941af4506bb0d5d9d533d09823df89f7530ee5d787b741816ba07e68f25b96d6653ae6ed949ec23484c1fba47a63cc6401311462a55b5e06cfc032c')
+
+prepare() {
+cd $pkgname-$pkgver
+rm standard-library.agda-lib
+sed -i 's/< *4.14/<5/' lib.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla
+runhaskell Setup build
+
+dist/build/GenerateEverything/GenerateEverything
+
+agda -i. -isrc Everything.agda
+}
+
+package() {
+install -Dm644 standard-library.agda-lib.in 
"$pkgdir"/usr/share/agda/lib/standard-library.agda-lib
+
+cd $pkgname-$pkgver
+install -dm755 "$pkgdir"/usr/share/agda/lib/stdlib
+cp -pr src/* "$pkgdir"/usr/share/agda/lib/stdlib/
+
+# Symlink to avoid writing to this place when agda-lib is present
+install -dm755 "$pkgdir"/usr/share/agda/lib/_build/$_agdaver/agda
+ln -s ../../../stdlib "$pkgdir"/usr/share/agda/lib/_build/$_agdaver/agda/
+
+install -D -m644 LICENCE "$pkgdir"/usr/share/licenses/$pkgname/LICENCE
+}

Deleted: standard-library.agda-lib.in
===
--- standard-library.agda-lib.in2020-09-23 23:00:03 UTC (rev 711642)
+++ standard-library.agda-lib.in2020-09-23 23:00:24 UTC (rev 711643)
@@ -1,2 +0,0 @@
-name: standard-library
-include: stdlib

Copied: agda-stdlib/repos/community-x86_64/standard-library.agda-lib.in (from 

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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 23:00:03
  Author: felixonmars
Revision: 711642

upgpkg: agda-stdlib 1.4-1

Modified:
  agda-stdlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 22:59:46 UTC (rev 711641)
+++ PKGBUILD2020-09-23 23:00:03 UTC (rev 711642)
@@ -2,9 +2,9 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=agda-stdlib
-pkgver=1.3
+pkgver=1.4
 _agdaver=2.6.1.1
-pkgrel=3
+pkgrel=1
 pkgdesc="Agda standard libraries"
 url="https://github.com/agda/agda-stdlib;
 license=("MIT")
@@ -14,7 +14,7 @@
 options=('staticlibs')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/agda/agda-stdlib/archive/v$pkgver.tar.gz;
 standard-library.agda-lib.in)
-sha512sums=('a1b78bd0e4bbca4cfa8c565cf14f05177cacbb28b63fae98bbdce482bca385a169c7aae0ac14973faf186e812abf7d8af47bfeb80110d9b0f671e1a475dbf109'
+sha512sums=('90c05d54eaf1d7c78d00f73044afa1f3b4d99df622d40b3cea88fe280f0770ccaeddd787d8fb384c150123f592bb6a7ec24b842a9fcc2936f581d847928223ca'
 
'92fad2f9b941af4506bb0d5d9d533d09823df89f7530ee5d787b741816ba07e68f25b96d6653ae6ed949ec23484c1fba47a63cc6401311462a55b5e06cfc032c')
 
 prepare() {


[arch-commits] Commit in memcached/repos/extra-x86_64 (8 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:59:53
  Author: felixonmars
Revision: 396447

archrelease: copy trunk to extra-x86_64

Added:
  memcached/repos/extra-x86_64/PKGBUILD
(from rev 396446, memcached/trunk/PKGBUILD)
  memcached/repos/extra-x86_64/memcached.service.patch
(from rev 396446, memcached/trunk/memcached.service.patch)
  memcached/repos/extra-x86_64/memcached.sysusers
(from rev 396446, memcached/trunk/memcached.sysusers)
  memcached/repos/extra-x86_64/memcached.tmpfiles
(from rev 396446, memcached/trunk/memcached.tmpfiles)
Deleted:
  memcached/repos/extra-x86_64/PKGBUILD
  memcached/repos/extra-x86_64/memcached.service.patch
  memcached/repos/extra-x86_64/memcached.sysusers
  memcached/repos/extra-x86_64/memcached.tmpfiles

-+
 PKGBUILD|  108 -
 memcached.service.patch |  150 +++---
 memcached.sysusers  |2 
 memcached.tmpfiles  |2 
 4 files changed, 131 insertions(+), 131 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 22:59:27 UTC (rev 396446)
+++ PKGBUILD2020-09-23 22:59:53 UTC (rev 396447)
@@ -1,54 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Dan McGee 
-# Contributor: Michael Irwin <6d6...@gmail.com>
-
-pkgname=memcached
-pkgver=1.6.6
-pkgrel=1
-pkgdesc='Distributed memory object caching system'
-url='https://memcached.org/'
-arch=('x86_64')
-license=('GPL')
-depends=('libevent' 'libseccomp' 'libseccomp.so')
-optdepends=('perl: for memcached-tool usage')
-source=(https://www.memcached.org/files/${pkgname}-${pkgver}.tar.gz
-memcached.service.patch
-memcached.tmpfiles
-memcached.sysusers)
-sha512sums=('dfd19bf42d35fff391bb479338706a83082e3cdd3ff6e225d3d4da9df01b0a1f659a012dc30766651ffd57f0c19128fc4c3df29b721e588c909656d02cfdaa0a'
-
'dd21f49062054c601469f9abc9ee39a0f06c604e8805e7bc9bf2cfa65429962f93e7ac67764257c578fc15b1e75394956f350162c99b084c76a6e14d9331f31f'
-
'960705ff74d25afed477e0b2a5872a3a4fb49ed3105a351f0d0224abc947778f9dbda81e80be94ab636da4a8411a9dd56a8fd4513e5b86a3096a14fa67f1548b'
-
'e6ddcab9a6fee024072b6363ef60aa176ed258369bf3a17d475f19b1f410ffd6195b9c5737dc5b1371e8974b44bdbdaa109927acaeb54fb40302a5d67d7c13a8')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -Np1 < ../memcached.service.patch
-  sed -e 's/^##safer##//g' -i scripts/*.service
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure \
---prefix=/usr \
---enable-seccomp
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make test
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm 755 scripts/memcached-tool -t "${pkgdir}/usr/bin"
-  install -Dm 644 scripts/memcached-tool.1 -t "${pkgdir}/usr/share/man/man1"
-
-  install -Dm 644 scripts/*.service -t "${pkgdir}/usr/lib/systemd/system"
-  install -Dm 644 ../memcached.tmpfiles 
"${pkgdir}/usr/lib/tmpfiles.d/memcached.conf"
-  install -Dm 644 ../memcached.sysusers 
"${pkgdir}/usr/lib/sysusers.d/memcached.conf"
-}
-
-# vim: ts=2 sw=2 et:

Copied: memcached/repos/extra-x86_64/PKGBUILD (from rev 396446, 
memcached/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 22:59:53 UTC (rev 396447)
@@ -0,0 +1,54 @@
+# Maintainer: Levente Polyak 
+# Contributor: Dan McGee 
+# Contributor: Michael Irwin <6d6...@gmail.com>
+
+pkgname=memcached
+pkgver=1.6.7
+pkgrel=1
+pkgdesc='Distributed memory object caching system'
+url='https://memcached.org/'
+arch=('x86_64')
+license=('GPL')
+depends=('libevent' 'libseccomp' 'libseccomp.so')
+optdepends=('perl: for memcached-tool usage')
+source=(https://www.memcached.org/files/${pkgname}-${pkgver}.tar.gz
+memcached.service.patch
+memcached.tmpfiles
+memcached.sysusers)
+sha512sums=('8b4c44ae4da8577cc5431aaca6118fdba27c42418a51a6d319d9040a975371a2fda9fcea2cb44c3d20c92f08961cb5f0ddd28c2f4cd12986b73c9342d91ea2c8'
+
'dd21f49062054c601469f9abc9ee39a0f06c604e8805e7bc9bf2cfa65429962f93e7ac67764257c578fc15b1e75394956f350162c99b084c76a6e14d9331f31f'
+
'960705ff74d25afed477e0b2a5872a3a4fb49ed3105a351f0d0224abc947778f9dbda81e80be94ab636da4a8411a9dd56a8fd4513e5b86a3096a14fa67f1548b'
+
'e6ddcab9a6fee024072b6363ef60aa176ed258369bf3a17d475f19b1f410ffd6195b9c5737dc5b1371e8974b44bdbdaa109927acaeb54fb40302a5d67d7c13a8')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 < ../memcached.service.patch
+  sed -e 's/^##safer##//g' -i scripts/*.service
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--enable-seccomp
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make test
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm 755 scripts/memcached-tool -t 

[arch-commits] Commit in deepin-draw/repos/community-x86_64 (4 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:59:46
  Author: felixonmars
Revision: 711641

archrelease: copy trunk to community-x86_64

Added:
  deepin-draw/repos/community-x86_64/PKGBUILD
(from rev 711640, deepin-draw/trunk/PKGBUILD)
  deepin-draw/repos/community-x86_64/deepin-draw-dwidget-include.patch
(from rev 711640, deepin-draw/trunk/deepin-draw-dwidget-include.patch)
Deleted:
  deepin-draw/repos/community-x86_64/PKGBUILD
  deepin-draw/repos/community-x86_64/deepin-draw-dwidget-include.patch

---+
 PKGBUILD  |   72 ++--
 deepin-draw-dwidget-include.patch |   48 
 2 files changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 22:59:25 UTC (rev 711640)
+++ PKGBUILD2020-09-23 22:59:46 UTC (rev 711641)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=deepin-draw
-pkgver=5.8.0.19
-pkgrel=3
-pkgdesc="A lightweight drawing tool for Linux Deepin"
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-draw;
-license=('GPL3')
-depends=('deepin-picker' 'deepin-qt5integration' 'freeimage' 'libexif' 
'qt5-imageformats')
-makedepends=('qt5-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-draw/archive/$pkgver.tar.gz;
- deepin-draw-dwidget-include.patch)
-sha512sums=('eed4b6935227dea466eb73e6e52756cfc01969f2947f5fb0de481c7049dfda427abcbc4e620df05dcba699b08c21a5e958b8435299859637405d498976f71d5e'
-
'a512608d7812b4389f788c810a8f7aa1ecd7eaca448664766b54eca9002af5fba1683694f9a8225ab0013b4925d1b3c062f14728187e4a3d3d243b314934104e')
-
-prepare() {
-  cd deepin-draw-$pkgver
-  patch -p1 -i ../deepin-draw-dwidget-include.patch # Fix missing includes
-  sed -i '/include /i #include ' 
frame/cgraphicsview.h
-  sed -i '/include /a #include ' widgets/ciconbutton.cpp
-
-}
-
-build() {
-  cd deepin-draw-$pkgver
-
-  qmake-qt5
-  make
-}
-
-package() {
-  cd deepin-draw-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-draw/repos/community-x86_64/PKGBUILD (from rev 711640, 
deepin-draw/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 22:59:46 UTC (rev 711641)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-draw
+pkgver=5.8.0.20
+pkgrel=1
+pkgdesc="A lightweight drawing tool for Linux Deepin"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-draw;
+license=('GPL3')
+depends=('deepin-picker' 'deepin-qt5integration' 'freeimage' 'libexif' 
'qt5-imageformats')
+makedepends=('qt5-tools')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-draw/archive/$pkgver.tar.gz;
+ deepin-draw-dwidget-include.patch)
+sha512sums=('60b643b8b699eec01b6cf3fb09f68c3d4107e503f4a88dfa9ad080d4d00f80e72f20253ea36dd5f5f20e74d9258c7aecb1e92ae111e816b96e37789d169095a8'
+
'a512608d7812b4389f788c810a8f7aa1ecd7eaca448664766b54eca9002af5fba1683694f9a8225ab0013b4925d1b3c062f14728187e4a3d3d243b314934104e')
+
+prepare() {
+  cd deepin-draw-$pkgver
+  patch -p1 -i ../deepin-draw-dwidget-include.patch # Fix missing includes
+  sed -i '/include /i #include ' 
frame/cgraphicsview.h
+  sed -i '/include /a #include ' widgets/ciconbutton.cpp
+
+}
+
+build() {
+  cd deepin-draw-$pkgver
+
+  qmake-qt5
+  make
+}
+
+package() {
+  cd deepin-draw-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}

Deleted: deepin-draw-dwidget-include.patch
===
--- deepin-draw-dwidget-include.patch   2020-09-23 22:59:25 UTC (rev 711640)
+++ deepin-draw-dwidget-include.patch   2020-09-23 22:59:46 UTC (rev 711641)
@@ -1,24 +0,0 @@
-diff --git a/widgets/ccheckbutton.h b/widgets/ccheckbutton.h
-index c219285..0273c59 100644
 a/widgets/ccheckbutton.h
-+++ b/widgets/ccheckbutton.h
-@@ -21,6 +21,7 @@
- 
- #include 
- #include 
-+#include 
- 
- DWIDGET_USE_NAMESPACE
- 
-diff --git a/widgets/cclickbutton.h b/widgets/cclickbutton.h
-index 7da95b4..d1f0eed 100644
 a/widgets/cclickbutton.h
-+++ b/widgets/cclickbutton.h
-@@ -20,6 +20,7 @@
- #define CCLICKBUTTON_H
- 
- #include 
-+#include 
- 
- DWIDGET_USE_NAMESPACE
- 

Copied: deepin-draw/repos/community-x86_64/deepin-draw-dwidget-include.patch 
(from rev 711640, deepin-draw/trunk/deepin-draw-dwidget-include.patch)
===
--- deepin-draw-dwidget-include.patch   (rev 0)
+++ deepin-draw-dwidget-include.patch   2020-09-23 22:59:46 UTC (rev 711641)
@@ -0,0 +1,24 @@
+diff --git a/widgets/ccheckbutton.h b/widgets/ccheckbutton.h
+index c219285..0273c59 100644
+--- a/widgets/ccheckbutton.h
 b/widgets/ccheckbutton.h
+@@ -21,6 +21,7 @@
+ 
+ #include 
+ #include 
++#include 
+ 
+ 

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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:59:25
  Author: felixonmars
Revision: 711640

upgpkg: deepin-draw 5.8.0.20-1

Modified:
  deepin-draw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 22:53:10 UTC (rev 711639)
+++ PKGBUILD2020-09-23 22:59:25 UTC (rev 711640)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=deepin-draw
-pkgver=5.8.0.19
-pkgrel=3
+pkgver=5.8.0.20
+pkgrel=1
 pkgdesc="A lightweight drawing tool for Linux Deepin"
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-draw;
@@ -12,7 +12,7 @@
 groups=('deepin-extra')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-draw/archive/$pkgver.tar.gz;
  deepin-draw-dwidget-include.patch)
-sha512sums=('eed4b6935227dea466eb73e6e52756cfc01969f2947f5fb0de481c7049dfda427abcbc4e620df05dcba699b08c21a5e958b8435299859637405d498976f71d5e'
+sha512sums=('60b643b8b699eec01b6cf3fb09f68c3d4107e503f4a88dfa9ad080d4d00f80e72f20253ea36dd5f5f20e74d9258c7aecb1e92ae111e816b96e37789d169095a8'
 
'a512608d7812b4389f788c810a8f7aa1ecd7eaca448664766b54eca9002af5fba1683694f9a8225ab0013b4925d1b3c062f14728187e4a3d3d243b314934104e')
 
 prepare() {


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:59:27
  Author: felixonmars
Revision: 396446

upgpkg: memcached 1.6.7-1

Modified:
  memcached/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 21:32:13 UTC (rev 396445)
+++ PKGBUILD2020-09-23 22:59:27 UTC (rev 396446)
@@ -3,7 +3,7 @@
 # Contributor: Michael Irwin <6d6...@gmail.com>
 
 pkgname=memcached
-pkgver=1.6.6
+pkgver=1.6.7
 pkgrel=1
 pkgdesc='Distributed memory object caching system'
 url='https://memcached.org/'
@@ -15,7 +15,7 @@
 memcached.service.patch
 memcached.tmpfiles
 memcached.sysusers)
-sha512sums=('dfd19bf42d35fff391bb479338706a83082e3cdd3ff6e225d3d4da9df01b0a1f659a012dc30766651ffd57f0c19128fc4c3df29b721e588c909656d02cfdaa0a'
+sha512sums=('8b4c44ae4da8577cc5431aaca6118fdba27c42418a51a6d319d9040a975371a2fda9fcea2cb44c3d20c92f08961cb5f0ddd28c2f4cd12986b73c9342d91ea2c8'
 
'dd21f49062054c601469f9abc9ee39a0f06c604e8805e7bc9bf2cfa65429962f93e7ac67764257c578fc15b1e75394956f350162c99b084c76a6e14d9331f31f'
 
'960705ff74d25afed477e0b2a5872a3a4fb49ed3105a351f0d0224abc947778f9dbda81e80be94ab636da4a8411a9dd56a8fd4513e5b86a3096a14fa67f1548b'
 
'e6ddcab9a6fee024072b6363ef60aa176ed258369bf3a17d475f19b1f410ffd6195b9c5737dc5b1371e8974b44bdbdaa109927acaeb54fb40302a5d67d7c13a8')


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:53:10
  Author: felixonmars
Revision: 711639

archrelease: copy trunk to community-x86_64

Added:
  xmobar/repos/community-x86_64/PKGBUILD
(from rev 711638, xmobar/trunk/PKGBUILD)
Deleted:
  xmobar/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 22:52:53 UTC (rev 711638)
+++ PKGBUILD2020-09-23 22:53:10 UTC (rev 711639)
@@ -1,69 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jelle van der Waa 
-# Contributer: Sergej Pupykin 
-# Contributor: Arch Haskell Team 
-
-pkgname=xmobar
-pkgver=0.35
-pkgrel=50
-pkgdesc='Minimalistic Text Based Status Bar'
-url='https://hackage.haskell.org/package/xmobar'
-license=('BSD')
-arch=('x86_64')
-depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
- 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
- 'haskell-hinotify' 'haskell-stm' 'haskell-parsec' 
'haskell-parsec-numbers'
- 'haskell-mtl' 'haskell-regex-base' 'haskell-regex-compat'
- 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-cereal' 
'haskell-netlink'
- 'haskell-text' 'haskell-async' 'haskell-aeson'
- 'haskell-timezone-olson' 'haskell-timezone-series' 'alsa-lib'
- 'haskell-extensible-exceptions' 'haskell-http-conduit'
- 'haskell-http-types' 'haskell-http-client-tls' 'haskell-alsa-core' 
'haskell-alsa-mixer')
-makedepends=('ghc' 'haskell-hspec' 'haskell-temporary')
-source=(https://github.com/jaor/xmobar/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('214fae1d3f1e04759537b675ed8cc7edc6ad6fd18220d375d931e1d3626107f1f504cde55dbd5aced27fabd9149a676dfd645efd94a9e0ee0db83bfdce1c4502')
-
-prepare() {
-  cd xmobar-$pkgver
-  sed -e 's/&& <.*,/,/g' -e 's/==.*,/,/g' -i xmobar.cabal
-}
-
-build() {
-  cd xmobar-${pkgver}
-
-  _flags=(with_xft with_utf8 with_inotify with_mpd with_alsa with_nl80211
-  with_datezone with_mpris with_dbus with_xpm with_threaded
-  with_rtsopts with_weather)
-
-  runhaskell setup configure -O \
---enable-shared \
---enable-executable-dynamic \
---disable-library-vanilla \
---prefix=/usr \
---dynlibdir=/usr/lib \
---libsubdir=\$compiler/site-local/\$pkgid \
---ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
---ghc-option='-pie' \
---flags="${_flags[*]}" \
---enable-tests
-  runhaskell setup build
-  runhaskell setup register --gen-script
-  runhaskell setup unregister --gen-script
-  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-check() {
-  cd xmobar-${pkgver}
-  runhaskell setup test
-}
-
-package() {
-  cd xmobar-${pkgver}
-  install -Dm 744 register.sh   
"${pkgdir}/usr/share/haskell/register/xmobar.sh"
-  install -Dm 744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/xmobar.sh"
-  runhaskell setup copy --destdir="${pkgdir}"
-  install -Dm 644 license -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: xmobar/repos/community-x86_64/PKGBUILD (from rev 711638, 
xmobar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 22:53:10 UTC (rev 711639)
@@ -0,0 +1,64 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.36
+pkgrel=1
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('BSD')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-stm' 'haskell-parsec' 
'haskell-parsec-numbers'
+ 'haskell-mtl' 'haskell-regex-base' 'haskell-regex-compat'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-cereal' 
'haskell-netlink'
+ 'haskell-text' 'haskell-async' 'haskell-aeson'
+ 'haskell-timezone-olson' 'haskell-timezone-series' 'alsa-lib'
+ 'haskell-extensible-exceptions' 'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-http-client-tls' 'haskell-alsa-core' 
'haskell-alsa-mixer')
+makedepends=('ghc' 'haskell-hspec' 'haskell-temporary')
+source=(https://github.com/jaor/xmobar/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('15abb262187448cd71f93e67f04ab40989f541dd02f968924521f99727cd75cb92d650d495fc40ad4bed97fa552185daca7801aa2d5079aa47a39dce9b4ea4f7')
+
+build() {
+  cd xmobar-${pkgver}
+
+  _flags=(with_xft with_utf8 with_inotify with_mpd with_alsa with_nl80211
+  with_datezone with_mpris with_dbus with_xpm 

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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:52:37
  Author: felixonmars
Revision: 711636

upgpkg: vim-nerdtree 6.9.7-1

Modified:
  vim-nerdtree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 22:46:43 UTC (rev 711635)
+++ PKGBUILD2020-09-23 22:52:37 UTC (rev 711636)
@@ -6,7 +6,7 @@
 # Contributor: Laszlo Papp 
 
 pkgname=vim-nerdtree
-pkgver=6.9.6
+pkgver=6.9.7
 pkgrel=1
 pkgdesc='Tree explorer plugin for navigating the filesystem'
 url='https://github.com/scrooloose/nerdtree'
@@ -15,7 +15,7 @@
 depends=('vim')
 groups=('vim-plugins')
 
source=(https://github.com/scrooloose/nerdtree/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('6d112320f7172c9507144d3ace4c1513fb68d879d520aedc74c225ca81faf4477367085f896614f16cec6cb4cc9d579cabee02a484652d980486394a27dc2ef6')
+sha512sums=('99ece2c20fd40e3648da03b350a809dd3bfe2d41230bf14ad924d9a3cb6e34bbed1a8a2e06e873f2212ce7180b456d3a212c8c2e790d6762023a46c684b759db')
 
 prepare() {
   cd nerdtree-${pkgver}


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:52:53
  Author: felixonmars
Revision: 711637

archrelease: copy trunk to community-any

Added:
  vim-nerdtree/repos/community-any/PKGBUILD
(from rev 711636, vim-nerdtree/trunk/PKGBUILD)
Deleted:
  vim-nerdtree/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 22:52:37 UTC (rev 711636)
+++ PKGBUILD2020-09-23 22:52:53 UTC (rev 711637)
@@ -1,35 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Alexander F Rødseth 
-# Contributor: Andrea Scarpino 
-# Contributor: Kwpolska 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Laszlo Papp 
-
-pkgname=vim-nerdtree
-pkgver=6.9.6
-pkgrel=1
-pkgdesc='Tree explorer plugin for navigating the filesystem'
-url='https://github.com/scrooloose/nerdtree'
-arch=('any')
-license=('custom:WTFPL')
-depends=('vim')
-groups=('vim-plugins')
-source=(https://github.com/scrooloose/nerdtree/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('6d112320f7172c9507144d3ace4c1513fb68d879d520aedc74c225ca81faf4477367085f896614f16cec6cb4cc9d579cabee02a484652d980486394a27dc2ef6')
-
-prepare() {
-  cd nerdtree-${pkgver}
-  sed 's|\[s:rootNERDTreePath,|["/usr/share/doc/vim-nerdtree",|' -i 
autoload/nerdtree.vim
-}
-
-package() {
-  cd nerdtree-${pkgver}
-  local _installpath="${pkgdir}/usr/share/vim/vimfiles"
-  install -d "${_installpath}"
-  cp -r -t "${_installpath}" autoload doc plugin syntax nerdtree_plugin lib
-  install -Dm 644 CHANGELOG.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENCE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.markdown CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: vim-nerdtree/repos/community-any/PKGBUILD (from rev 711636, 
vim-nerdtree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 22:52:53 UTC (rev 711637)
@@ -0,0 +1,35 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander F Rødseth 
+# Contributor: Andrea Scarpino 
+# Contributor: Kwpolska 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Laszlo Papp 
+
+pkgname=vim-nerdtree
+pkgver=6.9.7
+pkgrel=1
+pkgdesc='Tree explorer plugin for navigating the filesystem'
+url='https://github.com/scrooloose/nerdtree'
+arch=('any')
+license=('custom:WTFPL')
+depends=('vim')
+groups=('vim-plugins')
+source=(https://github.com/scrooloose/nerdtree/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('99ece2c20fd40e3648da03b350a809dd3bfe2d41230bf14ad924d9a3cb6e34bbed1a8a2e06e873f2212ce7180b456d3a212c8c2e790d6762023a46c684b759db')
+
+prepare() {
+  cd nerdtree-${pkgver}
+  sed 's|\[s:rootNERDTreePath,|["/usr/share/doc/vim-nerdtree",|' -i 
autoload/nerdtree.vim
+}
+
+package() {
+  cd nerdtree-${pkgver}
+  local _installpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -d "${_installpath}"
+  cp -r -t "${_installpath}" autoload doc plugin syntax nerdtree_plugin lib
+  install -Dm 644 CHANGELOG.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENCE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.markdown CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:52:53
  Author: felixonmars
Revision: 711638

upgpkg: xmobar 0.36-1

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 22:52:53 UTC (rev 711637)
+++ PKGBUILD2020-09-23 22:52:53 UTC (rev 711638)
@@ -4,8 +4,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=xmobar
-pkgver=0.35
-pkgrel=50
+pkgver=0.36
+pkgrel=1
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')
@@ -21,13 +21,8 @@
  'haskell-http-types' 'haskell-http-client-tls' 'haskell-alsa-core' 
'haskell-alsa-mixer')
 makedepends=('ghc' 'haskell-hspec' 'haskell-temporary')
 
source=(https://github.com/jaor/xmobar/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('214fae1d3f1e04759537b675ed8cc7edc6ad6fd18220d375d931e1d3626107f1f504cde55dbd5aced27fabd9149a676dfd645efd94a9e0ee0db83bfdce1c4502')
+sha512sums=('15abb262187448cd71f93e67f04ab40989f541dd02f968924521f99727cd75cb92d650d495fc40ad4bed97fa552185daca7801aa2d5079aa47a39dce9b4ea4f7')
 
-prepare() {
-  cd xmobar-$pkgver
-  sed -e 's/&& <.*,/,/g' -e 's/==.*,/,/g' -i xmobar.cabal
-}
-
 build() {
   cd xmobar-${pkgver}
 


[arch-commits] Commit in mingw-w64-winpthreads/repos (2 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:46:43
  Author: felixonmars
Revision: 711635

archrelease: copy trunk to community-staging-any

Added:
  mingw-w64-winpthreads/repos/community-staging-any/
  mingw-w64-winpthreads/repos/community-staging-any/PKGBUILD
(from rev 711634, mingw-w64-winpthreads/trunk/PKGBUILD)

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

Copied: mingw-w64-winpthreads/repos/community-staging-any/PKGBUILD (from rev 
711634, mingw-w64-winpthreads/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-09-23 22:46:43 UTC (rev 711635)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+
+pkgname=mingw-w64-winpthreads
+pkgver=8.0.0
+pkgrel=1
+pkgdesc='MinGW-w64 winpthreads library'
+arch=('any')
+url='http://mingw-w64.sourceforge.net'
+license=('custom')
+groups=('mingw-w64-toolchain' 'mingw-w64')
+makedepends=('mingw-w64-gcc' 'mingw-w64-binutils' "mingw-w64-crt=${pkgver}")
+provides=('mingw-w64-headers-bootstrap')
+conflicts=('mingw-w64-headers-bootstrap')
+replaces=('mingw-w64-headers-bootstrap')
+options=('!strip' '!buildflags' 'staticlibs' '!emptydirs')
+validpgpkeys=('CAF5641F74F7DFBA88AE205693BDB53CD4EBC740')
+source=(https://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/mingw-w64-v${pkgver}.tar.bz2{,.sig})
+sha512sums=('cefcc86ac3e6337c88ed224ab4692abbd5eb543ce78fb6c5462198a85f36c9274a0a1df0a0bebd182137fd527c15831f9237c782711a85f32e77d9104b28359e'
+'SKIP')
+
+_targets="i686-w64-mingw32 x86_64-w64-mingw32"
+
+build() {
+  for _target in ${_targets}; do
+msg "Building ${_target} winpthreads..."
+mkdir -p "$srcdir"/winpthreads-build-${_target} && cd 
"$srcdir"/winpthreads-build-${_target}
+"$srcdir"/mingw-w64-v${pkgver}/mingw-w64-libraries/winpthreads/configure 
--prefix=/usr/${_target} \
+--host=${_target} --enable-static --enable-shared
+make
+  done
+}
+
+package() {
+  for _target in ${_targets}; do
+cd "$srcdir"/winpthreads-build-${_target}
+make DESTDIR="$pkgdir" install
+${_target}-strip --strip-unneeded "$pkgdir"/usr/${_target}/bin/*.dll
+  done
+}


[arch-commits] Commit in mingw-w64-winpthreads/trunk (PKGBUILD)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:46:28
  Author: felixonmars
Revision: 711634

upgpkg: mingw-w64-winpthreads 8.0.0-1

Modified:
  mingw-w64-winpthreads/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 22:45:35 UTC (rev 711633)
+++ PKGBUILD2020-09-23 22:46:28 UTC (rev 711634)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=mingw-w64-winpthreads
-pkgver=7.0.0
+pkgver=8.0.0
 pkgrel=1
 pkgdesc='MinGW-w64 winpthreads library'
 arch=('any')
@@ -15,7 +15,7 @@
 options=('!strip' '!buildflags' 'staticlibs' '!emptydirs')
 validpgpkeys=('CAF5641F74F7DFBA88AE205693BDB53CD4EBC740')
 
source=(https://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/mingw-w64-v${pkgver}.tar.bz2{,.sig})
-sha256sums=('aa20dfff3596f08a7f427aab74315a6cb80c2b086b4a107ed35af02f9496b628'
+sha512sums=('cefcc86ac3e6337c88ed224ab4692abbd5eb543ce78fb6c5462198a85f36c9274a0a1df0a0bebd182137fd527c15831f9237c782711a85f32e77d9104b28359e'
 'SKIP')
 
 _targets="i686-w64-mingw32 x86_64-w64-mingw32"


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:45:35
  Author: felixonmars
Revision: 711633

archrelease: copy trunk to community-x86_64

Added:
  memtester/repos/community-x86_64/PKGBUILD
(from rev 711632, memtester/trunk/PKGBUILD)
Deleted:
  memtester/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 22:45:18 UTC (rev 711632)
+++ PKGBUILD2020-09-23 22:45:35 UTC (rev 711633)
@@ -1,30 +0,0 @@
-# Maintainer: brent s. 
-# Bug reports can be filed at https://bugs.square-r00t.net/index.php?project=3
-# News updates for packages can be followed at https://devblog.square-r00t.net
-validpgpkeys=('748231EBCBD808A14F5E85D28C004C2F93481F6B')
-# Contributor: Arto Jonsson
-# Contributor: andrewy 
-# Past maintainer: Jesse Jaara 
-
-pkgname=memtester
-pkgver=4.3.0
-pkgrel=4
-pkgdesc="A userspace utility for testing the memory subsystem for faults"
-arch=('x86_64')
-url="http://pyropus.ca/software/memtester/;
-license=('GPL2')
-depends=('glibc')
-source=("http://pyropus.ca/software/memtester/old-versions/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('045bcc73855706ff03e8ca65297a0d6e5b5ac02f99dae0f17cef1310b403efcb78d9a7295eca6d2de703b0a7b2f71b58a37f5a42040f01fc77a321a8d2205888')
-
-build() {
-  cd $pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  install -D -m755 memtester "${pkgdir}/usr/bin/memtester"
-  install -D -m644 memtester.8 "${pkgdir}/usr/share/man/man8/memtester.8"
-}

Copied: memtester/repos/community-x86_64/PKGBUILD (from rev 711632, 
memtester/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 22:45:35 UTC (rev 711633)
@@ -0,0 +1,30 @@
+# Maintainer: brent s. 
+# Bug reports can be filed at https://bugs.square-r00t.net/index.php?project=3
+# News updates for packages can be followed at https://devblog.square-r00t.net
+validpgpkeys=('748231EBCBD808A14F5E85D28C004C2F93481F6B')
+# Contributor: Arto Jonsson
+# Contributor: andrewy 
+# Past maintainer: Jesse Jaara 
+
+pkgname=memtester
+pkgver=4.4.0
+pkgrel=1
+pkgdesc="A userspace utility for testing the memory subsystem for faults"
+arch=('x86_64')
+url="http://pyropus.ca/software/memtester/;
+license=('GPL2')
+depends=('glibc')
+source=("http://pyropus.ca/software/memtester/old-versions/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('65b9bc7e81b020cae6cbadc8f47c0bb2837e62bdea24fda72696b22a6b3aad3752d96b00defface4b7397cef58ff6133a9f5794df0a483ec2a639a428177bf75')
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -D -m755 memtester "${pkgdir}/usr/bin/memtester"
+  install -D -m644 memtester.8 "${pkgdir}/usr/share/man/man8/memtester.8"
+}


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:45:18
  Author: felixonmars
Revision: 711632

upgpkg: memtester 4.4.0-1

Modified:
  memtester/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 22:42:39 UTC (rev 711631)
+++ PKGBUILD2020-09-23 22:45:18 UTC (rev 711632)
@@ -7,8 +7,8 @@
 # Past maintainer: Jesse Jaara 
 
 pkgname=memtester
-pkgver=4.3.0
-pkgrel=4
+pkgver=4.4.0
+pkgrel=1
 pkgdesc="A userspace utility for testing the memory subsystem for faults"
 arch=('x86_64')
 url="http://pyropus.ca/software/memtester/;
@@ -15,7 +15,7 @@
 license=('GPL2')
 depends=('glibc')
 
source=("http://pyropus.ca/software/memtester/old-versions/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('045bcc73855706ff03e8ca65297a0d6e5b5ac02f99dae0f17cef1310b403efcb78d9a7295eca6d2de703b0a7b2f71b58a37f5a42040f01fc77a321a8d2205888')
+sha512sums=('65b9bc7e81b020cae6cbadc8f47c0bb2837e62bdea24fda72696b22a6b3aad3752d96b00defface4b7397cef58ff6133a9f5794df0a483ec2a639a428177bf75')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in mingw-w64-crt/repos (2 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:42:39
  Author: felixonmars
Revision: 711631

archrelease: copy trunk to community-staging-any

Added:
  mingw-w64-crt/repos/community-staging-any/
  mingw-w64-crt/repos/community-staging-any/PKGBUILD
(from rev 711630, mingw-w64-crt/trunk/PKGBUILD)

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

Copied: mingw-w64-crt/repos/community-staging-any/PKGBUILD (from rev 711630, 
mingw-w64-crt/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-09-23 22:42:39 UTC (rev 711631)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+pkgname=mingw-w64-crt
+pkgver=8.0.0
+pkgrel=1
+pkgdesc='MinGW-w64 CRT for Windows'
+arch=('any')
+url='http://mingw-w64.sourceforge.net'
+license=('custom')
+groups=('mingw-w64-toolchain' 'mingw-w64')
+makedepends=('mingw-w64-gcc' 'mingw-w64-binutils' 
"mingw-w64-headers=${pkgver}")
+options=('!strip' '!buildflags' 'staticlibs' '!emptydirs')
+validpgpkeys=('CAF5641F74F7DFBA88AE205693BDB53CD4EBC740')
+source=(https://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/mingw-w64-v${pkgver}.tar.bz2{,.sig})
+sha512sums=('cefcc86ac3e6337c88ed224ab4692abbd5eb543ce78fb6c5462198a85f36c9274a0a1df0a0bebd182137fd527c15831f9237c782711a85f32e77d9104b28359e'
+'SKIP')
+
+_targets="i686-w64-mingw32 x86_64-w64-mingw32"
+
+build() {
+  cd "$srcdir"
+  for _target in ${_targets}; do
+msg "Building ${_target} CRT"
+if [ ${_target} == "i686-w64-mingw32" ]; then
+_crt_configure_args="--disable-lib64 --enable-lib32"
+elif [ ${_target} == "x86_64-w64-mingw32" ]; then
+_crt_configure_args="--disable-lib32 --enable-lib64"
+fi
+mkdir -p "$srcdir"/crt-${_target} && cd "$srcdir"/crt-${_target}
+"$srcdir"/mingw-w64-v${pkgver}/mingw-w64-crt/configure 
--prefix=/usr/${_target} \
+--host=${_target} --enable-wildcard \
+${_crt_configure_args}
+make
+  done
+}
+
+package() {
+  for _target in ${_targets}; do
+msg "Installing ${_target} crt"
+cd "$srcdir"/crt-${_target}
+make DESTDIR="$pkgdir" install
+  done
+}


[arch-commits] Commit in mingw-w64-crt/trunk (PKGBUILD)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:42:26
  Author: felixonmars
Revision: 711630

upgpkg: mingw-w64-crt 8.0.0-1

Modified:
  mingw-w64-crt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 22:40:53 UTC (rev 711629)
+++ PKGBUILD2020-09-23 22:42:26 UTC (rev 711630)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=mingw-w64-crt
-pkgver=7.0.0
+pkgver=8.0.0
 pkgrel=1
 pkgdesc='MinGW-w64 CRT for Windows'
 arch=('any')
@@ -12,7 +12,7 @@
 options=('!strip' '!buildflags' 'staticlibs' '!emptydirs')
 validpgpkeys=('CAF5641F74F7DFBA88AE205693BDB53CD4EBC740')
 
source=(https://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/mingw-w64-v${pkgver}.tar.bz2{,.sig})
-sha256sums=('aa20dfff3596f08a7f427aab74315a6cb80c2b086b4a107ed35af02f9496b628'
+sha512sums=('cefcc86ac3e6337c88ed224ab4692abbd5eb543ce78fb6c5462198a85f36c9274a0a1df0a0bebd182137fd527c15831f9237c782711a85f32e77d9104b28359e'
 'SKIP')
 
 _targets="i686-w64-mingw32 x86_64-w64-mingw32"


[arch-commits] Commit in mingw-w64-headers/repos (2 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:37:55
  Author: felixonmars
Revision: 711627

archrelease: copy trunk to community-staging-any

Added:
  mingw-w64-headers/repos/community-staging-any/
  mingw-w64-headers/repos/community-staging-any/PKGBUILD
(from rev 711626, mingw-w64-headers/trunk/PKGBUILD)

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

Copied: mingw-w64-headers/repos/community-staging-any/PKGBUILD (from rev 
711626, mingw-w64-headers/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-09-23 22:37:55 UTC (rev 711627)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+pkgname='mingw-w64-headers'
+pkgver=8.0.0
+pkgrel=1
+pkgdesc="MinGW-w64 headers for Windows"
+arch=('any')
+url="http://mingw-w64.sourceforge.net;
+license=('custom')
+groups=('mingw-w64-toolchain' 'mingw-w64')
+options=('!strip' '!libtool' '!emptydirs')
+validpgpkeys=('CAF5641F74F7DFBA88AE205693BDB53CD4EBC740')
+source=(https://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/mingw-w64-v${pkgver}.tar.bz2{,.sig})
+sha512sums=('cefcc86ac3e6337c88ed224ab4692abbd5eb543ce78fb6c5462198a85f36c9274a0a1df0a0bebd182137fd527c15831f9237c782711a85f32e77d9104b28359e'
+'SKIP')
+
+_targets="i686-w64-mingw32 x86_64-w64-mingw32"
+
+build() {
+  for _target in ${_targets}; do
+msg "Configuring ${_target} headers"
+mkdir -p "$srcdir"/headers-${_target} && cd "$srcdir"/headers-${_target}
+"$srcdir"/mingw-w64-v${pkgver}/mingw-w64-headers/configure 
--prefix=/usr/${_target} --enable-sdk=all --host=${_target}
+  done
+}
+
+package() {
+  for _target in ${_targets}; do
+msg "Installing ${_target} headers"
+cd "$srcdir"/headers-${_target}
+make DESTDIR="$pkgdir" install
+rm "$pkgdir"/usr/${_target}/include/pthread_signal.h
+rm "$pkgdir"/usr/${_target}/include/pthread_time.h
+rm "$pkgdir"/usr/${_target}/include/pthread_unistd.h
+  done
+
+  msg "Installing MinGW-w64 licenses"
+  install -Dm644 
"$srcdir"/mingw-w64-v${pkgver}/COPYING.MinGW-w64/COPYING.MinGW-w64.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/COPYING.MinGW-w64.txt
+  install -Dm644 
"$srcdir"/mingw-w64-v${pkgver}/COPYING.MinGW-w64-runtime/COPYING.MinGW-w64-runtime.txt
 "$pkgdir"/usr/share/licenses/${pkgname}/COPYING.MinGW-w64-runtime.txt
+  install -Dm644 
"$srcdir"/mingw-w64-v${pkgver}/mingw-w64-headers/ddk/readme.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/ddk-readme.txt
+}


[arch-commits] Commit in mingw-w64-headers/trunk (PKGBUILD)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:37:42
  Author: felixonmars
Revision: 711626

upgpkg: mingw-w64-headers 8.0.0-1

Modified:
  mingw-w64-headers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 22:36:59 UTC (rev 711625)
+++ PKGBUILD2020-09-23 22:37:42 UTC (rev 711626)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname='mingw-w64-headers'
-pkgver=7.0.0
+pkgver=8.0.0
 pkgrel=1
 pkgdesc="MinGW-w64 headers for Windows"
 arch=('any')
@@ -11,7 +11,7 @@
 options=('!strip' '!libtool' '!emptydirs')
 validpgpkeys=('CAF5641F74F7DFBA88AE205693BDB53CD4EBC740')
 
source=(https://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/mingw-w64-v${pkgver}.tar.bz2{,.sig})
-sha256sums=('aa20dfff3596f08a7f427aab74315a6cb80c2b086b4a107ed35af02f9496b628'
+sha512sums=('cefcc86ac3e6337c88ed224ab4692abbd5eb543ce78fb6c5462198a85f36c9274a0a1df0a0bebd182137fd527c15831f9237c782711a85f32e77d9104b28359e'
 'SKIP')
 
 _targets="i686-w64-mingw32 x86_64-w64-mingw32"
@@ -20,7 +20,7 @@
   for _target in ${_targets}; do
 msg "Configuring ${_target} headers"
 mkdir -p "$srcdir"/headers-${_target} && cd "$srcdir"/headers-${_target}
-"$srcdir"/mingw-w64-v${pkgver}/mingw-w64-headers/configure 
--prefix=/usr/${_target} --enable-sdk=all --enable-secure-api --host=${_target}
+"$srcdir"/mingw-w64-v${pkgver}/mingw-w64-headers/configure 
--prefix=/usr/${_target} --enable-sdk=all --host=${_target}
   done
 }
 
@@ -38,6 +38,4 @@
   install -Dm644 
"$srcdir"/mingw-w64-v${pkgver}/COPYING.MinGW-w64/COPYING.MinGW-w64.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/COPYING.MinGW-w64.txt
   install -Dm644 
"$srcdir"/mingw-w64-v${pkgver}/COPYING.MinGW-w64-runtime/COPYING.MinGW-w64-runtime.txt
 "$pkgdir"/usr/share/licenses/${pkgname}/COPYING.MinGW-w64-runtime.txt
   install -Dm644 
"$srcdir"/mingw-w64-v${pkgver}/mingw-w64-headers/ddk/readme.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/ddk-readme.txt
-  install -Dm644 
"$srcdir"/mingw-w64-v${pkgver}/mingw-w64-headers/direct-x/COPYING.LIB 
"$pkgdir"/usr/share/licenses/${pkgname}/direct-x-COPYING.LIB
-  install -Dm644 
"$srcdir"/mingw-w64-v${pkgver}/mingw-w64-headers/direct-x/readme.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/direct-x-readme.txt
 }


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

2020-09-23 Thread David Runge via arch-commits
Date: Wednesday, September 23, 2020 @ 22:36:59
  Author: dvzrv
Revision: 711625

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 22:36:45 UTC (rev 711624)
+++ PKGBUILD2020-09-23 22:36:59 UTC (rev 711625)
@@ -1,45 +0,0 @@
-# Maintainer: David Runge 
-
-_name=cytoolz
-pkgname=python-cytoolz
-pkgver=0.10.1
-pkgrel=3
-pkgdesc="Cython implementation of Toolz: High performance functional utilities"
-arch=('x86_64')
-url="https://github.com/pytoolz/cytoolz/;
-license=('BSD')
-depends=('cython' 'python-toolz')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('55c4fca8d4ace766a8241a25a6c4924971b7e7068ee79ad65fa8aac136aa1f88e57337c0ec278ee9e8544c6e96dd31138b39d7cc28cd91ff0e53a71f8dec55d1')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  # build C extension
-  python setup.py build_ext --inplace --with-cython
-  # build python extension
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  local _pyver=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
-  export PYTHONPATH="build/lib.linux-${CARCH}-${_pyver}/:${PYTHONPATH}"
-  echo "$PYTHONPATH"
-  pytest -v
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
-  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: python-cytoolz/repos/community-x86_64/PKGBUILD (from rev 711624, 
python-cytoolz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 22:36:59 UTC (rev 711625)
@@ -0,0 +1,45 @@
+# Maintainer: David Runge 
+
+_name=cytoolz
+pkgname=python-cytoolz
+pkgver=0.11.0
+pkgrel=1
+pkgdesc="Cython implementation of Toolz: High performance functional utilities"
+arch=('x86_64')
+url="https://github.com/pytoolz/cytoolz/;
+license=('BSD')
+depends=('cython' 'python-toolz')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('d7ab7317a8c9b26136dfa1ef0bbe719a09d5ac290d73ad16596c8624976ad4eb50d826fb02885cd1979279057698ceab9276f14687791b6c4adc33fa4650dd6d')
+b2sums=('1df4d2342393ab9e58fcdeae7c48cff31a8c4ff02b928f4a1a73e089408349ae121ce9e7ee2cefe2ec92d183d00959cb913273eee78360da75faa813308a6cc6')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  # build C extension
+  python setup.py build_ext --inplace --with-cython
+  # build python extension
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  local _pyver=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
+  export PYTHONPATH="build/lib.linux-${CARCH}-${_pyver}/:${PYTHONPATH}"
+  echo "$PYTHONPATH"
+  pytest -v
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+--optimize=1 \
+--root="${pkgdir}"
+  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}


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

2020-09-23 Thread David Runge via arch-commits
Date: Wednesday, September 23, 2020 @ 22:36:45
  Author: dvzrv
Revision: 711624

upgpkg: python-cytoolz 0.11.0-1: Upgrade to 0.11.0.

Modified:
  python-cytoolz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 22:36:05 UTC (rev 711623)
+++ PKGBUILD2020-09-23 22:36:45 UTC (rev 711624)
@@ -2,8 +2,8 @@
 
 _name=cytoolz
 pkgname=python-cytoolz
-pkgver=0.10.1
-pkgrel=3
+pkgver=0.11.0
+pkgrel=1
 pkgdesc="Cython implementation of Toolz: High performance functional utilities"
 arch=('x86_64')
 url="https://github.com/pytoolz/cytoolz/;
@@ -12,7 +12,8 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('55c4fca8d4ace766a8241a25a6c4924971b7e7068ee79ad65fa8aac136aa1f88e57337c0ec278ee9e8544c6e96dd31138b39d7cc28cd91ff0e53a71f8dec55d1')
+sha512sums=('d7ab7317a8c9b26136dfa1ef0bbe719a09d5ac290d73ad16596c8624976ad4eb50d826fb02885cd1979279057698ceab9276f14687791b6c4adc33fa4650dd6d')
+b2sums=('1df4d2342393ab9e58fcdeae7c48cff31a8c4ff02b928f4a1a73e089408349ae121ce9e7ee2cefe2ec92d183d00959cb913273eee78360da75faa813308a6cc6')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
@@ -38,7 +39,6 @@
   cd "$pkgname-$pkgver"
   python setup.py install --skip-build \
 --optimize=1 \
---prefix=/usr \
 --root="${pkgdir}"
   install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
   install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:36:05
  Author: felixonmars
Revision: 711623

archrelease: copy trunk to community-staging-x86_64

Added:
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 711622, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/stack.install
(from rev 711622, stack/trunk/stack.install)

---+
 PKGBUILD  |   82 
 stack.install |4 ++
 2 files changed, 86 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 711622, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-23 22:36:05 UTC (rev 711623)
@@ -0,0 +1,82 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.3.1
+pkgrel=137
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-casa-client'
+ 'haskell-casa-types' 'haskell-colour' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-extra' 'haskell-file-embed' 'haskell-filelock' 
'haskell-fsnotify'
+ 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security' 'haskell-hashable'
+ 'haskell-hi-file-parser' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-mono-traversable' 
'haskell-mustache'
+ 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-generic' 
'haskell-optparse-simple'
+ 'haskell-pantry' 'haskell-path' 'haskell-path-io' 'haskell-persistent'
+ 'haskell-persistent-sqlite' 'haskell-persistent-template' 
'haskell-primitive'
+ 'haskell-project-template' 'haskell-regex-applicative-text' 
'haskell-retry' 'haskell-rio'
+ 'haskell-rio-prettyprint' 'haskell-split' 'haskell-streaming-commons' 
'haskell-tar'
+ 'haskell-temporary' 'haskell-text-metrics' 'haskell-th-reify-many' 
'haskell-tls'
+ 'haskell-typed-process' 'haskell-unicode-transforms' 
'haskell-unix-compat'
+ 'haskell-unliftio' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-yaml'
+ 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-raw-strings-qq'
+ 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;
+
stack-pantry-0.5.patch::https://github.com/commercialhaskell/stack/pull/5281.patch)
+sha512sums=('SKIP'
+
'9998e6cdc4b80db3490d66c4392a0e9c44c58fa51371bc68fbade48aea6b21f1172905627ade8132d2733a7e4d942b597d5943a5bd3da302aa6c3be616ecd769')
+
+prepare() {
+  cd $pkgname
+  patch -p1 -i ../stack-pantry-0.5.patch
+  sed -i -e '/semigroups/d' $pkgname.cabal
+
+  sed -i 's/map show errs/map show (toList errs)/' src/Stack/SDist.hs
+}
+
+build() {
+  cd $pkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build \
+  --ghc-option='-pie'
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install 

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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:35:47
  Author: felixonmars
Revision: 711622

upgpkg: stack 2.3.1-137: rebuild with pantry 0.5.1.3

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 22:34:44 UTC (rev 711621)
+++ PKGBUILD2020-09-23 22:35:47 UTC (rev 711622)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.3.1
-pkgrel=136
+pkgrel=137
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2020-09-23 Thread David Runge via arch-commits
Date: Wednesday, September 23, 2020 @ 22:34:35
  Author: dvzrv
Revision: 711620

upgpkg: python-toolz 0.11.0-1: Upgrade to 0.11.0.

Modified:
  python-toolz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 22:32:38 UTC (rev 711619)
+++ PKGBUILD2020-09-23 22:34:35 UTC (rev 711620)
@@ -2,8 +2,8 @@
 
 _name=toolz
 pkgname=python-toolz
-pkgver=0.10.0
-pkgrel=3
+pkgver=0.11.0
+pkgrel=1
 pkgdesc="A functional standard library for Python"
 arch=('any')
 url="https://github.com/pytoolz/toolz/;
@@ -12,8 +12,8 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('4ed40c165462440c6004974d2515067f211c625bebcb69ea854fd8837e1fe05febc546215355a6bb9de5916c8ba98a4d297f8aa20e40ffbc8a730b2bb3831a71')
-b2sums=('c323bf1ba1da5c01a1a1d879ef545767b8253c906baba63a0f600d2879c5b7120c4978574447954648c23c1ba05de2a2c7437eed1eeff31dface1c823f6e')
+sha512sums=('6c546561848d5156ae90fc7f11b219c4aa489c96d3d0c6e703b636dc7f0096fe95b986e7e1f33a0914b324bf807f6d66bec4c8ce2031c3aae3a3086bb1cb0596')
+b2sums=('5b4a1fb4503767b91262ada31026c8ce26b98bb98967043dbbd2ecfa0011e200accc65d3a3923cbb69670aa305845d6825b3f0ed08f9e5a2c4e3a3854df1c62d')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"


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

2020-09-23 Thread David Runge via arch-commits
Date: Wednesday, September 23, 2020 @ 22:34:44
  Author: dvzrv
Revision: 711621

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 22:34:35 UTC (rev 711620)
+++ PKGBUILD2020-09-23 22:34:44 UTC (rev 711621)
@@ -1,42 +0,0 @@
-# Maintainer: David Runge 
-
-_name=toolz
-pkgname=python-toolz
-pkgver=0.10.0
-pkgrel=3
-pkgdesc="A functional standard library for Python"
-arch=('any')
-url="https://github.com/pytoolz/toolz/;
-license=('BSD')
-depends=('python')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('4ed40c165462440c6004974d2515067f211c625bebcb69ea854fd8837e1fe05febc546215355a6bb9de5916c8ba98a4d297f8aa20e40ffbc8a730b2bb3831a71')
-b2sums=('c323bf1ba1da5c01a1a1d879ef545767b8253c906baba63a0f600d2879c5b7120c4978574447954648c23c1ba05de2a2c7437eed1eeff31dface1c823f6e')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  pytest -v
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  export PYTHONHASHSEED=0
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
-  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: python-toolz/repos/community-any/PKGBUILD (from rev 711620, 
python-toolz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 22:34:44 UTC (rev 711621)
@@ -0,0 +1,42 @@
+# Maintainer: David Runge 
+
+_name=toolz
+pkgname=python-toolz
+pkgver=0.11.0
+pkgrel=1
+pkgdesc="A functional standard library for Python"
+arch=('any')
+url="https://github.com/pytoolz/toolz/;
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('6c546561848d5156ae90fc7f11b219c4aa489c96d3d0c6e703b636dc7f0096fe95b986e7e1f33a0914b324bf807f6d66bec4c8ce2031c3aae3a3086bb1cb0596')
+b2sums=('5b4a1fb4503767b91262ada31026c8ce26b98bb98967043dbbd2ecfa0011e200accc65d3a3923cbb69670aa305845d6825b3f0ed08f9e5a2c4e3a3854df1c62d')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  pytest -v
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  export PYTHONHASHSEED=0
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:32:24
  Author: felixonmars
Revision: 711618

upgpkg: haskell-pantry 0.5.1.3-1: rebuild with pantry 0.5.1.3

Modified:
  haskell-pantry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 22:27:24 UTC (rev 711617)
+++ PKGBUILD2020-09-23 22:32:24 UTC (rev 711618)
@@ -2,8 +2,8 @@
 
 _hkgname=pantry
 pkgname=haskell-pantry
-pkgver=0.5.1.2
-pkgrel=8
+pkgver=0.5.1.3
+pkgrel=1
 pkgdesc="Content addressable Haskell package management"
 url="https://github.com/commercialhaskell/pantry;
 license=('BSD')
@@ -22,7 +22,7 @@
 makedepends=('ghc' 'haskell-hedgehog' 'haskell-hspec' 'haskell-quickcheck' 
'haskell-raw-strings-qq')
 checkdepends=('git' 'mercurial')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('60012fe986487b5e1e24bee4eb92f9c96971ac961496b6eae7826d11c7c8212d63ec04835aface42b1cf20727adc95bbc63238f9e339c700d832569de66dba43')
+sha512sums=('04f7b229072467d653c4b7b6b004e4f69128182c88ed4896b212b96129da11f269ff53aa50d3dddf8fd9134153ee2559b18d28f81c5b83c120f005bab5b3d78d')
 
 prepare() {
 cd $_hkgname-$pkgver


[arch-commits] Commit in haskell-pantry/repos (2 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:32:38
  Author: felixonmars
Revision: 711619

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-pantry/repos/community-staging-x86_64/
  haskell-pantry/repos/community-staging-x86_64/PKGBUILD
(from rev 711618, haskell-pantry/trunk/PKGBUILD)

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

Copied: haskell-pantry/repos/community-staging-x86_64/PKGBUILD (from rev 
711618, haskell-pantry/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-23 22:32:38 UTC (rev 711619)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+
+_hkgname=pantry
+pkgname=haskell-pantry
+pkgver=0.5.1.3
+pkgrel=1
+pkgdesc="Content addressable Haskell package management"
+url="https://github.com/commercialhaskell/pantry;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-casa-client'
+ 'haskell-casa-types' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-cryptonite-conduit' 'haskell-digest' 'haskell-filelock' 
'haskell-generic-deriving'
+ 'haskell-hackage-security' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-mono-traversable' 'haskell-network-uri' 'haskell-path' 
'haskell-path-io'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-primitive' 'haskell-resourcet' 'haskell-rio' 
'haskell-rio-orphans'
+ 'haskell-rio-prettyprint' 'haskell-tar-conduit' 'haskell-text-metrics'
+ 'haskell-unix-compat' 'haskell-unliftio' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-yaml' 'haskell-zip-archive')
+makedepends=('ghc' 'haskell-hedgehog' 'haskell-hspec' 'haskell-quickcheck' 
'haskell-raw-strings-qq')
+checkdepends=('git' 'mercurial')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('04f7b229072467d653c4b7b6b004e4f69128182c88ed4896b212b96129da11f269ff53aa50d3dddf8fd9134153ee2559b18d28f81c5b83c120f005bab5b3d78d')
+
+prepare() {
+cd $_hkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:27:24
  Author: felixonmars
Revision: 711617

archrelease: copy trunk to community-x86_64

Added:
  taskell/repos/community-x86_64/PKGBUILD
(from rev 711616, taskell/trunk/PKGBUILD)
Deleted:
  taskell/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 22:27:08 UTC (rev 711616)
+++ PKGBUILD2020-09-23 22:27:24 UTC (rev 711617)
@@ -1,52 +0,0 @@
-# Maintainer: Jelle van der Waa https://hackage.haskell.org/package/$pkgname;
-depends=(ghc-libs haskell-aeson haskell-attoparsec haskell-brick 
haskell-config-ini haskell-file-embed haskell-fold-debounce haskell-http-client 
haskell-http-conduit haskell-http-types haskell-lens haskell-tz haskell-vty 
haskell-classy-prelude)
-makedepends=(ghc haskell-classy-prelude haskell-raw-strings-qq haskell-tasty 
haskell-tasty-discover haskell-tasty-expected-failure haskell-tasty-hunit)
-source=(https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz
-
https://github.com/smallhadroncollider/taskell/raw/master/test/Taskell/IO/data/roadmap.md)
-sha512sums=('61d9615d20585345a0a7d8864c7c817196b3ebf9a7ec3aa3f592f0f6df89d14c6c6a9f31ae9cc1060f775b348505b4df5cb3262ced686a6df3dd241797624a44'
-
'c41d549a9595f91dc58dfb72eeaca8e1faeafe87255e8b375fe542f015fffb736004bce6ed7b97a3c4493b3b35a53e6ce755698f45a16f736920c8743e7247b8')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's/== *0.52/==0.55/;s/== *5.26/==5.30/;s/< *4/<5/;s/< *2/<3/;s/< 
*1/<2/;s/< *0.7/<1/;s/>=1.2.4.0/>=1.2/;s/< *0.12/<1/' $pkgname.cabal
-  cp ../roadmap.md test/Taskell/IO/data/
-}
-
-build() {
-  cd $pkgname-$pkgver
-  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
---datasubdir=$pkgname \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
---ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
---ghc-option='-pie'
-  runhaskell Setup build $MAKEFLAGS
-  runhaskell Setup register --gen-script
-  runhaskell Setup unregister --gen-script
-  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-check() {
-  cd $pkgname-$pkgver
-  runhaskell Setup test
-}
-
-package() {
-  cd $pkgname-$pkgver
-  runghc Setup.hs copy --destdir="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Doc only contains the license
-  rm -rf "$pkgdir/usr/share/doc"
-}
-
-# vim: ts=2 sw=2 et:

Copied: taskell/repos/community-x86_64/PKGBUILD (from rev 711616, 
taskell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 22:27:24 UTC (rev 711617)
@@ -0,0 +1,48 @@
+# Maintainer: Jelle van der Waa https://hackage.haskell.org/package/$pkgname;
+depends=(ghc-libs haskell-aeson haskell-attoparsec haskell-brick 
haskell-config-ini haskell-file-embed haskell-fold-debounce haskell-http-client 
haskell-http-conduit haskell-http-types haskell-lens haskell-tz haskell-vty 
haskell-classy-prelude)
+makedepends=(ghc arch-hs haskell-classy-prelude haskell-raw-strings-qq 
haskell-tasty haskell-tasty-discover haskell-tasty-expected-failure 
haskell-tasty-hunit)
+source=(https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
+sha512sums=('08806885b3ad70606423e3189fa4f3c2f3586db7b0be496aeef796ba5f40eeb1e2eb2e0a175b3e1bdd98d33bad34d61621db2dabe8485bd4a2c54f13c9f441b0')
+
+prepare() {
+  arch-hs-uusi $pkgname-$pkgver/$pkgname.cabal
+}
+
+build() {
+  cd $pkgname-$pkgver
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--datasubdir=$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd $pkgname-$pkgver
+  runghc Setup.hs copy --destdir="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Doc only contains the license
+  rm -rf "$pkgdir/usr/share/doc"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:27:08
  Author: felixonmars
Revision: 711616

upgpkg: taskell 1.10.0-1

Modified:
  taskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 22:18:48 UTC (rev 711615)
+++ PKGBUILD2020-09-23 22:27:08 UTC (rev 711616)
@@ -1,23 +1,19 @@
 # Maintainer: Jelle van der Waa https://hackage.haskell.org/package/$pkgname;
 depends=(ghc-libs haskell-aeson haskell-attoparsec haskell-brick 
haskell-config-ini haskell-file-embed haskell-fold-debounce haskell-http-client 
haskell-http-conduit haskell-http-types haskell-lens haskell-tz haskell-vty 
haskell-classy-prelude)
-makedepends=(ghc haskell-classy-prelude haskell-raw-strings-qq haskell-tasty 
haskell-tasty-discover haskell-tasty-expected-failure haskell-tasty-hunit)
-source=(https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz
-
https://github.com/smallhadroncollider/taskell/raw/master/test/Taskell/IO/data/roadmap.md)
-sha512sums=('61d9615d20585345a0a7d8864c7c817196b3ebf9a7ec3aa3f592f0f6df89d14c6c6a9f31ae9cc1060f775b348505b4df5cb3262ced686a6df3dd241797624a44'
-
'c41d549a9595f91dc58dfb72eeaca8e1faeafe87255e8b375fe542f015fffb736004bce6ed7b97a3c4493b3b35a53e6ce755698f45a16f736920c8743e7247b8')
+makedepends=(ghc arch-hs haskell-classy-prelude haskell-raw-strings-qq 
haskell-tasty haskell-tasty-discover haskell-tasty-expected-failure 
haskell-tasty-hunit)
+source=(https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
+sha512sums=('08806885b3ad70606423e3189fa4f3c2f3586db7b0be496aeef796ba5f40eeb1e2eb2e0a175b3e1bdd98d33bad34d61621db2dabe8485bd4a2c54f13c9f441b0')
 
 prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's/== *0.52/==0.55/;s/== *5.26/==5.30/;s/< *4/<5/;s/< *2/<3/;s/< 
*1/<2/;s/< *0.7/<1/;s/>=1.2.4.0/>=1.2/;s/< *0.12/<1/' $pkgname.cabal
-  cp ../roadmap.md test/Taskell/IO/data/
+  arch-hs-uusi $pkgname-$pkgver/$pkgname.cabal
 }
 
 build() {


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:18:48
  Author: felixonmars
Revision: 711615

archrelease: copy trunk to community-x86_64

Added:
  unlambda/repos/community-x86_64/
  unlambda/repos/community-x86_64/PKGBUILD
(from rev 711614, unlambda/trunk/PKGBUILD)

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

Copied: unlambda/repos/community-x86_64/PKGBUILD (from rev 711614, 
unlambda/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-09-23 22:18:48 UTC (rev 711615)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+
+pkgname=unlambda
+pkgver=0.1.4.2
+pkgrel=1
+pkgdesc="Unlambda interpreter"
+url="https://github.com/abbradar/unlambda;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('523f0ea20464fc6fc055526c3fe6f9de03826ae89fb96a8fa68bd56cddfcfeaa')
+
+build() {
+  cd $pkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (4 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:18:33
  Author: felixonmars
Revision: 711614

addpkg: unlambda 0.1.4.2-1

Added:
  unlambda/
  unlambda/repos/
  unlambda/trunk/
  unlambda/trunk/PKGBUILD

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

Added: unlambda/trunk/PKGBUILD
===
--- unlambda/trunk/PKGBUILD (rev 0)
+++ unlambda/trunk/PKGBUILD 2020-09-23 22:18:33 UTC (rev 711614)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+
+pkgname=unlambda
+pkgver=0.1.4.2
+pkgrel=1
+pkgdesc="Unlambda interpreter"
+url="https://github.com/abbradar/unlambda;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('523f0ea20464fc6fc055526c3fe6f9de03826ae89fb96a8fa68bd56cddfcfeaa')
+
+build() {
+  cd $pkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in libupnp1.12/repos (3 files)

2020-09-23 Thread David Runge via arch-commits
Date: Wednesday, September 23, 2020 @ 22:16:31
  Author: dvzrv
Revision: 711613

archrelease: copy trunk to community-staging-x86_64

Added:
  libupnp1.12/repos/community-staging-x86_64/
  libupnp1.12/repos/community-staging-x86_64/PKGBUILD
(from rev 711612, libupnp1.12/trunk/PKGBUILD)
  libupnp1.12/repos/community-staging-x86_64/libupnp1.12-build.patch
(from rev 711612, libupnp1.12/trunk/libupnp1.12-build.patch)

-+
 PKGBUILD|   50 
 libupnp1.12-build.patch |  261 ++
 2 files changed, 311 insertions(+)

Copied: libupnp1.12/repos/community-staging-x86_64/PKGBUILD (from rev 711612, 
libupnp1.12/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-23 22:16:31 UTC (rev 711613)
@@ -0,0 +1,50 @@
+# Maintainer: Levente Polyak 
+# Contributor: Giovanni Scafora 
+# Contributor: kastor 
+
+_name=pupnp
+pkgname=libupnp1.12
+pkgver=1.12.1
+pkgrel=1
+pkgdesc='Portable Open Source UPnP Development Kit (legacy 1.12 branch)'
+url='http://pupnp.sourceforge.net/'
+arch=('x86_64')
+license=('BSD')
+depends=('glibc')
+makedepends=('pkgconfig')
+provides=('libupnp-1.12.so' 'libixml-1.12.so')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${_name}/${_name}/archive/release-${pkgver}.tar.gz;
+"${pkgname}-build.patch")
+sha512sums=('e4741f9245378529a15b8be7acec5af52d802ce84b82f110dab44c30da65fc2514d51d3bee6311643eb28146ea90bb3c97f44f800edb4f3c1681f3e70f80'
+
'd7efab75d68d6ac09648e8aff57723460efefd36872875c5c71fbe0af22a86eea8eb650783e2fc4a09230cad7aca06fd8a0b3bc573d6608fae9e6d136519621b')
+b2sums=('e44847dda5a7aeabb22a5b76cdc48d1dc69e70f7ecac85824199bf8d6e9b802cb717f2959f70690cc00babf1b554a0cb031995f80c28246b9eec670ebe7aaa90'
+
'bd0459fe11175cfe8626b8ff34394716f2d6925d95a45bf445cc6356cc5bdaedff4f8046660f04e91bf062d4684832f6d03ecb020d92b4209bfe8f8204bf4f59')
+
+prepare() {
+  mv -v ${_name}-release-${pkgver} ${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
+  # rename the shared libraries and include directories, so that they do not
+  # conflict with libupnp
+  patch -Np1 -i "../${pkgname}-build.patch"
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make -k check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 {ChangeLog,README.md} -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Copied: libupnp1.12/repos/community-staging-x86_64/libupnp1.12-build.patch 
(from rev 711612, libupnp1.12/trunk/libupnp1.12-build.patch)
===
--- community-staging-x86_64/libupnp1.12-build.patch
(rev 0)
+++ community-staging-x86_64/libupnp1.12-build.patch2020-09-23 22:16:31 UTC 
(rev 711613)
@@ -0,0 +1,261 @@
+diff -ruN a/Makefile.am b/Makefile.am
+--- a/Makefile.am  2020-04-07 18:45:40.0 +0200
 b/Makefile.am  2020-09-24 00:00:25.770875019 +0200
+@@ -14,7 +14,7 @@
+ 
+ EXTRA_DIST = \
+   docs/Doxyfile \
+-  libupnp.pc.in \
++  libupnp-1-12.pc.in \
+   libupnp.spec \
+   build/msvc/inttypes.h \
+   build/msvc/stdint.h
+@@ -23,7 +23,7 @@
+ # This variable must have 'exec' in its name, in order to be installed 
+ # by 'install-exec' target (instead of default 'install-data')
+ pkgconfigexecdir = $(libdir)/pkgconfig
+-pkgconfigexec_DATA = libupnp.pc
++pkgconfigexec_DATA = libupnp-1.12.pc
+ 
+ $(pkgconfigexec_DATA): config.status
+ 
+diff -ruN a/configure.ac b/configure.ac
+--- a/configure.ac 2020-04-07 18:45:40.0 +0200
 b/configure.ac 2020-09-23 23:59:15.547619119 +0200
+@@ -798,7 +798,7 @@
+   upnp/doc/Makefile
+   upnp/sample/Makefile
+   upnp/unittest/Makefile
+-  libupnp.pc
++  libupnp-1.12.pc
+   ])
+ 
+ AC_OUTPUT
+diff -ruN a/ixml/Makefile.am b/ixml/Makefile.am
+--- a/ixml/Makefile.am 2020-04-07 18:45:40.0 +0200
 b/ixml/Makefile.am 2020-09-24 00:02:32.304077027 +0200
+@@ -11,7 +11,7 @@
+   -I$(top_srcdir)/upnp/inc
+ AM_CFLAGS = 
+ 
+-LDADD = libixml.la
++LDADD = libixml-1.12.la
+ 
+ if ENABLE_DEBUG
+ AM_CPPFLAGS   += -DDEBUG
+@@ -23,12 +23,12 @@
+ AM_CPPFLAGS   += -DIXML_HAVE_SCRIPTSUPPORT
+ endif
+ 
+-lib_LTLIBRARIES   = libixml.la
++lib_LTLIBRARIES   = libixml-1.12.la
+ 
+-libixml_la_LDFLAGS= -version-info $(LT_VERSION_IXML) \
++libixml_1_12_la_LDFLAGS   = -version-info $(LT_VERSION_IXML) \
+ -export-symbols-regex '^ixml.*'
+ 
+-libixml_la_SOURCES= \
++libixml_1_12_la_SOURCES 

[arch-commits] Commit in libupnp1.12/trunk (PKGBUILD libupnp1.12-build.patch)

2020-09-23 Thread David Runge via arch-commits
Date: Wednesday, September 23, 2020 @ 22:16:20
  Author: dvzrv
Revision: 711612

upgpkg: libupnp1.12 1.12.1-1: Add libupnp1.12 1.12.1.

Modified:
  libupnp1.12/trunk/PKGBUILD
  libupnp1.12/trunk/libupnp1.12-build.patch

-+
 PKGBUILD|4 ++--
 libupnp1.12-build.patch |4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 22:08:45 UTC (rev 711611)
+++ PKGBUILD2020-09-23 22:16:20 UTC (rev 711612)
@@ -16,9 +16,9 @@
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${_name}/${_name}/archive/release-${pkgver}.tar.gz;
 "${pkgname}-build.patch")
 
sha512sums=('e4741f9245378529a15b8be7acec5af52d802ce84b82f110dab44c30da65fc2514d51d3bee6311643eb28146ea90bb3c97f44f800edb4f3c1681f3e70f80'
-
'c6af9af97e3ef54e45ecec5b4aac5a3819d5a73c36970ec19ba4cec4d3139782ae767ac02d49da3087c8976f6d1fc045e1bdba765c9a41be43c2e4292c0bcbd6')
+
'd7efab75d68d6ac09648e8aff57723460efefd36872875c5c71fbe0af22a86eea8eb650783e2fc4a09230cad7aca06fd8a0b3bc573d6608fae9e6d136519621b')
 
b2sums=('e44847dda5a7aeabb22a5b76cdc48d1dc69e70f7ecac85824199bf8d6e9b802cb717f2959f70690cc00babf1b554a0cb031995f80c28246b9eec670ebe7aaa90'
-
'c51cbf157aeb84b301e93f2757140a2878f13d1a55dea6390ef5bfc02c8e2ed178cf77c720ac73d180e134188d522a94b45e25b4113eca9974fe4a13c6f9f72f')
+
'bd0459fe11175cfe8626b8ff34394716f2d6925d95a45bf445cc6356cc5bdaedff4f8046660f04e91bf062d4684832f6d03ecb020d92b4209bfe8f8204bf4f59')
 
 prepare() {
   mv -v ${_name}-release-${pkgver} ${pkgname}-${pkgver}

Modified: libupnp1.12-build.patch
===
--- libupnp1.12-build.patch 2020-09-23 22:08:45 UTC (rev 711611)
+++ libupnp1.12-build.patch 2020-09-23 22:16:20 UTC (rev 711612)
@@ -77,10 +77,10 @@
 +libdir=@libdir@
 +includedir=@includedir@
 +
-+Name: libupnp-1-12
++Name: libupnp-1.12
 +Description: Linux SDK for UPnP Devices
 +Version: @VERSION@
-+Libs: @PTHREAD_CFLAGS@ @PTHREAD_LIBS@ -L${libdir} -lupnp-1-12 -lixml-1-12
++Libs: @PTHREAD_CFLAGS@ @PTHREAD_LIBS@ -L${libdir} -lupnp-1.12 -lixml-1.12
 +Libs.private: @OPENSSL_LIBS@
 +Cflags: @PTHREAD_CFLAGS@ -I${includedir}/upnp-1.12
 +


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

2020-09-23 Thread Levente Polyak via arch-commits
Date: Wednesday, September 23, 2020 @ 22:08:45
  Author: anthraxx
Revision: 711611

archrelease: copy trunk to community-x86_64

Added:
  sequoia/repos/community-x86_64/
  sequoia/repos/community-x86_64/PKGBUILD
(from rev 711610, sequoia/trunk/PKGBUILD)
  sequoia/repos/community-x86_64/build.patch
(from rev 711610, sequoia/trunk/build.patch)

-+
 PKGBUILD|   58 ++
 build.patch |   13 +
 2 files changed, 71 insertions(+)

Copied: sequoia/repos/community-x86_64/PKGBUILD (from rev 711610, 
sequoia/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-09-23 22:08:45 UTC (rev 711611)
@@ -0,0 +1,58 @@
+# Maintainer: Levente Polyak 
+# Contributor: Kai Michaelis 
+
+pkgbase=sequoia
+pkgname=(sequoia python-sequoia)
+pkgver=0.19.0
+pkgrel=1
+pkgdesc='Cool new OpenPGP implementation'
+url='https://sequoia-pgp.org/'
+arch=('x86_64')
+license=('GPL3')
+makedepends=('git' 'cargo' 'clang' 'python' 'python-setuptools' 'python-cffi'
+ 'glibc' 'nettle' 'sqlite' 'capnproto' 'openssl' 'gcc-libs' 'gmp')
+checkdepends=('python-pytest' 'python-pytest-runner')
+options=('!makeflags')
+source=(${pkgname}::"git+https://gitlab.com/sequoia-pgp/sequoia.git#tag=v${pkgver};
+build.patch)
+sha512sums=('SKIP'
+
'44c8f4af25b3a8c42939ea75e87fa90ac42499545b41c3dc6744debf318ecc6361f4aad2692663a0516b9f5a6e1d33435d82a7749cfd2c26c9baf94f5dcb6b09')
+
+prepare() {
+  cd ${pkgname}
+  sed 's/debug/release/g' -i -- */Makefile */*/Makefile */*/*/Makefile
+  sed "s/-L/${LDFLAGS},-L/g" -i ffi/lang/python/Makefile
+  patch -Np1 < ../build.patch
+}
+
+build() {
+  cd ${pkgname}
+  make PREFIX=/usr CARGO_FLAGS='--locked' build-release
+}
+
+check() {
+  cd ${pkgname}
+  cargo test --release --locked \
+--workspace \
+--exclude sequoia-store
+  # python tests currently fail horribly
+  # make -C ffi/lang/python test
+}
+
+package_sequoia() {
+  depends=('glibc' 'nettle' 'libhogweed.so' 'libnettle.so' 'sqlite' 'capnproto'
+   'openssl' 'gcc-libs' 'gmp')
+  cd ${pkgbase}
+  make DESTDIR="${pkgdir}" PREFIX=/usr CARGO_FLAGS='--locked' install
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  rm -rf "${pkgdir}/usr/lib/python"*
+}
+
+package_python-sequoia() {
+  depends=('python' 'python-cffi' 'sequoia')
+  pkgdesc+=' - python bindings'
+  cd ${pkgbase}
+  make -C ffi/lang/python DESTDIR="${pkgdir}" PREFIX=/usr install
+}
+
+# vim: ts=2 sw=2 et:

Copied: sequoia/repos/community-x86_64/build.patch (from rev 711610, 
sequoia/trunk/build.patch)
===
--- community-x86_64/build.patch(rev 0)
+++ community-x86_64/build.patch2020-09-23 22:08:45 UTC (rev 711611)
@@ -0,0 +1,13 @@
+diff --git a/ffi/Makefile b/ffi/Makefile
+index 3dddfcd4..1feb7b53 100644
+--- a/ffi/Makefile
 b/ffi/Makefile
+@@ -62,7 +62,7 @@ build-release:
+   $(CARGO) build $(CARGO_FLAGS) --release --package sequoia-ffi
+   $(MAKE) -Clang/python build-release
+   $(call sequoia_pc,$(CARGO_TARGET_DIR)/release,true)
+-  $(MAKE) -C../store install
++  $(MAKE) -C../store build-release
+ 
+ .PHONY: install
+ install: build-release


[arch-commits] Commit in (5 files)

2020-09-23 Thread David Runge via arch-commits
Date: Wednesday, September 23, 2020 @ 22:07:39
  Author: dvzrv
Revision: 711610

Add libupnp1.12 for a few packages that can not be built against libupnp 1.14.0.

Added:
  libupnp1.12/
  libupnp1.12/repos/
  libupnp1.12/trunk/
  libupnp1.12/trunk/PKGBUILD
  libupnp1.12/trunk/libupnp1.12-build.patch

-+
 PKGBUILD|   50 
 libupnp1.12-build.patch |  261 ++
 2 files changed, 311 insertions(+)

Added: libupnp1.12/trunk/PKGBUILD
===
--- libupnp1.12/trunk/PKGBUILD  (rev 0)
+++ libupnp1.12/trunk/PKGBUILD  2020-09-23 22:07:39 UTC (rev 711610)
@@ -0,0 +1,50 @@
+# Maintainer: Levente Polyak 
+# Contributor: Giovanni Scafora 
+# Contributor: kastor 
+
+_name=pupnp
+pkgname=libupnp1.12
+pkgver=1.12.1
+pkgrel=1
+pkgdesc='Portable Open Source UPnP Development Kit (legacy 1.12 branch)'
+url='http://pupnp.sourceforge.net/'
+arch=('x86_64')
+license=('BSD')
+depends=('glibc')
+makedepends=('pkgconfig')
+provides=('libupnp-1.12.so' 'libixml-1.12.so')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${_name}/${_name}/archive/release-${pkgver}.tar.gz;
+"${pkgname}-build.patch")
+sha512sums=('e4741f9245378529a15b8be7acec5af52d802ce84b82f110dab44c30da65fc2514d51d3bee6311643eb28146ea90bb3c97f44f800edb4f3c1681f3e70f80'
+
'c6af9af97e3ef54e45ecec5b4aac5a3819d5a73c36970ec19ba4cec4d3139782ae767ac02d49da3087c8976f6d1fc045e1bdba765c9a41be43c2e4292c0bcbd6')
+b2sums=('e44847dda5a7aeabb22a5b76cdc48d1dc69e70f7ecac85824199bf8d6e9b802cb717f2959f70690cc00babf1b554a0cb031995f80c28246b9eec670ebe7aaa90'
+
'c51cbf157aeb84b301e93f2757140a2878f13d1a55dea6390ef5bfc02c8e2ed178cf77c720ac73d180e134188d522a94b45e25b4113eca9974fe4a13c6f9f72f')
+
+prepare() {
+  mv -v ${_name}-release-${pkgver} ${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
+  # rename the shared libraries and include directories, so that they do not
+  # conflict with libupnp
+  patch -Np1 -i "../${pkgname}-build.patch"
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make -k check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 {ChangeLog,README.md} -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Added: libupnp1.12/trunk/libupnp1.12-build.patch
===
--- libupnp1.12/trunk/libupnp1.12-build.patch   (rev 0)
+++ libupnp1.12/trunk/libupnp1.12-build.patch   2020-09-23 22:07:39 UTC (rev 
711610)
@@ -0,0 +1,261 @@
+diff -ruN a/Makefile.am b/Makefile.am
+--- a/Makefile.am  2020-04-07 18:45:40.0 +0200
 b/Makefile.am  2020-09-24 00:00:25.770875019 +0200
+@@ -14,7 +14,7 @@
+ 
+ EXTRA_DIST = \
+   docs/Doxyfile \
+-  libupnp.pc.in \
++  libupnp-1-12.pc.in \
+   libupnp.spec \
+   build/msvc/inttypes.h \
+   build/msvc/stdint.h
+@@ -23,7 +23,7 @@
+ # This variable must have 'exec' in its name, in order to be installed 
+ # by 'install-exec' target (instead of default 'install-data')
+ pkgconfigexecdir = $(libdir)/pkgconfig
+-pkgconfigexec_DATA = libupnp.pc
++pkgconfigexec_DATA = libupnp-1.12.pc
+ 
+ $(pkgconfigexec_DATA): config.status
+ 
+diff -ruN a/configure.ac b/configure.ac
+--- a/configure.ac 2020-04-07 18:45:40.0 +0200
 b/configure.ac 2020-09-23 23:59:15.547619119 +0200
+@@ -798,7 +798,7 @@
+   upnp/doc/Makefile
+   upnp/sample/Makefile
+   upnp/unittest/Makefile
+-  libupnp.pc
++  libupnp-1.12.pc
+   ])
+ 
+ AC_OUTPUT
+diff -ruN a/ixml/Makefile.am b/ixml/Makefile.am
+--- a/ixml/Makefile.am 2020-04-07 18:45:40.0 +0200
 b/ixml/Makefile.am 2020-09-24 00:02:32.304077027 +0200
+@@ -11,7 +11,7 @@
+   -I$(top_srcdir)/upnp/inc
+ AM_CFLAGS = 
+ 
+-LDADD = libixml.la
++LDADD = libixml-1.12.la
+ 
+ if ENABLE_DEBUG
+ AM_CPPFLAGS   += -DDEBUG
+@@ -23,12 +23,12 @@
+ AM_CPPFLAGS   += -DIXML_HAVE_SCRIPTSUPPORT
+ endif
+ 
+-lib_LTLIBRARIES   = libixml.la
++lib_LTLIBRARIES   = libixml-1.12.la
+ 
+-libixml_la_LDFLAGS= -version-info $(LT_VERSION_IXML) \
++libixml_1_12_la_LDFLAGS   = -version-info $(LT_VERSION_IXML) \
+ -export-symbols-regex '^ixml.*'
+ 
+-libixml_la_SOURCES= \
++libixml_1_12_la_SOURCES   = \
+   src/attr.c \
+   src/document.c \
+   src/element.c \
+@@ -42,7 +42,7 @@
+   src/node.c \
+   src/nodeList.c
+ 
+-upnpincludedir= $(includedir)/upnp
++upnpincludedir= 

[arch-commits] Commit in haskell-mueval/repos (2 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:07:13
  Author: felixonmars
Revision: 711609

archrelease: copy trunk to community-x86_64

Added:
  haskell-mueval/repos/community-x86_64/
  haskell-mueval/repos/community-x86_64/PKGBUILD
(from rev 711608, haskell-mueval/trunk/PKGBUILD)

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

Copied: haskell-mueval/repos/community-x86_64/PKGBUILD (from rev 711608, 
haskell-mueval/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-09-23 22:07:13 UTC (rev 711609)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+
+_hkgname=mueval
+pkgname=haskell-mueval
+pkgver=0.9.3
+pkgrel=1
+pkgdesc="Safely evaluate pure Haskell expressions"
+url="https://github.com/gwern/mueval;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-extensible-exceptions' 
'haskell-hint'
+ 'haskell-show' 'haskell-simple-reflect')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('f72a8bbaffecaeb55b67d78011e182073be8ba9f4a90824903e4c78cfe6e1ef7')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  sed -i 's/ -static//' $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (4 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:06:52
  Author: felixonmars
Revision: 711608

addpkg: haskell-mueval 0.9.3-1

Added:
  haskell-mueval/
  haskell-mueval/repos/
  haskell-mueval/trunk/
  haskell-mueval/trunk/PKGBUILD

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

Added: haskell-mueval/trunk/PKGBUILD
===
--- haskell-mueval/trunk/PKGBUILD   (rev 0)
+++ haskell-mueval/trunk/PKGBUILD   2020-09-23 22:06:52 UTC (rev 711608)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+
+_hkgname=mueval
+pkgname=haskell-mueval
+pkgver=0.9.3
+pkgrel=1
+pkgdesc="Safely evaluate pure Haskell expressions"
+url="https://github.com/gwern/mueval;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-extensible-exceptions' 
'haskell-hint'
+ 'haskell-show' 'haskell-simple-reflect')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('f72a8bbaffecaeb55b67d78011e182073be8ba9f4a90824903e4c78cfe6e1ef7')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  sed -i 's/ -static//' $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (5 files)

2020-09-23 Thread Levente Polyak via arch-commits
Date: Wednesday, September 23, 2020 @ 22:04:54
  Author: anthraxx
Revision: 711607

addpkg: sequoia 0.19.0

Added:
  sequoia/
  sequoia/repos/
  sequoia/trunk/
  sequoia/trunk/PKGBUILD
  sequoia/trunk/build.patch

-+
 PKGBUILD|   58 ++
 build.patch |   13 +
 2 files changed, 71 insertions(+)

Added: sequoia/trunk/PKGBUILD
===
--- sequoia/trunk/PKGBUILD  (rev 0)
+++ sequoia/trunk/PKGBUILD  2020-09-23 22:04:54 UTC (rev 711607)
@@ -0,0 +1,58 @@
+# Maintainer: Levente Polyak 
+# Contributor: Kai Michaelis 
+
+pkgbase=sequoia
+pkgname=(sequoia python-sequoia)
+pkgver=0.19.0
+pkgrel=1
+pkgdesc='Cool new OpenPGP implementation'
+url='https://sequoia-pgp.org/'
+arch=('x86_64')
+license=('GPL3')
+makedepends=('git' 'cargo' 'clang' 'python' 'python-setuptools' 'python-cffi'
+ 'glibc' 'nettle' 'sqlite' 'capnproto' 'openssl' 'gcc-libs' 'gmp')
+checkdepends=('python-pytest' 'python-pytest-runner')
+options=('!makeflags')
+source=(${pkgname}::"git+https://gitlab.com/sequoia-pgp/sequoia.git#tag=v${pkgver};
+build.patch)
+sha512sums=('SKIP'
+
'44c8f4af25b3a8c42939ea75e87fa90ac42499545b41c3dc6744debf318ecc6361f4aad2692663a0516b9f5a6e1d33435d82a7749cfd2c26c9baf94f5dcb6b09')
+
+prepare() {
+  cd ${pkgname}
+  sed 's/debug/release/g' -i -- */Makefile */*/Makefile */*/*/Makefile
+  sed "s/-L/${LDFLAGS},-L/g" -i ffi/lang/python/Makefile
+  patch -Np1 < ../build.patch
+}
+
+build() {
+  cd ${pkgname}
+  make PREFIX=/usr CARGO_FLAGS='--locked' build-release
+}
+
+check() {
+  cd ${pkgname}
+  cargo test --release --locked \
+--workspace \
+--exclude sequoia-store
+  # python tests currently fail horribly
+  # make -C ffi/lang/python test
+}
+
+package_sequoia() {
+  depends=('glibc' 'nettle' 'libhogweed.so' 'libnettle.so' 'sqlite' 'capnproto'
+   'openssl' 'gcc-libs' 'gmp')
+  cd ${pkgbase}
+  make DESTDIR="${pkgdir}" PREFIX=/usr CARGO_FLAGS='--locked' install
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  rm -rf "${pkgdir}/usr/lib/python"*
+}
+
+package_python-sequoia() {
+  depends=('python' 'python-cffi' 'sequoia')
+  pkgdesc+=' - python bindings'
+  cd ${pkgbase}
+  make -C ffi/lang/python DESTDIR="${pkgdir}" PREFIX=/usr install
+}
+
+# vim: ts=2 sw=2 et:

Added: sequoia/trunk/build.patch
===
--- sequoia/trunk/build.patch   (rev 0)
+++ sequoia/trunk/build.patch   2020-09-23 22:04:54 UTC (rev 711607)
@@ -0,0 +1,13 @@
+diff --git a/ffi/Makefile b/ffi/Makefile
+index 3dddfcd4..1feb7b53 100644
+--- a/ffi/Makefile
 b/ffi/Makefile
+@@ -62,7 +62,7 @@ build-release:
+   $(CARGO) build $(CARGO_FLAGS) --release --package sequoia-ffi
+   $(MAKE) -Clang/python build-release
+   $(call sequoia_pc,$(CARGO_TARGET_DIR)/release,true)
+-  $(MAKE) -C../store install
++  $(MAKE) -C../store build-release
+ 
+ .PHONY: install
+ install: build-release


[arch-commits] Commit in haskell-show/repos (2 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:00:24
  Author: felixonmars
Revision: 711606

archrelease: copy trunk to community-x86_64

Added:
  haskell-show/repos/community-x86_64/
  haskell-show/repos/community-x86_64/PKGBUILD
(from rev 711605, haskell-show/trunk/PKGBUILD)

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

Copied: haskell-show/repos/community-x86_64/PKGBUILD (from rev 711605, 
haskell-show/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-09-23 22:00:24 UTC (rev 711606)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+
+_hkgname=show
+pkgname=haskell-show
+pkgver=0.6
+pkgrel=1
+pkgdesc="'Show' instances for Lambdabot"
+url="https://github.com/mokus0/show.git;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-syb')
+makedepends=('ghc' )
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('4f57a947a538d021406f649049dde27d4d8d0b44aac3ba38fa64806c9d737b95')
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (4 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 22:00:10
  Author: felixonmars
Revision: 711605

addpkg: haskell-show 0.6-1

Added:
  haskell-show/
  haskell-show/repos/
  haskell-show/trunk/
  haskell-show/trunk/PKGBUILD

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

Added: haskell-show/trunk/PKGBUILD
===
--- haskell-show/trunk/PKGBUILD (rev 0)
+++ haskell-show/trunk/PKGBUILD 2020-09-23 22:00:10 UTC (rev 711605)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+
+_hkgname=show
+pkgname=haskell-show
+pkgver=0.6
+pkgrel=1
+pkgdesc="'Show' instances for Lambdabot"
+url="https://github.com/mokus0/show.git;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-syb')
+makedepends=('ghc' )
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('4f57a947a538d021406f649049dde27d4d8d0b44aac3ba38fa64806c9d737b95')
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-09-23 Thread Filipe Laíns via arch-commits
Date: Wednesday, September 23, 2020 @ 21:57:23
  Author: ffy00
Revision: 711604

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   74 ++---
 1 file changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 21:56:19 UTC (rev 711603)
+++ PKGBUILD2020-09-23 21:57:23 UTC (rev 711604)
@@ -1,37 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=python-multipart
-pkgname=python-$_pkgname
-pkgver=0.0.4
-pkgrel=1
-pkgdesc='streaming multipart parser for Python'
-arch=('any')
-url='https://github.com/andrew-d/python-multipart'
-license=('Apache')
-depends=('python' 'python-six')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner' 'python-yaml')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('5379e16201742595261e8e20d48ef764fc144e842f216b5624a55170d45a0d185eca23135dde7ec20acae7a52f6519a5d2b510216e04edb00ab2f73e323783be')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  python setup.py pytest
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-python-multipart/repos/community-any/PKGBUILD (from rev 711603, 
python-python-multipart/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 21:57:23 UTC (rev 711604)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=python-multipart
+pkgname=python-$_pkgname
+pkgver=0.0.5
+pkgrel=1
+pkgdesc='streaming multipart parser for Python'
+arch=('any')
+url='https://github.com/andrew-d/python-multipart'
+license=('Apache')
+depends=('python' 'python-six')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner' 'python-yaml')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('c2fabeb77a25119c4bbb71c3faa6de58e27ac2f0c768298eac62b519fc51e5d95fdea05c4f3846ed47205f297802982a001577a73b2feec2d9f585c784d6c3d7')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  python setup.py pytest
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-09-23 Thread Filipe Laíns via arch-commits
Date: Wednesday, September 23, 2020 @ 21:56:19
  Author: ffy00
Revision: 711603

upgpkg: python-python-multipart 0.0.5-1

Modified:
  python-python-multipart/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 21:53:59 UTC (rev 711602)
+++ PKGBUILD2020-09-23 21:56:19 UTC (rev 711603)
@@ -2,7 +2,7 @@
 
 _pkgname=python-multipart
 pkgname=python-$_pkgname
-pkgver=0.0.4
+pkgver=0.0.5
 pkgrel=1
 pkgdesc='streaming multipart parser for Python'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest-runner' 'python-yaml')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('5379e16201742595261e8e20d48ef764fc144e842f216b5624a55170d45a0d185eca23135dde7ec20acae7a52f6519a5d2b510216e04edb00ab2f73e323783be')
+sha512sums=('c2fabeb77a25119c4bbb71c3faa6de58e27ac2f0c768298eac62b519fc51e5d95fdea05c4f3846ed47205f297802982a001577a73b2feec2d9f585c784d6c3d7')
 
 build() {
   cd $_pkgname-$pkgver


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

2020-09-23 Thread Filipe Laíns via arch-commits
Date: Wednesday, September 23, 2020 @ 21:53:59
  Author: ffy00
Revision: 711602

archrelease: copy trunk to community-x86_64

Added:
  pulseeffects/repos/community-x86_64/PKGBUILD
(from rev 711601, pulseeffects/trunk/PKGBUILD)
Deleted:
  pulseeffects/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 21:53:56 UTC (rev 711601)
+++ PKGBUILD2020-09-23 21:53:59 UTC (rev 711602)
@@ -1,35 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Wellington 
-
-pkgname=pulseeffects
-pkgver=4.8.0
-pkgrel=2
-pkgdesc='Audio Effects for Pulseaudio Applications'
-arch=('x86_64')
-url='https://github.com/wwmm/pulseeffects'
-license=('GPL3')
-depends=('gtk3' 'gtkmm3' 'glibmm' 'libpulse' 'gstreamer' 'gst-plugin-gtk' 
'gst-plugins-bad'
-'lilv' 'boost-libs' 'libsigc++' 'libsndfile' 'libsamplerate' 
'zita-convolver' 'libebur128'
-'calf' 'lsp-plugins' 'yelp')
-makedepends=('meson' 'boost' 'itstool' 'appstream-glib'
- 'zam-plugins' 'rubberband' 'mda.lv2')
-optdepends=('zam-plugins: maximizer'
-'rubberband: pitch shifting')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('1fa32f34d2e1aa9fc87eaaecc73a5aad017f2bfd26228edb0cba938e2ab0146e8882fef4b8d74364030d7a78467e728f4e517870be422619d87be2c964b55492')
-
-build() {
-  mkdir -p $pkgname-$pkgver/build
-  cd $pkgname-$pkgver/build
-
-  arch-meson ..
-
-  ninja
-}
-
-package() {
-  cd $pkgname-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}
-

Copied: pulseeffects/repos/community-x86_64/PKGBUILD (from rev 711601, 
pulseeffects/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 21:53:59 UTC (rev 711602)
@@ -0,0 +1,35 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Wellington 
+
+pkgname=pulseeffects
+pkgver=4.8.2
+pkgrel=1
+pkgdesc='Audio Effects for Pulseaudio Applications'
+arch=('x86_64')
+url='https://github.com/wwmm/pulseeffects'
+license=('GPL3')
+depends=('gtk3' 'gtkmm3' 'glibmm' 'libpulse' 'gstreamer' 'gst-plugin-gtk' 
'gst-plugins-bad'
+ 'lilv' 'boost-libs' 'libsigc++' 'libsndfile' 'libsamplerate' 
'zita-convolver' 'libebur128'
+ 'calf' 'lsp-plugins' 'yelp')
+makedepends=('meson' 'boost' 'itstool' 'appstream-glib'
+ 'zam-plugins' 'rubberband')
+optdepends=('zam-plugins: maximizer'
+'rubberband: pitch shifting')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('14fc30486568fd6729280bf1197b2e2292ddba188d984559c0ffe7faff1a9550e58e776d6d5aade12a6057aa608a58e0eb60830fdcb18d783c22d5f971e6d616')
+
+build() {
+  mkdir -p $pkgname-$pkgver/build
+  cd $pkgname-$pkgver/build
+
+  arch-meson ..
+
+  ninja
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}
+


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

2020-09-23 Thread Filipe Laíns via arch-commits
Date: Wednesday, September 23, 2020 @ 21:53:56
  Author: ffy00
Revision: 711601

upgpkg: pulseeffects 4.8.2-1

Modified:
  pulseeffects/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 21:50:30 UTC (rev 711600)
+++ PKGBUILD2020-09-23 21:53:56 UTC (rev 711601)
@@ -2,21 +2,21 @@
 # Contributor: Wellington 
 
 pkgname=pulseeffects
-pkgver=4.8.0
-pkgrel=2
+pkgver=4.8.2
+pkgrel=1
 pkgdesc='Audio Effects for Pulseaudio Applications'
 arch=('x86_64')
 url='https://github.com/wwmm/pulseeffects'
 license=('GPL3')
 depends=('gtk3' 'gtkmm3' 'glibmm' 'libpulse' 'gstreamer' 'gst-plugin-gtk' 
'gst-plugins-bad'
-'lilv' 'boost-libs' 'libsigc++' 'libsndfile' 'libsamplerate' 
'zita-convolver' 'libebur128'
-'calf' 'lsp-plugins' 'yelp')
+ 'lilv' 'boost-libs' 'libsigc++' 'libsndfile' 'libsamplerate' 
'zita-convolver' 'libebur128'
+ 'calf' 'lsp-plugins' 'yelp')
 makedepends=('meson' 'boost' 'itstool' 'appstream-glib'
- 'zam-plugins' 'rubberband' 'mda.lv2')
+ 'zam-plugins' 'rubberband')
 optdepends=('zam-plugins: maximizer'
 'rubberband: pitch shifting')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('1fa32f34d2e1aa9fc87eaaecc73a5aad017f2bfd26228edb0cba938e2ab0146e8882fef4b8d74364030d7a78467e728f4e517870be422619d87be2c964b55492')
+sha512sums=('14fc30486568fd6729280bf1197b2e2292ddba188d984559c0ffe7faff1a9550e58e776d6d5aade12a6057aa608a58e0eb60830fdcb18d783c22d5f971e6d616')
 
 build() {
   mkdir -p $pkgname-$pkgver/build


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

2020-09-23 Thread Antonio Rojas via arch-commits
Date: Wednesday, September 23, 2020 @ 21:50:20
  Author: arojas
Revision: 711599

Remove unused libupnp dependency

Modified:
  mediastreamer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 21:48:16 UTC (rev 711598)
+++ PKGBUILD2020-09-23 21:50:20 UTC (rev 711599)
@@ -6,12 +6,12 @@
 
 pkgname=mediastreamer
 pkgver=4.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A library written in C that allows you to create and run audio and 
video streams"
 arch=(x86_64)
 url="https://github.com/BelledonneCommunications/mediastreamer2;
 license=(GPL)
-depends=(ortp ffmpeg libupnp bzrtp glew libsrtp)
+depends=(ortp ffmpeg bzrtp glew libsrtp)
 makedepends=(cmake python bcunit doxygen)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/mediastreamer2/archive/$pkgver.tar.gz;)
 sha256sums=('f986fba8bb23db60441707c958e8d8cb41d56939b42ef4e47de1eeed62522eee')


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

2020-09-23 Thread Antonio Rojas via arch-commits
Date: Wednesday, September 23, 2020 @ 21:50:30
  Author: arojas
Revision: 711600

archrelease: copy trunk to community-x86_64

Added:
  mediastreamer/repos/community-x86_64/PKGBUILD
(from rev 711599, mediastreamer/trunk/PKGBUILD)
Deleted:
  mediastreamer/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 21:50:20 UTC (rev 711599)
+++ PKGBUILD2020-09-23 21:50:30 UTC (rev 711600)
@@ -1,29 +0,0 @@
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Sergej Pupykin 
-# Contributor: Adrià Arrufat 
-# Contributor: Mark Lee 
-
-pkgname=mediastreamer
-pkgver=4.4.0
-pkgrel=1
-pkgdesc="A library written in C that allows you to create and run audio and 
video streams"
-arch=(x86_64)
-url="https://github.com/BelledonneCommunications/mediastreamer2;
-license=(GPL)
-depends=(ortp ffmpeg libupnp bzrtp glew libsrtp)
-makedepends=(cmake python bcunit doxygen)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/mediastreamer2/archive/$pkgver.tar.gz;)
-sha256sums=('f986fba8bb23db60441707c958e8d8cb41d56939b42ef4e47de1eeed62522eee')
-validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
-
-build() {
-  cmake -B build -S ${pkgname}2-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_STATIC=OFF
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: mediastreamer/repos/community-x86_64/PKGBUILD (from rev 711599, 
mediastreamer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 21:50:30 UTC (rev 711600)
@@ -0,0 +1,29 @@
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Sergej Pupykin 
+# Contributor: Adrià Arrufat 
+# Contributor: Mark Lee 
+
+pkgname=mediastreamer
+pkgver=4.4.0
+pkgrel=2
+pkgdesc="A library written in C that allows you to create and run audio and 
video streams"
+arch=(x86_64)
+url="https://github.com/BelledonneCommunications/mediastreamer2;
+license=(GPL)
+depends=(ortp ffmpeg bzrtp glew libsrtp)
+makedepends=(cmake python bcunit doxygen)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/mediastreamer2/archive/$pkgver.tar.gz;)
+sha256sums=('f986fba8bb23db60441707c958e8d8cb41d56939b42ef4e47de1eeed62522eee')
+validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
+
+build() {
+  cmake -B build -S ${pkgname}2-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_STATIC=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2020-09-23 Thread Filipe Laíns via arch-commits
Date: Wednesday, September 23, 2020 @ 21:48:07
  Author: ffy00
Revision: 711597

upgpkg: tree-sitter 0.17.0-1

Modified:
  tree-sitter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 21:47:21 UTC (rev 711596)
+++ PKGBUILD2020-09-23 21:48:07 UTC (rev 711597)
@@ -1,7 +1,7 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=tree-sitter
-pkgver=0.16.9
+pkgver=0.17.0
 pkgrel=1
 pkgdesc='An incremental parsing system for programming tools'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 provides=('libtree-sitter.so')
 makedepends=('git' 'cargo' 'npm' 'emscripten')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('SKIP')
+sha512sums=('4f5ee2e862cb45f8000d8d4950395216b8c33e7168b110dd393fe888aebc81f64bc37bb59f3cd7d4a95f8307f0e2324d08cc01d769d7771c21249e93801c5c11')
 
 build() {
   cd $pkgname-$pkgver


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

2020-09-23 Thread Filipe Laíns via arch-commits
Date: Wednesday, September 23, 2020 @ 21:48:16
  Author: ffy00
Revision: 711598

archrelease: copy trunk to community-x86_64

Added:
  tree-sitter/repos/community-x86_64/PKGBUILD
(from rev 711597, tree-sitter/trunk/PKGBUILD)
Deleted:
  tree-sitter/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 21:48:07 UTC (rev 711597)
+++ PKGBUILD2020-09-23 21:48:16 UTC (rev 711598)
@@ -1,36 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=tree-sitter
-pkgver=0.16.9
-pkgrel=1
-pkgdesc='An incremental parsing system for programming tools'
-arch=('x86_64')
-url='https://github.com/tree-sitter/tree-sitter'
-license=('MIT')
-provides=('libtree-sitter.so')
-makedepends=('git' 'cargo' 'npm' 'emscripten')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-
-  make
-
-  ./script/build-wasm
-
-  cd cli
-
-  cargo build --release --locked --all-features
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" PREFIX=/usr install
-
-  install -Dm 755 target/release/$pkgname -t "$pkgdir"/usr/bin
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: tree-sitter/repos/community-x86_64/PKGBUILD (from rev 711597, 
tree-sitter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 21:48:16 UTC (rev 711598)
@@ -0,0 +1,36 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=tree-sitter
+pkgver=0.17.0
+pkgrel=1
+pkgdesc='An incremental parsing system for programming tools'
+arch=('x86_64')
+url='https://github.com/tree-sitter/tree-sitter'
+license=('MIT')
+provides=('libtree-sitter.so')
+makedepends=('git' 'cargo' 'npm' 'emscripten')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('4f5ee2e862cb45f8000d8d4950395216b8c33e7168b110dd393fe888aebc81f64bc37bb59f3cd7d4a95f8307f0e2324d08cc01d769d7771c21249e93801c5c11')
+
+build() {
+  cd $pkgname-$pkgver
+
+  make
+
+  ./script/build-wasm
+
+  cd cli
+
+  cargo build --release --locked --all-features
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+
+  install -Dm 755 target/release/$pkgname -t "$pkgdir"/usr/bin
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


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

2020-09-23 Thread Levente Polyak via arch-commits
Date: Wednesday, September 23, 2020 @ 21:47:17
  Author: anthraxx
Revision: 711595

upgpkg: eksctl 0.28.1-1

Modified:
  eksctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 20:41:54 UTC (rev 711594)
+++ PKGBUILD2020-09-23 21:47:17 UTC (rev 711595)
@@ -3,7 +3,7 @@
 # Contributor: Mike Williamson 
 
 pkgname=eksctl
-pkgver=0.28.0
+pkgver=0.28.1
 pkgrel=1
 pkgdesc='Command line tool for creating clusters on Amazon EKS'
 url='https://github.com/weaveworks/eksctl'
@@ -12,8 +12,8 @@
 depends=('kubectl' 'glibc')
 makedepends=('go')
 source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('073a624f2c6f9251ab65e798d1d36534fb56de61f02b4f0aaa353640e2ef460d')
-b2sums=('83486306a3bf7d55c8476f11f3685bd68adc356dfe51d4f0e44c20b0e561e8f8faf96a77bb09475df78e47c363d3ff4fd47078ab10ef01b7092fe21dc8c38e2e')
+sha256sums=('fc5ff7a90efac570a5ded5ab5287cf933e905ad62cdb0154038eaa14ad8b105e')
+b2sums=('850af8395c071d70c3856d6313365b95aa9b8481513dfcf14e07d86dd23c7b803998c10639f316dbfa2e1c45eebaef40155e5aba1958cb49e2da9d9e20e70b4d')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2020-09-23 Thread Levente Polyak via arch-commits
Date: Wednesday, September 23, 2020 @ 21:47:21
  Author: anthraxx
Revision: 711596

archrelease: copy trunk to community-x86_64

Added:
  eksctl/repos/community-x86_64/PKGBUILD
(from rev 711595, eksctl/trunk/PKGBUILD)
Deleted:
  eksctl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 21:47:17 UTC (rev 711595)
+++ PKGBUILD2020-09-23 21:47:21 UTC (rev 711596)
@@ -1,42 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: David Birks 
-# Contributor: Mike Williamson 
-
-pkgname=eksctl
-pkgver=0.28.0
-pkgrel=1
-pkgdesc='Command line tool for creating clusters on Amazon EKS'
-url='https://github.com/weaveworks/eksctl'
-arch=('x86_64')
-license=('Apache')
-depends=('kubectl' 'glibc')
-makedepends=('go')
-source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('073a624f2c6f9251ab65e798d1d36534fb56de61f02b4f0aaa353640e2ef460d')
-b2sums=('83486306a3bf7d55c8476f11f3685bd68adc356dfe51d4f0e44c20b0e561e8f8faf96a77bb09475df78e47c363d3ff4fd47078ab10ef01b7092fe21dc8c38e2e')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
-  go build -v \
--ldflags "-linkmode=external -extldflags '${LDFLAGS}' -X 
github.com/weaveworks/eksctl/pkg/version.gitTag=${pkgver}" \
-./cmd/eksctl
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 ${pkgname} -t "$pkgdir/usr/bin"
-
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-
-  # completions
-  "${pkgdir}/usr/bin/${pkgname}" completion bash | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
-  "${pkgdir}/usr/bin/${pkgname}" completion zsh | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
-  "${pkgdir}/usr/bin/${pkgname}" completion fish | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/fish/completions/${pkgname}.fish"
-}
-
-# vim: ts=2 sw=2 et:

Copied: eksctl/repos/community-x86_64/PKGBUILD (from rev 711595, 
eksctl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 21:47:21 UTC (rev 711596)
@@ -0,0 +1,42 @@
+# Maintainer: Levente Polyak 
+# Contributor: David Birks 
+# Contributor: Mike Williamson 
+
+pkgname=eksctl
+pkgver=0.28.1
+pkgrel=1
+pkgdesc='Command line tool for creating clusters on Amazon EKS'
+url='https://github.com/weaveworks/eksctl'
+arch=('x86_64')
+license=('Apache')
+depends=('kubectl' 'glibc')
+makedepends=('go')
+source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('fc5ff7a90efac570a5ded5ab5287cf933e905ad62cdb0154038eaa14ad8b105e')
+b2sums=('850af8395c071d70c3856d6313365b95aa9b8481513dfcf14e07d86dd23c7b803998c10639f316dbfa2e1c45eebaef40155e5aba1958cb49e2da9d9e20e70b4d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
+  go build -v \
+-ldflags "-linkmode=external -extldflags '${LDFLAGS}' -X 
github.com/weaveworks/eksctl/pkg/version.gitTag=${pkgver}" \
+./cmd/eksctl
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 ${pkgname} -t "$pkgdir/usr/bin"
+
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+
+  # completions
+  "${pkgdir}/usr/bin/${pkgname}" completion bash | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
+  "${pkgdir}/usr/bin/${pkgname}" completion zsh | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
+  "${pkgdir}/usr/bin/${pkgname}" completion fish | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/fish/completions/${pkgname}.fish"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in kismet/repos/extra-x86_64 (8 files)

2020-09-23 Thread Levente Polyak via arch-commits
Date: Wednesday, September 23, 2020 @ 21:32:13
  Author: anthraxx
Revision: 396445

archrelease: copy trunk to extra-x86_64

Added:
  kismet/repos/extra-x86_64/PKGBUILD
(from rev 396444, kismet/trunk/PKGBUILD)
  kismet/repos/extra-x86_64/kismet.install
(from rev 396444, kismet/trunk/kismet.install)
  kismet/repos/extra-x86_64/kismet.sysusers
(from rev 396444, kismet/trunk/kismet.sysusers)
  kismet/repos/extra-x86_64/python-install-flags.patch
(from rev 396444, kismet/trunk/python-install-flags.patch)
Deleted:
  kismet/repos/extra-x86_64/PKGBUILD
  kismet/repos/extra-x86_64/kismet.install
  kismet/repos/extra-x86_64/kismet.sysusers
  kismet/repos/extra-x86_64/python-install-flags.patch

+
 PKGBUILD   |  144 +--
 kismet.install |   38 +--
 kismet.sysusers|2 
 python-install-flags.patch |   90 +-
 4 files changed, 137 insertions(+), 137 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 21:32:08 UTC (rev 396444)
+++ PKGBUILD2020-09-23 21:32:13 UTC (rev 396445)
@@ -1,72 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Juergen Hoetzel 
-# Contributor: Angel Velasquez 
-# Contributor: Jason Chu 
-
-pkgname=kismet
-pkgver=2020_04_R3
-_realver="${pkgver//_/-}"
-pkgrel=2
-pkgdesc="802.11 layer2 wireless network detector, sniffer, and intrusion 
detection system"
-url="https://www.kismetwireless.net/;
-arch=('x86_64')
-license=('GPL')
-depends=('libpcap' 'pcre' 'bluez-libs' 'libcap' 'libmicrohttpd' 'protobuf-c' 
'libprotobuf-c.so'
- 'sqlite' 'libnm' 'gcc-libs' 'libusb' 'libusb-1.0.so' 'libnl' 'glibc' 
'zlib' 'libelf'
- 'lm_sensors' 'systemd' 'python' 'python-setuptools' 'python-protobuf' 
'python-pyserial'
- 'python-numpy')
-makedepends=('python-setuptools')
-optdepends=(
-  'gpsd: log coordinates of detected networks'
-  'wireshark-cli: provide OUI files used to determine device manufacturer'
-  'wireshark-cli: mergecap, to merge multiple capture files'
-  'sox: provide the default kismet sound playback binary'
-  'festival: text-to-speech support'
-  'flite:  alternative/lightweight text-to-speech support')
-backup=(
-  etc/kismet/kismet.conf
-  etc/kismet/kismet_80211.conf
-  etc/kismet/kismet_alerts.conf
-  etc/kismet/kismet_filter.conf
-  etc/kismet/kismet_httpd.conf
-  etc/kismet/kismet_logging.conf
-  etc/kismet/kismet_memory.conf
-  etc/kismet/kismet_storage.conf
-  etc/kismet/kismet_uav.conf)
-install=kismet.install
-source=(https://www.kismetwireless.net/code/${pkgname}-${_realver}.tar.xz
-kismet.sysusers
-python-install-flags.patch)
-sha512sums=('585def7f19f479c6049cbc24e3886276d816f584fcb2070009cd90e35b33630d3e544145abf5f8b1eae87ec571a213ed9cb9f6b81345257c9bf1332d5bb319c2'
-
'452b728c30c9932bdb91741af425267da87a66962ea9b736751948881f5477dee0bff8e2eeca2befdea2920da6d7d9e198bde69cef8c48bb49a0093a7f0ef897'
-
'5e1c25026436adccada5086f122e3c542a8edeec2f2f1018937ff43860b1b26a814876d72746bca4f7d1bcb9d4dcb1805c35c1786e6552ff45bc14fa6e4c')
-validpgpkeys=('354689DF3C9DED803381A661D7B28822738BBDB1') # Michael Kershaw
-
-prepare() {
-  cd ${pkgname}-${_realver}
-  patch -Np0 < ../python-install-flags.patch
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgname}-${_realver}
-  ./configure \
---prefix=/usr \
---localstatedir=/var \
---sysconfdir=/etc/kismet
-  make all plugins
-}
-
-package() {
-  cd ${pkgname}-${_realver}
-  make DESTDIR="${pkgdir}" install
-
-  # Makepkg strip bug #43600
-  chmod u+w "${pkgdir}"/usr/bin/kismet*
-  chmod o-x "${pkgdir}"/usr/bin/kismet_cap*
-  chown 0:315 "${pkgdir}"/usr/bin/kismet_cap*
-
-  install -Dm 644 ../kismet.sysusers "${pkgdir}/usr/lib/sysusers.d/kismet.conf"
-}
-
-# vim: ts=2 sw=2 et:

Copied: kismet/repos/extra-x86_64/PKGBUILD (from rev 396444, 
kismet/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 21:32:13 UTC (rev 396445)
@@ -0,0 +1,72 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Juergen Hoetzel 
+# Contributor: Angel Velasquez 
+# Contributor: Jason Chu 
+
+pkgname=kismet
+pkgver=2020_09_R3
+_realver="${pkgver//_/-}"
+pkgrel=1
+pkgdesc="802.11 layer2 wireless network detector, sniffer, and intrusion 
detection system"
+url="https://www.kismetwireless.net/;
+arch=('x86_64')
+license=('GPL')
+depends=('libpcap' 'pcre' 'bluez-libs' 'libcap' 'libmicrohttpd' 'protobuf-c' 
'libprotobuf-c.so'
+ 'sqlite' 'libnm' 'gcc-libs' 'libusb' 'libusb-1.0.so' 'libnl' 'glibc' 
'zlib' 'libelf'
+ 'lm_sensors' 'systemd' 'python' 'python-setuptools' 'python-protobuf' 
'python-pyserial'
+ 'python-numpy')
+makedepends=('python-setuptools')
+optdepends=(
+  'gpsd: log coordinates of detected networks'
+  'wireshark-cli: provide OUI files 

[arch-commits] Commit in kismet/trunk (PKGBUILD python-install-flags.patch)

2020-09-23 Thread Levente Polyak via arch-commits
Date: Wednesday, September 23, 2020 @ 21:32:08
  Author: anthraxx
Revision: 396444

upgpkg: kismet 2020_09_R3-1

Modified:
  kismet/trunk/PKGBUILD
  kismet/trunk/python-install-flags.patch

+
 PKGBUILD   |8 +++
 python-install-flags.patch |   48 +--
 2 files changed, 28 insertions(+), 28 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 18:51:29 UTC (rev 396443)
+++ PKGBUILD2020-09-23 21:32:08 UTC (rev 396444)
@@ -4,9 +4,9 @@
 # Contributor: Jason Chu 
 
 pkgname=kismet
-pkgver=2020_04_R3
+pkgver=2020_09_R3
 _realver="${pkgver//_/-}"
-pkgrel=2
+pkgrel=1
 pkgdesc="802.11 layer2 wireless network detector, sniffer, and intrusion 
detection system"
 url="https://www.kismetwireless.net/;
 arch=('x86_64')
@@ -37,9 +37,9 @@
 source=(https://www.kismetwireless.net/code/${pkgname}-${_realver}.tar.xz
 kismet.sysusers
 python-install-flags.patch)
-sha512sums=('585def7f19f479c6049cbc24e3886276d816f584fcb2070009cd90e35b33630d3e544145abf5f8b1eae87ec571a213ed9cb9f6b81345257c9bf1332d5bb319c2'
+sha512sums=('b1c0daee20c59124059cfa71d5ab938c47f143a467e14b442aaf67a372599ff799a08951745cedb6f38e5cded7f5a30834bf03adee53846a90a593a0b3231a6a'
 
'452b728c30c9932bdb91741af425267da87a66962ea9b736751948881f5477dee0bff8e2eeca2befdea2920da6d7d9e198bde69cef8c48bb49a0093a7f0ef897'
-
'5e1c25026436adccada5086f122e3c542a8edeec2f2f1018937ff43860b1b26a814876d72746bca4f7d1bcb9d4dcb1805c35c1786e6552ff45bc14fa6e4c')
+
'c24bff8ecc0288c0584f60760a27b364bf7b013aad809e4050bb6ed703fc60f3ea93f7e897717a6924333ac6734b20b99166846dae4a9c5c303ae1de39f6692c')
 validpgpkeys=('354689DF3C9DED803381A661D7B28822738BBDB1') # Michael Kershaw
 
 prepare() {

Modified: python-install-flags.patch
===
--- python-install-flags.patch  2020-09-23 18:51:29 UTC (rev 396443)
+++ python-install-flags.patch  2020-09-23 21:32:08 UTC (rev 396444)
@@ -1,45 +1,45 @@
 --- capture_freaklabs_zigbee/Makefile.in   2019-10-10 10:49:00.494256269 
+0200
 +++ capture_freaklabs_zigbee/Makefile.in   2019-10-10 10:52:49.374152190 
+0200
 @@ -10,7 +10,7 @@
-   $(PYTHON) ./setup.py bdist
-
+   sed -i -E 's/^import kismet_/from . import kismet_/' $@
+ 
  install:
--  $(PYTHON) ./setup.py install
-+  $(PYTHON) ./setup.py install --root="$(DESTDIR)" -O1
-   # $(INSTALL) -o $(INSTUSR) -g $(INSTGRP) $(MONITOR_BIN) 
$(BIN)/$(MONITOR_BIN)
+-  $(PYTHON) setup.py install --root="/$(DESTDIR)" --prefix="$(prefix)"
++  $(PYTHON) setup.py install --root="/$(DESTDIR)" --prefix="$(prefix)" -O1
 
  clean:
+   @-$(PYTHON) setup.py clean
 --- capture_sdr_rtl433/Makefile.in 2019-10-10 10:49:00.507590313 +0200
 +++ capture_sdr_rtl433/Makefile.in 2019-10-10 10:52:28.069331801 +0200
 @@ -11,7 +11,7 @@
-   $(PYTHON) ./setup.py bdist
-
+   sed -i -E 's/^import kismet_/from . import kismet_/' $@
+ 
  install:
--  $(PYTHON) ./setup.py install
-+  $(PYTHON) ./setup.py install --root="$(DESTDIR)" -O1
+-  $(PYTHON) setup.py install --root="/$(DESTDIR)" --prefix="$(prefix)"
++  $(PYTHON) setup.py install --root="/$(DESTDIR)" --prefix="$(prefix)" -O1
 
  clean:
-   @-$(PYTHON) ./setup.py clean
+   @-$(PYTHON) setup.py clean
 --- capture_sdr_rtladsb/Makefile.in2019-10-10 10:49:00.510923825 +0200
 +++ capture_sdr_rtladsb/Makefile.in2019-10-10 10:52:32.542260533 +0200
 @@ -11,7 +11,7 @@
-   $(PYTHON) ./setup.py bdist
+   sed -i -E 's/^import kismet_/from . import kismet_/' $@
+ 
+ install:
+-  $(PYTHON) setup.py install --root="/$(DESTDIR)" --prefix="$(prefix)"
++  $(PYTHON) setup.py install --root="/$(DESTDIR)" --prefix="$(prefix)" -O1
 
- install:
--  $(PYTHON) ./setup.py install
-+  $(PYTHON) ./setup.py install --root="$(DESTDIR)" -O1
-   # These are now part of the setup.py install
-   # $(INSTALL) -o $(INSTUSR) -g $(INSTGRP) aircraft_db.csv 
$(ETC)/kismet_aircraft_db.csv
-   # $(INSTALL) -o $(INSTUSR) -g $(INSTGRP) $(MONITOR_BIN) 
$(BIN)/$(MONITOR_BIN)
+ clean:
+   @-$(PYTHON) setup.py clean
 --- capture_sdr_rtlamr/Makefile.in 2019-10-10 10:49:00.514257335 +0200
 +++ capture_sdr_rtlamr/Makefile.in 2019-10-10 10:52:35.978622527 +0200
 @@ -11,7 +11,7 @@
-   $(PYTHON) ./setup.py bdist
-
+   sed -i -E 's/^import kismet_/from . import kismet_/' $@
+ 
  install:
--  $(PYTHON) ./setup.py install
-+  $(PYTHON) ./setup.py install --root="$(DESTDIR)" -O1
- 
- protobuf:
-   $(PROTOCBIN) -I ../protobuf_definitions 
--python_out=./KismetCaptureRtlamr ../protobuf_definitions/*.proto
+-  $(PYTHON) setup.py install --root="/$(DESTDIR)" --prefix="$(prefix)"
++  $(PYTHON) setup.py install --root="/$(DESTDIR)" --prefix="$(prefix)" -O1
 
+ clean:
+   @-$(PYTHON) setup.py clean
+


[arch-commits] Commit in jenkins/repos/community-any (14 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 20:41:54
  Author: felixonmars
Revision: 711594

archrelease: copy trunk to community-any

Added:
  jenkins/repos/community-any/LICENSE
(from rev 711593, jenkins/trunk/LICENSE)
  jenkins/repos/community-any/PKGBUILD
(from rev 711593, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-any/jenkins.conf
(from rev 711593, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-any/jenkins.install
(from rev 711593, jenkins/trunk/jenkins.install)
  jenkins/repos/community-any/jenkins.service
(from rev 711593, jenkins/trunk/jenkins.service)
  jenkins/repos/community-any/jenkins.sysusers
(from rev 711593, jenkins/trunk/jenkins.sysusers)
  jenkins/repos/community-any/jenkins.tmpfiles
(from rev 711593, jenkins/trunk/jenkins.tmpfiles)
Deleted:
  jenkins/repos/community-any/LICENSE
  jenkins/repos/community-any/PKGBUILD
  jenkins/repos/community-any/jenkins.conf
  jenkins/repos/community-any/jenkins.install
  jenkins/repos/community-any/jenkins.service
  jenkins/repos/community-any/jenkins.sysusers
  jenkins/repos/community-any/jenkins.tmpfiles

--+
 LICENSE  |   46 +--
 PKGBUILD |   88 ++---
 jenkins.conf |   26 +++
 jenkins.install  |   14 
 jenkins.service  |   48 ++--
 jenkins.sysusers |4 +-
 jenkins.tmpfiles |2 -
 7 files changed, 114 insertions(+), 114 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2020-09-23 20:41:16 UTC (rev 711593)
+++ LICENSE 2020-09-23 20:41:54 UTC (rev 711594)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-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: jenkins/repos/community-any/LICENSE (from rev 711593, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2020-09-23 20:41:54 UTC (rev 711594)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+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-09-23 20:41:16 UTC (rev 711593)
+++ PKGBUILD2020-09-23 20:41:54 UTC (rev 711594)
@@ -1,44 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=2.256
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='https://jenkins.io'
-license=('MIT')
-depends=('java-runtime=8' 'ttf-dejavu')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')
-backup=('etc/conf.d/jenkins')

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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 20:41:16
  Author: felixonmars
Revision: 711593

upgpkg: jenkins 2.257-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 20:13:03 UTC (rev 711592)
+++ PKGBUILD2020-09-23 20:41:16 UTC (rev 711593)
@@ -4,7 +4,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=2.256
+pkgver=2.257
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -24,7 +24,7 @@
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'LICENSE')
-sha512sums=('9dcc430c00e5c3bfa644c790c8395d33ac36711172448bfe43b618df3474951b6da4bca4a87c77114384e723ebd075aabf8c1cc03263106e5cae1a4e32d3796f'
+sha512sums=('64b418b3dee5b7bf2d1874405985bcb9090d03005e212b79a95716fa4405bf7db7db903dd0ac3015a1566602f6439d777630431e4cbf1cab170f25211b8b2db9'
 
'7a81b2fd0ce91da42bacf35615fd7cb0352a0316b78b41fe180ba531848ca85b1f1df1573ab5707d9aebb36bacc51c81bc200f80cf41f1d1903309c1478d50f8'
 
'320e3d7bcdb78861e829e97be3ec37b8f1846737032ba70f624dfc5be86569d527279f53654a4a22d78b816ff1b07df429725a1d0a8059d44900d1095d1189ab'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 20:13:03
  Author: felixonmars
Revision: 711592

archrelease: copy trunk to community-x86_64

Added:
  klayout/repos/community-x86_64/PKGBUILD
(from rev 711591, klayout/trunk/PKGBUILD)
  klayout/repos/community-x86_64/klayoutEditor.desktop
(from rev 711591, klayout/trunk/klayoutEditor.desktop)
  klayout/repos/community-x86_64/klayoutViewer.desktop
(from rev 711591, klayout/trunk/klayoutViewer.desktop)
Deleted:
  klayout/repos/community-x86_64/PKGBUILD
  klayout/repos/community-x86_64/klayoutEditor.desktop
  klayout/repos/community-x86_64/klayoutViewer.desktop

---+
 PKGBUILD  |   72 
 klayoutEditor.desktop |   26 -
 klayoutViewer.desktop |   26 -
 3 files changed, 62 insertions(+), 62 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 20:12:40 UTC (rev 711591)
+++ PKGBUILD2020-09-23 20:13:03 UTC (rev 711592)
@@ -1,36 +0,0 @@
-# Contributor: Lars Boettcher 
-# Maintainer: Aaron Ali 
-
-pkgname=klayout
-pkgver=0.26.7
-pkgrel=1
-pkgdesc="High Performance Layout Viewer And Editor. Support of GDS and OASIS 
files."
-arch=('x86_64')
-url="http://www.klayout.org/;
-license=('GPL')
-depends=('qt5-base' 'qt5-tools' 'qt5-multimedia' 'qt5-xmlpatterns' 'qt5-svg' 
'ruby' 'python')
-source=(http://www.klayout.org/downloads/source/klayout-$pkgver.tar.gz
-klayoutEditor.desktop klayoutViewer.desktop)
-sha512sums=('295cacbd728c2b8f8a188bc211bde18f647d9b5f1c974c8d635b1c6155727a532f571cb2477ca851045db2544b0990a7c53300c8f6067a381adac7e91fe85cd4'
-
'bc6c7621e5cda754509a86664fb3e7ecd15f577dec712f4b0c52c9a7455ba692043a67145f5bf143d8fdc502b84e4212303906d62107537eefb4bebe57b2ffe1'
-
'37a3bbb06ab155c1c22e3990cf160383570e8ea945dbf4964bc94b6fd4e6321627d31071a29d3dbeafc9e2fc406b6905761e299bfccdfe0a35663f2021624f4f')
-
-build() {
-  cd klayout-$pkgver
-  ./build.sh $build_opt
-}
-
-package() {
-  install -D -m 644 klayoutEditor.desktop 
"$pkgdir"/usr/share/applications/klayoutEditor.desktop
-  install -D -m 644 klayoutViewer.desktop 
"$pkgdir"/usr/share/applications/klayoutViewer.desktop
-  cd klayout-$pkgver
-  install -D -m 644 etc/logo.png 
"$pkgdir"/usr/share/icons/hicolor/32x32/apps/klayout.png
-  install -D -m 755 build-release/klayout "$pkgdir"/usr/bin/klayout
-  cd bin-release
-  for lib in `find . -type f | grep so`; do
-install -D -m 755 $lib "$pkgdir"/usr/lib/$lib
-  done
-  for lib in `find . -type l | grep so`; do
-cp -a $lib "$pkgdir"/usr/lib/$lib
-  done
-}

Copied: klayout/repos/community-x86_64/PKGBUILD (from rev 711591, 
klayout/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 20:13:03 UTC (rev 711592)
@@ -0,0 +1,36 @@
+# Contributor: Lars Boettcher 
+# Maintainer: Aaron Ali 
+
+pkgname=klayout
+pkgver=0.26.8
+pkgrel=1
+pkgdesc="High Performance Layout Viewer And Editor. Support of GDS and OASIS 
files."
+arch=('x86_64')
+url="http://www.klayout.org/;
+license=('GPL')
+depends=('qt5-base' 'qt5-tools' 'qt5-multimedia' 'qt5-xmlpatterns' 'qt5-svg' 
'ruby' 'python')
+source=(http://www.klayout.org/downloads/source/klayout-$pkgver.tar.gz
+klayoutEditor.desktop klayoutViewer.desktop)
+sha512sums=('a37b324194ed523ee70a1d63034db9ba48cf55d44d3a9d1bc612803cde2425f6909fd0571ad4a66318fc2c6735e19ba11a26ab153e1200adec405c16fc05f144'
+
'bc6c7621e5cda754509a86664fb3e7ecd15f577dec712f4b0c52c9a7455ba692043a67145f5bf143d8fdc502b84e4212303906d62107537eefb4bebe57b2ffe1'
+
'37a3bbb06ab155c1c22e3990cf160383570e8ea945dbf4964bc94b6fd4e6321627d31071a29d3dbeafc9e2fc406b6905761e299bfccdfe0a35663f2021624f4f')
+
+build() {
+  cd klayout-$pkgver
+  ./build.sh $build_opt
+}
+
+package() {
+  install -D -m 644 klayoutEditor.desktop 
"$pkgdir"/usr/share/applications/klayoutEditor.desktop
+  install -D -m 644 klayoutViewer.desktop 
"$pkgdir"/usr/share/applications/klayoutViewer.desktop
+  cd klayout-$pkgver
+  install -D -m 644 etc/logo.png 
"$pkgdir"/usr/share/icons/hicolor/32x32/apps/klayout.png
+  install -D -m 755 build-release/klayout "$pkgdir"/usr/bin/klayout
+  cd bin-release
+  for lib in `find . -type f | grep so`; do
+install -D -m 755 $lib "$pkgdir"/usr/lib/$lib
+  done
+  for lib in `find . -type l | grep so`; do
+cp -a $lib "$pkgdir"/usr/lib/$lib
+  done
+}

Deleted: klayoutEditor.desktop
===
--- klayoutEditor.desktop   2020-09-23 20:12:40 UTC (rev 711591)
+++ klayoutEditor.desktop   2020-09-23 20:13:03 UTC (rev 711592)
@@ -1,13 +0,0 @@
-[Desktop Entry]
-Comment[de]=Programm zur Bearbeiten von GDS-Dateien
-Comment=Program to edit GDS and CIF files
-Exec=klayout -e %F
-GenericName[de]=Klayout Editor
-GenericName=Klayout Editor

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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 20:12:40
  Author: felixonmars
Revision: 711591

upgpkg: klayout 0.26.8-1

Modified:
  klayout/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 19:53:38 UTC (rev 711590)
+++ PKGBUILD2020-09-23 20:12:40 UTC (rev 711591)
@@ -2,7 +2,7 @@
 # Maintainer: Aaron Ali 
 
 pkgname=klayout
-pkgver=0.26.7
+pkgver=0.26.8
 pkgrel=1
 pkgdesc="High Performance Layout Viewer And Editor. Support of GDS and OASIS 
files."
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('qt5-base' 'qt5-tools' 'qt5-multimedia' 'qt5-xmlpatterns' 'qt5-svg' 
'ruby' 'python')
 source=(http://www.klayout.org/downloads/source/klayout-$pkgver.tar.gz
 klayoutEditor.desktop klayoutViewer.desktop)
-sha512sums=('295cacbd728c2b8f8a188bc211bde18f647d9b5f1c974c8d635b1c6155727a532f571cb2477ca851045db2544b0990a7c53300c8f6067a381adac7e91fe85cd4'
+sha512sums=('a37b324194ed523ee70a1d63034db9ba48cf55d44d3a9d1bc612803cde2425f6909fd0571ad4a66318fc2c6735e19ba11a26ab153e1200adec405c16fc05f144'
 
'bc6c7621e5cda754509a86664fb3e7ecd15f577dec712f4b0c52c9a7455ba692043a67145f5bf143d8fdc502b84e4212303906d62107537eefb4bebe57b2ffe1'
 
'37a3bbb06ab155c1c22e3990cf160383570e8ea945dbf4964bc94b6fd4e6321627d31071a29d3dbeafc9e2fc406b6905761e299bfccdfe0a35663f2021624f4f')
 


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 19:53:38
  Author: felixonmars
Revision: 711590

archrelease: copy trunk to community-any

Added:
  python-google-auth/repos/community-any/PKGBUILD
(from rev 711589, python-google-auth/trunk/PKGBUILD)
  python-google-auth/repos/community-any/pytest5.patch
(from rev 711589, python-google-auth/trunk/pytest5.patch)
Deleted:
  python-google-auth/repos/community-any/PKGBUILD
  python-google-auth/repos/community-any/pytest5.patch

---+
 PKGBUILD  |   82 
 pytest5.patch |   36 
 2 files changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 19:53:19 UTC (rev 711589)
+++ PKGBUILD2020-09-23 19:53:38 UTC (rev 711590)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-google-auth
-pkgver=1.21.2
-pkgrel=1
-pkgdesc="Google Authentication Library"
-url="https://github.com/GoogleCloudPlatform/google-auth-library-python;
-license=('Apache')
-arch=('any')
-depends=('ca-certificates' 'python-pyasn1-modules' 'python-rsa' 
'python-setuptools'
- 'python-cachetools')
-checkdepends=('python-pytest' 'python-mock' 'python-requests' 'python-flask'
-  'python-oauth2client' 'python-pytest-localserver' 
'python-cryptography'
-  'python-freezegun' 'python-responses' 'python-pyopenssl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/GoogleCloudPlatform/google-auth-library-python/archive/v$pkgver.tar.gz;)
-sha512sums=('4cfef62b1509faa12396bf02075e9a17ce80c39aa97cc975ae610e63b2ed54c2fbcb177dfc8ba296b1e018583912e37c484b535eacaa06138e3a701dd7422cdc')
-
-prepare() {
-  # Use system cert
-  sed -i -e 's|certifi.where()|"/etc/ssl/certs/ca-certificates.crt"|' \
- -e 's|if certifi is not None:|if True:|' \
- -e 's|import certifi|pass|' \
- 
google-auth-library-python-$pkgver/google/auth/transport/{urllib3,requests}.py
-}
-
-build() {
-  cd google-auth-library-python-$pkgver
-  python setup.py build
-}
-
-check() {
-  # Skip the without_certifi tests because we always have the system ca bundle
-
-  cd google-auth-library-python-$pkgver
-  python -m pytest tests --deselect 
tests/transport/test_urllib3.py::test__make_default_http_without_certifi
-}
-
-package() {
-  cd google-auth-library-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-google-auth/repos/community-any/PKGBUILD (from rev 711589, 
python-google-auth/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 19:53:38 UTC (rev 711590)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-google-auth
+pkgver=1.21.3
+pkgrel=1
+pkgdesc="Google Authentication Library"
+url="https://github.com/GoogleCloudPlatform/google-auth-library-python;
+license=('Apache')
+arch=('any')
+depends=('ca-certificates' 'python-pyasn1-modules' 'python-rsa' 
'python-setuptools'
+ 'python-cachetools')
+checkdepends=('python-pytest' 'python-mock' 'python-requests' 'python-flask'
+  'python-oauth2client' 'python-pytest-localserver' 
'python-cryptography'
+  'python-freezegun' 'python-responses' 'python-pyopenssl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/GoogleCloudPlatform/google-auth-library-python/archive/v$pkgver.tar.gz;)
+sha512sums=('230e42fb14eeb4cb4723aff777b809378f27faedffec24c0086584bceb1fa4e0186f3070e3aa5d3be04bab4be5abe6a9d9971832f540859349d170f3e91c644f')
+
+prepare() {
+  # Use system cert
+  sed -i -e 's|certifi.where()|"/etc/ssl/certs/ca-certificates.crt"|' \
+ -e 's|if certifi is not None:|if True:|' \
+ -e 's|import certifi|pass|' \
+ 
google-auth-library-python-$pkgver/google/auth/transport/{urllib3,requests}.py
+}
+
+build() {
+  cd google-auth-library-python-$pkgver
+  python setup.py build
+}
+
+check() {
+  # Skip the without_certifi tests because we always have the system ca bundle
+
+  cd google-auth-library-python-$pkgver
+  python -m pytest tests --deselect 
tests/transport/test_urllib3.py::test__make_default_http_without_certifi
+}
+
+package() {
+  cd google-auth-library-python-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}

Deleted: pytest5.patch
===
--- pytest5.patch   2020-09-23 19:53:19 UTC (rev 711589)
+++ pytest5.patch   2020-09-23 19:53:38 UTC (rev 711590)
@@ -1,18 +0,0 @@
-From 938e5d933aee963a6b28d6cf9e34e0634c8c4a29 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= 
-Date: Fri, 26 Jul 2019 01:20:41 +0200
-Subject: [PATCH] Use new pytest api to keep building with pytest 5 (#353)
-
-diff --git a/tests/test__default.py b/tests/test__default.py
-index 3fb0fa1..d143479 100644
 a/tests/test__default.py
-+++ 

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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 19:53:19
  Author: felixonmars
Revision: 711589

upgpkg: python-google-auth 1.21.3-1

Modified:
  python-google-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 19:27:15 UTC (rev 711588)
+++ PKGBUILD2020-09-23 19:53:19 UTC (rev 711589)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-google-auth
-pkgver=1.21.2
+pkgver=1.21.3
 pkgrel=1
 pkgdesc="Google Authentication Library"
 url="https://github.com/GoogleCloudPlatform/google-auth-library-python;
@@ -13,7 +13,7 @@
   'python-oauth2client' 'python-pytest-localserver' 
'python-cryptography'
   'python-freezegun' 'python-responses' 'python-pyopenssl')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/GoogleCloudPlatform/google-auth-library-python/archive/v$pkgver.tar.gz;)
-sha512sums=('4cfef62b1509faa12396bf02075e9a17ce80c39aa97cc975ae610e63b2ed54c2fbcb177dfc8ba296b1e018583912e37c484b535eacaa06138e3a701dd7422cdc')
+sha512sums=('230e42fb14eeb4cb4723aff777b809378f27faedffec24c0086584bceb1fa4e0186f3070e3aa5d3be04bab4be5abe6a9d9971832f540859349d170f3e91c644f')
 
 prepare() {
   # Use system cert


[arch-commits] Commit in ruby-irb/repos (2 files)

2020-09-23 Thread Anatol Pomozov via arch-commits
Date: Wednesday, September 23, 2020 @ 19:27:15
  Author: anatolik
Revision: 711588

archrelease: copy trunk to community-testing-any

Added:
  ruby-irb/repos/community-testing-any/
  ruby-irb/repos/community-testing-any/PKGBUILD
(from rev 711587, ruby-irb/trunk/PKGBUILD)

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

Copied: ruby-irb/repos/community-testing-any/PKGBUILD (from rev 711587, 
ruby-irb/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2020-09-23 19:27:15 UTC (rev 711588)
@@ -0,0 +1,26 @@
+# Maintainer: Anatol Pomozov
+
+_gemname=irb
+pkgname=ruby-$_gemname
+pkgver=1.2.7
+pkgrel=1
+pkgdesc="Interactive Ruby command-line tool for REPL (Read Eval Print Loop)."
+arch=('any')
+url='https://github.com/ruby/irb'
+license=('BSD-2')
+depends=('ruby' 'ruby-reline')
+makedepends=('ruby-rdoc')
+options=('!emptydirs')
+source=("https://rubygems.org/downloads/$_gemname-$pkgver.gem;)
+noextract=("$_gemname-$pkgver.gem")
+sha512sums=('2226412b65fa7c76ec19202f5458f67cb0a0ff5a2f6a8c98484728c2fa9fbc2cb61b33b5c42640aa0f0215254def5636b729112764825df9a6b568796d9978b3')
+
+package() {
+  cd "$srcdir"
+
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  HOME="/tmp" GEM_HOME="$_gemdir" GEM_PATH="$_gemdir" gem install -N 
--no-user-install --ignore-dependencies \
+ -i "$pkgdir/$_gemdir" -n "$pkgdir/usr/bin" "$_gemname-$pkgver.gem"
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+  install -D -m644 "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/LICENSE.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}


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

2020-09-23 Thread Anatol Pomozov via arch-commits
Date: Wednesday, September 23, 2020 @ 19:26:59
  Author: anatolik
Revision: 711587

upgpkg: ruby-irb 1.2.7-1

Modified:
  ruby-irb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 19:23:11 UTC (rev 711586)
+++ PKGBUILD2020-09-23 19:26:59 UTC (rev 711587)
@@ -2,7 +2,7 @@
 
 _gemname=irb
 pkgname=ruby-$_gemname
-pkgver=1.2.4
+pkgver=1.2.7
 pkgrel=1
 pkgdesc="Interactive Ruby command-line tool for REPL (Read Eval Print Loop)."
 arch=('any')
@@ -13,7 +13,7 @@
 options=('!emptydirs')
 source=("https://rubygems.org/downloads/$_gemname-$pkgver.gem;)
 noextract=("$_gemname-$pkgver.gem")
-sha512sums=('108fee110f4890b7e542cf95bdee1cff06189974df43fce2eae0dad5bf3c5a3469e67a9a589f8f7a2bb3f1061fbeac45e6257ed22aabd0a0d24a05eaaedf3a79')
+sha512sums=('2226412b65fa7c76ec19202f5458f67cb0a0ff5a2f6a8c98484728c2fa9fbc2cb61b33b5c42640aa0f0215254def5636b729112764825df9a6b568796d9978b3')
 
 package() {
   cd "$srcdir"


[arch-commits] Commit in xf86-video-vesa/repos/extra-x86_64 (4 files)

2020-09-23 Thread Andreas Radke via arch-commits
Date: Wednesday, September 23, 2020 @ 18:51:29
  Author: andyrtr
Revision: 396443

archrelease: copy trunk to extra-x86_64

Added:
  xf86-video-vesa/repos/extra-x86_64/PKGBUILD
(from rev 396442, xf86-video-vesa/trunk/PKGBUILD)
  xf86-video-vesa/repos/extra-x86_64/revert-kernelcheck.patch
(from rev 396442, xf86-video-vesa/trunk/revert-kernelcheck.patch)
Deleted:
  xf86-video-vesa/repos/extra-x86_64/PKGBUILD
  xf86-video-vesa/repos/extra-x86_64/revert-kernelcheck.patch

--+
 PKGBUILD |   91 ++---
 revert-kernelcheck.patch |   62 +++---
 2 files changed, 77 insertions(+), 76 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 18:51:19 UTC (rev 396442)
+++ PKGBUILD2020-09-23 18:51:29 UTC (rev 396443)
@@ -1,45 +0,0 @@
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-vesa
-pkgver=2.4.0
-pkgrel=3
-pkgdesc="X.org vesa video driver"
-arch=(x86_64)
-license=('custom')
-url="https://xorg.freedesktop.org/;
-depends=('glibc')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=24.0')
-conflicts=('xorg-server<1.20' 'X-ABI-VIDEODRV_VERSION<24' 
'X-ABI-VIDEODRV_VERSION>=25')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig}
-revert-kernelcheck.patch)
-sha512sums=('4af5c0a7fd64eba503980198cf510688dff2f33482ceac446455d97255dcc828613387ac57828eb6dce080cb15a8644a2b2e278bf356705fdeaea873ab07c2de'
-'SKIP'
-
'2357f9b30732321c774073c3e233d16ebff29aab31bcebf7c6481bd2187554e85ec8b9cd375eaa836b433dfaba4d9e9cea1dcf3659803a388ceb6699ed905923')
-validpgpkeys=('DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3') #  "Adam Jackson 
"
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -Np1 -R -i "${srcdir}/revert-kernelcheck.patch"
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  # Since pacman 5.0.2-2, hardened flags are now enabled in makepkg.conf
-  # With them, module fail to load with undefined symbol.
-  # See https://bugs.archlinux.org/task/55102 / 
https://bugs.archlinux.org/task/54845
-  export CFLAGS=${CFLAGS/-fno-plt}
-  export CXXFLAGS=${CXXFLAGS/-fno-plt}
-  export LDFLAGS=${LDFLAGS/,-z,now}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-vesa/repos/extra-x86_64/PKGBUILD (from rev 396442, 
xf86-video-vesa/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 18:51:29 UTC (rev 396443)
@@ -0,0 +1,46 @@
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-vesa
+pkgver=2.5.0
+pkgrel=1
+pkgdesc="X.org vesa video driver"
+arch=(x86_64)
+license=('custom')
+url="https://xorg.freedesktop.org/;
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=24.0')
+conflicts=('xorg-server<1.20' 'X-ABI-VIDEODRV_VERSION<24' 
'X-ABI-VIDEODRV_VERSION>=25')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig}
+revert-kernelcheck.patch)
+sha512sums=('36fd921f54f33eb25966b5f9ea1e1b3e9009965c012c8b9c676686b472111719921b80cf62dafc746058878253e21f0ef341a2ff2d650df22ca1e35e81716a8b'
+'SKIP'
+
'2357f9b30732321c774073c3e233d16ebff29aab31bcebf7c6481bd2187554e85ec8b9cd375eaa836b433dfaba4d9e9cea1dcf3659803a388ceb6699ed905923')
+validpgpkeys=('DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3') #  "Adam Jackson 
"
+validpgpkeys+=('995ED5C8A6138EB0961F18474C09DD83CAAA50B2') # "Adam Jackson 
"
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -R -i "${srcdir}/revert-kernelcheck.patch"
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # Since pacman 5.0.2-2, hardened flags are now enabled in makepkg.conf
+  # With them, module fail to load with undefined symbol.
+  # See https://bugs.archlinux.org/task/55102 / 
https://bugs.archlinux.org/task/54845
+  export CFLAGS=${CFLAGS/-fno-plt}
+  export CXXFLAGS=${CXXFLAGS/-fno-plt}
+  export LDFLAGS=${LDFLAGS/,-z,now}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: revert-kernelcheck.patch
===
--- revert-kernelcheck.patch2020-09-23 18:51:19 UTC (rev 396442)
+++ revert-kernelcheck.patch2020-09-23 18:51:29 UTC (rev 396443)
@@ -1,31 +0,0 @@
-From b1f7f190f9d4f2ab63d3e9ade3e7e04bb4b1f89f Mon Sep 17 00:00:00 2001
-From: Adam Jackson 
-Date: Wed, 08 Dec 2010 18:45:32 +
-Subject: Refuse to load if there's a kernel driver bound to the 

[arch-commits] Commit in xf86-video-vesa/trunk (PKGBUILD)

2020-09-23 Thread Andreas Radke via arch-commits
Date: Wednesday, September 23, 2020 @ 18:51:19
  Author: andyrtr
Revision: 396442

upgpkg: xf86-video-vesa 2.5.0-1: upstream update 2.5.0

Modified:
  xf86-video-vesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 18:29:40 UTC (rev 396441)
+++ PKGBUILD2020-09-23 18:51:19 UTC (rev 396442)
@@ -1,8 +1,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-vesa
-pkgver=2.4.0
-pkgrel=3
+pkgver=2.5.0
+pkgrel=1
 pkgdesc="X.org vesa video driver"
 arch=(x86_64)
 license=('custom')
@@ -13,10 +13,11 @@
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig}
 revert-kernelcheck.patch)
-sha512sums=('4af5c0a7fd64eba503980198cf510688dff2f33482ceac446455d97255dcc828613387ac57828eb6dce080cb15a8644a2b2e278bf356705fdeaea873ab07c2de'
+sha512sums=('36fd921f54f33eb25966b5f9ea1e1b3e9009965c012c8b9c676686b472111719921b80cf62dafc746058878253e21f0ef341a2ff2d650df22ca1e35e81716a8b'
 'SKIP'
 
'2357f9b30732321c774073c3e233d16ebff29aab31bcebf7c6481bd2187554e85ec8b9cd375eaa836b433dfaba4d9e9cea1dcf3659803a388ceb6699ed905923')
 validpgpkeys=('DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3') #  "Adam Jackson 
"
+validpgpkeys+=('995ED5C8A6138EB0961F18474C09DD83CAAA50B2') # "Adam Jackson 
"
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2020-09-23 Thread David Runge via arch-commits
Date: Wednesday, September 23, 2020 @ 18:29:32
  Author: dvzrv
Revision: 396440

upgpkg: liburing 0.7-2: Rebuild to add soprovides.

Add liburing.so to provides.
Add glibc to depends.
Update maintainer info.
Minor fixes and cleanups.

Modified:
  liburing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 18:09:59 UTC (rev 396439)
+++ PKGBUILD2020-09-23 18:29:32 UTC (rev 396440)
@@ -1,31 +1,29 @@
-# Maintainer: Filipe Laíns (FFY00) 
+# Maintainer: David Runge 
+# Contributor: Filipe Laíns (FFY00) 
 
 pkgname=liburing
 pkgver=0.7
-pkgrel=1
-pkgdesc='Linux-native io_uring I/O access library'
+pkgrel=2
+pkgdesc="Linux-native io_uring I/O access library"
 arch=('x86_64')
-url='https://git.kernel.dk/cgit/liburing/'
-license=('MIT' 'LGPL2.1')
+url="https://git.kernel.dk/cgit/liburing/;
+license=('LGPL2.1' 'MIT')
+depends=('glibc')
 makedepends=('git')
-validpgpkeys=('C0FC392DCADE26D975FA5E4AF7D358FB2971E0A6') # Jens Axboe 

+provides=('liburing.so')
 source=("git+https://git.kernel.dk/liburing#tag=liburing-$pkgver?signed;)
 sha512sums=('SKIP')
+validpgpkeys=('C0FC392DCADE26D975FA5E4AF7D358FB2971E0A6') # Jens Axboe 

 
 build() {
-  cd $pkgname
-
-  ./configure \
---mandir=/usr/share/man
-
+  cd "$pkgname"
+  ./configure --prefix='/usr' \
+  --mandir='/usr/share/man'
   make
 }
 
 package() {
-  cd $pkgname
-
+  cd "$pkgname"
   make DESTDIR="$pkgdir" install
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
 }
-


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

2020-09-23 Thread David Runge via arch-commits
Date: Wednesday, September 23, 2020 @ 18:29:40
  Author: dvzrv
Revision: 396441

archrelease: copy trunk to extra-x86_64

Added:
  liburing/repos/extra-x86_64/PKGBUILD
(from rev 396440, liburing/trunk/PKGBUILD)
Deleted:
  liburing/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 18:29:32 UTC (rev 396440)
+++ PKGBUILD2020-09-23 18:29:40 UTC (rev 396441)
@@ -1,31 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=liburing
-pkgver=0.7
-pkgrel=1
-pkgdesc='Linux-native io_uring I/O access library'
-arch=('x86_64')
-url='https://git.kernel.dk/cgit/liburing/'
-license=('MIT' 'LGPL2.1')
-makedepends=('git')
-validpgpkeys=('C0FC392DCADE26D975FA5E4AF7D358FB2971E0A6') # Jens Axboe 

-source=("git+https://git.kernel.dk/liburing#tag=liburing-$pkgver?signed;)
-sha512sums=('SKIP')
-
-build() {
-  cd $pkgname
-
-  ./configure \
---mandir=/usr/share/man
-
-  make
-}
-
-package() {
-  cd $pkgname
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: liburing/repos/extra-x86_64/PKGBUILD (from rev 396440, 
liburing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 18:29:40 UTC (rev 396441)
@@ -0,0 +1,29 @@
+# Maintainer: David Runge 
+# Contributor: Filipe Laíns (FFY00) 
+
+pkgname=liburing
+pkgver=0.7
+pkgrel=2
+pkgdesc="Linux-native io_uring I/O access library"
+arch=('x86_64')
+url="https://git.kernel.dk/cgit/liburing/;
+license=('LGPL2.1' 'MIT')
+depends=('glibc')
+makedepends=('git')
+provides=('liburing.so')
+source=("git+https://git.kernel.dk/liburing#tag=liburing-$pkgver?signed;)
+sha512sums=('SKIP')
+validpgpkeys=('C0FC392DCADE26D975FA5E4AF7D358FB2971E0A6') # Jens Axboe 

+
+build() {
+  cd "$pkgname"
+  ./configure --prefix='/usr' \
+  --mandir='/usr/share/man'
+  make
+}
+
+package() {
+  cd "$pkgname"
+  make DESTDIR="$pkgdir" install
+  install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}


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

2020-09-23 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, September 23, 2020 @ 18:20:00
  Author: svenstaro
Revision: 711584

archrelease: copy trunk to community-staging-any

Added:
  ansible/repos/community-staging-any/
  ansible/repos/community-staging-any/PKGBUILD
(from rev 711583, ansible/trunk/PKGBUILD)

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

Copied: ansible/repos/community-staging-any/PKGBUILD (from rev 711583, 
ansible/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-09-23 18:20:00 UTC (rev 711584)
@@ -0,0 +1,31 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=ansible
+pkgver=2.10.0
+pkgrel=1
+pkgdesc='Official assortment of Ansible collections'
+arch=('any')
+url='https://pypi.org/project/ansible/'
+license=('GPL3')
+depends=('python' 'ansible-base')
+provides=('python-ansible_collections')
+optdepends=('python-pyopenssl: openssl modules'
+'python-dnspython: for dig lookup'
+'python-ovirt-engine-sdk: ovirt support'
+'python-boto3: aws_s3 module'
+'python-ldap: ldap support'
+'acme-tiny: openssl_certificate module')
+makedepends=('python-setuptools')
+source=("https://pypi.python.org/packages/source/a/ansible/ansible-${pkgver}.tar.gz;)
+sha512sums=('878036f06e1705e4392223bda210b2acae0232069d0cec02a47f13f6b3bc6c9538fb515a2d2dc6003695bcf0915fdd3dfc5b8dc59355e37e2ca8fa48bbd79657')
+
+build() {
+  cd ansible-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ansible-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}"
+  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/${pkgname}/COPYING
+}


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

2020-09-23 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, September 23, 2020 @ 18:19:54
  Author: svenstaro
Revision: 711583

upgpkg: ansible 2.10.0-1

Modified:
  ansible/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 18:11:42 UTC (rev 711582)
+++ PKGBUILD2020-09-23 18:19:54 UTC (rev 711583)
@@ -1,50 +1,31 @@
 # Maintainer: Sven-Hendrik Haase 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Daniel Wallace 
-# Contributor: Chris 
-# Contributor: m0ikz 
-# Contributor: atweiden 
 
 pkgname=ansible
-pkgver=2.9.13
+pkgver=2.10.0
 pkgrel=1
-pkgdesc='Radically simple IT automation platform'
+pkgdesc='Official assortment of Ansible collections'
 arch=('any')
-url='https://www.ansible.com'
+url='https://pypi.org/project/ansible/'
 license=('GPL3')
-depends=('python' 'python-yaml' 'python-paramiko' 'python-jinja')
-provides=('python-ansible')
-optdepends=('sshpass: for ssh connections with password'
-'python-passlib: crypt values for vars_prompt'
-'python-pyopenssl: openssl modules'
-'python-netaddr: for the ipaddr filter'
-'python-systemd: log to journal'
-'python-pywinrm: connect to Windows machines'
+depends=('python' 'ansible-base')
+provides=('python-ansible_collections')
+optdepends=('python-pyopenssl: openssl modules'
 'python-dnspython: for dig lookup'
 'python-ovirt-engine-sdk: ovirt support'
 'python-boto3: aws_s3 module'
-'python-jmespath: json_query support'
 'python-ldap: ldap support'
 'acme-tiny: openssl_certificate module')
-makedepends=('fakeroot' 'python-setuptools')
-backup=('etc/ansible/ansible.cfg')
-source=("https://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz;)
-sha512sums=('cb08adf62df0f3650425a5d960baadd7439c7c1e95b8f9df3d08e7504f9622b9e5f7104b8700b0f1e9fe318d349a6a5728e9178f0193fb4a190456e30a2f1eb2')
+makedepends=('python-setuptools')
+source=("https://pypi.python.org/packages/source/a/ansible/ansible-${pkgver}.tar.gz;)
+sha512sums=('878036f06e1705e4392223bda210b2acae0232069d0cec02a47f13f6b3bc6c9538fb515a2d2dc6003695bcf0915fdd3dfc5b8dc59355e37e2ca8fa48bbd79657')
 
 build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
+  cd ansible-${pkgver}
   python setup.py build
 }
 
 package() {
-  cd ${pkgname}-${pkgver}
+  cd ansible-${pkgver}
   python setup.py install -O1 --root="${pkgdir}"
-  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/ansible/COPYING
-
-  install -d "${pkgdir}"/usr/share/ansible/doc
-  cp -dpr --no-preserve=ownership ./examples "${pkgdir}"/usr/share/ansible/doc/
-  install -Dm644 examples/ansible.cfg "${pkgdir}"/etc/ansible/ansible.cfg
-
-  install -d "${pkgdir}"/usr/share/man/man1
-  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
"${pkgdir}"/usr/share/man/man1
+  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/${pkgname}/COPYING
 }


[arch-commits] Commit in ansible-base/repos (2 files)

2020-09-23 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, September 23, 2020 @ 18:11:42
  Author: svenstaro
Revision: 711582

archrelease: copy trunk to community-staging-any

Added:
  ansible-base/repos/community-staging-any/
  ansible-base/repos/community-staging-any/PKGBUILD
(from rev 711581, ansible-base/trunk/PKGBUILD)

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

Copied: ansible-base/repos/community-staging-any/PKGBUILD (from rev 711581, 
ansible-base/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-09-23 18:11:42 UTC (rev 711582)
@@ -0,0 +1,45 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Daniel Wallace 
+# Contributor: Chris 
+# Contributor: m0ikz 
+# Contributor: atweiden 
+
+pkgname=ansible-base
+pkgver=2.10.1
+pkgrel=1
+pkgdesc='Radically simple IT automation platform'
+arch=('any')
+url='https://pypi.org/project/ansible-base/'
+license=('GPL3')
+depends=('python' 'python-yaml' 'python-paramiko' 'python-jinja')
+provides=('python-ansible')
+optdepends=('sshpass: for ssh connections with password'
+'python-passlib: crypt values for vars_prompt'
+'python-netaddr: for the ipaddr filter'
+'python-systemd: log to journal'
+'python-pywinrm: connect to Windows machines'
+'python-dnspython: for dig lookup'
+'python-jmespath: json_query support')
+makedepends=('python-setuptools')
+backup=('etc/ansible/ansible.cfg')
+source=("https://pypi.python.org/packages/source/a/ansible-base/ansible-base-${pkgver}.tar.gz;)
+sha512sums=('77bc2f3f6b924299add7e3a57beaf4a0517b036027a785c177874ae6a07a06679de65770a296f81ab0022cb0b495f17e2ceb772f906172fbf46fb65609be1ce2')
+
+build() {
+  cd ansible-base-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ansible-base-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}"
+  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/${pkgname}/COPYING
+
+  install -d "${pkgdir}"/usr/share/ansible/doc
+  cp -dpr --no-preserve=ownership ./examples "${pkgdir}"/usr/share/ansible/doc/
+  install -Dm644 examples/ansible.cfg "${pkgdir}"/etc/ansible/ansible.cfg
+
+  install -d "${pkgdir}"/usr/share/man/man1
+  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
"${pkgdir}"/usr/share/man/man1
+}


[arch-commits] Commit in (liburing)

2020-09-23 Thread David Runge via arch-commits
Date: Wednesday, September 23, 2020 @ 18:10:14
  Author: dvzrv
Revision: 711581

community2extra: Moving liburing from community to extra

Deleted:
  liburing/


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

2020-09-23 Thread David Runge via arch-commits
Date: Wednesday, September 23, 2020 @ 18:09:59
  Author: dvzrv
Revision: 396439

archrelease: copy trunk to extra-x86_64

Added:
  liburing/repos/extra-x86_64/
  liburing/repos/extra-x86_64/PKGBUILD
(from rev 396438, liburing/trunk/PKGBUILD)

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

Copied: liburing/repos/extra-x86_64/PKGBUILD (from rev 396438, 
liburing/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2020-09-23 18:09:59 UTC (rev 396439)
@@ -0,0 +1,31 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=liburing
+pkgver=0.7
+pkgrel=1
+pkgdesc='Linux-native io_uring I/O access library'
+arch=('x86_64')
+url='https://git.kernel.dk/cgit/liburing/'
+license=('MIT' 'LGPL2.1')
+makedepends=('git')
+validpgpkeys=('C0FC392DCADE26D975FA5E4AF7D358FB2971E0A6') # Jens Axboe 

+source=("git+https://git.kernel.dk/liburing#tag=liburing-$pkgver?signed;)
+sha512sums=('SKIP')
+
+build() {
+  cd $pkgname
+
+  ./configure \
+--mandir=/usr/share/man
+
+  make
+}
+
+package() {
+  cd $pkgname
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


[arch-commits] Commit in (4 files)

2020-09-23 Thread David Runge via arch-commits
Date: Wednesday, September 23, 2020 @ 18:09:55
  Author: dvzrv
Revision: 396438

community2extra: Moving liburing from community to extra

Added:
  liburing/
  liburing/repos/
  liburing/trunk/
  liburing/trunk/PKGBUILD

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

Added: liburing/trunk/PKGBUILD
===
--- liburing/trunk/PKGBUILD (rev 0)
+++ liburing/trunk/PKGBUILD 2020-09-23 18:09:55 UTC (rev 396438)
@@ -0,0 +1,31 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=liburing
+pkgver=0.7
+pkgrel=1
+pkgdesc='Linux-native io_uring I/O access library'
+arch=('x86_64')
+url='https://git.kernel.dk/cgit/liburing/'
+license=('MIT' 'LGPL2.1')
+makedepends=('git')
+validpgpkeys=('C0FC392DCADE26D975FA5E4AF7D358FB2971E0A6') # Jens Axboe 

+source=("git+https://git.kernel.dk/liburing#tag=liburing-$pkgver?signed;)
+sha512sums=('SKIP')
+
+build() {
+  cd $pkgname
+
+  ./configure \
+--mandir=/usr/share/man
+
+  make
+}
+
+package() {
+  cd $pkgname
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


[arch-commits] Commit in (6 files)

2020-09-23 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, September 23, 2020 @ 18:05:25
  Author: svenstaro
Revision: 711579

Add ansible-base for ansible

Added:
  ansible-base/
  ansible-base/repos/
  ansible-base/repos/community-any/
  ansible-base/repos/community-any/PKGBUILD
  ansible-base/trunk/
  ansible-base/trunk/PKGBUILD

--+
 repos/community-any/PKGBUILD |   50 +
 trunk/PKGBUILD   |   45 
 2 files changed, 95 insertions(+)

Added: ansible-base/repos/community-any/PKGBUILD
===
--- ansible-base/repos/community-any/PKGBUILD   (rev 0)
+++ ansible-base/repos/community-any/PKGBUILD   2020-09-23 18:05:25 UTC (rev 
711579)
@@ -0,0 +1,50 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Daniel Wallace 
+# Contributor: Chris 
+# Contributor: m0ikz 
+# Contributor: atweiden 
+
+pkgname=ansible
+pkgver=2.9.13
+pkgrel=1
+pkgdesc='Radically simple IT automation platform'
+arch=('any')
+url='https://www.ansible.com'
+license=('GPL3')
+depends=('python' 'python-yaml' 'python-paramiko' 'python-jinja')
+provides=('python-ansible')
+optdepends=('sshpass: for ssh connections with password'
+'python-passlib: crypt values for vars_prompt'
+'python-pyopenssl: openssl modules'
+'python-netaddr: for the ipaddr filter'
+'python-systemd: log to journal'
+'python-pywinrm: connect to Windows machines'
+'python-dnspython: for dig lookup'
+'python-ovirt-engine-sdk: ovirt support'
+'python-boto3: aws_s3 module'
+'python-jmespath: json_query support'
+'python-ldap: ldap support'
+'acme-tiny: openssl_certificate module')
+makedepends=('fakeroot' 'python-setuptools')
+backup=('etc/ansible/ansible.cfg')
+source=("https://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz;)
+sha512sums=('cb08adf62df0f3650425a5d960baadd7439c7c1e95b8f9df3d08e7504f9622b9e5f7104b8700b0f1e9fe318d349a6a5728e9178f0193fb4a190456e30a2f1eb2')
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}"
+  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/ansible/COPYING
+
+  install -d "${pkgdir}"/usr/share/ansible/doc
+  cp -dpr --no-preserve=ownership ./examples "${pkgdir}"/usr/share/ansible/doc/
+  install -Dm644 examples/ansible.cfg "${pkgdir}"/etc/ansible/ansible.cfg
+
+  install -d "${pkgdir}"/usr/share/man/man1
+  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
"${pkgdir}"/usr/share/man/man1
+}

Added: ansible-base/trunk/PKGBUILD
===
--- ansible-base/trunk/PKGBUILD (rev 0)
+++ ansible-base/trunk/PKGBUILD 2020-09-23 18:05:25 UTC (rev 711579)
@@ -0,0 +1,45 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Daniel Wallace 
+# Contributor: Chris 
+# Contributor: m0ikz 
+# Contributor: atweiden 
+
+pkgname=ansible-base
+pkgver=2.10.1
+pkgrel=1
+pkgdesc='Radically simple IT automation platform'
+arch=('any')
+url='https://pypi.org/project/ansible-base/'
+license=('GPL3')
+depends=('python' 'python-yaml' 'python-paramiko' 'python-jinja')
+provides=('python-ansible')
+optdepends=('sshpass: for ssh connections with password'
+'python-passlib: crypt values for vars_prompt'
+'python-netaddr: for the ipaddr filter'
+'python-systemd: log to journal'
+'python-pywinrm: connect to Windows machines'
+'python-dnspython: for dig lookup'
+'python-jmespath: json_query support')
+makedepends=('python-setuptools')
+backup=('etc/ansible/ansible.cfg')
+source=("https://pypi.python.org/packages/source/a/ansible-base/ansible-base-${pkgver}.tar.gz;)
+sha512sums=('77bc2f3f6b924299add7e3a57beaf4a0517b036027a785c177874ae6a07a06679de65770a296f81ab0022cb0b495f17e2ceb772f906172fbf46fb65609be1ce2')
+
+build() {
+  cd ansible-base-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ansible-base-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}"
+  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/${pkgname}/COPYING
+
+  install -d "${pkgdir}"/usr/share/ansible/doc
+  cp -dpr --no-preserve=ownership ./examples "${pkgdir}"/usr/share/ansible/doc/
+  install -Dm644 examples/ansible.cfg "${pkgdir}"/etc/ansible/ansible.cfg
+
+  install -d "${pkgdir}"/usr/share/man/man1
+  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
"${pkgdir}"/usr/share/man/man1
+}


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

2020-09-23 Thread Jonas Witschel via arch-commits
Date: Wednesday, September 23, 2020 @ 16:30:01
  Author: diabonas
Revision: 711560

upgpkg: tpm2-tss 3.0.1-1: upstream release (security update)

This release includes a fix for CVE-2020-24455.

Modified:
  tpm2-tss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 16:23:02 UTC (rev 711559)
+++ PKGBUILD2020-09-23 16:30:01 UTC (rev 711560)
@@ -1,8 +1,8 @@
 # Maintainer: Jonas Witschel 
 # Contributor: Bruno Pagani 
 pkgname=tpm2-tss
-pkgver=3.0.0
-pkgrel=2
+pkgver=3.0.1
+pkgrel=1
 pkgdesc='Implementation of the TCG Trusted Platform Module 2.0 Software Stack 
(TSS2)'
 arch=('x86_64')
 url='https://github.com/tpm2-software/tpm2-tss'
@@ -16,7 +16,7 @@
 'etc/tpm2-tss/fapi-profiles/P_RSA2048SHA256.json')
 options=('!emptydirs')
 source=("$url/releases/download/$pkgver/$pkgname-$pkgver.tar.gz"{,.asc})
-sha512sums=('ba54904f2cd8cbcca85ce4d4ac5c8650da6ab076e8d8d142e1b7ee75c5e9a645520f1a5ac8ffe5269deceba84762c9074b131296e8b2d4c684ddc335a828d7a8'
+sha512sums=('206830fecea22c4974a16b5e76599b3c22e077a448f15e2707b260eba6832b2089f9d7c12d3e42daf314cdfbd83309b2b623a7abeb1409234f1930a835365529'
 'SKIP')
 validpgpkeys=('D760B790CCF0A41CBE7B047C316CC1FB24ABDC72'  # Tadeusz Struk 

   'D6B4D8BAC7E0CC97DCD4AC7272E88B53F7A95D84'  # Andreas Fuchs 



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

2020-09-23 Thread Jonas Witschel via arch-commits
Date: Wednesday, September 23, 2020 @ 16:30:07
  Author: diabonas
Revision: 711561

archrelease: copy trunk to community-x86_64

Added:
  tpm2-tss/repos/community-x86_64/PKGBUILD
(from rev 711560, tpm2-tss/trunk/PKGBUILD)
Deleted:
  tpm2-tss/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   86 ++---
 1 file changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 16:30:01 UTC (rev 711560)
+++ PKGBUILD2020-09-23 16:30:07 UTC (rev 711561)
@@ -1,43 +0,0 @@
-# Maintainer: Jonas Witschel 
-# Contributor: Bruno Pagani 
-pkgname=tpm2-tss
-pkgver=3.0.0
-pkgrel=2
-pkgdesc='Implementation of the TCG Trusted Platform Module 2.0 Software Stack 
(TSS2)'
-arch=('x86_64')
-url='https://github.com/tpm2-software/tpm2-tss'
-license=('BSD')
-depends=('curl' 'json-c' 'openssl' 'libjson-c.so')
-makedepends=('cmocka' 'doxygen')
-checkdepends=('iproute2' 'swtpm' 'uthash')
-provides=('libtss2-esys.so' 'libtss2-fapi.so' 'libtss2-mu.so' 'libtss2-rc.so' 
'libtss2-sys.so' 'libtss2-tctildr.so')
-backup=('etc/tpm2-tss/fapi-config.json'
-'etc/tpm2-tss/fapi-profiles/P_ECCP256SHA256.json'
-'etc/tpm2-tss/fapi-profiles/P_RSA2048SHA256.json')
-options=('!emptydirs')
-source=("$url/releases/download/$pkgver/$pkgname-$pkgver.tar.gz"{,.asc})
-sha512sums=('ba54904f2cd8cbcca85ce4d4ac5c8650da6ab076e8d8d142e1b7ee75c5e9a645520f1a5ac8ffe5269deceba84762c9074b131296e8b2d4c684ddc335a828d7a8'
-'SKIP')
-validpgpkeys=('D760B790CCF0A41CBE7B047C316CC1FB24ABDC72'  # Tadeusz Struk 

-  'D6B4D8BAC7E0CC97DCD4AC7272E88B53F7A95D84'  # Andreas Fuchs 

-  '5B482B8E3E19DA7C978E1D016DE2E9078E1F50C1') # William Roberts 
(Bill Roberts) 
-
-build() {
-   cd "$pkgname-$pkgver"
-   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-   --with-runstatedir=/run 
--with-sysusersdir=/usr/lib/sysusers.d \
-   --with-tmpfilesdir=/usr/lib/tmpfiles.d 
--with-udevrulesprefix=60- \
-   --enable-unit $( ((CHECKFUNC)) && echo --enable-integration)
-   make
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   make check
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" install
-   install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: tpm2-tss/repos/community-x86_64/PKGBUILD (from rev 711560, 
tpm2-tss/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 16:30:07 UTC (rev 711561)
@@ -0,0 +1,43 @@
+# Maintainer: Jonas Witschel 
+# Contributor: Bruno Pagani 
+pkgname=tpm2-tss
+pkgver=3.0.1
+pkgrel=1
+pkgdesc='Implementation of the TCG Trusted Platform Module 2.0 Software Stack 
(TSS2)'
+arch=('x86_64')
+url='https://github.com/tpm2-software/tpm2-tss'
+license=('BSD')
+depends=('curl' 'json-c' 'openssl' 'libjson-c.so')
+makedepends=('cmocka' 'doxygen')
+checkdepends=('iproute2' 'swtpm' 'uthash')
+provides=('libtss2-esys.so' 'libtss2-fapi.so' 'libtss2-mu.so' 'libtss2-rc.so' 
'libtss2-sys.so' 'libtss2-tctildr.so')
+backup=('etc/tpm2-tss/fapi-config.json'
+'etc/tpm2-tss/fapi-profiles/P_ECCP256SHA256.json'
+'etc/tpm2-tss/fapi-profiles/P_RSA2048SHA256.json')
+options=('!emptydirs')
+source=("$url/releases/download/$pkgver/$pkgname-$pkgver.tar.gz"{,.asc})
+sha512sums=('206830fecea22c4974a16b5e76599b3c22e077a448f15e2707b260eba6832b2089f9d7c12d3e42daf314cdfbd83309b2b623a7abeb1409234f1930a835365529'
+'SKIP')
+validpgpkeys=('D760B790CCF0A41CBE7B047C316CC1FB24ABDC72'  # Tadeusz Struk 

+  'D6B4D8BAC7E0CC97DCD4AC7272E88B53F7A95D84'  # Andreas Fuchs 

+  '5B482B8E3E19DA7C978E1D016DE2E9078E1F50C1') # William Roberts 
(Bill Roberts) 
+
+build() {
+   cd "$pkgname-$pkgver"
+   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+   --with-runstatedir=/run 
--with-sysusersdir=/usr/lib/sysusers.d \
+   --with-tmpfilesdir=/usr/lib/tmpfiles.d 
--with-udevrulesprefix=60- \
+   --enable-unit $( ((CHECKFUNC)) && echo --enable-integration)
+   make
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   make check
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" install
+   install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}


[arch-commits] Commit in shairport-sync/repos (4 files)

2020-09-23 Thread Anatol Pomozov via arch-commits
Date: Wednesday, September 23, 2020 @ 16:23:02
  Author: anatolik
Revision: 711559

archrelease: copy trunk to community-testing-x86_64

Added:
  shairport-sync/repos/community-testing-x86_64/
  shairport-sync/repos/community-testing-x86_64/PKGBUILD
(from rev 711558, shairport-sync/trunk/PKGBUILD)
  shairport-sync/repos/community-testing-x86_64/remove_useradd.patch
(from rev 711558, shairport-sync/trunk/remove_useradd.patch)
  shairport-sync/repos/community-testing-x86_64/shairport-sync.sysusers
(from rev 711558, shairport-sync/trunk/shairport-sync.sysusers)

-+
 PKGBUILD|   42 ++
 remove_useradd.patch|   27 +++
 shairport-sync.sysusers |3 +++
 3 files changed, 72 insertions(+)

Copied: shairport-sync/repos/community-testing-x86_64/PKGBUILD (from rev 
711558, shairport-sync/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-09-23 16:23:02 UTC (rev 711559)
@@ -0,0 +1,42 @@
+# Maintainer: Anatol Pomozov 
+
+pkgname=shairport-sync
+pkgver=3.3.6
+pkgrel=2
+pkgdesc='Emulates an AirPort Express for the purpose of streaming music from 
iTunes and compatible iPods and iPhones'
+url='https://github.com/mikebrady/shairport-sync'
+arch=(x86_64)
+license=(GPL)
+backup=(etc/shairport-sync.conf)
+depends=(openssl avahi libsoxr popt alsa-lib libconfig libpulse jack)
+makedepends=(xmltoman)
+source=(shairport-sync-$pkgver.zip::https://github.com/mikebrady/shairport-sync/archive/$pkgver.zip
+shairport-sync.sysusers
+remove_useradd.patch)
+sha1sums=('75d40e937c2cac9d30a49f195217da4f65e492f8'
+  'b806f9cd3eeaf8585a51d79c7b5681e3d3e4748a'
+  '2cdd711a21a74748137d2e3894fb0fcb189c41e2')
+
+prepare() {
+  cd shairport-sync-$pkgver
+
+  patch -p1 < ../remove_useradd.patch
+}
+
+build() {
+  cd shairport-sync-$pkgver
+
+  autoreconf -i -f
+  ./configure --prefix=/usr --sysconfdir=/etc --with-alsa --with-pa 
--with-avahi --with-jack --with-stdout --with-pipe --with-ssl=openssl 
--with-soxr --with-dns_sd --with-pkg-config --with-systemd --with-configfiles 
--with-metadata
+  make
+
+  sed 's|/usr/local/bin/|/usr/bin/|' -i scripts/shairport-sync.service
+}
+
+package() {
+  cd shairport-sync-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -D -m644 "$srcdir"/shairport-sync.sysusers 
"$pkgdir"/usr/lib/sysusers.d/shairport-sync.conf
+  install -D -m664 LICENSES "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm "$pkgdir"/etc/shairport-sync.conf.sample
+}

Copied: shairport-sync/repos/community-testing-x86_64/remove_useradd.patch 
(from rev 711558, shairport-sync/trunk/remove_useradd.patch)
===
--- community-testing-x86_64/remove_useradd.patch   
(rev 0)
+++ community-testing-x86_64/remove_useradd.patch   2020-09-23 16:23:02 UTC 
(rev 711559)
@@ -0,0 +1,27 @@
+commit 48eb4034563e29dd3fba7310106d929811da32eb
+Author: Anatol Pomozov 
+Date:   Tue Jun 11 21:30:13 2019 -0700
+
+Revert "Update System V and System D installers to define user, group and 
runtime directory as necessary"
+
+This reverts commit 15c376ad57629dad16f1120dbf4c080f7de48475.
+
+diff --git a/Makefile.am b/Makefile.am
+index 2bbc387..99db873 100644
+--- a/Makefile.am
 b/Makefile.am
+@@ -185,14 +185,10 @@ endif
+ endif
+ endif
+ if INSTALL_SYSTEMV
+-  getent group shairport-sync &>/dev/null || groupadd -r shairport-sync 
>/dev/null
+-  getent passwd shairport-sync &> /dev/null || useradd -r -M -g 
shairport-sync -s /usr/bin/nologin -G audio shairport-sync >/dev/null
+   [ -e $(DESTDIR)$(sysconfdir)/init.d ] || mkdir -p 
$(DESTDIR)$(sysconfdir)/init.d
+   [ -f $(DESTDIR)$(sysconfdir)/init.d/shairport-sync ] || cp 
scripts/shairport-sync $(DESTDIR)$(sysconfdir)/init.d/
+ endif
+ if INSTALL_SYSTEMD
+-  getent group shairport-sync &>/dev/null || groupadd -r shairport-sync 
>/dev/null
+-  getent passwd shairport-sync &> /dev/null || useradd -r -M -g 
shairport-sync -s /usr/bin/nologin -G audio shairport-sync >/dev/null
+   [ -e $(DESTDIR)$(systemdsystemunitdir) ] || mkdir -p 
$(DESTDIR)$(systemdsystemunitdir)
+   [ -f $(DESTDIR)$(systemdsystemunitdir)/shairport-sync.service ] || cp 
scripts/shairport-sync.service $(DESTDIR)$(systemdsystemunitdir)
+ endif

Copied: shairport-sync/repos/community-testing-x86_64/shairport-sync.sysusers 
(from rev 711558, shairport-sync/trunk/shairport-sync.sysusers)
===
--- community-testing-x86_64/shairport-sync.sysusers
(rev 0)
+++ community-testing-x86_64/shairport-sync.sysusers2020-09-23 16:23:02 UTC 
(rev 711559)
@@ -0,0 +1,3 @@
+u shairport-sync - "ShairportSync AirPort receiver" 

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

2020-09-23 Thread Anatol Pomozov via arch-commits
Date: Wednesday, September 23, 2020 @ 16:22:39
  Author: anatolik
Revision: 711558

upgpkg: shairport-sync 3.3.6-2: FS#67972 enable 'jack' integration support

Modified:
  shairport-sync/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 15:54:48 UTC (rev 711557)
+++ PKGBUILD2020-09-23 16:22:39 UTC (rev 711558)
@@ -2,13 +2,13 @@
 
 pkgname=shairport-sync
 pkgver=3.3.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Emulates an AirPort Express for the purpose of streaming music from 
iTunes and compatible iPods and iPhones'
 url='https://github.com/mikebrady/shairport-sync'
 arch=(x86_64)
 license=(GPL)
 backup=(etc/shairport-sync.conf)
-depends=(openssl avahi libsoxr popt alsa-lib libconfig libpulse)
+depends=(openssl avahi libsoxr popt alsa-lib libconfig libpulse jack)
 makedepends=(xmltoman)
 
source=(shairport-sync-$pkgver.zip::https://github.com/mikebrady/shairport-sync/archive/$pkgver.zip
 shairport-sync.sysusers
@@ -27,7 +27,7 @@
   cd shairport-sync-$pkgver
 
   autoreconf -i -f
-  ./configure --prefix=/usr --sysconfdir=/etc --with-alsa --with-pa 
--with-avahi --with-stdout --with-pipe --with-ssl=openssl --with-soxr 
--with-dns_sd --with-pkg-config --with-systemd --with-configfiles 
--with-metadata
+  ./configure --prefix=/usr --sysconfdir=/etc --with-alsa --with-pa 
--with-avahi --with-jack --with-stdout --with-pipe --with-ssl=openssl 
--with-soxr --with-dns_sd --with-pkg-config --with-systemd --with-configfiles 
--with-metadata
   make
 
   sed 's|/usr/local/bin/|/usr/bin/|' -i scripts/shairport-sync.service


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 15:54:48
  Author: felixonmars
Revision: 711557

archrelease: copy trunk to community-staging-x86_64

Added:
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 711556, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/stack.install
(from rev 711556, stack/trunk/stack.install)

---+
 PKGBUILD  |   82 
 stack.install |4 ++
 2 files changed, 86 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 711556, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-23 15:54:48 UTC (rev 711557)
@@ -0,0 +1,82 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.3.1
+pkgrel=136
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-casa-client'
+ 'haskell-casa-types' 'haskell-colour' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-extra' 'haskell-file-embed' 'haskell-filelock' 
'haskell-fsnotify'
+ 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security' 'haskell-hashable'
+ 'haskell-hi-file-parser' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-mono-traversable' 
'haskell-mustache'
+ 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-generic' 
'haskell-optparse-simple'
+ 'haskell-pantry' 'haskell-path' 'haskell-path-io' 'haskell-persistent'
+ 'haskell-persistent-sqlite' 'haskell-persistent-template' 
'haskell-primitive'
+ 'haskell-project-template' 'haskell-regex-applicative-text' 
'haskell-retry' 'haskell-rio'
+ 'haskell-rio-prettyprint' 'haskell-split' 'haskell-streaming-commons' 
'haskell-tar'
+ 'haskell-temporary' 'haskell-text-metrics' 'haskell-th-reify-many' 
'haskell-tls'
+ 'haskell-typed-process' 'haskell-unicode-transforms' 
'haskell-unix-compat'
+ 'haskell-unliftio' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-yaml'
+ 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-raw-strings-qq'
+ 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;
+
stack-pantry-0.5.patch::https://github.com/commercialhaskell/stack/pull/5281.patch)
+sha512sums=('SKIP'
+
'9998e6cdc4b80db3490d66c4392a0e9c44c58fa51371bc68fbade48aea6b21f1172905627ade8132d2733a7e4d942b597d5943a5bd3da302aa6c3be616ecd769')
+
+prepare() {
+  cd $pkgname
+  patch -p1 -i ../stack-pantry-0.5.patch
+  sed -i -e '/semigroups/d' $pkgname.cabal
+
+  sed -i 's/map show errs/map show (toList errs)/' src/Stack/SDist.hs
+}
+
+build() {
+  cd $pkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build \
+  --ghc-option='-pie'
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install 

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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 15:54:30
  Author: felixonmars
Revision: 711556

upgpkg: stack 2.3.1-136: rebuild with rebase 1.7.3, rerebase 1.7.3

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 15:51:21 UTC (rev 711555)
+++ PKGBUILD2020-09-23 15:54:30 UTC (rev 711556)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.3.1
-pkgrel=135
+pkgrel=136
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 15:51:21
  Author: felixonmars
Revision: 711555

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 711554, postgrest/trunk/PKGBUILD)

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 711554, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-23 15:51:21 UTC (rev 711555)
@@ -0,0 +1,71 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=7.0.1
+pkgrel=94
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-ranged-sets' 'haskell-aeson' 
'haskell-ansi-wl-pprint'
+ 'haskell-base64-bytestring' 'haskell-case-insensitive' 
'haskell-cassava'
+ 'haskell-configurator-pg' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-cookie' 'haskell-either' 'haskell-gitrev' 'haskell-hasql' 
'haskell-hasql-pool'
+ 'haskell-hasql-transaction' 'haskell-heredoc' 'haskell-http-types'
+ 'haskell-insert-ordered-containers' 
'haskell-interpolatedstring-perl6' 'haskell-jose'
+ 'haskell-lens' 'haskell-lens-aeson' 'haskell-network-uri' 
'haskell-optparse-applicative'
+ 'haskell-parsec' 'haskell-protolude' 'haskell-regex-tdfa' 
'haskell-scientific'
+ 'haskell-swagger2' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-cors' 'haskell-wai-extra' 'haskell-wai-middleware-static'
+ 'haskell-auto-update' 'haskell-retry' 'haskell-warp')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-monad-control' 
'haskell-transformers-base')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;)
+sha512sums=('0e6270ff4762b444b4d3791ceea4bb468bc316c9d2103f9d355e2e6108bb4bb51b302499b68a5cfc4ff14f503bdd95985481f7fb6eb6dbb158f1f5350857cf1b')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i 's/5432/9824/' test/fixtures/dumpfixture.sh
+sed -i 's/< *1.5/<2/;s/< *1.2/<2/' $pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-CI --ghc-option='-pie'
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createdb postgrest_test
+
+# TODO: user authentication issue?
+POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test || warning 
"Tests failed"
+
+# Disabled: uses stack
+# test/io-tests.sh
+
+pifpaf_stop
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 15:51:07
  Author: felixonmars
Revision: 711554

upgpkg: postgrest 7.0.1-94: rebuild with rebase 1.7.3, rerebase 1.7.3

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 15:49:50 UTC (rev 711553)
+++ PKGBUILD2020-09-23 15:51:07 UTC (rev 711554)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=7.0.1
-pkgrel=93
+pkgrel=94
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2020-09-23 Thread Morten Linderud via arch-commits
Date: Wednesday, September 23, 2020 @ 15:49:42
  Author: foxboron
Revision: 711552

upgpkg: helm 3.3.4-1

Modified:
  helm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 15:48:58 UTC (rev 711551)
+++ PKGBUILD2020-09-23 15:49:42 UTC (rev 711552)
@@ -5,7 +5,7 @@
 # Contributor: Matthias Lisin 
 
 pkgname=helm
-pkgver=3.3.3
+pkgver=3.3.4
 pkgrel=1
 pkgdesc="The Kubernetes Package Manager"
 arch=("x86_64")
@@ -13,7 +13,7 @@
 license=("Apache")
 depends=('glibc')
 makedepends=("go" "git")
-_commit=55e3ca022e40fe200fbc855938995f40b2a68ce0#refs/tags/v3.3.3^{}
+_commit=a61ce5633af99708171414353ed49547cf05013d#refs/tags/v3.3.4^{}
 source=("git+https://github.com/helm/helm.git#commit=$_commit?signed;
 
"go1.15-compat.patch::https://github.com/helm/helm/commit/83a5e620d0acde77502b1f814f749268e8d8ef6e.patch;)
 validpgpkeys=('672C657BE06B4B30969C4A57461449C25E36B98E'


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

2020-09-23 Thread Morten Linderud via arch-commits
Date: Wednesday, September 23, 2020 @ 15:49:50
  Author: foxboron
Revision: 711553

archrelease: copy trunk to community-x86_64

Added:
  helm/repos/community-x86_64/PKGBUILD
(from rev 711552, helm/trunk/PKGBUILD)
Deleted:
  helm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 15:49:42 UTC (rev 711552)
+++ PKGBUILD2020-09-23 15:49:50 UTC (rev 711553)
@@ -1,57 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Lukas Grossar 
-# Contributor: Ivan Shapovalov 
-# Contributor: Wayne Cheng 
-# Contributor: Matthias Lisin 
-
-pkgname=helm
-pkgver=3.3.3
-pkgrel=1
-pkgdesc="The Kubernetes Package Manager"
-arch=("x86_64")
-url="https://helm.sh/;
-license=("Apache")
-depends=('glibc')
-makedepends=("go" "git")
-_commit=55e3ca022e40fe200fbc855938995f40b2a68ce0#refs/tags/v3.3.3^{}
-source=("git+https://github.com/helm/helm.git#commit=$_commit?signed;
-
"go1.15-compat.patch::https://github.com/helm/helm/commit/83a5e620d0acde77502b1f814f749268e8d8ef6e.patch;)
-validpgpkeys=('672C657BE06B4B30969C4A57461449C25E36B98E'
-  '967F8AC5E2216F9F4FD270AD92AA783CBAAE8E3B')
-sha256sums=('SKIP'
-'1ae04b9cc2641ef068ce6ad8fe1b29f4177e1451489cd4a7316bf566659d2da8')
-
-pkgver() {
-  cd "${pkgname}"
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-cd "${pkgname}"
-patch -Np1 < "$srcdir/go1.15-compat.patch"
-}
-
-build() {
-cd "${pkgname}"
-export CGO_LDFLAGS="$LDFLAGS"
-export CGO_CFLAGS="$CFLAGS"
-export CGO_CXXFLAGS="$CXXFLAGS"
-export CGO_CPPFLAGS="$CPPFLAGS"
-make EXT_LDFLAGS="-linkmode external" GOFLAGS="-buildmode=pie -trimpath"
-}
-
-check(){
-cd "${pkgname}"
-export CGO_LDFLAGS="$LDFLAGS"
-export CGO_CFLAGS="$CFLAGS"
-export CGO_CXXFLAGS="$CXXFLAGS"
-export CGO_CPPFLAGS="$CPPFLAGS"
-make LDFLAGS="-s -w -linkmode external" GOFLAGS="-buildmode=pie -trimpath" 
test-unit
-}
-
-package(){
-cd "${pkgname}"
-install -Dm755 bin/helm -t "$pkgdir/usr/bin"
-bin/helm completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/helm"
-bin/helm completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_helm"
-}

Copied: helm/repos/community-x86_64/PKGBUILD (from rev 711552, 
helm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 15:49:50 UTC (rev 711553)
@@ -0,0 +1,57 @@
+# Maintainer: Morten Linderud 
+# Contributor: Lukas Grossar 
+# Contributor: Ivan Shapovalov 
+# Contributor: Wayne Cheng 
+# Contributor: Matthias Lisin 
+
+pkgname=helm
+pkgver=3.3.4
+pkgrel=1
+pkgdesc="The Kubernetes Package Manager"
+arch=("x86_64")
+url="https://helm.sh/;
+license=("Apache")
+depends=('glibc')
+makedepends=("go" "git")
+_commit=a61ce5633af99708171414353ed49547cf05013d#refs/tags/v3.3.4^{}
+source=("git+https://github.com/helm/helm.git#commit=$_commit?signed;
+
"go1.15-compat.patch::https://github.com/helm/helm/commit/83a5e620d0acde77502b1f814f749268e8d8ef6e.patch;)
+validpgpkeys=('672C657BE06B4B30969C4A57461449C25E36B98E'
+  '967F8AC5E2216F9F4FD270AD92AA783CBAAE8E3B')
+sha256sums=('SKIP'
+'1ae04b9cc2641ef068ce6ad8fe1b29f4177e1451489cd4a7316bf566659d2da8')
+
+pkgver() {
+  cd "${pkgname}"
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+cd "${pkgname}"
+patch -Np1 < "$srcdir/go1.15-compat.patch"
+}
+
+build() {
+cd "${pkgname}"
+export CGO_LDFLAGS="$LDFLAGS"
+export CGO_CFLAGS="$CFLAGS"
+export CGO_CXXFLAGS="$CXXFLAGS"
+export CGO_CPPFLAGS="$CPPFLAGS"
+make EXT_LDFLAGS="-linkmode external" GOFLAGS="-buildmode=pie -trimpath"
+}
+
+check(){
+cd "${pkgname}"
+export CGO_LDFLAGS="$LDFLAGS"
+export CGO_CFLAGS="$CFLAGS"
+export CGO_CXXFLAGS="$CXXFLAGS"
+export CGO_CPPFLAGS="$CPPFLAGS"
+make LDFLAGS="-s -w -linkmode external" GOFLAGS="-buildmode=pie -trimpath" 
test-unit
+}
+
+package(){
+cd "${pkgname}"
+install -Dm755 bin/helm -t "$pkgdir/usr/bin"
+bin/helm completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/helm"
+bin/helm completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_helm"
+}


[arch-commits] Commit in haskell-hasql-transaction/trunk (PKGBUILD)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 15:48:45
  Author: felixonmars
Revision: 711550

upgpkg: haskell-hasql-transaction 1.0.0.1-77: rebuild with rebase 1.7.3, 
rerebase 1.7.3

Modified:
  haskell-hasql-transaction/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 15:48:07 UTC (rev 711549)
+++ PKGBUILD2020-09-23 15:48:45 UTC (rev 711550)
@@ -3,7 +3,7 @@
 _hkgname=hasql-transaction
 pkgname=haskell-hasql-transaction
 pkgver=1.0.0.1
-pkgrel=76
+pkgrel=77
 pkgdesc="A composable abstraction over the retryable transactions for Hasql"
 url="https://github.com/nikita-volkov/hasql-transaction;
 license=('MIT')


[arch-commits] Commit in haskell-hasql-transaction/repos (2 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 15:48:58
  Author: felixonmars
Revision: 711551

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hasql-transaction/repos/community-staging-x86_64/
  haskell-hasql-transaction/repos/community-staging-x86_64/PKGBUILD
(from rev 711550, haskell-hasql-transaction/trunk/PKGBUILD)

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

Copied: haskell-hasql-transaction/repos/community-staging-x86_64/PKGBUILD (from 
rev 711550, haskell-hasql-transaction/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-23 15:48:58 UTC (rev 711551)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hasql-transaction
+pkgname=haskell-hasql-transaction
+pkgver=1.0.0.1
+pkgrel=77
+pkgdesc="A composable abstraction over the retryable transactions for Hasql"
+url="https://github.com/nikita-volkov/hasql-transaction;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-bytestring-tree-builder' 'haskell-contravariant'
+ 'haskell-contravariant-extras' 'haskell-hasql')
+makedepends=('ghc' 'haskell-async' 'haskell-rebase')
+checkdepends=('postgresql' 'pifpaf')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('fe02484c8ae0f6a6b64f399a2061138f9a9390cb19693df9592fb58c07c7330f819b1181f973b4e6bf6b800d57ecb80dc901900e5d3ad1eb4c801bb3cf2f45c5')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/5432/9824/' conflicts-test/Main.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createuser -s postgres
+runhaskell Setup test
+pifpaf_stop
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-hasql-pool/trunk (PKGBUILD)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 15:47:53
  Author: felixonmars
Revision: 711548

upgpkg: haskell-hasql-pool 0.5.2-58: rebuild with rebase 1.7.3, rerebase 1.7.3

Modified:
  haskell-hasql-pool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 15:47:10 UTC (rev 711547)
+++ PKGBUILD2020-09-23 15:47:53 UTC (rev 711548)
@@ -4,7 +4,7 @@
 _hkgname=hasql-pool
 pkgname=haskell-hasql-pool
 pkgver=0.5.2
-pkgrel=57
+pkgrel=58
 pkgdesc="A pool of connections for Hasql"
 url="https://github.com/nikita-volkov/hasql-pool;
 license=('MIT')


[arch-commits] Commit in haskell-hasql-pool/repos (2 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 15:48:07
  Author: felixonmars
Revision: 711549

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hasql-pool/repos/community-staging-x86_64/
  haskell-hasql-pool/repos/community-staging-x86_64/PKGBUILD
(from rev 711548, haskell-hasql-pool/trunk/PKGBUILD)

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

Copied: haskell-hasql-pool/repos/community-staging-x86_64/PKGBUILD (from rev 
711548, haskell-hasql-pool/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-23 15:48:07 UTC (rev 711549)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql-pool
+pkgname=haskell-hasql-pool
+pkgver=0.5.2
+pkgrel=58
+pkgdesc="A pool of connections for Hasql"
+url="https://github.com/nikita-volkov/hasql-pool;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude' 'haskell-hasql' 
'haskell-resource-pool')
+makedepends=('ghc' 'haskell-hspec')
+checkdepends=('pifpaf' 'postgresql')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('5609f05134a259826e17a7391d3324f1d2b474cd83082e4f67175086da1e481a1a75b336932a97371b32e7427e869498bb87af3f7c6246225698e8ceef1aa372')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/5432/9824/' test/Main.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --disable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createuser -s postgres
+#runhaskell Setup test
+pifpaf_stop
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-hasql/repos (2 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 15:47:10
  Author: felixonmars
Revision: 711547

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hasql/repos/community-staging-x86_64/
  haskell-hasql/repos/community-staging-x86_64/PKGBUILD
(from rev 711546, haskell-hasql/trunk/PKGBUILD)

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

Copied: haskell-hasql/repos/community-staging-x86_64/PKGBUILD (from rev 711546, 
haskell-hasql/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-23 15:47:10 UTC (rev 711547)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql
+pkgname=haskell-hasql
+pkgver=1.4.4.2
+pkgrel=36
+pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
+url="https://github.com/nikita-volkov/hasql;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base-prelude' 
'haskell-bytestring-strict-builder'
+ 'haskell-contravariant' 'haskell-contravariant-extras' 
'haskell-dlist' 'haskell-hashable'
+ 'haskell-hashtables' 'haskell-loch-th' 'haskell-placeholders' 
'haskell-postgresql-binary'
+ 'haskell-postgresql-libpq' 'haskell-profunctors' 
'haskell-text-builder' 'haskell-vector')
+makedepends=('ghc' 'haskell-bug' 'haskell-tasty' 'haskell-tasty-quickcheck' 
'haskell-tasty-hunit'
+ 'haskell-quickcheck-instances' 'haskell-quickcheck' 
'haskell-rebase' 'haskell-rerebase')
+checkdepends=('postgresql' 'pifpaf')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('86330d4fa35431c4982206a2694a4b8fd3f55c0a2ffa9753a73692b662f280e90d2b677b052c99c6732eea9ffbf9b7cedf1ee4ade31081c0bb26f5b5219118a6')
+
+prepare() {
+cd $_hkgname-$pkgver
+
+# Do not use default postgres port
+sed -i 's/5432/9824/' tasty/Main/*.hs threads-test/*.hs profiling/*.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createuser -s postgres
+runhaskell Setup test
+pifpaf_stop
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 15:46:55
  Author: felixonmars
Revision: 711546

upgpkg: haskell-hasql 1.4.4.2-36: rebuild with rebase 1.7.3, rerebase 1.7.3

Modified:
  haskell-hasql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 15:46:15 UTC (rev 711545)
+++ PKGBUILD2020-09-23 15:46:55 UTC (rev 711546)
@@ -4,7 +4,7 @@
 _hkgname=hasql
 pkgname=haskell-hasql
 pkgver=1.4.4.2
-pkgrel=35
+pkgrel=36
 pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
 url="https://github.com/nikita-volkov/hasql;
 license=('MIT')


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

2020-09-23 Thread Morten Linderud via arch-commits
Date: Wednesday, September 23, 2020 @ 15:46:07
  Author: foxboron
Revision: 711544

upgpkg: crun 0.15-1

Modified:
  crun/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 15:45:55 UTC (rev 711543)
+++ PKGBUILD2020-09-23 15:46:07 UTC (rev 711544)
@@ -2,7 +2,7 @@
 # Contributor: hexchian 
 
 pkgname=crun
-pkgver=0.14.1
+pkgver=0.15
 pkgrel=1
 pkgdesc="A fast and lightweight fully featured OCI runtime and C library for 
running containers"
 url="https://github.com/containers/crun;
@@ -12,7 +12,7 @@
 makedepends=('libtool' 'python' 'go-md2man' 'systemd')
 
source=("https://github.com/containers/crun/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc})
 validpgpkeys=('AC404C1C0BF735C63FF4D562263D6DF2E163E1EA')
-sha256sums=('8269b183fad6b20611d235be381f937790d003399567def6a222fbc46e8b5787'
+sha256sums=('e635b953327b1ae0155db63ef75be56755c0c3ce91ebbe4b4093774fdbd56df1'
 'SKIP')
 
 build() {


[arch-commits] Commit in haskell-text-builder/repos (2 files)

2020-09-23 Thread Felix Yan via arch-commits
Date: Wednesday, September 23, 2020 @ 15:45:55
  Author: felixonmars
Revision: 711543

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-text-builder/repos/community-staging-x86_64/
  haskell-text-builder/repos/community-staging-x86_64/PKGBUILD
(from rev 711542, haskell-text-builder/trunk/PKGBUILD)

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

Copied: haskell-text-builder/repos/community-staging-x86_64/PKGBUILD (from rev 
711542, haskell-text-builder/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-23 15:45:55 UTC (rev 711543)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=text-builder
+pkgname=haskell-text-builder
+pkgver=0.6.6.1
+pkgrel=78
+pkgdesc="An efficient strict text builder"
+url="https://github.com/nikita-volkov/text-builder;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude' 'haskell-deferred-folds')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-rerebase'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('c98381114426ca93b4f4bf6899265a0c62ee683080acf3896e6f6592cefc4a2df00460908755a55be8b33af7840ccd378e48c52f4379f8dd4bc3411928c5c067')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


  1   2   3   >