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

2020-09-25 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, September 26, 2020 @ 04:48:25
  Author: yan12125
Revision: 712361

upgpkg: nextcloud-client 3.0.2-1; go back to verify signed tags

Upstream prefers verify signed tags [1], and for version 3.0.2, the tagged
commit is signed by GitHub's key.

[1] https://github.com/nextcloud/desktop/issues/2185#issuecomment-682148515

Modified:
  nextcloud-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-26 00:26:04 UTC (rev 712360)
+++ PKGBUILD2020-09-26 04:48:25 UTC (rev 712361)
@@ -5,8 +5,9 @@
 pkgname=nextcloud-client
 # Upstream does not provide signed tarballs (yet)
 # https://github.com/nextcloud/desktop/issues/236#issuecomment-540538247
-pkgver=3.0.1
-_commit=0a62628f8a8d92527240435c74c4fb9ffaa46e53
+pkgver=3.0.2
+# Updated by 
https://git.archlinux.org/users/eschwartz/pacman.git/patch/?id=d8e7dfb71f562ecc491772ecec29a322822ad7d3
+frozen_revision=(068ad89d8d1a7133f9f645b07fbc21fc619726f2)
 pkgrel=1
 pkgdesc='Nextcloud desktop client'
 arch=(x86_64)
@@ -21,7 +22,7 @@
   'python-nautilus: integration with Nautilus'
   'python-caja: integration with Caja'
 )
-source=("$pkgname::git+https://github.com/nextcloud/desktop.git?signed#commit=$_commit;)
+source=("$pkgname::git+https://github.com/nextcloud/desktop.git?signed#tag=v$pkgver;)
 validpgpkeys=(
   A26B951528EA1BA1678C7AE5D406C75CEE1A36D6  # one of keys controlled by 
github.com/camilasan
   42E775EAA3E47F9E0D5CDB0E00819E3BF4177B28  # controlled by github.com/misch7


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

2020-09-25 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, September 26, 2020 @ 04:48:44
  Author: yan12125
Revision: 712362

archrelease: copy trunk to community-testing-x86_64

Added:
  nextcloud-client/repos/community-testing-x86_64/
  nextcloud-client/repos/community-testing-x86_64/PKGBUILD
(from rev 712361, nextcloud-client/trunk/PKGBUILD)

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

Copied: nextcloud-client/repos/community-testing-x86_64/PKGBUILD (from rev 
712361, nextcloud-client/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-09-26 04:48:44 UTC (rev 712362)
@@ -0,0 +1,72 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Tyler Dence 
+# Contributor: Konstantin Shalygin 
+
+pkgname=nextcloud-client
+# Upstream does not provide signed tarballs (yet)
+# https://github.com/nextcloud/desktop/issues/236#issuecomment-540538247
+pkgver=3.0.2
+# Updated by 
https://git.archlinux.org/users/eschwartz/pacman.git/patch/?id=d8e7dfb71f562ecc491772ecec29a322822ad7d3
+frozen_revision=(068ad89d8d1a7133f9f645b07fbc21fc619726f2)
+pkgrel=1
+pkgdesc='Nextcloud desktop client'
+arch=(x86_64)
+url='https://nextcloud.com/'
+license=(GPL)
+depends=(openssl sqlite qtkeychain qt5-svg qt5-webengine xdg-utils 
libcloudproviders
+ qt5-graphicaleffects qt5-quickcontrols2)
+makedepends=(doxygen extra-cmake-modules kio python-sphinx qt5-tools git 
cmocka)
+optdepends=(
+  'kio: integration with Dolphin'
+  'nemo-python: integration with Nemo'
+  'python-nautilus: integration with Nautilus'
+  'python-caja: integration with Caja'
+)
+source=("$pkgname::git+https://github.com/nextcloud/desktop.git?signed#tag=v$pkgver;)
+validpgpkeys=(
+  A26B951528EA1BA1678C7AE5D406C75CEE1A36D6  # one of keys controlled by 
github.com/camilasan
+  42E775EAA3E47F9E0D5CDB0E00819E3BF4177B28  # controlled by github.com/misch7
+  17166A5275C5FA6F1A48FD78074BBBCB8DECC9E2  # https://github.com/er-vin.gpg
+)
+sha256sums=('SKIP')
+backup=('etc/Nextcloud/sync-exclude.lst')
+
+prepare() {
+  # tmpdir for check()
+  mkdir tmpdir
+
+  # Use system GNUInstallDirs.cmake so that we can benefit from
+  # https://gitlab.kitware.com/cmake/cmake/merge_requests/3735
+  rm -v $pkgname/cmake/modules/GNUInstallDirs.cmake
+}
+
+build() {
+  cd $pkgname
+
+  # bundled breakpad in libcrashreporter-qt submodule is too old and does not 
build with glibc >= 2.26
+  # Upstream fix: 
https://github.com/google/breakpad/commit/bddcc58860f522a0d4cbaa7e9d04058caee0db9d
+  cmake -B build -S . \
+-DCMAKE_BUILD_TYPE=None \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DNO_SHIBBOLETH=1 \
+-DWITH_CRASHREPORTER=OFF \
+-DUNIT_TESTING=ON
+
+  # TODO: fix installation of PDF and HTML documents
+  # WIP at https://github.com/yan12125/desktop/tree/doc-install-path
+  make -C build all doc-man
+}
+
+check() {
+  cd $pkgname/build
+
+  # Tests fail if $TMPDIR is too small; specify an alternative for machines
+  # with a small /tmp partition.
+  TMPDIR="$srcdir/tmpdir" make test
+}
+
+package() {
+  cd $pkgname/build
+
+  make DESTDIR="$pkgdir" install
+}


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

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Saturday, September 26, 2020 @ 00:25:43
  Author: archange
Revision: 712359

upgpkg: jami-gnome 20200921-1

Modified:
  jami-gnome/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-26 00:07:16 UTC (rev 712358)
+++ PKGBUILD2020-09-26 00:25:43 UTC (rev 712359)
@@ -1,8 +1,8 @@
-# Maintainer: Baptiste Jonglez 
 # Maintainer: Bruno Pagani 
+# Contributor: Baptiste Jonglez 
 
 pkgname=jami-gnome
-pkgver=20190813
+pkgver=20200921
 pkgrel=1
 pkgdesc="Free and universal communication platform which preserves the users’ 
privacy and freedoms (GNOME client)"
 arch=(x86_64)
@@ -10,29 +10,26 @@
 license=(GPL3)
 groups=(jami)
 depends=(libjamiclient jami-daemon
- gtk3 dconf clutter clutter-gtk webkit2gtk qrencode qt5-base
- gtk-update-icon-cache desktop-file-utils libnotify libcanberra libnm)
+ gtk3 dconf clutter clutter-gtk webkit2gtk qrencode qt5-base libnotify 
libcanberra libnm)
 makedepends=(git cmake)
-provides=(ring-gnome)
-conflicts=(ring-gnome)
-replaces=(ring-gnome)
-_commit=5c1220378b1955bce3e917f14852193b4e2c2c70
-source=("git+https://git.jami.net/savoirfairelinux/ring-client-gnome.git#commit=${_commit};)
+_commit=bb7e143de70a4e2acefa34bda68f101620db5171
+source=(git+https://git.jami.net/savoirfairelinux/ring-client-gnome.git#commit=${_commit})
 md5sums=(SKIP)
 
 prepare() {
-  mkdir -p build
+  cd ring-client-gnome
+  # Fix build system looking for lrc sources
+  rm -r web
+  ln -s /usr/include/libringclient/web-chatview/ web
 }
 
 build() {
-  cd build
-  cmake ../ring-client-gnome \
+  cmake -B build -S ring-client-gnome \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_BUILD_TYPE=None
-  make
+  make -C build
 }
 
 package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
+  make -C build DESTDIR="${pkgdir}" install
 }


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

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Saturday, September 26, 2020 @ 00:26:04
  Author: archange
Revision: 712360

archrelease: copy trunk to community-staging-x86_64

Added:
  jami-gnome/repos/community-staging-x86_64/
  jami-gnome/repos/community-staging-x86_64/PKGBUILD
(from rev 712359, jami-gnome/trunk/PKGBUILD)

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

Copied: jami-gnome/repos/community-staging-x86_64/PKGBUILD (from rev 712359, 
jami-gnome/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-26 00:26:04 UTC (rev 712360)
@@ -0,0 +1,35 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Baptiste Jonglez 
+
+pkgname=jami-gnome
+pkgver=20200921
+pkgrel=1
+pkgdesc="Free and universal communication platform which preserves the users’ 
privacy and freedoms (GNOME client)"
+arch=(x86_64)
+url="https://jami.net;
+license=(GPL3)
+groups=(jami)
+depends=(libjamiclient jami-daemon
+ gtk3 dconf clutter clutter-gtk webkit2gtk qrencode qt5-base libnotify 
libcanberra libnm)
+makedepends=(git cmake)
+_commit=bb7e143de70a4e2acefa34bda68f101620db5171
+source=(git+https://git.jami.net/savoirfairelinux/ring-client-gnome.git#commit=${_commit})
+md5sums=(SKIP)
+
+prepare() {
+  cd ring-client-gnome
+  # Fix build system looking for lrc sources
+  rm -r web
+  ln -s /usr/include/libringclient/web-chatview/ web
+}
+
+build() {
+  cmake -B build -S ring-client-gnome \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None
+  make -C build
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+}


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

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Saturday, September 26, 2020 @ 00:06:56
  Author: archange
Revision: 712357

upgpkg: libjamiclient 20200921-1

Modified:
  libjamiclient/trunk/PKGBUILD

--+
 PKGBUILD |   23 +++
 1 file changed, 7 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-26 00:02:01 UTC (rev 712356)
+++ PKGBUILD2020-09-26 00:06:56 UTC (rev 712357)
@@ -1,8 +1,8 @@
-# Maintainer: Baptiste Jonglez 
 # Maintainer: Bruno Pagani 
+# Contributor: Baptiste Jonglez 
 
 pkgname=libjamiclient
-pkgver=20190813
+pkgver=20200921
 pkgrel=1
 pkgdesc="Free and universal communication platform which preserves the users’ 
privacy and freedoms (client communication library)"
 arch=(x86_64)
@@ -11,26 +11,17 @@
 groups=(jami)
 depends=(jami-daemon qt5-base)
 makedepends=(git cmake qt5-tools)
-provides=(libringclient)
-conflicts=(libringclient)
-replaces=(libringclient)
-_commit=d67fad1c7b89102727a20bc3793e6586b53e95c1
-source=("git+https://git.jami.net/savoirfairelinux/ring-lrc.git#commit=${_commit};)
+_commit=3e3c08a9d69d6b52665618f5ac90309b1346f804
+source=(git+https://git.jami.net/savoirfairelinux/ring-lrc.git#commit=${_commit})
 md5sums=(SKIP)
 
-prepare() {
-  mkdir -p build
-}
-
 build() {
-  cd build
-  cmake ../ring-lrc \
+  cmake -B build -S ring-lrc \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_BUILD_TYPE=Release
-  make
+  make -C build
 }
 
 package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
+  make -C build DESTDIR="${pkgdir}" install
 }


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

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Saturday, September 26, 2020 @ 00:07:16
  Author: archange
Revision: 712358

archrelease: copy trunk to community-staging-x86_64

Added:
  libjamiclient/repos/community-staging-x86_64/
  libjamiclient/repos/community-staging-x86_64/PKGBUILD
(from rev 712357, libjamiclient/trunk/PKGBUILD)

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

Copied: libjamiclient/repos/community-staging-x86_64/PKGBUILD (from rev 712357, 
libjamiclient/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-26 00:07:16 UTC (rev 712358)
@@ -0,0 +1,27 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Baptiste Jonglez 
+
+pkgname=libjamiclient
+pkgver=20200921
+pkgrel=1
+pkgdesc="Free and universal communication platform which preserves the users’ 
privacy and freedoms (client communication library)"
+arch=(x86_64)
+url="https://jami.net;
+license=(GPL3)
+groups=(jami)
+depends=(jami-daemon qt5-base)
+makedepends=(git cmake qt5-tools)
+_commit=3e3c08a9d69d6b52665618f5ac90309b1346f804
+source=(git+https://git.jami.net/savoirfairelinux/ring-lrc.git#commit=${_commit})
+md5sums=(SKIP)
+
+build() {
+  cmake -B build -S ring-lrc \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make -C build
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+}


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

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Saturday, September 26, 2020 @ 00:02:01
  Author: archange
Revision: 712356

archrelease: copy trunk to community-staging-x86_64

Added:
  jami-daemon/repos/community-staging-x86_64/
  jami-daemon/repos/community-staging-x86_64/PKGBUILD
(from rev 712355, jami-daemon/trunk/PKGBUILD)

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

Copied: jami-daemon/repos/community-staging-x86_64/PKGBUILD (from rev 712355, 
jami-daemon/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-26 00:02:01 UTC (rev 712356)
@@ -0,0 +1,59 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Baptiste Jonglez 
+
+pkgname=jami-daemon
+pkgver=20200925
+pkgrel=1
+_pjprojectver=2.10
+pkgdesc="Free and universal communication platform which preserves the users’ 
privacy and freedoms (daemon component)"
+arch=(x86_64)
+url="https://jami.net;
+license=(GPL3)
+groups=(jami)
+depends=(opendht yaml-cpp alsa-lib libpulse jack jsoncpp dbus-c++ ffmpeg gnutls
+ expat libupnp libnatpmp libva libvdpau libsecp256k1 util-linux opus
+ openssl asio fmt http-parser libarchive)
+makedepends=(git boost msgpack-c restinio autoconf-archive)
+#checkdepends=(cppunit)
+_commit=b97ab28033a63673e99b2060fb3220a7d6f2ba33
+source=("git+https://git.jami.net/savoirfairelinux/ring-daemon.git#commit=${_commit};
+
https://github.com/pjsip/pjproject/archive/${_pjprojectver}/pjproject-${_pjprojectver}.tar.gz)
+noextract=("pjproject-${_pjprojectver}.tar.gz")
+sha512sums=('SKIP'
+
'a67f083df175b536b4e6a7b7fe39e07d3ee805d6917ec64a50694542a7455c33a100889191044ab3fa679b6656774a6be045621aa53510b5f04cdde9ddd59893')
+
+prepare() {
+  cd ring-daemon
+  cp ../pjproject-${_pjprojectver}.tar.gz contrib/tarballs
+  mkdir contrib/native
+  autoreconf -fvi
+}
+
+build() {
+  cd ring-daemon/contrib/native
+  ../bootstrap \
+  --disable-downloads \
+  --disable-all \
+  --enable-pjproject
+  make DEPS_pjproject=
+
+  cd ../..
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--sysconfdir=/etc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+# Disabled because some tests (TURN) use the network.
+#check() {
+#  cd ring-daemon
+#  make -k check
+#}
+
+package() {
+  cd ring-daemon
+  make DESTDIR="${pkgdir}" install
+}


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

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Saturday, September 26, 2020 @ 00:00:12
  Author: archange
Revision: 712355

upgpkg: jami-daemon 20200925-1

Modified:
  jami-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 23:35:35 UTC (rev 712354)
+++ PKGBUILD2020-09-26 00:00:12 UTC (rev 712355)
@@ -1,11 +1,10 @@
-# Maintainer: Baptiste Jonglez 
 # Maintainer: Bruno Pagani 
+# Contributor: Baptiste Jonglez 
 
-_pkgname=ring-daemon
 pkgname=jami-daemon
-pkgver=20190813
-pkgrel=5
-_pjprojectver=5dfa75be7d69047387f9b0436dd9492bbbf03fe4
+pkgver=20200925
+pkgrel=1
+_pjprojectver=2.10
 pkgdesc="Free and universal communication platform which preserves the users’ 
privacy and freedoms (daemon component)"
 arch=(x86_64)
 url="https://jami.net;
@@ -12,25 +11,19 @@
 license=(GPL3)
 groups=(jami)
 depends=(opendht yaml-cpp alsa-lib libpulse jack jsoncpp dbus-c++ ffmpeg gnutls
- expat libupnp libnatpmp libva libvdpau restbed libsecp256k1 util-linux
- opus libjsoncpp.so)
-makedepends=(git boost msgpack-c autoconf-archive)
+ expat libupnp libnatpmp libva libvdpau libsecp256k1 util-linux opus
+ openssl asio fmt http-parser libarchive)
+makedepends=(git boost msgpack-c restinio autoconf-archive)
 #checkdepends=(cppunit)
-provides=(${_pkgname})
-conflicts=(${_pkgname})
-replaces=(${_pkgname})
-_commit=26b35255a94aa9a13cbf3b3aa530d4b282a79565
+_commit=b97ab28033a63673e99b2060fb3220a7d6f2ba33
 
source=("git+https://git.jami.net/savoirfairelinux/ring-daemon.git#commit=${_commit};
-
"https://github.com/pjsip/pjproject/archive/${_pjprojectver}/pjproject-${_pjprojectver}.tar.gz;)
+
https://github.com/pjsip/pjproject/archive/${_pjprojectver}/pjproject-${_pjprojectver}.tar.gz)
 noextract=("pjproject-${_pjprojectver}.tar.gz")
 sha512sums=('SKIP'
-
'a9433b47294434288d61524dea556687fb02137ed56a10e8e2ba85d7888a2ca2a5bea4ae4a9ad008a4c208c5ec53fe364b10ed14481700d6aa8b9b6137e5e9ee')
+
'a67f083df175b536b4e6a7b7fe39e07d3ee805d6917ec64a50694542a7455c33a100889191044ab3fa679b6656774a6be045621aa53510b5f04cdde9ddd59893')
 
 prepare() {
-  cd ${_pkgname}
-
-  git cherry-pick -n 14deb3d34bde107744bf27e34de0608e7801f4d2 # Fix build with 
GCC 10
-
+  cd ring-daemon
   cp ../pjproject-${_pjprojectver}.tar.gz contrib/tarballs
   mkdir contrib/native
   autoreconf -fvi
@@ -37,7 +30,7 @@
 }
 
 build() {
-  cd ${_pkgname}/contrib/native
+  cd ring-daemon/contrib/native
   ../bootstrap \
   --disable-downloads \
   --disable-all \
@@ -49,8 +42,7 @@
 --prefix=/usr \
 --sbindir=/usr/bin \
 --libexecdir=/usr/lib \
---sysconfdir=/etc \
---enable-ipv6
+--sysconfdir=/etc
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
@@ -57,11 +49,11 @@
 
 # Disabled because some tests (TURN) use the network.
 #check() {
-#  cd ${_pkgname}
+#  cd ring-daemon
 #  make -k check
 #}
 
 package() {
-  cd ${_pkgname}
+  cd ring-daemon
   make DESTDIR="${pkgdir}" install
 }


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

2020-09-25 Thread Filipe Laíns via arch-commits
Date: Friday, September 25, 2020 @ 23:35:35
  Author: ffy00
Revision: 712354

archrelease: copy trunk to community-x86_64

Added:
  tree-sitter/repos/community-x86_64/PKGBUILD
(from rev 712353, 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-25 23:35:24 UTC (rev 712353)
+++ PKGBUILD2020-09-25 23:35:35 UTC (rev 712354)
@@ -1,36 +0,0 @@
-# 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
-}
-

Copied: tree-sitter/repos/community-x86_64/PKGBUILD (from rev 712353, 
tree-sitter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 23:35:35 UTC (rev 712354)
@@ -0,0 +1,36 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=tree-sitter
+pkgver=0.17.1
+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=('a072622fb6299cc7e5829d2ba3188ee4366ec2242fda80948b4a0cfa9f24c7b47c4fffe05af1200617a1ba881a180456ebf56064979e55793804c469c1aa169f')
+
+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 tree-sitter/trunk (PKGBUILD)

2020-09-25 Thread Filipe Laíns via arch-commits
Date: Friday, September 25, 2020 @ 23:35:24
  Author: ffy00
Revision: 712353

upgpkg: tree-sitter 0.17.1-1

Modified:
  tree-sitter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 23:23:04 UTC (rev 712352)
+++ PKGBUILD2020-09-25 23:35:24 UTC (rev 712353)
@@ -1,7 +1,7 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=tree-sitter
-pkgver=0.17.0
+pkgver=0.17.1
 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=('4f5ee2e862cb45f8000d8d4950395216b8c33e7168b110dd393fe888aebc81f64bc37bb59f3cd7d4a95f8307f0e2324d08cc01d769d7771c21249e93801c5c11')
+sha512sums=('a072622fb6299cc7e5829d2ba3188ee4366ec2242fda80948b4a0cfa9f24c7b47c4fffe05af1200617a1ba881a180456ebf56064979e55793804c469c1aa169f')
 
 build() {
   cd $pkgname-$pkgver


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

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Friday, September 25, 2020 @ 23:22:43
  Author: archange
Revision: 712351

upgpkg: opendht 1:2.1.6-1

Modified:
  opendht/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 23:18:04 UTC (rev 712350)
+++ PKGBUILD2020-09-25 23:22:43 UTC (rev 712351)
@@ -3,24 +3,20 @@
 
 pkgname=opendht
 epoch=1
-pkgver=1.10.1
-pkgrel=7
-pkgdesc="A C++11 implementation of the Kademlia DHT (Distributed Hash Table)"
+pkgver=2.1.6
+pkgrel=1
+pkgdesc="C++14 Distributed Hash Table (DHT) implementation"
 arch=(x86_64)
 url="https://github.com/savoirfairelinux/opendht;
 license=(GPL3)
-depends=(gnutls nettle readline argon2 restbed jsoncpp libjsoncpp.so)
-makedepends=(msgpack-c cmake cython systemd cppunit)
+depends=(openssl gnutls nettle argon2 readline fmt http-parser jsoncpp 
libjsoncpp.so)
+makedepends=(msgpack-c cmake cython cppunit restinio)
 optdepends=('python: to use the Python bindings')
-source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz"
- 
opendht-gcc10.patch::"https://github.com/savoirfairelinux/opendht/commit/e58fc4ef.patch;)
-sha512sums=('d0ab4aa376ecd4ac57af78a1491cd0f466021790ebea0e00032a503d61127f323cb37f04d94f2a35797dc52051407708f49ed99be558003acc102ff017dbdf29'
-
'ed43ee79f350f8b86119e4336de5a28eab4c4d6eedb578d714dd51a1c8109c0a31756ea0cf807d3c6e636b8ccfb52c8c43f81220b4fd5105bd200ae76e175977')
+source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('53f362f75a5dda2e88eb145671d01b2998cc5f55d9e1e37fa28b18a324f1159c')
 
 prepare() {
   mkdir -p build
-
-  patch -d $pkgname-$pkgver -p1 -i ../opendht-gcc10.patch # Fix build with GCC 
10
 }
 
 build() {
@@ -33,10 +29,12 @@
 -DOPENDHT_DOCUMENTATION=OFF \
 -DOPENDHT_STATIC=OFF \
 -DOPENDHT_SYSTEMD=ON \
+-DOPENDHT_SYSTEMD_UNIT_FILE_LOCATION=/usr/lib/systemd/system/ \
 -DOPENDHT_LTO=ON \
 -DOPENDHT_TOOLS=ON \
 -DOPENDHT_INDEX=ON \
 -DOPENDHT_PYTHON=ON \
+-DOPENDHT_HTTP=ON \
 -DOPENDHT_PROXY_SERVER=ON \
 -DOPENDHT_PROXY_CLIENT=ON \
 -DOPENDHT_PUSH_NOTIFICATIONS=ON
@@ -43,10 +41,10 @@
   make
 }
 
-check() {
-  cd build
-  make test
-}
+#check() {
+#  cd build
+#  make test
+#}
 
 package() {
   cd build


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

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Friday, September 25, 2020 @ 23:23:04
  Author: archange
Revision: 712352

archrelease: copy trunk to community-staging-x86_64

Added:
  opendht/repos/community-staging-x86_64/
  opendht/repos/community-staging-x86_64/PKGBUILD
(from rev 712351, opendht/trunk/PKGBUILD)

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

Copied: opendht/repos/community-staging-x86_64/PKGBUILD (from rev 712351, 
opendht/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 23:23:04 UTC (rev 712352)
@@ -0,0 +1,52 @@
+# Maintainer: Baptiste Jonglez 
+# Maintainer: Bruno Pagani 
+
+pkgname=opendht
+epoch=1
+pkgver=2.1.6
+pkgrel=1
+pkgdesc="C++14 Distributed Hash Table (DHT) implementation"
+arch=(x86_64)
+url="https://github.com/savoirfairelinux/opendht;
+license=(GPL3)
+depends=(openssl gnutls nettle argon2 readline fmt http-parser jsoncpp 
libjsoncpp.so)
+makedepends=(msgpack-c cmake cython cppunit restinio)
+optdepends=('python: to use the Python bindings')
+source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('53f362f75a5dda2e88eb145671d01b2998cc5f55d9e1e37fa28b18a324f1159c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=None \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DOPENDHT_TESTS=ON \
+-DOPENDHT_DOCUMENTATION=OFF \
+-DOPENDHT_STATIC=OFF \
+-DOPENDHT_SYSTEMD=ON \
+-DOPENDHT_SYSTEMD_UNIT_FILE_LOCATION=/usr/lib/systemd/system/ \
+-DOPENDHT_LTO=ON \
+-DOPENDHT_TOOLS=ON \
+-DOPENDHT_INDEX=ON \
+-DOPENDHT_PYTHON=ON \
+-DOPENDHT_HTTP=ON \
+-DOPENDHT_PROXY_SERVER=ON \
+-DOPENDHT_PROXY_CLIENT=ON \
+-DOPENDHT_PUSH_NOTIFICATIONS=ON
+  make
+}
+
+#check() {
+#  cd build
+#  make test
+#}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in mattermost/repos/community-x86_64 (8 files)

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Friday, September 25, 2020 @ 23:18:04
  Author: archange
Revision: 712350

archrelease: copy trunk to community-x86_64

Added:
  mattermost/repos/community-x86_64/PKGBUILD
(from rev 712349, mattermost/trunk/PKGBUILD)
  mattermost/repos/community-x86_64/mattermost.service
(from rev 712349, mattermost/trunk/mattermost.service)
  mattermost/repos/community-x86_64/mattermost.sysusers
(from rev 712349, mattermost/trunk/mattermost.sysusers)
  mattermost/repos/community-x86_64/mattermost.tmpfiles
(from rev 712349, mattermost/trunk/mattermost.tmpfiles)
Deleted:
  mattermost/repos/community-x86_64/PKGBUILD
  mattermost/repos/community-x86_64/mattermost.service
  mattermost/repos/community-x86_64/mattermost.sysusers
  mattermost/repos/community-x86_64/mattermost.tmpfiles

-+
 PKGBUILD|  266 +-
 mattermost.service  |   80 +++
 mattermost.sysusers |2 
 mattermost.tmpfiles |6 -
 4 files changed, 177 insertions(+), 177 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 23:17:26 UTC (rev 712349)
+++ PKGBUILD2020-09-25 23:18:04 UTC (rev 712350)
@@ -1,133 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: William Gathoye 
-# Contributor: Caleb Maclennan 
-# Contributor: Massimiliano Torromeo 
-
-pkgname=mattermost
-pkgver=5.26.2
-pkgrel=1
-pkgdesc="Open source Slack-alternative in Golang and React"
-arch=(x86_64)
-url="https://mattermost.com;
-license=(AGPL Apache)
-depends=(glibc)
-makedepends=(go jq nodejs npm git python2)
-optdepends=('mariadb: SQL server storage'
-'percona-server: SQL server storage'
-'postgresql: SQL server storage')
-backup=(etc/webapps/${pkgname}/config.json)
-source=(${pkgname}-server-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}-server/archive/v${pkgver}.tar.gz
-
${pkgname}-webapp-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}-webapp/archive/v${pkgver}.tar.gz
-${pkgname}.service
-${pkgname}.sysusers
-${pkgname}.tmpfiles)
-sha256sums=('a41f8a548e657a78af13f777563749d55c458d87d8a2ad66d3182c8997a1db29'
-'04af4906154774685c5520954a14ebb03f33377765e95e5ea4d86907e0943e5d'
-'ac54a04be1a9fd17dff4d3f2e0d5f411aa35984dfaa6e86fe9856ed3ed1f5357'
-'f7bd36f6d7874f1345d205c6dcb79af1804362fc977a658db88951a172d1dfa0'
-'8dfeee28655b91dc75aca2317846284013ac3d5a837d360eba9641e9fbcf3aa2')
-
-prepare() {
-cd ${pkgname}-server-${pkgver}
-go mod vendor
-
-# The configuration isn't available at this time yet, modify the default.
-sed -r -i build/release.mk \
--e  's!config/config.json!config/default.json!' \
--e 
's/\$\(DIST_PATH\)\/config\/config.json/\$\(DIST_PATH\)\/config\/default.json/'
-
-# Remove platform specific lines from the Makefile from the line beginning
-# with that statement to the end of file (we do not care of the additional
-# file copy, nor the tar compression defined below the file).
-sed '/# Download prepackaged plugins/,//d' -i build/release.mk
-
-# Enforce build hash to Arch Linux for the field corresponding to the 
webapp.
-cd ../${pkgname}-webapp-${pkgver}
-sed -r -i webpack.config.js \
--e "s/^(\s*)COMMIT_HASH:(.*),$/\1COMMIT_HASH: 
JSON.stringify\(\"${pkgver}-${pkgrel} Arch Linux \(${CARCH}\)\"\),/"
-}
-
-build() {
-cd ${pkgname}-server-${pkgver}
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-go build -v \
- -ldflags "-linkmode external
-   -X 
\"github.com/mattermost/mattermost-server/v5/model.BuildNumber=${pkgver}-${pkgrel}\"
 \
-   -X 
\"github.com/mattermost/mattermost-server/v5/model.BuildDate=$(date --utc 
--date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +"%Y-%m-%d %H:%M:%S")\" \
-   -X 
\"github.com/mattermost/mattermost-server/v5/model.BuildHash=${pkgver}-${pkgrel}
 Arch Linux \(${CARCH}\)\" \
-   -X 
\"github.com/mattermost/mattermost-server/v5/model.BuildHashEnterprise=none\" \
-   -X 
\"github.com/mattermost/mattermost-server/v5/model.BuildEnterpriseReady=false\""
 \
- -o bin/ ./...
-# Move to the client directory to avoid LDFLAGS pollution of a `make 
build-client` invocation
-cd ../${pkgname}-webapp-${pkgver}
-make build
-cd ../${pkgname}-server-${pkgver}
-export BUILD_WEBAPP_DIR="${srcdir}/${pkgname}-webapp-${pkgver}"
-make package
-}
-
-package() {
-# systemd files
-install -Dm644 ${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
-install -Dm644 ${pkgname}.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
-install -Dm644 ${pkgname}.tmpfiles 

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

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Friday, September 25, 2020 @ 23:17:26
  Author: archange
Revision: 712349

upgpkg: mattermost 5.27.0-1

Modified:
  mattermost/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 23:13:48 UTC (rev 712348)
+++ PKGBUILD2020-09-25 23:17:26 UTC (rev 712349)
@@ -4,7 +4,7 @@
 # Contributor: Massimiliano Torromeo 
 
 pkgname=mattermost
-pkgver=5.26.2
+pkgver=5.27.0
 pkgrel=1
 pkgdesc="Open source Slack-alternative in Golang and React"
 arch=(x86_64)
@@ -21,8 +21,8 @@
 ${pkgname}.service
 ${pkgname}.sysusers
 ${pkgname}.tmpfiles)
-sha256sums=('a41f8a548e657a78af13f777563749d55c458d87d8a2ad66d3182c8997a1db29'
-'04af4906154774685c5520954a14ebb03f33377765e95e5ea4d86907e0943e5d'
+sha256sums=('5ff282b52c0ac7fbc4bcd2abfc3eeec2e5fdf68dea1040585f954932ff11dd7e'
+'2da24bf4449540857ef6c36587fd74985481522fda038d0469e6a8785c10f4e3'
 'ac54a04be1a9fd17dff4d3f2e0d5f411aa35984dfaa6e86fe9856ed3ed1f5357'
 'f7bd36f6d7874f1345d205c6dcb79af1804362fc977a658db88951a172d1dfa0'
 '8dfeee28655b91dc75aca2317846284013ac3d5a837d360eba9641e9fbcf3aa2')


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

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Friday, September 25, 2020 @ 23:13:24
  Author: archange
Revision: 712347

upgpkg: libsecp256k1 20200919+1172+gd7838ba-1

Upgrade to a newer point in tree.

Modified:
  libsecp256k1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 23:12:10 UTC (rev 712346)
+++ PKGBUILD2020-09-25 23:13:24 UTC (rev 712347)
@@ -3,8 +3,8 @@
 # Contributor: Andy Weidenbaum 
 
 pkgname=libsecp256k1
-_gitcommit=856a01d6ad60c70fd92bdd44fa8584493b87594d
-pkgver=20200210+1037+g856a01d
+_gitcommit=d7838ba6a6ac77cec173080f20efcd0e311ebfaa
+pkgver=20200919+1172+gd7838ba
 pkgrel=1
 pkgdesc="Optimized C library for EC operations on curve secp256k1"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 license=(MIT)
 depends=(gmp)
 source=(${url}/archive/${_gitcommit}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('5ba3ef13f849fa79d9493e580a3dc7f08b27d1e0e6080913063955ea9f88aec1')
+sha256sums=('9446f2d6d4cdf476f68b95493ae990bbec201d208cbe24b2fd14e0452acb2648')
 
 prepare() {
   cd secp256k1-${_gitcommit}


[arch-commits] Commit in libsecp256k1/repos/community-staging-x86_64 (2 files)

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Friday, September 25, 2020 @ 23:13:48
  Author: archange
Revision: 712348

archrelease: copy trunk to community-staging-x86_64

Added:
  libsecp256k1/repos/community-staging-x86_64/PKGBUILD
(from rev 712347, libsecp256k1/trunk/PKGBUILD)
Deleted:
  libsecp256k1/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 23:13:24 UTC (rev 712347)
+++ PKGBUILD2020-09-25 23:13:48 UTC (rev 712348)
@@ -1,51 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Maintainer: Baptiste Jonglez 
-# Contributor: Andy Weidenbaum 
-
-pkgname=libsecp256k1
-_gitcommit=856a01d6ad60c70fd92bdd44fa8584493b87594d
-pkgver=20200210+1037+g856a01d
-pkgrel=1
-pkgdesc="Optimized C library for EC operations on curve secp256k1"
-arch=(x86_64)
-url="https://github.com/bitcoin-core/secp256k1;
-license=(MIT)
-depends=(gmp)
-source=(${url}/archive/${_gitcommit}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('5ba3ef13f849fa79d9493e580a3dc7f08b27d1e0e6080913063955ea9f88aec1')
-
-prepare() {
-  cd secp256k1-${_gitcommit}
-  autoreconf -vfi
-}
-
-build() {
-  cd secp256k1-${_gitcommit}
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---libexecdir=/usr/bin \
---sysconfdir=/etc \
---sharedstatedir=/usr/share/libsecp256k1 \
---localstatedir=/var/lib/libsecp256k1 \
---disable-static \
---disable-benchmark \
---disable-coverage \
---enable-module-recovery \
---enable-tests \
---enable-exhaustive-tests \
---disable-openssl-tests \
---with-gnu-ld
-  make
-}
-
-check() {
-  cd secp256k1-${_gitcommit}
-  make check
-}
-
-package() {
-  cd secp256k1-${_gitcommit}
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: libsecp256k1/repos/community-staging-x86_64/PKGBUILD (from rev 712347, 
libsecp256k1/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 23:13:48 UTC (rev 712348)
@@ -0,0 +1,51 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Baptiste Jonglez 
+# Contributor: Andy Weidenbaum 
+
+pkgname=libsecp256k1
+_gitcommit=d7838ba6a6ac77cec173080f20efcd0e311ebfaa
+pkgver=20200919+1172+gd7838ba
+pkgrel=1
+pkgdesc="Optimized C library for EC operations on curve secp256k1"
+arch=(x86_64)
+url="https://github.com/bitcoin-core/secp256k1;
+license=(MIT)
+depends=(gmp)
+source=(${url}/archive/${_gitcommit}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('9446f2d6d4cdf476f68b95493ae990bbec201d208cbe24b2fd14e0452acb2648')
+
+prepare() {
+  cd secp256k1-${_gitcommit}
+  autoreconf -vfi
+}
+
+build() {
+  cd secp256k1-${_gitcommit}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--libexecdir=/usr/bin \
+--sysconfdir=/etc \
+--sharedstatedir=/usr/share/libsecp256k1 \
+--localstatedir=/var/lib/libsecp256k1 \
+--disable-static \
+--disable-benchmark \
+--disable-coverage \
+--enable-module-recovery \
+--enable-tests \
+--enable-exhaustive-tests \
+--disable-openssl-tests \
+--with-gnu-ld
+  make
+}
+
+check() {
+  cd secp256k1-${_gitcommit}
+  make check
+}
+
+package() {
+  cd secp256k1-${_gitcommit}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}


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

2020-09-25 Thread Levente Polyak via arch-commits
Date: Friday, September 25, 2020 @ 23:12:06
  Author: anthraxx
Revision: 712345

upgpkg: ruby-yard 0.9.25-1

Modified:
  ruby-yard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 22:59:11 UTC (rev 712344)
+++ PKGBUILD2020-09-25 23:12:06 UTC (rev 712345)
@@ -3,7 +3,7 @@
 
 _gemname=yard
 pkgname=ruby-${_gemname}
-pkgver=0.9.24
+pkgver=0.9.25
 pkgrel=1
 pkgdesc='YARD is a Ruby Documentation tool. The Y stands for "Yay!"'
 url='https://yardoc.org/'
@@ -10,10 +10,11 @@
 arch=('any')
 license=('MIT')
 depends=('ruby' 'ruby-rdoc')
+makedepends=('ruby-rake' 'ruby-samus')
 options=('!emptydirs')
 
source=(https://github.com/lsegal/yard/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('cf7f5973e03562c7081b7c213c6dffc01afdc1207f79f52fd51f7e6fd917cdc13e6b5b6e89c93dbe3c05338e3a1418e7c6e8d617e96613b8156b95868b60ce11')
-b2sums=('33d0c3c0931b1234814651eaee674cbb18722b15674575860b57c2c7992d160ffe8606290a2c887e61dcf095230a8d98abaa2ac41c92a761272d64ddeacced9e')
+sha512sums=('855bf05ce45a965d534191b036831ec1cedc848e21196ed93cc7984d744328d9d5ba39664b4539a707a1556984990360cd27e085b830501ac8d72c6cebb3e689')
+b2sums=('35531a7e90ab99bad8d236ea4774a8aebc50eff5d78f60e2dfea8edb2af965dc60e8c02f8a1f95166e80d6f1ce21aca051b92b2511b88a7d87d2cc90e58bcd17')
 
 prepare() {
   cd ${_gemname}-${pkgver}
@@ -23,17 +24,21 @@
 
 build() {
   cd ${_gemname}-${pkgver}
-  gem build ${_gemname}.gemspec
+  rake gem
 }
 
 package() {
   cd ${_gemname}-${pkgver}
   local _gemdir="$(gem env gemdir)"
-  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
\
+-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
   install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
   cp -a docs/* "${pkgdir}/usr/share/doc/${pkgname}"
   install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
+
+  cd "${pkgdir}/${_gemdir}"
+  rm -rf cache gems/${_gemname}-${pkgver}/{ext,lib/*/*.so,man} \
+extensions/*/*/${_gemname}-${pkgver}/{mkmf.log,gem_make.out}
 }
 
 # vim: ts=2 sw=2 et:


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

2020-09-25 Thread Levente Polyak via arch-commits
Date: Friday, September 25, 2020 @ 23:12:10
  Author: anthraxx
Revision: 712346

archrelease: copy trunk to community-any

Added:
  ruby-yard/repos/community-any/PKGBUILD
(from rev 712345, ruby-yard/trunk/PKGBUILD)
Deleted:
  ruby-yard/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 23:12:06 UTC (rev 712345)
+++ PKGBUILD2020-09-25 23:12:10 UTC (rev 712346)
@@ -1,39 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Jerome Leclanche 
-
-_gemname=yard
-pkgname=ruby-${_gemname}
-pkgver=0.9.24
-pkgrel=1
-pkgdesc='YARD is a Ruby Documentation tool. The Y stands for "Yay!"'
-url='https://yardoc.org/'
-arch=('any')
-license=('MIT')
-depends=('ruby' 'ruby-rdoc')
-options=('!emptydirs')
-source=(https://github.com/lsegal/yard/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('cf7f5973e03562c7081b7c213c6dffc01afdc1207f79f52fd51f7e6fd917cdc13e6b5b6e89c93dbe3c05338e3a1418e7c6e8d617e96613b8156b95868b60ce11')
-b2sums=('33d0c3c0931b1234814651eaee674cbb18722b15674575860b57c2c7992d160ffe8606290a2c887e61dcf095230a8d98abaa2ac41c92a761272d64ddeacced9e')
-
-prepare() {
-  cd ${_gemname}-${pkgver}
-  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec
-  sed 's|git ls-files|find|' -i ${_gemname}.gemspec
-}
-
-build() {
-  cd ${_gemname}-${pkgver}
-  gem build ${_gemname}.gemspec
-}
-
-package() {
-  cd ${_gemname}-${pkgver}
-  local _gemdir="$(gem env gemdir)"
-  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
-  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  cp -a docs/* "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-yard/repos/community-any/PKGBUILD (from rev 712345, 
ruby-yard/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 23:12:10 UTC (rev 712346)
@@ -0,0 +1,44 @@
+# Maintainer: Levente Polyak 
+# Contributor: Jerome Leclanche 
+
+_gemname=yard
+pkgname=ruby-${_gemname}
+pkgver=0.9.25
+pkgrel=1
+pkgdesc='YARD is a Ruby Documentation tool. The Y stands for "Yay!"'
+url='https://yardoc.org/'
+arch=('any')
+license=('MIT')
+depends=('ruby' 'ruby-rdoc')
+makedepends=('ruby-rake' 'ruby-samus')
+options=('!emptydirs')
+source=(https://github.com/lsegal/yard/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('855bf05ce45a965d534191b036831ec1cedc848e21196ed93cc7984d744328d9d5ba39664b4539a707a1556984990360cd27e085b830501ac8d72c6cebb3e689')
+b2sums=('35531a7e90ab99bad8d236ea4774a8aebc50eff5d78f60e2dfea8edb2af965dc60e8c02f8a1f95166e80d6f1ce21aca051b92b2511b88a7d87d2cc90e58bcd17')
+
+prepare() {
+  cd ${_gemname}-${pkgver}
+  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec
+  sed 's|git ls-files|find|' -i ${_gemname}.gemspec
+}
+
+build() {
+  cd ${_gemname}-${pkgver}
+  rake gem
+}
+
+package() {
+  cd ${_gemname}-${pkgver}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
\
+-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  cp -a docs/* "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+
+  cd "${pkgdir}/${_gemdir}"
+  rm -rf cache gems/${_gemname}-${pkgver}/{ext,lib/*/*.so,man} \
+extensions/*/*/${_gemname}-${pkgver}/{mkmf.log,gem_make.out}
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-25 Thread Alexander Rødseth via arch-commits
Date: Friday, September 25, 2020 @ 22:54:54
  Author: arodseth
Revision: 712342

upgpkg: erlang-nox 23.1-1

Modified:
  erlang-nox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 22:53:41 UTC (rev 712341)
+++ PKGBUILD2020-09-25 22:54:54 UTC (rev 712342)
@@ -6,8 +6,8 @@
 # Contributor: Ricardo Catalinas Jiménez 
 
 pkgname=erlang-nox
-pkgver=23.0.4
-_docver=23.0
+pkgver=23.1
+_docver=23.1
 pkgrel=1
 pkgdesc='General-purpose concurrent functional programming language (headless 
version)'
 arch=(x86_64)
@@ -26,7 +26,7 @@
 epmd.service
 epmd.socket)
 sha256sums=('SKIP'
-'c0804cb5bead8780de24cf9ba656efefd9307a457e0541cc513109523731bf6f'
+'f49ecbb05b0895ec54fc66ea65b4e7cf593a4877748acc4d549f7613c92b94a9'
 '78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2'
 'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
 '998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34')


[arch-commits] Commit in erlang-nox/repos/community-x86_64 (8 files)

2020-09-25 Thread Alexander Rødseth via arch-commits
Date: Friday, September 25, 2020 @ 22:55:02
  Author: arodseth
Revision: 712343

archrelease: copy trunk to community-x86_64

Added:
  erlang-nox/repos/community-x86_64/PKGBUILD
(from rev 712342, erlang-nox/trunk/PKGBUILD)
  erlang-nox/repos/community-x86_64/epmd.conf
(from rev 712342, erlang-nox/trunk/epmd.conf)
  erlang-nox/repos/community-x86_64/epmd.service
(from rev 712342, erlang-nox/trunk/epmd.service)
  erlang-nox/repos/community-x86_64/epmd.socket
(from rev 712342, erlang-nox/trunk/epmd.socket)
Deleted:
  erlang-nox/repos/community-x86_64/PKGBUILD
  erlang-nox/repos/community-x86_64/epmd.conf
  erlang-nox/repos/community-x86_64/epmd.service
  erlang-nox/repos/community-x86_64/epmd.socket

--+
 PKGBUILD |  154 -
 epmd.conf|6 +-
 epmd.service |   22 
 epmd.socket  |   18 +++---
 4 files changed, 100 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 22:54:54 UTC (rev 712342)
+++ PKGBUILD2020-09-25 22:55:02 UTC (rev 712343)
@@ -1,77 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Lukas Fleischer 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Sarah Hay 
-# Contributor: Tom Burdick 
-# Contributor: Ricardo Catalinas Jiménez 
-
-pkgname=erlang-nox
-pkgver=23.0.4
-_docver=23.0
-pkgrel=1
-pkgdesc='General-purpose concurrent functional programming language (headless 
version)'
-arch=(x86_64)
-url='https://www.erlang.org/'
-license=(Apache)
-depends=(ncurses openssl)
-makedepends=(fop git java-environment libxslt lksctp-tools unixodbc)
-conflicts=(erlang)
-optdepends=('erlang-unixodbc: database support'
-'java-environment: for Java support'
-'lksctp-tools: for SCTP support')
-options=(staticlibs)
-source=("git+https://github.com/erlang/otp.git#tag=OTP-$pkgver;
-"https://www.erlang.org/download/otp_doc_man_$_docver.tar.gz;
-epmd.conf
-epmd.service
-epmd.socket)
-sha256sums=('SKIP'
-'c0804cb5bead8780de24cf9ba656efefd9307a457e0541cc513109523731bf6f'
-'78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2'
-'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
-'998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34')
-
-prepare() {
-  cd otp
-  ./otp_build autoconf
-}
-
-build() {
-  cd otp
-  ./configure \
---prefix=/usr \
---enable-builtin-zlib \
---enable-smp-support \
---with-odbc
-  make
-}
-
-package() {
-  make -C otp DESTDIR="$pkgdir" install
-
-  # Documentation
-  install -d "$pkgdir/usr/share/doc/erlang"
-  install -m0644 "$srcdir/otp/README.md" \
-"$srcdir"/COPYRIGHT \
-"$pkgdir/usr/share/doc/erlang"
-
-  # Compressed man pages
-  for page in "$srcdir/man/man?/*"; do gzip $page; done
-  cp -r "$srcdir/man" "$pkgdir/usr/lib/erlang/"
-
-  # License
-  install -Dm0644 "$srcdir/otp/LICENSE.txt" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-
-  # Remove files that are packaged as erlang-unixodbc
-  rm -rf "$pkgdir/usr/lib/erlang/"{lib/odbc*,man/man3/odbc.3.gz}
-
-  # epmd service, socket and conf
-  cd "$srcdir"
-  install -Dm644 epmd.service "$pkgdir/usr/lib/systemd/system/epmd.service"
-  install -Dm644 epmd.socket "$pkgdir/usr/lib/systemd/system/epmd.socket"
-  install -Dm644 epmd.conf "$pkgdir/etc/conf.d/epmd"
-}
-
-# getver: raw.githubusercontent.com/erlang/otp/maint/OTP_VERSION
-# vim: ts=2 sw=2 et

Copied: erlang-nox/repos/community-x86_64/PKGBUILD (from rev 712342, 
erlang-nox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 22:55:02 UTC (rev 712343)
@@ -0,0 +1,77 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Lukas Fleischer 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Sarah Hay 
+# Contributor: Tom Burdick 
+# Contributor: Ricardo Catalinas Jiménez 
+
+pkgname=erlang-nox
+pkgver=23.1
+_docver=23.1
+pkgrel=1
+pkgdesc='General-purpose concurrent functional programming language (headless 
version)'
+arch=(x86_64)
+url='https://www.erlang.org/'
+license=(Apache)
+depends=(ncurses openssl)
+makedepends=(fop git java-environment libxslt lksctp-tools unixodbc)
+conflicts=(erlang)
+optdepends=('erlang-unixodbc: database support'
+'java-environment: for Java support'
+'lksctp-tools: for SCTP support')
+options=(staticlibs)
+source=("git+https://github.com/erlang/otp.git#tag=OTP-$pkgver;
+"https://www.erlang.org/download/otp_doc_man_$_docver.tar.gz;
+epmd.conf
+epmd.service
+epmd.socket)
+sha256sums=('SKIP'
+'f49ecbb05b0895ec54fc66ea65b4e7cf593a4877748acc4d549f7613c92b94a9'
+'78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2'
+

[arch-commits] Commit in (4 files)

2020-09-25 Thread Levente Polyak via arch-commits
Date: Friday, September 25, 2020 @ 22:53:34
  Author: anthraxx
Revision: 712340

addpkg: ruby-samus 3.0.9-1

Added:
  ruby-samus/
  ruby-samus/repos/
  ruby-samus/trunk/
  ruby-samus/trunk/PKGBUILD

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

Added: ruby-samus/trunk/PKGBUILD
===
--- ruby-samus/trunk/PKGBUILD   (rev 0)
+++ ruby-samus/trunk/PKGBUILD   2020-09-25 22:53:34 UTC (rev 712340)
@@ -0,0 +1,42 @@
+# Maintainer: Levente Polyak 
+
+_gemname=samus
+pkgname=ruby-${_gemname}
+pkgver=3.0.9
+pkgrel=1
+pkgdesc='Helps you automate the release of Open Source Software'
+url='https://github.com/lsegal/samus'
+arch=('any')
+license=('MIT')
+depends=('ruby')
+makedepends=('ruby-rake' 'ruby-rdoc')
+options=('!emptydirs')
+source=(${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz)
+sha512sums=('da03a00ce0ced8249a696c6b558499939316a84f8aede86829557c31aaec3621adaff3e969b1fec32fc3249ba2f244b1adca545a2f7c4a9b9fdae7629194191b')
+b2sums=('049a9f8691d7df77ce4721d6ca306fccc26f167b0dba954a5e90a16dc7ce3baf92288583d3b601dfee8b6160c5b48541317b5a09e61a70612b6c63da7b2899fa')
+
+prepare() {
+  cd ${_gemname}-${pkgver}
+  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec
+  sed 's|git ls-files|find|' -i ${_gemname}.gemspec
+}
+
+build() {
+  cd ${_gemname}-${pkgver}
+  gem build ${_gemname}.gemspec
+}
+
+package() {
+  cd ${_gemname}-${pkgver}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
\
+-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+
+  cd "${pkgdir}/${_gemdir}"
+  rm -rf cache gems/${_gemname}-${pkgver}/{ext,lib/*/*.so,man} \
+extensions/*/*/${_gemname}-${pkgver}/{mkmf.log,gem_make.out}
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-25 Thread Levente Polyak via arch-commits
Date: Friday, September 25, 2020 @ 22:53:41
  Author: anthraxx
Revision: 712341

archrelease: copy trunk to community-any

Added:
  ruby-samus/repos/community-any/
  ruby-samus/repos/community-any/PKGBUILD
(from rev 712340, ruby-samus/trunk/PKGBUILD)

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

Copied: ruby-samus/repos/community-any/PKGBUILD (from rev 712340, 
ruby-samus/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-09-25 22:53:41 UTC (rev 712341)
@@ -0,0 +1,42 @@
+# Maintainer: Levente Polyak 
+
+_gemname=samus
+pkgname=ruby-${_gemname}
+pkgver=3.0.9
+pkgrel=1
+pkgdesc='Helps you automate the release of Open Source Software'
+url='https://github.com/lsegal/samus'
+arch=('any')
+license=('MIT')
+depends=('ruby')
+makedepends=('ruby-rake' 'ruby-rdoc')
+options=('!emptydirs')
+source=(${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz)
+sha512sums=('da03a00ce0ced8249a696c6b558499939316a84f8aede86829557c31aaec3621adaff3e969b1fec32fc3249ba2f244b1adca545a2f7c4a9b9fdae7629194191b')
+b2sums=('049a9f8691d7df77ce4721d6ca306fccc26f167b0dba954a5e90a16dc7ce3baf92288583d3b601dfee8b6160c5b48541317b5a09e61a70612b6c63da7b2899fa')
+
+prepare() {
+  cd ${_gemname}-${pkgver}
+  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec
+  sed 's|git ls-files|find|' -i ${_gemname}.gemspec
+}
+
+build() {
+  cd ${_gemname}-${pkgver}
+  gem build ${_gemname}.gemspec
+}
+
+package() {
+  cd ${_gemname}-${pkgver}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
\
+-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+
+  cd "${pkgdir}/${_gemdir}"
+  rm -rf cache gems/${_gemname}-${pkgver}/{ext,lib/*/*.so,man} \
+extensions/*/*/${_gemname}-${pkgver}/{mkmf.log,gem_make.out}
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in erlang/repos/community-x86_64 (8 files)

2020-09-25 Thread Alexander Rødseth via arch-commits
Date: Friday, September 25, 2020 @ 22:46:35
  Author: arodseth
Revision: 712339

archrelease: copy trunk to community-x86_64

Added:
  erlang/repos/community-x86_64/PKGBUILD
(from rev 712338, erlang/trunk/PKGBUILD)
  erlang/repos/community-x86_64/epmd.conf
(from rev 712338, erlang/trunk/epmd.conf)
  erlang/repos/community-x86_64/epmd.service
(from rev 712338, erlang/trunk/epmd.service)
  erlang/repos/community-x86_64/epmd.socket
(from rev 712338, erlang/trunk/epmd.socket)
Deleted:
  erlang/repos/community-x86_64/PKGBUILD
  erlang/repos/community-x86_64/epmd.conf
  erlang/repos/community-x86_64/epmd.service
  erlang/repos/community-x86_64/epmd.socket

--+
 PKGBUILD |  165 -
 epmd.conf|6 +-
 epmd.service |   22 +++
 epmd.socket  |   18 +++---
 4 files changed, 106 insertions(+), 105 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 22:46:27 UTC (rev 712338)
+++ PKGBUILD2020-09-25 22:46:35 UTC (rev 712339)
@@ -1,82 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Lukas Fleischer 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Sarah Hay 
-# Contributor: Tom Burdick 
-# Contributor: Ricardo Catalinas Jiménez 
-
-pkgbase=erlang
-pkgname=(erlang erlang-unixodbc)
-pkgver=23.0.4
-pkgrel=1
-_docver=23.0
-arch=(x86_64)
-url='https://www.erlang.org'
-license=(Apache)
-makedepends=(fop git glu java-environment libxslt lksctp-tools
- mesa perl unixodbc wxgtk)
-options=(staticlibs)
-source=("git+https://github.com/erlang/otp.git#tag=OTP-$pkgver;
-"$url/download/otp_doc_man_$_docver.tar.gz"
-epmd.conf epmd.service epmd.socket)
-sha256sums=('SKIP'
-'c0804cb5bead8780de24cf9ba656efefd9307a457e0541cc513109523731bf6f'
-'78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2'
-'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
-'998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34')
-
-prepare() {
-  cd otp && ./otp_build autoconf
-}
-
-build() {
-  cd otp
-  ./configure \
---prefix=/usr \
---enable-builtin-zlib \
---enable-smp-support \
---with-odbc
-  make
-}
-
-package_erlang() {
-  pkgdesc='General-purpose concurrent functional programming language 
developed by Ericsson'
-  depends=(ncurses glu wxgtk openssl)
-  optdepends=('erlang-unixodbc: database support'
-  'java-environment: for Java support'
-  'lksctp-tools: for SCTP support')
-  provides=(erlang-nox)
-  conflicts=(erlang-nox)
-
-  make -C otp DESTDIR="$pkgdir" install
-
-  # move files that belong to the erlang-unixodbc package
-  mkdir -p unixodbc
-  mv "$pkgdir/usr/lib/erlang/lib/odbc"* "$srcdir/unixodbc/"
-
-  # services and configuration
-  install -Dm644 epmd.service "$pkgdir/usr/lib/systemd/system/epmd.service"
-  install -Dm644 epmd.socket "$pkgdir/usr/lib/systemd/system/epmd.socket"
-  install -Dm644 epmd.conf "$pkgdir/etc/conf.d/epmd"
-
-  # readme and licenses
-  install -Dm644 otp/README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
-  install -Dm644 COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/COPYRIGHT"
-  install -Dm644 otp/LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # man pages
-  cp -r man "$pkgdir/usr/lib/erlang/"
-}
-
-package_erlang-unixodbc() {
-  pkgdesc='Unixodbc support for Erlang'
-  depends=(unixodbc erlang-nox)
-
-  install -d "$pkgdir/usr/lib/erlang/lib"
-  mv unixodbc/* "$pkgdir/usr/lib/erlang/lib/"
-  install -Dm644 otp/LICENSE.txt \
-"$pkgdir/usr/share/licenses/$pkgname/LICENCE.txt"
-}
-
-# getver: raw.githubusercontent.com/erlang/otp/maint/OTP_VERSION
-# vim: ts=2 sw=2 et:

Copied: erlang/repos/community-x86_64/PKGBUILD (from rev 712338, 
erlang/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 22:46:35 UTC (rev 712339)
@@ -0,0 +1,83 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Lukas Fleischer 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Sarah Hay 
+# Contributor: Tom Burdick 
+# Contributor: Ricardo Catalinas Jiménez 
+
+pkgbase=erlang
+pkgname=(erlang erlang-unixodbc)
+pkgver=23.1
+pkgrel=1
+_docver=23.1
+arch=(x86_64)
+url='https://www.erlang.org'
+license=(Apache)
+makedepends=(fop git glu java-environment libxslt lksctp-tools
+ mesa perl unixodbc wxgtk)
+options=(staticlibs)
+source=("git+https://github.com/erlang/otp.git#tag=OTP-$pkgver;
+"$url/download/otp_doc_man_$_docver.tar.gz"
+epmd.conf epmd.service epmd.socket)
+sha256sums=('SKIP'
+'f49ecbb05b0895ec54fc66ea65b4e7cf593a4877748acc4d549f7613c92b94a9'
+'78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2'
+'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
+

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

2020-09-25 Thread Alexander Rødseth via arch-commits
Date: Friday, September 25, 2020 @ 22:46:27
  Author: arodseth
Revision: 712338

upgpkg: erlang 23.1-1

Modified:
  erlang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 22:40:49 UTC (rev 712337)
+++ PKGBUILD2020-09-25 22:46:27 UTC (rev 712338)
@@ -7,9 +7,9 @@
 
 pkgbase=erlang
 pkgname=(erlang erlang-unixodbc)
-pkgver=23.0.4
+pkgver=23.1
 pkgrel=1
-_docver=23.0
+_docver=23.1
 arch=(x86_64)
 url='https://www.erlang.org'
 license=(Apache)
@@ -20,13 +20,14 @@
 "$url/download/otp_doc_man_$_docver.tar.gz"
 epmd.conf epmd.service epmd.socket)
 sha256sums=('SKIP'
-'c0804cb5bead8780de24cf9ba656efefd9307a457e0541cc513109523731bf6f'
+'f49ecbb05b0895ec54fc66ea65b4e7cf593a4877748acc4d549f7613c92b94a9'
 '78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2'
 'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
 '998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34')
 
 prepare() {
-  cd otp && ./otp_build autoconf
+  cd otp
+  ./otp_build autoconf
 }
 
 build() {
@@ -41,7 +42,7 @@
 
 package_erlang() {
   pkgdesc='General-purpose concurrent functional programming language 
developed by Ericsson'
-  depends=(ncurses glu wxgtk openssl)
+  depends=(glu ncurses openssl wxgtk)
   optdepends=('erlang-unixodbc: database support'
   'java-environment: for Java support'
   'lksctp-tools: for SCTP support')
@@ -70,7 +71,7 @@
 
 package_erlang-unixodbc() {
   pkgdesc='Unixodbc support for Erlang'
-  depends=(unixodbc erlang-nox)
+  depends=(erlang-nox unixodbc)
 
   install -d "$pkgdir/usr/lib/erlang/lib"
   mv unixodbc/* "$pkgdir/usr/lib/erlang/lib/"


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

2020-09-25 Thread Levente Polyak via arch-commits
Date: Friday, September 25, 2020 @ 22:42:50
  Author: anthraxx
Revision: 396569

archrelease: copy trunk to extra-x86_64

Added:
  openmpi/repos/extra-x86_64/PKGBUILD
(from rev 396568, openmpi/trunk/PKGBUILD)
Deleted:
  openmpi/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 22:42:47 UTC (rev 396568)
+++ PKGBUILD2020-09-25 22:42:50 UTC (rev 396569)
@@ -1,59 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Anatol Pomozov 
-# Contributor: Stéphane Gaudreault 
-
-pkgname=openmpi
-pkgver=4.0.4
-pkgrel=1
-pkgdesc='High performance message passing library (MPI)'
-url='https://www.open-mpi.org'
-arch=('x86_64')
-license=('custom:OpenMPI')
-depends=('libltdl' 'hwloc' 'openssh' 'zlib' 'libnl')
-makedepends=('inetutils' 'valgrind' 'gcc-fortran')
-optdepends=('gcc-fortran: fortran support')
-options=('staticlibs')
-source=(https://www.open-mpi.org/software/ompi/v${pkgver%.*}/downloads/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('47e24eb2223fe5d24438658958a313b6b7a55bb281563542e1afc9dec4a31ac4')
-sha512sums=('6c193b4b5cbfd9d48fa5efcef01372c424b51ae5e9727ccf4235e3b14556dfeb010865e41a9473419ccda16559139aa469086b1fff9abfd337e87387fdec1c64')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---sysconfdir=/etc/${pkgname} \
---enable-mpi-fortran=all \
---libdir=/usr/lib/${pkgname} \
---enable-builtin-atomics \
---enable-mpi-cxx \
---with-valgrind \
---enable-memchecker \
---enable-pretty-print-stacktrace \
---without-slurm \
---with-hwloc=/usr \
---with-libltdl=/usr  \
-FC=/usr/bin/gfortran \
-LDFLAGS="${LDFLAGS} -Wl,-z,noexecstack"
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  # FS#28583
-  install -dm 755 "${pkgdir}/usr/lib/pkgconfig"
-  for i in ompi-c.pc ompi-cxx.pc ompi-f77.pc ompi-f90.pc ompi.pc; do
-ln -sf "/usr/lib/openmpi/pkgconfig/${i}" "${pkgdir}/usr/lib/pkgconfig/"
-  done
-
-  install -dm 755 "${pkgdir}/etc/ld.so.conf.d"
-  echo "/usr/lib/${pkgname}" > "${pkgdir}"/etc/ld.so.conf.d/${pkgname}.conf
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: openmpi/repos/extra-x86_64/PKGBUILD (from rev 396568, 
openmpi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 22:42:50 UTC (rev 396569)
@@ -0,0 +1,59 @@
+# Maintainer: Levente Polyak 
+# Contributor: Anatol Pomozov 
+# Contributor: Stéphane Gaudreault 
+
+pkgname=openmpi
+pkgver=4.0.5
+pkgrel=1
+pkgdesc='High performance message passing library (MPI)'
+url='https://www.open-mpi.org'
+arch=('x86_64')
+license=('custom:OpenMPI')
+depends=('libltdl' 'hwloc' 'openssh' 'zlib' 'libnl')
+makedepends=('inetutils' 'valgrind' 'gcc-fortran')
+optdepends=('gcc-fortran: fortran support')
+options=('staticlibs')
+source=(https://www.open-mpi.org/software/ompi/v${pkgver%.*}/downloads/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('c58f3863b61d944231077f344fe6b4b8fbb83f3d1bc93ab74640bf3e5acac009')
+sha512sums=('b7a1a5ccfc0eaa0f0504ff770b550480f7ae6727fa891e3310d9340a0d844a2ceddf62c2e59efd047ab9416b24c829919bbccd29606ca0e0d7a0569dad800011')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--sysconfdir=/etc/${pkgname} \
+--enable-mpi-fortran=all \
+--libdir=/usr/lib/${pkgname} \
+--enable-builtin-atomics \
+--enable-mpi-cxx \
+--with-valgrind \
+--enable-memchecker \
+--enable-pretty-print-stacktrace \
+--without-slurm \
+--with-hwloc=/usr \
+--with-libltdl=/usr  \
+FC=/usr/bin/gfortran \
+LDFLAGS="${LDFLAGS} -Wl,-z,noexecstack"
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # FS#28583
+  install -dm 755 "${pkgdir}/usr/lib/pkgconfig"
+  for i in ompi-c.pc ompi-cxx.pc ompi-f77.pc ompi-f90.pc ompi.pc; do
+ln -sf "/usr/lib/openmpi/pkgconfig/${i}" "${pkgdir}/usr/lib/pkgconfig/"
+  done
+
+  install -dm 755 "${pkgdir}/etc/ld.so.conf.d"
+  echo "/usr/lib/${pkgname}" > "${pkgdir}"/etc/ld.so.conf.d/${pkgname}.conf
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-25 Thread Levente Polyak via arch-commits
Date: Friday, September 25, 2020 @ 22:42:47
  Author: anthraxx
Revision: 396568

upgpkg: openmpi 4.0.5-1

Modified:
  openmpi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 21:35:27 UTC (rev 396567)
+++ PKGBUILD2020-09-25 22:42:47 UTC (rev 396568)
@@ -3,7 +3,7 @@
 # Contributor: Stéphane Gaudreault 
 
 pkgname=openmpi
-pkgver=4.0.4
+pkgver=4.0.5
 pkgrel=1
 pkgdesc='High performance message passing library (MPI)'
 url='https://www.open-mpi.org'
@@ -14,8 +14,8 @@
 optdepends=('gcc-fortran: fortran support')
 options=('staticlibs')
 
source=(https://www.open-mpi.org/software/ompi/v${pkgver%.*}/downloads/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('47e24eb2223fe5d24438658958a313b6b7a55bb281563542e1afc9dec4a31ac4')
-sha512sums=('6c193b4b5cbfd9d48fa5efcef01372c424b51ae5e9727ccf4235e3b14556dfeb010865e41a9473419ccda16559139aa469086b1fff9abfd337e87387fdec1c64')
+sha256sums=('c58f3863b61d944231077f344fe6b4b8fbb83f3d1bc93ab74640bf3e5acac009')
+sha512sums=('b7a1a5ccfc0eaa0f0504ff770b550480f7ae6727fa891e3310d9340a0d844a2ceddf62c2e59efd047ab9416b24c829919bbccd29606ca0e0d7a0569dad800011')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2020-09-25 Thread Levente Polyak via arch-commits
Date: Friday, September 25, 2020 @ 22:40:49
  Author: anthraxx
Revision: 712337

archrelease: copy trunk to community-any

Added:
  ruby-paint/repos/community-any/PKGBUILD
(from rev 712336, ruby-paint/trunk/PKGBUILD)
Deleted:
  ruby-paint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 22:40:45 UTC (rev 712336)
+++ PKGBUILD2020-09-25 22:40:49 UTC (rev 712337)
@@ -1,36 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Gordin <9ordin @t gmail dot com>
-
-_gemname=paint
-pkgname=ruby-${_gemname}
-pkgver=2.1.0
-pkgrel=2
-pkgdesc='Ruby paint manages terminal colors and effects'
-url='https://github.com/janlelis/paint'
-arch=('any')
-license=('MIT')
-depends=('ruby-rspec' 'ruby-rainbow' 'ruby-term-ansicolor')
-options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/janlelis/paint/archive/v${pkgver}.tar.gz)
-sha512sums=('0de206c78c678d77cfdff0f26e42f2a045fc98a982943f7104d11e47cd4db9b196dba6a14eb09d98c103b3b70e13b84e48fe6261d2b03a9a0f4d4f10037a39cb')
-
-prepare() {
-  cd ${_gemname}-${pkgver}
-  sed -r 's|~>|>=|g' -i paint.gemspec # don't give a fuck about rubys bla bla
-}
-
-build() {
-  cd ${_gemname}-${pkgver}
-  gem build paint.gemspec
-}
-
-package() {
-  cd ${_gemname}-${pkgver}
-  local _gemdir="$(gem env gemdir)"
-  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
-  install -Dm 644 MIT-LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-paint/repos/community-any/PKGBUILD (from rev 712336, 
ruby-paint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 22:40:49 UTC (rev 712337)
@@ -0,0 +1,47 @@
+# Maintainer: Levente Polyak 
+# Contributor: Gordin <9ordin @t gmail dot com>
+
+_gemname=paint
+pkgname=ruby-${_gemname}
+pkgver=2.2.0
+pkgrel=1
+pkgdesc='Ruby paint manages terminal colors and effects'
+url='https://github.com/janlelis/paint'
+arch=('any')
+license=('MIT')
+depends=('ruby' 'ruby-rspec' 'ruby-rainbow' 'ruby-term-ansicolor')
+makedepends=('ruby-rake')
+options=('!emptydirs')
+source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('67f9752d270ff8cd2706318a16b3b3980515bd07a55a2b8900eb79b200d6da87993185c839748052457536b82d53694bba33c0f64d8ada50b61a34c9985ba009')
+b2sums=('4f1e978023cd6edb371ae7315cc48451f3a911522f0d39b7dea264d8d112a6db4560507c33fdc55e247b782f30cd8b844d6c790ce86194c151acc7c2abc7f9c9')
+
+prepare() {
+  cd ${_gemname}-${pkgver}
+  sed -r 's|~>|>=|g' -i paint.gemspec
+}
+
+build() {
+  cd ${_gemname}-${pkgver}
+  rake gems
+}
+
+check() {
+  cd ${_gemname}-${pkgver}
+  rake test
+}
+
+package() {
+  cd ${_gemname}-${pkgver}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
\
+-n "${pkgdir}/usr/bin" pkg/${_gemname}-${pkgver}.gem
+  install -Dm 644 MIT-LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+
+  cd "${pkgdir}/${_gemdir}"
+  rm -rf cache gems/${_gemname}-${pkgver}/{ext,lib/*/*.so} \
+extensions/*/*/${_gemname}-${pkgver}/{mkmf.log,gem_make.out}
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-25 Thread Levente Polyak via arch-commits
Date: Friday, September 25, 2020 @ 22:40:45
  Author: anthraxx
Revision: 712336

upgpkg: ruby-paint 2.2.0-1

Modified:
  ruby-paint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 22:37:50 UTC (rev 712335)
+++ PKGBUILD2020-09-25 22:40:45 UTC (rev 712336)
@@ -3,34 +3,45 @@
 
 _gemname=paint
 pkgname=ruby-${_gemname}
-pkgver=2.1.0
-pkgrel=2
+pkgver=2.2.0
+pkgrel=1
 pkgdesc='Ruby paint manages terminal colors and effects'
 url='https://github.com/janlelis/paint'
 arch=('any')
 license=('MIT')
-depends=('ruby-rspec' 'ruby-rainbow' 'ruby-term-ansicolor')
+depends=('ruby' 'ruby-rspec' 'ruby-rainbow' 'ruby-term-ansicolor')
+makedepends=('ruby-rake')
 options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/janlelis/paint/archive/v${pkgver}.tar.gz)
-sha512sums=('0de206c78c678d77cfdff0f26e42f2a045fc98a982943f7104d11e47cd4db9b196dba6a14eb09d98c103b3b70e13b84e48fe6261d2b03a9a0f4d4f10037a39cb')
+source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('67f9752d270ff8cd2706318a16b3b3980515bd07a55a2b8900eb79b200d6da87993185c839748052457536b82d53694bba33c0f64d8ada50b61a34c9985ba009')
+b2sums=('4f1e978023cd6edb371ae7315cc48451f3a911522f0d39b7dea264d8d112a6db4560507c33fdc55e247b782f30cd8b844d6c790ce86194c151acc7c2abc7f9c9')
 
 prepare() {
   cd ${_gemname}-${pkgver}
-  sed -r 's|~>|>=|g' -i paint.gemspec # don't give a fuck about rubys bla bla
+  sed -r 's|~>|>=|g' -i paint.gemspec
 }
 
 build() {
   cd ${_gemname}-${pkgver}
-  gem build paint.gemspec
+  rake gems
 }
 
+check() {
+  cd ${_gemname}-${pkgver}
+  rake test
+}
+
 package() {
   cd ${_gemname}-${pkgver}
   local _gemdir="$(gem env gemdir)"
-  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
-  install -Dm 644 MIT-LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
\
+-n "${pkgdir}/usr/bin" pkg/${_gemname}-${pkgver}.gem
+  install -Dm 644 MIT-LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
   install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+
+  cd "${pkgdir}/${_gemdir}"
+  rm -rf cache gems/${_gemname}-${pkgver}/{ext,lib/*/*.so} \
+extensions/*/*/${_gemname}-${pkgver}/{mkmf.log,gem_make.out}
 }
 
 # vim: ts=2 sw=2 et:


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

2020-09-25 Thread Levente Polyak via arch-commits
Date: Friday, September 25, 2020 @ 22:37:50
  Author: anthraxx
Revision: 712335

archrelease: copy trunk to community-x86_64

Added:
  wireshark/repos/community-x86_64/PKGBUILD
(from rev 712334, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-x86_64/wireshark.install
(from rev 712334, wireshark/trunk/wireshark.install)
  wireshark/repos/community-x86_64/wireshark.sysusers
(from rev 712334, wireshark/trunk/wireshark.sysusers)
Deleted:
  wireshark/repos/community-x86_64/PKGBUILD
  wireshark/repos/community-x86_64/wireshark.install
  wireshark/repos/community-x86_64/wireshark.sysusers

+
 PKGBUILD   |  196 +--
 wireshark.install  |   16 ++--
 wireshark.sysusers |2 
 3 files changed, 107 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 22:37:45 UTC (rev 712334)
+++ PKGBUILD2020-09-25 22:37:50 UTC (rev 712335)
@@ -1,98 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Filipe Laíns 
-# Contributor: Timothy Redaelli 
-# Contributor: Guillaume ALAUX 
-# Contributor: Florian Pritz 
-# Contributor: Peter Wu 
-
-pkgbase=wireshark
-pkgname=('wireshark-cli' 'wireshark-qt')
-pkgver=3.2.6
-pkgrel=1
-pkgdesc='Network traffic and protocol analyzer/sniffer'
-url='https://www.wireshark.org/'
-arch=('x86_64')
-license=('GPL2')
-makedepends=('glibc' 'cmake' 'ninja' 'c-ares' 'libmaxminddb' 'qt5-tools' 
'qt5-svg'
- 'qt5-multimedia' 'krb5' 'libpcap' 'libssh' 'libxml2' 'libnghttp2'
- 'snappy' 'lz4' 'spandsp' 'gnutls' 'lua52' 'python' 'libcap' 
'libnl'
- 'glib2' 'libgcrypt' 'sbc' 'bcg729' 'desktop-file-utils' 'libxslt'
- 'hicolor-icon-theme' 'zstd' 'zlib' 'gcc-libs' 'brotli' 
'asciidoctor'
- 'doxygen' 'minizip' 'speexdsp')
-options=('!emptydirs')
-source=(https://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.xz
-wireshark.sysusers)
-sha512sums=('71905836370b916a92e7a76e4f93cb10a658374c7a95aa47b607b2b142abebdb0d1562f642782a5a946a167dfb28169572330a7603cf0d7ab6016ce7f12fac78'
-
'3956c1226e64f0ce4df463f80b55b15eed06ecd9b8703b3e8309d4236a6e1ca84e43007336f3987bc862d8a5e7cfcaaf6653125d2a34999a0f1357c52e7c4990')
-b2sums=('216623d4f357e755b9c032bef45b30c373bb0e2de773daabb78725491bd8eb0290d25a9016081dc62844c1be63e3afd273a8a6b8d16e70e589465fd837cc7442'
-
'3cebcc993f51eaf0e09673c77e0436598593ef5eff306d880415ccc8eecb32fee93c9a6986f1a7bb0835ab7f9732369d7c5a07e6c053d6293e73a1ea84c58a5c')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  sed 's| Rev Unknown from unknown||' -i tools/make-version.pl
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  cmake \
--B build \
--G Ninja \
--DCMAKE_BUILD_TYPE=None \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_INSTALL_RPATH= \
--DCMAKE_SKIP_RPATH=ON \
--Wno-dev
-  ninja -C build -v
-}
-
-package_wireshark-cli() {
-  pkgdesc+=' - CLI tools and data files'
-  depends=('glibc' 'c-ares' 'libmaxminddb' 'krb5' 'libgcrypt' 'libcap' 
'libpcap'
-   'gnutls' 'glib2' 'lua52' 'libssh' 'libxml2' 'libnghttp2' 'snappy'
-   'lz4' 'spandsp' 'sbc' 'bcg729' 'zstd' 'zlib' 'brotli' 'speexdsp')
-  install=wireshark.install
-  conflicts=(wireshark)
-  provides=(libwireshark.so libwiretap.so libwsutil.so)
-
-  cd ${pkgbase}-${pkgver}
-  DESTDIR="${pkgdir}" ninja -C build install
-
-  # wireshark uid group is 150
-  install -Dm 644 "${srcdir}/wireshark.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/wireshark.conf"
-  chgrp 150 "${pkgdir}/usr/bin/dumpcap"
-  chmod 754 "${pkgdir}/usr/bin/dumpcap"
-
-  cd "${pkgdir}"
-  rm -r usr/share/mime \
-usr/share/icons \
-usr/share/man/man1/wireshark.1 \
-usr/share/doc/wireshark/wireshark.html \
-usr/bin/wireshark \
-usr/share/applications/wireshark.desktop \
-usr/share/appdata/wireshark.appdata.xml
-}
-
-package_wireshark-qt() {
-  pkgdesc+=' - Qt GUI'
-  depends=('glibc' 'desktop-file-utils' 'qt5-multimedia' 'qt5-svg'
-   'wireshark-cli' 'libwireshark.so' 'libwiretap.so' 'libwsutil.so'
-   'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'gcc-libs'
-   'zlib' 'libpcap' 'libgcrypt' 'libnl' 'minizip')
-  replaces=(wireshark wireshark-gtk wireshark-common)
-  conflicts=(wireshark wireshark-gtk wireshark-common)
-
-  cd ${pkgbase}-${pkgver}
-  install -d "${srcdir}/staging"
-  DESTDIR="${srcdir}/staging" ninja -C build install
-
-  install -Dm 755 build/run/wireshark -t "${pkgdir}/usr/bin"
-  install -Dm 644 build/doc/wireshark.1 -t "${pkgdir}/usr/share/man/man1"
-  install -Dm 644 build/doc/wireshark.html -t 
"${pkgdir}/usr/share/doc/wireshark"
-  install -Dm 644 wireshark.desktop -t "${pkgdir}/usr/share/applications"
-  install -Dm 644 wireshark.appdata.xml -t "${pkgdir}/usr/share/appdata"
-  install -Dm 644 wireshark-mime-package.xml 
"${pkgdir}/usr/share/mime/packages/wireshark.xml"
-  

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

2020-09-25 Thread Levente Polyak via arch-commits
Date: Friday, September 25, 2020 @ 22:37:45
  Author: anthraxx
Revision: 712334

upgpkg: wireshark 3.2.7-1

Modified:
  wireshark/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 22:35:42 UTC (rev 712333)
+++ PKGBUILD2020-09-25 22:37:45 UTC (rev 712334)
@@ -7,7 +7,7 @@
 
 pkgbase=wireshark
 pkgname=('wireshark-cli' 'wireshark-qt')
-pkgver=3.3.0
+pkgver=3.2.7
 pkgrel=1
 pkgdesc='Network traffic and protocol analyzer/sniffer'
 url='https://www.wireshark.org/'
@@ -22,9 +22,9 @@
 options=('!emptydirs')
 source=(https://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.xz
 wireshark.sysusers)
-sha512sums=('1ca59d951b3b3c18f55f21023a775124639fbc99a0396e3b2ecf3569213659a039836c6bdaf82b802668b5108f455106a22e83ab26ee18ed882dfa564594df5a'
+sha512sums=('c17913fe6c193ccc6b0dbf86932d625a1f3b670aef805296e5db2639118218e06d513910ad50ab3926204f94a0010425b0d498176f987516d64fdd6a52d2517b'
 
'3956c1226e64f0ce4df463f80b55b15eed06ecd9b8703b3e8309d4236a6e1ca84e43007336f3987bc862d8a5e7cfcaaf6653125d2a34999a0f1357c52e7c4990')
-b2sums=('1f5b7711e76464403a9ed11f2f72a858716e177334b036bf5f2b2aa9f41b197fded04ff18a3841f3d6fdab9acf331a5bc4dfee3adc8eca775c4eeedbbc163ece'
+b2sums=('69ed148e5cc6403b3948f4851164033163d0817626feaeaa0abf09b749c9e37c036786ed91f04add1ceeb80b69b7d05316b648d339c8c86f0818e0ee0afdf4ad'
 
'3cebcc993f51eaf0e09673c77e0436598593ef5eff306d880415ccc8eecb32fee93c9a6986f1a7bb0835ab7f9732369d7c5a07e6c053d6293e73a1ea84c58a5c')
 
 prepare() {


[arch-commits] Commit in wine/repos/multilib-x86_64 (8 files)

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 22:35:42
  Author: felixonmars
Revision: 712333

archrelease: copy trunk to multilib-x86_64

Added:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 712332, wine/trunk/30-win32-aliases.conf)
  wine/repos/multilib-x86_64/PKGBUILD
(from rev 712332, wine/trunk/PKGBUILD)
  wine/repos/multilib-x86_64/wine-binfmt.conf
(from rev 712332, wine/trunk/wine-binfmt.conf)
  wine/repos/multilib-x86_64/wine.install
(from rev 712332, wine/trunk/wine.install)
Deleted:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
  wine/repos/multilib-x86_64/PKGBUILD
  wine/repos/multilib-x86_64/wine-binfmt.conf
  wine/repos/multilib-x86_64/wine.install

---+
 30-win32-aliases.conf |   40 ++---
 PKGBUILD  |  350 
 wine-binfmt.conf  |4 
 wine.install  |   14 -
 4 files changed, 204 insertions(+), 204 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2020-09-25 22:35:16 UTC (rev 712332)
+++ 30-win32-aliases.conf   2020-09-25 22:35:42 UTC (rev 712333)
@@ -1,20 +0,0 @@
-
-
-
-  
-MS Shell Dlg
-Microsoft Sans Serif
-sans-serif
-  
-  
-MS Shell Dlg 2
-Tahoma
-sans-serif
-  
-
-  
-MS Sans Serif
-Microsoft Sans Serif
-sans-serif
-  
-

Copied: wine/repos/multilib-x86_64/30-win32-aliases.conf (from rev 712332, 
wine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2020-09-25 22:35:42 UTC (rev 712333)
@@ -0,0 +1,20 @@
+
+
+
+  
+MS Shell Dlg
+Microsoft Sans Serif
+sans-serif
+  
+  
+MS Shell Dlg 2
+Tahoma
+sans-serif
+  
+
+  
+MS Sans Serif
+Microsoft Sans Serif
+sans-serif
+  
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 22:35:16 UTC (rev 712332)
+++ PKGBUILD2020-09-25 22:35:42 UTC (rev 712333)
@@ -1,175 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine
-pkgver=5.17
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(https://dl.winehq.org/wine/source/5.x/$pkgname-$_pkgbasever.tar.xz{,.sign}
-30-win32-aliases.conf
-wine-binfmt.conf)
-sha512sums=('05338036fa9b195d9cf8a84a1bcc03f35422d5f07744ec4430f20874601829be5904be10060353599cb0187728123f959ccc75e79f1ce1c47178ae9cd55ef696'
-'SKIP'
-
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
-
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7
-  DA23579A74D4AD9AF9D3F945CEFAC8EAAF17519D)
-
-pkgdesc="A compatibility layer for running Windows programs"
-url="http://www.winehq.com;
-arch=(x86_64)
-options=(staticlibs)
-license=(LGPL)
-depends=(
-  fontconfig  lib32-fontconfig
-  lcms2   lib32-lcms2
-  libxml2 lib32-libxml2
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  libpcap lib32-libpcap
-  faudio  lib32-faudio
-  desktop-file-utils
-)
-makedepends=(autoconf ncurses bison perl fontforge flex mingw-w64-gcc
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  vkd3d lib32-vkd3d
-  sdl2  lib32-sdl2
-  libcups   lib32-libcups
-  libgphoto2
-  sane
-  gsm
-  vulkan-headers
-  samba
-  opencl-headers
-)
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123

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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 22:35:16
  Author: felixonmars
Revision: 712332

upgpkg: wine 5.18-1

Modified:
  wine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 22:26:15 UTC (rev 712331)
+++ PKGBUILD2020-09-25 22:35:16 UTC (rev 712332)
@@ -4,7 +4,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine
-pkgver=5.17
+pkgver=5.18
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
@@ -12,7 +12,7 @@
 
source=(https://dl.winehq.org/wine/source/5.x/$pkgname-$_pkgbasever.tar.xz{,.sign}
 30-win32-aliases.conf
 wine-binfmt.conf)
-sha512sums=('05338036fa9b195d9cf8a84a1bcc03f35422d5f07744ec4430f20874601829be5904be10060353599cb0187728123f959ccc75e79f1ce1c47178ae9cd55ef696'
+sha512sums=('70565fbea61b78580ca86443fcb4c10c7814c1dffcfa49ee38746fef21a52a00f2e040d9d2515892fed4021e7868720cc22b650d18872656838e4610d4d4e823'
 'SKIP'
 
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
 
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')


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

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Friday, September 25, 2020 @ 22:25:50
  Author: archange
Revision: 712330

upgpkg: knot 3.0.0-1

Modified:
  knot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 22:24:01 UTC (rev 712329)
+++ PKGBUILD2020-09-25 22:25:50 UTC (rev 712330)
@@ -5,7 +5,7 @@
 # Contributor: Otto Sabart 
 
 pkgname=knot
-pkgver=2.9.6
+pkgver=3.0.0
 pkgrel=1
 pkgdesc="High-performance authoritative-only DNS server"
 arch=(x86_64)
@@ -13,11 +13,11 @@
 license=(GPL3)
 depends=(libedit gnutls liburcu lmdb
  libidn2 systemd libcap-ng
- fstrm protobuf-c libmaxminddb)
+ fstrm protobuf-c libmaxminddb
+ libbpf libnghttp2)
 backup=('etc/knot/knot.conf')
 
source=("https://secure.nic.cz/files/knot-dns/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha256sums=('bf742883c6825b54f19f2dadca2c94fec1ff8bdcf0a52388e2e167937594b2e7'
-'SKIP')
+sha256sums=(f1c96aff6e873a2f9b1b8c2441d5a7801dd48d3abdb738a4d24b26c2a8fbe6c4 
SKIP)
 validpgpkeys=(742FA4E95829B6C5EAC6B85710BB7AF6FEBBD6AB) # Daniel Salzman 

 
 build() {


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

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Friday, September 25, 2020 @ 22:26:15
  Author: archange
Revision: 712331

archrelease: copy trunk to community-x86_64

Added:
  knot/repos/community-x86_64/PKGBUILD
(from rev 712330, knot/trunk/PKGBUILD)
Deleted:
  knot/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 22:25:50 UTC (rev 712330)
+++ PKGBUILD2020-09-25 22:26:15 UTC (rev 712331)
@@ -1,62 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Ondřej Surý 
-# Contributor: Julian Brost 
-# Contributor: Oleander Reis 
-# Contributor: Otto Sabart 
-
-pkgname=knot
-pkgver=2.9.6
-pkgrel=1
-pkgdesc="High-performance authoritative-only DNS server"
-arch=(x86_64)
-url="https://www.knot-dns.cz/;
-license=(GPL3)
-depends=(libedit gnutls liburcu lmdb
- libidn2 systemd libcap-ng
- fstrm protobuf-c libmaxminddb)
-backup=('etc/knot/knot.conf')
-source=("https://secure.nic.cz/files/knot-dns/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha256sums=('bf742883c6825b54f19f2dadca2c94fec1ff8bdcf0a52388e2e167937594b2e7'
-'SKIP')
-validpgpkeys=(742FA4E95829B6C5EAC6B85710BB7AF6FEBBD6AB) # Daniel Salzman 

-
-build() {
-cd ${pkgname}-${pkgver}
-
-./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/var/lib \
---libexecdir=/usr/lib/knot \
---with-rundir=/run/knot \
---with-storage=/var/lib/knot \
---enable-recvmmsg \
---enable-dnstap \
---enable-systemd \
---enable-reuseport \
---disable-silent-rules
-
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-make check
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" install
-
-# Don’t keep those empty dir, manage them with systemd-tmpfiles instead
-rmdir "${pkgdir}"/{var/{lib/{knot/,},},run/{knot/,}}
-
-rm "${pkgdir}"/etc/knot/example.com.zone
-mv "${pkgdir}"/etc/knot/{knot.sample.conf,knot.conf}
-
-install -Dm644 distro/common/knot.service -t 
"${pkgdir}"/usr/lib/systemd/system/
-install -Dm644 distro/arch/knot.tmpfiles.arch 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
-install -Dm644 distro/arch/knot.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
-}

Copied: knot/repos/community-x86_64/PKGBUILD (from rev 712330, 
knot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 22:26:15 UTC (rev 712331)
@@ -0,0 +1,62 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Ondřej Surý 
+# Contributor: Julian Brost 
+# Contributor: Oleander Reis 
+# Contributor: Otto Sabart 
+
+pkgname=knot
+pkgver=3.0.0
+pkgrel=1
+pkgdesc="High-performance authoritative-only DNS server"
+arch=(x86_64)
+url="https://www.knot-dns.cz/;
+license=(GPL3)
+depends=(libedit gnutls liburcu lmdb
+ libidn2 systemd libcap-ng
+ fstrm protobuf-c libmaxminddb
+ libbpf libnghttp2)
+backup=('etc/knot/knot.conf')
+source=("https://secure.nic.cz/files/knot-dns/${pkgname}-${pkgver}.tar.xz"{,.asc})
+sha256sums=(f1c96aff6e873a2f9b1b8c2441d5a7801dd48d3abdb738a4d24b26c2a8fbe6c4 
SKIP)
+validpgpkeys=(742FA4E95829B6C5EAC6B85710BB7AF6FEBBD6AB) # Daniel Salzman 

+
+build() {
+cd ${pkgname}-${pkgver}
+
+./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--localstatedir=/var/lib \
+--libexecdir=/usr/lib/knot \
+--with-rundir=/run/knot \
+--with-storage=/var/lib/knot \
+--enable-recvmmsg \
+--enable-dnstap \
+--enable-systemd \
+--enable-reuseport \
+--disable-silent-rules
+
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+
+make DESTDIR="${pkgdir}" install
+
+# Don’t keep those empty dir, manage them with systemd-tmpfiles instead
+rmdir "${pkgdir}"/{var/{lib/{knot/,},},run/{knot/,}}
+
+rm "${pkgdir}"/etc/knot/example.com.zone
+mv "${pkgdir}"/etc/knot/{knot.sample.conf,knot.conf}
+
+install -Dm644 distro/common/knot.service -t 
"${pkgdir}"/usr/lib/systemd/system/
+install -Dm644 distro/arch/knot.tmpfiles.arch 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
+install -Dm644 distro/arch/knot.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
+}


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

2020-09-25 Thread Levente Polyak via arch-commits
Date: Friday, September 25, 2020 @ 22:23:46
  Author: anthraxx
Revision: 712327

archrelease: copy trunk to community-any

Added:
  gradle/repos/community-any/PKGBUILD
(from rev 712326, gradle/trunk/PKGBUILD)
  gradle/repos/community-any/gradle.sh
(from rev 712326, gradle/trunk/gradle.sh)
Deleted:
  gradle/repos/community-any/PKGBUILD
  gradle/repos/community-any/gradle.sh

---+
 PKGBUILD  |  158 ++--
 gradle.sh |4 -
 2 files changed, 81 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 22:23:41 UTC (rev 712326)
+++ PKGBUILD2020-09-25 22:23:46 UTC (rev 712327)
@@ -1,79 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Simon Legner 
-# Contributor: Chris Molozian (novabyte) 
-# Contributor: Sanjuro Makabe (itti) 
-
-pkgbase=gradle
-pkgname=('gradle' 'gradle-doc' 'gradle-src')
-pkgver=6.6.1
-pkgrel=1
-pkgdesc='Powerful build system for the JVM'
-url='https://gradle.org/'
-arch=('any')
-license=('Apache')
-depends=('java-environment' 'bash')
-makedepends=('git' 'gradle' 'asciidoc' 'xmlto' 'kotlin' 'groovy' 
'java-environment=11')
-source=(https://services.gradle.org/distributions/${pkgbase}-${pkgver}-src.zip
-${pkgbase}.sh)
-sha256sums=('ab1b3030758b8d235a3388e5de3a03d321034220fd22d20ad14aeee4cd221ff3'
-'6f3472486278252417af49196847ba465b56819d286658fcdf918687f89ee032')
-sha512sums=('790244cdc67ac9669e68c26f4e389367ef2a23519003bf235a87fb5a0d016c9c0064e4504cd77adf2ca57122547193c80ac987810802bccd096b10a51ca274ef'
-
'a50b6cf8281b56b80f55a20ac9316e1eed6887da1d191ad575dec140c9819711644d7077c4dc693b8cb0f1b08ceba0033ba88b5ad138d33ffb73b786c0d4bf81')
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  # requires java language level 6, which >=13 has dropped
-  export PATH="/usr/lib/jvm/java-11-openjdk/bin:${PATH}"
-  ./gradlew installAll \
--PfinalRelease=true \
--Pgradle_installPath="$(pwd)/dist"
-}
-
-package_gradle() {
-  cd ${pkgbase}-${pkgver}/dist
-
-  # install profile.d script
-  install -Dm 755 "${srcdir}/${pkgbase}.sh" 
"${pkgdir}/etc/profile.d/${pkgbase}.sh"
-
-  # create the necessary directory structure
-  install -d "${pkgdir}/usr/share/java/${pkgname}/bin"
-  install -d "${pkgdir}/usr/share/java/${pkgname}/lib/plugins"
-  install -d "${pkgdir}/usr/share/java/${pkgname}/init.d"
-  install -d "${pkgdir}/usr/bin"
-
-  # copy across jar files
-  install -Dm 644 lib/*.jar "${pkgdir}/usr/share/java/${pkgname}/lib"
-  install -Dm 644 lib/plugins/*.jar 
"${pkgdir}/usr/share/java/${pkgname}/lib/plugins"
-
-  # copy across supporting text documentation and scripts
-  install -m 644 NOTICE "${pkgdir}/usr/share/java/${pkgname}"
-  install -m 755 bin/gradle "${pkgdir}/usr/share/java/${pkgname}/bin"
-  install -m 644 init.d/*.* "${pkgdir}/usr/share/java/${pkgname}/init.d"
-
-  # link gradle script to /usr/bin
-  ln -s /usr/share/java/${pkgname}/bin/${pkgname} "${pkgdir}/usr/bin"
-}
-
-package_gradle-doc() {
-  pkgdesc='Powerful build system for the JVM (documentation)'
-  options=('!strip')
-  optdepends=('gradle')
-
-  cd ${pkgbase}-${pkgver}/dist
-
-  # copy across documentation
-  install -d "${pkgdir}/usr/share/java/gradle/docs"
-  cp -r docs/* "${pkgdir}/usr/share/java/gradle/docs"
-}
-
-package_gradle-src() {
-  pkgdesc='Powerful build system for the JVM (sources)'
-  options=('!strip')
-  optdepends=('gradle')
-
-  cd ${pkgbase}-${pkgver}/dist
-  install -d "${pkgdir}/usr/share/java/gradle/src"
-  cp -r src/* "${pkgdir}/usr/share/java/gradle/src"
-}
-
-# vim: ts=2 sw=2 et:

Copied: gradle/repos/community-any/PKGBUILD (from rev 712326, 
gradle/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 22:23:46 UTC (rev 712327)
@@ -0,0 +1,79 @@
+# Maintainer: Levente Polyak 
+# Contributor: Simon Legner 
+# Contributor: Chris Molozian (novabyte) 
+# Contributor: Sanjuro Makabe (itti) 
+
+pkgbase=gradle
+pkgname=('gradle' 'gradle-doc' 'gradle-src')
+pkgver=6.6.1
+pkgrel=2
+pkgdesc='Powerful build system for the JVM'
+url='https://gradle.org/'
+arch=('any')
+license=('Apache')
+depends=('java-environment' 'bash')
+makedepends=('git' 'gradle' 'asciidoc' 'xmlto' 'kotlin' 'groovy' 
'java-environment=11')
+source=(https://services.gradle.org/distributions/${pkgbase}-${pkgver}-src.zip
+${pkgbase}.sh)
+sha256sums=('ab1b3030758b8d235a3388e5de3a03d321034220fd22d20ad14aeee4cd221ff3'
+'6f3472486278252417af49196847ba465b56819d286658fcdf918687f89ee032')
+sha512sums=('790244cdc67ac9669e68c26f4e389367ef2a23519003bf235a87fb5a0d016c9c0064e4504cd77adf2ca57122547193c80ac987810802bccd096b10a51ca274ef'
+
'a50b6cf8281b56b80f55a20ac9316e1eed6887da1d191ad575dec140c9819711644d7077c4dc693b8cb0f1b08ceba0033ba88b5ad138d33ffb73b786c0d4bf81')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  # requires java 

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

2020-09-25 Thread Levente Polyak via arch-commits
Date: Friday, September 25, 2020 @ 22:23:57
  Author: anthraxx
Revision: 712328

upgpkg: signify 30-1

Modified:
  signify/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 22:23:46 UTC (rev 712327)
+++ PKGBUILD2020-09-25 22:23:57 UTC (rev 712328)
@@ -2,7 +2,7 @@
 # Contributor: Adrian Perez de Castro 
 
 pkgname=signify
-pkgver=29
+pkgver=30
 pkgrel=1
 pkgdesc='OpenBSD tool to signs and verify signatures on files'
 url='https://github.com/aperezdc/signify'
@@ -9,10 +9,14 @@
 arch=('x86_64')
 license=('BSD')
 depends=('glibc' 'libbsd>=0.8')
-source=(https://github.com/aperezdc/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+source=(${url}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz{,.asc}
 LICENSE)
-sha512sums=('a0fc07c176f3e0e6ea32d059fb6cc27849159dcc3975c47b2b0a54f7047cb1f1dc0e032f2c55eaf84096b0a84288193afec0777e669851a7c7f97a880fb0f0ab'
+sha512sums=('e760fd89de8a3fea76bd0aa52c683e1d331968620190f4ac487bbca30da00f8d6e2636bbe3c59b0e6fa925b1bbcf81516f50c0bc37707ae7e7465b61fee5c372'
+'SKIP'
 
'a587ef19d5481a81945475a2c1dde0fbf8022e0a28db06389c73df1b7118fb94399f5e4523b91df3d846707dca482ae6e58902b6620bf7b2019a8e15efec')
+validpgpkeys=(
+  '5AA3BC334FD7E3369E7C77B291C559DBE4C9123B' # Adrián Pérez de Castro 

+)
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2020-09-25 Thread Levente Polyak via arch-commits
Date: Friday, September 25, 2020 @ 22:24:01
  Author: anthraxx
Revision: 712329

archrelease: copy trunk to community-x86_64

Added:
  signify/repos/community-x86_64/LICENSE
(from rev 712328, signify/trunk/LICENSE)
  signify/repos/community-x86_64/PKGBUILD
(from rev 712328, signify/trunk/PKGBUILD)
Deleted:
  signify/repos/community-x86_64/LICENSE
  signify/repos/community-x86_64/PKGBUILD

--+
 LICENSE  |   22 +++---
 PKGBUILD |   90 +++--
 2 files changed, 58 insertions(+), 54 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2020-09-25 22:23:57 UTC (rev 712328)
+++ LICENSE 2020-09-25 22:24:01 UTC (rev 712329)
@@ -1,11 +0,0 @@
-Permission to use, copy, modify, and distribute this software for any
-purpose with or without fee is hereby granted, provided that the above
-copyright notice and this permission notice appear in all copies.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Copied: signify/repos/community-x86_64/LICENSE (from rev 712328, 
signify/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2020-09-25 22:24:01 UTC (rev 712329)
@@ -0,0 +1,11 @@
+Permission to use, copy, modify, and distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 22:23:57 UTC (rev 712328)
+++ PKGBUILD2020-09-25 22:24:01 UTC (rev 712329)
@@ -1,43 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Adrian Perez de Castro 
-
-pkgname=signify
-pkgver=29
-pkgrel=1
-pkgdesc='OpenBSD tool to signs and verify signatures on files'
-url='https://github.com/aperezdc/signify'
-arch=('x86_64')
-license=('BSD')
-depends=('glibc' 'libbsd>=0.8')
-source=(https://github.com/aperezdc/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
-LICENSE)
-sha512sums=('a0fc07c176f3e0e6ea32d059fb6cc27849159dcc3975c47b2b0a54f7047cb1f1dc0e032f2c55eaf84096b0a84288193afec0777e669851a7c7f97a880fb0f0ab'
-
'a587ef19d5481a81945475a2c1dde0fbf8022e0a28db06389c73df1b7118fb94399f5e4523b91df3d846707dca482ae6e58902b6620bf7b2019a8e15efec')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # using O_NOFOLLOW doesn't lock anything down here, swapping files
-  # without symlinks is still equally open to TOCTOU and it doesn't even
-  # matter here. lets prefere supporting symlinked target files.
-  sed -E 's/\| ?O_NOFOLLOW//g' -i ./*.c
-}
-
-build () {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr \
-LTO=1 \
-EXTRA_CFLAGS="${CFLAGS} ${CPPFLAGS}" \
-EXTRA_LDFLAGS="${LDFLAGS}" \
-GIT_TAG=''
-}
-
-package () {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr \
-DESTDIR="${pkgdir}" \
-GIT_TAG='' install
-  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 "${srcdir}/LICENSE" -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: signify/repos/community-x86_64/PKGBUILD (from rev 712328, 
signify/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 22:24:01 UTC (rev 712329)
@@ -0,0 +1,47 @@
+# Maintainer: Levente Polyak 
+# Contributor: Adrian Perez de Castro 
+
+pkgname=signify
+pkgver=30
+pkgrel=1
+pkgdesc='OpenBSD tool to signs and verify signatures on files'
+url='https://github.com/aperezdc/signify'
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'libbsd>=0.8')
+source=(${url}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz{,.asc}
+LICENSE)
+sha512sums=('e760fd89de8a3fea76bd0aa52c683e1d331968620190f4ac487bbca30da00f8d6e2636bbe3c59b0e6fa925b1bbcf81516f50c0bc37707ae7e7465b61fee5c372'
+'SKIP'
+

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

2020-09-25 Thread Levente Polyak via arch-commits
Date: Friday, September 25, 2020 @ 22:23:41
  Author: anthraxx
Revision: 712326

upgpkg: gradle 6.6.1-2: move optdepends to gradle

Modified:
  gradle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 21:41:24 UTC (rev 712325)
+++ PKGBUILD2020-09-25 22:23:41 UTC (rev 712326)
@@ -6,7 +6,7 @@
 pkgbase=gradle
 pkgname=('gradle' 'gradle-doc' 'gradle-src')
 pkgver=6.6.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Powerful build system for the JVM'
 url='https://gradle.org/'
 arch=('any')
@@ -31,6 +31,10 @@
 
 package_gradle() {
   cd ${pkgbase}-${pkgver}/dist
+  optdepends=(
+'gradle-doc: gradle documentation'
+'gradle-src: gradle sources'
+  )
 
   # install profile.d script
   install -Dm 755 "${srcdir}/${pkgbase}.sh" 
"${pkgdir}/etc/profile.d/${pkgbase}.sh"
@@ -55,21 +59,17 @@
 }
 
 package_gradle-doc() {
-  pkgdesc='Powerful build system for the JVM (documentation)'
+  pkgdesc+=' (documentation)'
   options=('!strip')
-  optdepends=('gradle')
 
   cd ${pkgbase}-${pkgver}/dist
-
-  # copy across documentation
   install -d "${pkgdir}/usr/share/java/gradle/docs"
   cp -r docs/* "${pkgdir}/usr/share/java/gradle/docs"
 }
 
 package_gradle-src() {
-  pkgdesc='Powerful build system for the JVM (sources)'
+  pkgdesc+=' (sources)'
   options=('!strip')
-  optdepends=('gradle')
 
   cd ${pkgbase}-${pkgver}/dist
   install -d "${pkgdir}/usr/share/java/gradle/src"


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

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Friday, September 25, 2020 @ 21:41:24
  Author: archange
Revision: 712325

archrelease: copy trunk to community-x86_64

Added:
  embree/repos/community-x86_64/PKGBUILD
(from rev 712324, embree/trunk/PKGBUILD)
Deleted:
  embree/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 21:40:59 UTC (rev 712324)
+++ PKGBUILD2020-09-25 21:41:24 UTC (rev 712325)
@@ -1,29 +0,0 @@
-# Maintainer: Lukas Jirkovsky 
-# Maintainer: Bruno Pagani 
-
-pkgname=embree
-pkgver=3.11.0
-pkgrel=1
-pkgdesc="Collection of high-performance ray tracing kernels"
-arch=(x86_64)
-url="https://embree.github.io/;
-license=(Apache)
-depends=(intel-tbb)
-makedepends=(cmake ispc freeglut libxmu openexr)
-source=(https://github.com/embree/embree/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('2ccc365c00af4389aecc928135270aba7488e761c09d7ebbf1bf3e62731b147d')
-
-build() {
-cmake -B build -S ${pkgname}-${pkgver} \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_INSTALL_LIBDIR=lib \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DEMBREE_TUTORIALS=OFF \
-  -DEMBREE_MAX_ISA="AVX512SKX"
-# Embree detects actual ISA at runtime
-make -C build
-}
-
-package() {
-make -C build DESTDIR="${pkgdir}" install
-}

Copied: embree/repos/community-x86_64/PKGBUILD (from rev 712324, 
embree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 21:41:24 UTC (rev 712325)
@@ -0,0 +1,29 @@
+# Maintainer: Lukas Jirkovsky 
+# Maintainer: Bruno Pagani 
+
+pkgname=embree
+pkgver=3.12.0
+pkgrel=1
+pkgdesc="Collection of high-performance ray tracing kernels"
+arch=(x86_64)
+url="https://embree.github.io/;
+license=(Apache)
+depends=(intel-tbb)
+makedepends=(cmake ispc freeglut libxmu openexr)
+source=(https://github.com/embree/embree/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('f3646977c45a9ece1fb0cfe107567adcc645b1c77c27b36572d0aa98b888190c')
+
+build() {
+cmake -B build -S ${pkgname}-${pkgver} \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_INSTALL_LIBDIR=lib \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DEMBREE_TUTORIALS=OFF \
+  -DEMBREE_MAX_ISA="AVX512SKX"
+# Embree detects actual ISA at runtime
+make -C build
+}
+
+package() {
+make -C build DESTDIR="${pkgdir}" install
+}


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

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Friday, September 25, 2020 @ 21:40:59
  Author: archange
Revision: 712324

upgpkg: embree 3.12.0-1

Modified:
  embree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 21:40:10 UTC (rev 712323)
+++ PKGBUILD2020-09-25 21:40:59 UTC (rev 712324)
@@ -2,7 +2,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=embree
-pkgver=3.11.0
+pkgver=3.12.0
 pkgrel=1
 pkgdesc="Collection of high-performance ray tracing kernels"
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(intel-tbb)
 makedepends=(cmake ispc freeglut libxmu openexr)
 
source=(https://github.com/embree/embree/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('2ccc365c00af4389aecc928135270aba7488e761c09d7ebbf1bf3e62731b147d')
+sha256sums=('f3646977c45a9ece1fb0cfe107567adcc645b1c77c27b36572d0aa98b888190c')
 
 build() {
 cmake -B build -S ${pkgname}-${pkgver} \


[arch-commits] Commit in perl-file-rsyncp/trunk (PKGBUILD)

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 21:39:54
  Author: felixonmars
Revision: 712322

upgpkg: perl-file-rsyncp 0.76-1

Modified:
  perl-file-rsyncp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 21:34:15 UTC (rev 712321)
+++ PKGBUILD2020-09-25 21:39:54 UTC (rev 712322)
@@ -2,8 +2,8 @@
 # Contributor: Sébastien Luttringer
 
 pkgname=perl-file-rsyncp
-pkgver=0.74
-pkgrel=10
+pkgver=0.76
+pkgrel=1
 pkgdesc='Perl interface to rsync file list encoding and decoding'
 arch=('x86_64')
 license=('GPL' 'PerlArtistic')
@@ -11,7 +11,7 @@
 options=('!emptydirs' '!makeflags')
 url='https://search.cpan.org/dist/File-RsyncP'
 
source=("https://search.cpan.org/CPAN/authors/id/C/CB/CBARRATT/File-RsyncP-$pkgver.tar.gz;)
-md5sums=('17b73204db0389d882bf5563a41e4a78')
+sha512sums=('b81d9ce63181605939e8aff87c9e56ab276899f019f44eb3f149e7ee0d44a94fcbee771381ebe6ca8281c2de0d57d9cbdbcb972ccb7406a0aefd920040603bb3')
 
 build() {
   cd File-RsyncP-$pkgver


[arch-commits] Commit in perl-file-rsyncp/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 21:40:10
  Author: felixonmars
Revision: 712323

archrelease: copy trunk to community-x86_64

Added:
  perl-file-rsyncp/repos/community-x86_64/PKGBUILD
(from rev 712322, perl-file-rsyncp/trunk/PKGBUILD)
Deleted:
  perl-file-rsyncp/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 21:39:54 UTC (rev 712322)
+++ PKGBUILD2020-09-25 21:40:10 UTC (rev 712323)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Sébastien Luttringer
-
-pkgname=perl-file-rsyncp
-pkgver=0.74
-pkgrel=10
-pkgdesc='Perl interface to rsync file list encoding and decoding'
-arch=('x86_64')
-license=('GPL' 'PerlArtistic')
-depends=('perl')
-options=('!emptydirs' '!makeflags')
-url='https://search.cpan.org/dist/File-RsyncP'
-source=("https://search.cpan.org/CPAN/authors/id/C/CB/CBARRATT/File-RsyncP-$pkgver.tar.gz;)
-md5sums=('17b73204db0389d882bf5563a41e4a78')
-
-build() {
-  cd File-RsyncP-$pkgver
-  USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd File-RsyncP-$pkgver
-  make test
-}
-
-package() {
-  cd File-RsyncP-$pkgver
-  make install DESTDIR="$pkgdir/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: perl-file-rsyncp/repos/community-x86_64/PKGBUILD (from rev 712322, 
perl-file-rsyncp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 21:40:10 UTC (rev 712323)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+# Contributor: Sébastien Luttringer
+
+pkgname=perl-file-rsyncp
+pkgver=0.76
+pkgrel=1
+pkgdesc='Perl interface to rsync file list encoding and decoding'
+arch=('x86_64')
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs' '!makeflags')
+url='https://search.cpan.org/dist/File-RsyncP'
+source=("https://search.cpan.org/CPAN/authors/id/C/CB/CBARRATT/File-RsyncP-$pkgver.tar.gz;)
+sha512sums=('b81d9ce63181605939e8aff87c9e56ab276899f019f44eb3f149e7ee0d44a94fcbee771381ebe6ca8281c2de0d57d9cbdbcb972ccb7406a0aefd920040603bb3')
+
+build() {
+  cd File-RsyncP-$pkgver
+  USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd File-RsyncP-$pkgver
+  make test
+}
+
+package() {
+  cd File-RsyncP-$pkgver
+  make install DESTDIR="$pkgdir/"
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-09-25 Thread Jan Steffens via arch-commits
Date: Friday, September 25, 2020 @ 21:35:27
  Author: heftig
Revision: 396566

archrelease: copy trunk to extra-x86_64

Added:
  vte3/repos/extra-x86_64/PKGBUILD
(from rev 396564, vte3/trunk/PKGBUILD)
Deleted:
  vte3/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  126 ++---
 1 file changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 21:35:26 UTC (rev 396565)
+++ PKGBUILD2020-09-25 21:35:27 UTC (rev 396566)
@@ -1,63 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgbase=vte3
-pkgname=(vte3 vte-common)
-pkgver=0.60.3
-pkgrel=1
-pkgdesc="Virtual Terminal Emulator widget"
-url="https://wiki.gnome.org/Apps/Terminal/VTE;
-arch=(x86_64)
-license=(LGPL)
-depends=(gtk3 pcre2 gnutls fribidi systemd-libs)
-makedepends=(gobject-introspection vala git gtk-doc gperf meson)
-_commit=14e68fbe47de262e8b25d8bbbf6eef6fd7c28cc2  # tags/0.60.3^0
-source=("git+https://gitlab.gnome.org/GNOME/vte.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd vte
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd vte
-}
-
-build() {
-  arch-meson vte build -D docs=true -D b_lto=false
-  ninja -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-_pick() {
-  local p="$1" f d; shift
-  for f; do
-d="$srcdir/$p/${f#$pkgdir/}"
-mkdir -p "$(dirname "$d")"
-mv "$f" "$d"
-rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
-  done
-}
-
-package_vte3() {
-  depends+=(vte-common)
-  provides+=(libvte-2.91.so)
-
-  DESTDIR="$pkgdir" meson install -C build
-
-### Split vte-common
-  _pick vte-common "$pkgdir"/etc/profile.d
-  _pick vte-common "$pkgdir"/usr/lib/{systemd,vte-urlencode-cwd}
-}
-
-package_vte-common() {
-  pkgdesc="Files shared by VTE libraries"
-  depends=(sh)
-  mv vte-common/* "$pkgdir"
-}
-
-# vim:set sw=2 et:

Copied: vte3/repos/extra-x86_64/PKGBUILD (from rev 396564, vte3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 21:35:27 UTC (rev 396566)
@@ -0,0 +1,63 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgbase=vte3
+pkgname=(vte3 vte-common)
+pkgver=0.62.0
+pkgrel=1
+pkgdesc="Virtual Terminal Emulator widget"
+url="https://wiki.gnome.org/Apps/Terminal/VTE;
+arch=(x86_64)
+license=(LGPL)
+depends=(gtk3 pcre2 gnutls fribidi systemd-libs)
+makedepends=(gobject-introspection vala git gtk-doc gperf meson)
+_commit=a6bd0926440d4bd854cb04f2daa35099b657a148  # tags/0.62.0^0
+source=("git+https://gitlab.gnome.org/GNOME/vte.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd vte
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd vte
+}
+
+build() {
+  arch-meson vte build -D docs=true -D b_lto=false
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
+
+package_vte3() {
+  depends+=(vte-common)
+  provides+=(libvte-2.91.so)
+
+  DESTDIR="$pkgdir" meson install -C build
+
+### Split vte-common
+  _pick vte-common "$pkgdir"/etc/profile.d
+  _pick vte-common "$pkgdir"/usr/lib/{systemd,vte-urlencode-cwd}
+}
+
+package_vte-common() {
+  pkgdesc="Files shared by VTE libraries"
+  depends=(sh)
+  mv vte-common/* "$pkgdir"
+}
+
+# vim:set sw=2 et:


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

2020-09-25 Thread Jan Steffens via arch-commits
Date: Friday, September 25, 2020 @ 21:35:27
  Author: heftig
Revision: 396567

archrelease: copy trunk to extra-x86_64

Added:
  webkit2gtk/repos/extra-x86_64/PKGBUILD
(from rev 396564, webkit2gtk/trunk/PKGBUILD)
Deleted:
  webkit2gtk/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 21:35:27 UTC (rev 396566)
+++ PKGBUILD2020-09-25 21:35:27 UTC (rev 396567)
@@ -1,65 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Eric Bélanger 
-
-pkgname=webkit2gtk
-pkgver=2.28.4
-pkgrel=1
-pkgdesc="GTK+ Web content engine library"
-arch=(x86_64)
-url="https://webkitgtk.org/;
-license=(custom)
-depends=(libxt libxslt enchant gst-plugins-base-libs libsecret libwebp 
openjpeg2
- harfbuzz-icu gtk3 libnotify hyphen woff2 libwpe wpebackend-fdo
- bubblewrap xdg-dbus-proxy)
-makedepends=(gperf gobject-introspection ruby gtk-doc cmake python geoclue
- gst-plugins-bad ninja)
-optdepends=('geoclue: Geolocation support'
-'gst-plugins-good: media decoding'
-'gst-plugins-bad: media decoding'
-'gst-libav: nonfree media decoding')
-source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz{,.asc})
-sha256sums=('821952e8c9303ed752f1fb1d4283f612c25249d00d705d2b79c2db1bc49c9464'
-'SKIP')
-validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3'
-  '5AA3BC334FD7E3369E7C77B291C559DBE4C9123B')
-
-prepare() {
-  cd webkitgtk-$pkgver
-}
-
-build() {
-  CFLAGS+=" $CPPFLAGS"
-  CXXFLAGS+=" $CPPFLAGS"
-  cmake -Hwebkitgtk-$pkgver -Bbuild -G Ninja \
--DPORT=GTK \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_SKIP_RPATH=ON \
--DENABLE_GTKDOC=ON \
--DENABLE_MINIBROWSER=ON \
--DLIBEXEC_INSTALL_DIR=/usr/lib \
--DLIB_INSTALL_DIR=/usr/lib
-  cmake --build build
-}
-
-check() {
-  : cmake --build build --target tests
-}
-
-package() {
-  depends+=(libwpe-1.0.so libWPEBackend-fdo-1.0.so)
-  provides+=(libjavascriptcoregtk-4.0.so libwebkit2gtk-4.0.so)
-
-  DESTDIR="$pkgdir" cmake --build build --target install
-
-  cd webkitgtk-$pkgver
-  find Source -name 'COPYING*' -or -name 'LICENSE*' -print0 | sort -z |
-while IFS= read -d $'\0' -r _f; do
-  echo "### $_f ###"
-  cat "$_f"
-  echo
-done |
-install -Dm644 /dev/stdin "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set sw=2 et:

Copied: webkit2gtk/repos/extra-x86_64/PKGBUILD (from rev 396564, 
webkit2gtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 21:35:27 UTC (rev 396567)
@@ -0,0 +1,65 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Eric Bélanger 
+
+pkgname=webkit2gtk
+pkgver=2.30.1
+pkgrel=1
+pkgdesc="GTK+ Web content engine library"
+arch=(x86_64)
+url="https://webkitgtk.org/;
+license=(custom)
+depends=(libxt libxslt enchant gst-plugins-base-libs libsecret libwebp 
openjpeg2
+ harfbuzz-icu gtk3 libnotify hyphen woff2 libwpe wpebackend-fdo
+ bubblewrap xdg-dbus-proxy)
+makedepends=(gperf gobject-introspection ruby gtk-doc cmake python geoclue
+ gst-plugins-bad ninja)
+optdepends=('geoclue: Geolocation support'
+'gst-plugins-good: media decoding'
+'gst-plugins-bad: media decoding'
+'gst-libav: nonfree media decoding')
+source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz{,.asc})
+sha256sums=('17c59dfdadb7377192e9b59bc56c8a029c9fad4f38ed732b652bf33d0bd5d6b1'
+'SKIP')
+validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3'
+  '5AA3BC334FD7E3369E7C77B291C559DBE4C9123B')
+
+prepare() {
+  cd webkitgtk-$pkgver
+}
+
+build() {
+  CFLAGS+=" $CPPFLAGS"
+  CXXFLAGS+=" $CPPFLAGS"
+  cmake -S webkitgtk-$pkgver -B build -G Ninja \
+-DPORT=GTK \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_RPATH=ON \
+-DENABLE_GTKDOC=ON \
+-DENABLE_MINIBROWSER=ON \
+-DLIBEXEC_INSTALL_DIR=/usr/lib \
+-DLIB_INSTALL_DIR=/usr/lib
+  cmake --build build
+}
+
+check() {
+  : cmake --build build --target tests
+}
+
+package() {
+  depends+=(libwpe-1.0.so libWPEBackend-fdo-1.0.so)
+  provides+=(libjavascriptcoregtk-4.0.so libwebkit2gtk-4.0.so)
+
+  DESTDIR="$pkgdir" cmake --install build
+
+  cd webkitgtk-$pkgver
+  find Source -name 'COPYING*' -or -name 'LICENSE*' -print0 | sort -z |
+while IFS= read -d $'\0' -r _f; do
+  echo "### $_f ###"
+  cat "$_f"
+  echo
+done |
+install -Dm644 /dev/stdin "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set sw=2 et:


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 21:34:15
  Author: felixonmars
Revision: 712321

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 21:33:59 UTC (rev 712320)
+++ PKGBUILD2020-09-25 21:34:15 UTC (rev 712321)
@@ -1,48 +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 uusi 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() {
-  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:

Copied: taskell/repos/community-x86_64/PKGBUILD (from rev 712320, 
taskell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 21:34:15 UTC (rev 712321)
@@ -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 uusi 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=('5ef1504f908876aa17dfd817115bc0d1f8056cba4b759ee70b3d869bd778db7ca0123585f107c906b898d5c614091cb05955cb387a03f2abfbe842622e2e4c8e')
+
+prepare() {
+  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 mm-common/repos/extra-any (PKGBUILD PKGBUILD)

2020-09-25 Thread Jan Steffens via arch-commits
Date: Friday, September 25, 2020 @ 21:35:26
  Author: heftig
Revision: 396565

archrelease: copy trunk to extra-any

Added:
  mm-common/repos/extra-any/PKGBUILD
(from rev 396564, mm-common/trunk/PKGBUILD)
Deleted:
  mm-common/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 19:24:46 UTC (rev 396564)
+++ PKGBUILD2020-09-25 21:35:26 UTC (rev 396565)
@@ -1,41 +0,0 @@
-# Contributor: Ionut Biru 
-
-pkgname=mm-common
-pkgver=1.0.1
-pkgrel=1
-pkgdesc="Common build files of the C++ bindings"
-url="https://www.gtkmm.org/;
-arch=(any)
-depends=(graphviz doxygen gtk-doc libsigc++-docs perl-xml-parser)
-makedepends=(libsigc++ git meson)
-license=(GPL2)
-_commit=0f7f6e48fd7a07f21c6f4edc61f254546f9d484a  # tags/1.0.1^0
-source=("git+https://gitlab.gnome.org/GNOME/mm-common.git#commit=$_commit;
-https://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/libstdc++.tag)
-sha256sums=('SKIP'
-'f6c8c74e8293aefaefb4d25fd154d5f537b3bc80e7ceecaa02c5a01836fc09e6')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  cp ../libstdc++.tag doctags
-}
-
-build() {
-  arch-meson $pkgname build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mm-common/repos/extra-any/PKGBUILD (from rev 396564, 
mm-common/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 21:35:26 UTC (rev 396565)
@@ -0,0 +1,41 @@
+# Contributor: Ionut Biru 
+
+pkgname=mm-common
+pkgver=1.0.2
+pkgrel=1
+pkgdesc="Common build files of the C++ bindings"
+url="https://www.gtkmm.org/;
+arch=(any)
+depends=(graphviz doxygen gtk-doc libsigc++-docs perl-xml-parser)
+makedepends=(libsigc++ git meson)
+license=(GPL2)
+_commit=85381b86dcc2490d2b080c178477df9eb65103ca  # tags/1.0.2^0
+source=("git+https://gitlab.gnome.org/GNOME/mm-common.git#commit=$_commit;
+https://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/libstdc++.tag)
+sha256sums=('SKIP'
+'f6c8c74e8293aefaefb4d25fd154d5f537b3bc80e7ceecaa02c5a01836fc09e6')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  cp ../libstdc++.tag doctags
+}
+
+build() {
+  arch-meson $pkgname build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 21:33:59
  Author: felixonmars
Revision: 712320

upgpkg: taskell 1.10.1-1

Modified:
  taskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 21:31:44 UTC (rev 712319)
+++ PKGBUILD2020-09-25 21:33:59 UTC (rev 712320)
@@ -1,8 +1,8 @@
 # Maintainer: Jelle van der Waa https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
-sha512sums=('08806885b3ad70606423e3189fa4f3c2f3586db7b0be496aeef796ba5f40eeb1e2eb2e0a175b3e1bdd98d33bad34d61621db2dabe8485bd4a2c54f13c9f441b0')
+sha512sums=('5ef1504f908876aa17dfd817115bc0d1f8056cba4b759ee70b3d869bd778db7ca0123585f107c906b898d5c614091cb05955cb387a03f2abfbe842622e2e4c8e')
 
 prepare() {
   uusi $pkgname-$pkgver/$pkgname.cabal


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 21:31:44
  Author: felixonmars
Revision: 712319

archrelease: copy trunk to community-x86_64

Added:
  deepin-screen-recorder/repos/community-x86_64/PKGBUILD
(from rev 712318, deepin-screen-recorder/trunk/PKGBUILD)
  
deepin-screen-recorder/repos/community-x86_64/deepin-screen-recorder-qt5.15.patch
(from rev 712318, 
deepin-screen-recorder/trunk/deepin-screen-recorder-qt5.15.patch)
Deleted:
  deepin-screen-recorder/repos/community-x86_64/PKGBUILD
  
deepin-screen-recorder/repos/community-x86_64/deepin-screen-recorder-qt5.15.patch

-+
 PKGBUILD|   72 +-
 deepin-screen-recorder-qt5.15.patch |   72 +-
 2 files changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 21:31:25 UTC (rev 712318)
+++ PKGBUILD2020-09-25 21:31:44 UTC (rev 712319)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-screen-recorder
-pkgver=5.8.0.13
-pkgrel=1
-pkgdesc='Deepin Screen Recorder'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-screen-recorder;
-license=('GPL3')
-depends=('byzanz' 'deepin-qt5integration' 'deepin-turbo' 'ffmpeg' 'ki18n' 
'kwindowsystem')
-makedepends=('qt5-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screen-recorder/archive/$pkgver.tar.gz;
- deepin-screen-recorder-qt5.15.patch)
-sha512sums=('9a712e4162e88065a9d05be5f2cf4eef9fa7042c374f3a64d3ca2a674ad8bb76861bbddfe7ec2d15a7c83c3158951c748e1b3461af3d32410f6211db2871b1e7'
-
'aaef789b5b1e74c9b2972bf94134b639393247ea4c6459e90d0b875d692b6adca71cafc27f1cc402fc81126eb47c52ae816867d7a3d2dfa775594dd839840247')
-
-prepare() {
-  cd deepin-screen-recorder-$pkgver
-  sed -i '/include /a #undef min' src/event_monitor.cpp
-
-  patch -p1 -i ../deepin-screen-recorder-qt5.15.patch # Fix build with Qt 5.15
-}
-
-build(){
-  cd deepin-screen-recorder-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd deepin-screen-recorder-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-screen-recorder/repos/community-x86_64/PKGBUILD (from rev 
712318, deepin-screen-recorder/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 21:31:44 UTC (rev 712319)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-screen-recorder
+pkgver=5.8.0.14
+pkgrel=1
+pkgdesc='Deepin Screen Recorder'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-screen-recorder;
+license=('GPL3')
+depends=('byzanz' 'deepin-qt5integration' 'deepin-turbo' 'ffmpeg' 'ki18n' 
'kwindowsystem')
+makedepends=('qt5-tools')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screen-recorder/archive/$pkgver.tar.gz;
+ deepin-screen-recorder-qt5.15.patch)
+sha512sums=('88a8c9c151745601cbde1a72a2ac909d037addf8b46af50ab829416e4caef95553d1e283022a9fc1a5562e5fcc6ebc52dc84d464093a693522900dee50c2ece7'
+
'aaef789b5b1e74c9b2972bf94134b639393247ea4c6459e90d0b875d692b6adca71cafc27f1cc402fc81126eb47c52ae816867d7a3d2dfa775594dd839840247')
+
+prepare() {
+  cd deepin-screen-recorder-$pkgver
+  sed -i '/include /a #undef min' src/event_monitor.cpp
+
+  patch -p1 -i ../deepin-screen-recorder-qt5.15.patch # Fix build with Qt 5.15
+}
+
+build(){
+  cd deepin-screen-recorder-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd deepin-screen-recorder-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}

Deleted: deepin-screen-recorder-qt5.15.patch
===
--- deepin-screen-recorder-qt5.15.patch 2020-09-25 21:31:25 UTC (rev 712318)
+++ deepin-screen-recorder-qt5.15.patch 2020-09-25 21:31:44 UTC (rev 712319)
@@ -1,36 +0,0 @@
-diff --git a/src/utils.cpp b/src/utils.cpp
-index 96f2226..7076d09 100755
 a/src/utils.cpp
-+++ b/src/utils.cpp
-@@ -27,6 +27,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include 
-diff --git a/src/widgets/shapeswidget.cpp b/src/widgets/shapeswidget.cpp
-index 127620e..38638df 100755
 a/src/widgets/shapeswidget.cpp
-+++ b/src/widgets/shapeswidget.cpp
-@@ -20,6 +20,7 @@
- #include "shapeswidget.h"
- #include 
- #include 
-+#include 
- #include 
- 
- #include "../utils/calculaterect.h"
-diff --git a/src/widgets/tooltips.cpp b/src/widgets/tooltips.cpp
-index afd844a..0f377bb 100644
 a/src/widgets/tooltips.cpp
-+++ b/src/widgets/tooltips.cpp
-@@ -33,6 +33,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include 

Copied: 

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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 21:31:25
  Author: felixonmars
Revision: 712318

upgpkg: deepin-screen-recorder 5.8.0.14-1

Modified:
  deepin-screen-recorder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 21:14:46 UTC (rev 712317)
+++ PKGBUILD2020-09-25 21:31:25 UTC (rev 712318)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-screen-recorder
-pkgver=5.8.0.13
+pkgver=5.8.0.14
 pkgrel=1
 pkgdesc='Deepin Screen Recorder'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 groups=('deepin-extra')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screen-recorder/archive/$pkgver.tar.gz;
  deepin-screen-recorder-qt5.15.patch)
-sha512sums=('9a712e4162e88065a9d05be5f2cf4eef9fa7042c374f3a64d3ca2a674ad8bb76861bbddfe7ec2d15a7c83c3158951c748e1b3461af3d32410f6211db2871b1e7'
+sha512sums=('88a8c9c151745601cbde1a72a2ac909d037addf8b46af50ab829416e4caef95553d1e283022a9fc1a5562e5fcc6ebc52dc84d464093a693522900dee50c2ece7'
 
'aaef789b5b1e74c9b2972bf94134b639393247ea4c6459e90d0b875d692b6adca71cafc27f1cc402fc81126eb47c52ae816867d7a3d2dfa775594dd839840247')
 
 prepare() {


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

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Friday, September 25, 2020 @ 21:14:46
  Author: archange
Revision: 712317

archrelease: copy trunk to community-x86_64

Added:
  cozy-stack/repos/community-x86_64/PKGBUILD
(from rev 712316, cozy-stack/trunk/PKGBUILD)
  cozy-stack/repos/community-x86_64/cozy-stack.service
(from rev 712316, cozy-stack/trunk/cozy-stack.service)
  cozy-stack/repos/community-x86_64/cozy-stack.sysusers
(from rev 712316, cozy-stack/trunk/cozy-stack.sysusers)
  cozy-stack/repos/community-x86_64/cozy-stack.tmpfiles
(from rev 712316, cozy-stack/trunk/cozy-stack.tmpfiles)
  cozy-stack/repos/community-x86_64/cozy.yml
(from rev 712316, cozy-stack/trunk/cozy.yml)
Deleted:
  cozy-stack/repos/community-x86_64/PKGBUILD
  cozy-stack/repos/community-x86_64/cozy-stack.service
  cozy-stack/repos/community-x86_64/cozy-stack.sysusers
  cozy-stack/repos/community-x86_64/cozy-stack.tmpfiles
  cozy-stack/repos/community-x86_64/cozy.yml

-+
 PKGBUILD|  118 +-
 cozy-stack.service  |   74 +++
 cozy-stack.sysusers |2 
 cozy-stack.tmpfiles |4 -
 cozy.yml|   66 +--
 5 files changed, 132 insertions(+), 132 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 21:14:04 UTC (rev 712316)
+++ PKGBUILD2020-09-25 21:14:46 UTC (rev 712317)
@@ -1,59 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=cozy-stack
-pkgver=1.4.16
-pkgrel=1
-epoch=1
-pkgdesc="Digital home: brings all your web services in the same private space 
– Stack component"
-arch=(x86_64)
-url="https://cozy.io;
-license=(AGPL3)
-backup=(etc/cozy/cozy.yml)
-depends=(couchdb imagemagick git)
-makedepends=(go)
-#optdepends=('cozy-coclyco: X.509 certificates management for instances'
-optdepends=('nodejs: required for konnectors'
-'nsjail: run konnectors isolated'
-'smtp-forwarder: to allow sending mail to users')
-source=(https://github.com/cozy/cozy-stack/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
-cozy.yml
-${pkgname}.service
-${pkgname}.sysusers
-${pkgname}.tmpfiles)
-sha256sums=('3b8248e2517d056f545096d32673754d6e6cbdee60180909dca25b6722e9e8f6'
-'a6ae871ec726f81d091918dffae4025b993656551185662242dcc2f7de4516c3'
-'6cb30c0a6d45b30827463b26c43fb2e1df9402392e6f23da1622e044ab84b580'
-'a6bea52350e85163c3141509a52903223fa0f6e7390b1b1f9336c326a8fff984'
-'04043ed0b2bf1c811417eec3b89a049f5353ad16f032497ff5c9a610eafa879d')
-
-prepare() {
-cd ${pkgname}-${pkgver}
-go mod vendor
-}
-
-build() {
-cd ${pkgname}-${pkgver}
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-go build -v \
--ldflags "-linkmode external
-  -X github.com/cozy/cozy-stack/pkg/config.Version=${pkgver} \
-  -X github.com/cozy/cozy-stack/pkg/config.BuildTime=$(date 
--utc --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +"%Y-%m-%dT%H:%M:%SZ") \
-  -X 
github.com/cozy/cozy-stack/pkg/config.BuildMode=production" \
--o ${pkgname}
-}
-
-package() {
-install -Dm644 cozy.yml -t "${pkgdir}"/etc/cozy/
-install -Dm644 ${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
-install -Dm644 ${pkgname}.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
-install -Dm644 ${pkgname}.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
-cd ${pkgname}-${pkgver}
-install -Dm755 ${pkgname} -t "${pkgdir}"/usr/bin/
-install -Dm644 cozy.example.yaml -t "${pkgdir}"/usr/share/cozy/
-install -Dm755 scripts/konnector-node-run.sh -t "${pkgdir}"/usr/share/cozy/
-install -Dm755 scripts/konnector-nsjail-node12-run.sh 
"${pkgdir}"/usr/share/cozy/konnector-nsjail-run.sh
-}

Copied: cozy-stack/repos/community-x86_64/PKGBUILD (from rev 712316, 
cozy-stack/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 21:14:46 UTC (rev 712317)
@@ -0,0 +1,59 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=cozy-stack
+pkgver=1.4.17
+pkgrel=1
+epoch=1
+pkgdesc="Digital home: brings all your web services in the same private space 
– Stack component"
+arch=(x86_64)
+url="https://cozy.io;
+license=(AGPL3)
+backup=(etc/cozy/cozy.yml)
+depends=(couchdb imagemagick git)
+makedepends=(go)
+#optdepends=('cozy-coclyco: X.509 certificates management for instances'
+optdepends=('nodejs: required for konnectors'
+'nsjail: run konnectors isolated'
+'smtp-forwarder: to allow sending mail to users')
+source=(https://github.com/cozy/cozy-stack/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
+cozy.yml
+

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

2020-09-25 Thread Bruno Pagani via arch-commits
Date: Friday, September 25, 2020 @ 21:14:04
  Author: archange
Revision: 712316

upgpkg: cozy-stack 1:1.4.17-1

Modified:
  cozy-stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 21:03:28 UTC (rev 712315)
+++ PKGBUILD2020-09-25 21:14:04 UTC (rev 712316)
@@ -1,7 +1,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=cozy-stack
-pkgver=1.4.16
+pkgver=1.4.17
 pkgrel=1
 epoch=1
 pkgdesc="Digital home: brings all your web services in the same private space 
– Stack component"
@@ -20,7 +20,7 @@
 ${pkgname}.service
 ${pkgname}.sysusers
 ${pkgname}.tmpfiles)
-sha256sums=('3b8248e2517d056f545096d32673754d6e6cbdee60180909dca25b6722e9e8f6'
+sha256sums=('b0f305d931ff8ba514832b17804220b7338f9466623696882a765d030e4c0049'
 'a6ae871ec726f81d091918dffae4025b993656551185662242dcc2f7de4516c3'
 '6cb30c0a6d45b30827463b26c43fb2e1df9402392e6f23da1622e044ab84b580'
 'a6bea52350e85163c3141509a52903223fa0f6e7390b1b1f9336c326a8fff984'


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

2020-09-25 Thread David Runge via arch-commits
Date: Friday, September 25, 2020 @ 21:03:28
  Author: dvzrv
Revision: 712315

archrelease: copy trunk to community-x86_64

Added:
  patroneo/repos/community-x86_64/PKGBUILD
(from rev 712314, patroneo/trunk/PKGBUILD)
Deleted:
  patroneo/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 20:56:49 UTC (rev 712314)
+++ PKGBUILD2020-09-25 21:03:28 UTC (rev 712315)
@@ -1,31 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=patroneo
-pkgver=1.6.1
-pkgrel=1
-pkgdesc="An easy to use pattern based midi sequencer"
-arch=('x86_64')
-url="https://www.laborejo.org/patroneo.git/;
-license=('GPL3')
-groups=('pro-audio')
-depends=('glibc' 'hicolor-icon-theme' 'python' 'python-pyqt5' 'ttf-dejavu')
-makedepends=('glib2' 'jack' 'libsndfile' 'libutil-linux' 'nuitka')
-optdepends=('non-session-manager: Session management')
-source=("https://www.laborejo.org/downloads/${pkgname}-${pkgver}.tar.gz"{,.sig})
-sha512sums=('a76280eef2fde483ea3de2cc7bb7ae3df9278d8615fe70bf4b4fdf7908f684e90fed92d80580d5c5b746ca3a69f7cc820dd051ccfa175fb797ad00d0e4921235'
-'SKIP')
-b2sums=('232fcbb3d1fec70730aa9a21a9fc730a93d85251cd0e57d950e67741732e602d3e07790d3e092b9af18b8b3b040461802aaca119069b5877451ebee0e1c89f0b'
-'SKIP')
-validpgpkeys=('45D952EF384ADFBB00913E3428C6A306F2909FEE') # Nils Hilbricht 

-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  depends+=('libglib-2.0.so' 'libjack.so' 'libsndfile.so' 'libuuid.so')
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-}

Copied: patroneo/repos/community-x86_64/PKGBUILD (from rev 712314, 
patroneo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 21:03:28 UTC (rev 712315)
@@ -0,0 +1,31 @@
+# Maintainer: David Runge 
+
+pkgname=patroneo
+pkgver=1.7
+pkgrel=1
+pkgdesc="An easy to use pattern based midi sequencer"
+arch=('x86_64')
+url="https://www.laborejo.org/patroneo.git/;
+license=('GPL3')
+groups=('pro-audio')
+depends=('glibc' 'hicolor-icon-theme' 'python' 'python-pyqt5' 'ttf-dejavu')
+makedepends=('glib2' 'jack' 'libsndfile' 'util-linux-libs' 'nuitka')
+optdepends=('non-session-manager: Session management')
+source=("https://www.laborejo.org/downloads/${pkgname}-${pkgver}.tar.gz"{,.sig})
+sha512sums=('f2d1dfaad07b61c20c186c20789fbcd471dd74a7bf5a19831d64822fd452e1dc7a5174f28dd3161b86b8c29d67bffb33cac6d43126314ca94e06370d4f0f8ac9'
+'SKIP')
+b2sums=('20db86028d67800ad6aeed86eb06450e4637572d3fbb1a1c93c5df2e54482f042f1cbbf4a3b7eb9f6bd66c6be1acee2a739f91afc52ebd4841d78787034646e1'
+'SKIP')
+validpgpkeys=('45D952EF384ADFBB00913E3428C6A306F2909FEE') # Nils Hilbricht 

+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  depends+=('libglib-2.0.so' 'libjack.so' 'libsndfile.so' 'libuuid.so')
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}


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

2020-09-25 Thread David Runge via arch-commits
Date: Friday, September 25, 2020 @ 20:56:49
  Author: dvzrv
Revision: 712314

upgpkg: patroneo 1.7-1: Upgrade to 1.7.

Modified:
  patroneo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 20:48:26 UTC (rev 712313)
+++ PKGBUILD2020-09-25 20:56:49 UTC (rev 712314)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=patroneo
-pkgver=1.6.1
+pkgver=1.7
 pkgrel=1
 pkgdesc="An easy to use pattern based midi sequencer"
 arch=('x86_64')
@@ -12,9 +12,9 @@
 makedepends=('glib2' 'jack' 'libsndfile' 'util-linux-libs' 'nuitka')
 optdepends=('non-session-manager: Session management')
 
source=("https://www.laborejo.org/downloads/${pkgname}-${pkgver}.tar.gz"{,.sig})
-sha512sums=('a76280eef2fde483ea3de2cc7bb7ae3df9278d8615fe70bf4b4fdf7908f684e90fed92d80580d5c5b746ca3a69f7cc820dd051ccfa175fb797ad00d0e4921235'
+sha512sums=('f2d1dfaad07b61c20c186c20789fbcd471dd74a7bf5a19831d64822fd452e1dc7a5174f28dd3161b86b8c29d67bffb33cac6d43126314ca94e06370d4f0f8ac9'
 'SKIP')
-b2sums=('232fcbb3d1fec70730aa9a21a9fc730a93d85251cd0e57d950e67741732e602d3e07790d3e092b9af18b8b3b040461802aaca119069b5877451ebee0e1c89f0b'
+b2sums=('20db86028d67800ad6aeed86eb06450e4637572d3fbb1a1c93c5df2e54482f042f1cbbf4a3b7eb9f6bd66c6be1acee2a739f91afc52ebd4841d78787034646e1'
 'SKIP')
 validpgpkeys=('45D952EF384ADFBB00913E3428C6A306F2909FEE') # Nils Hilbricht 

 


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

2020-09-25 Thread Filipe Laíns via arch-commits
Date: Friday, September 25, 2020 @ 20:48:22
  Author: ffy00
Revision: 712312

upgpkg: libratbag 0.15-1

Modified:
  libratbag/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 20:23:09 UTC (rev 712311)
+++ PKGBUILD2020-09-25 20:48:22 UTC (rev 712312)
@@ -1,8 +1,8 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=libratbag
-pkgver=0.14
-pkgrel=2
+pkgver=0.15
+pkgrel=1
 pkgdesc='A DBus daemon to configure gaming mice'
 arch=('x86_64')
 url='https://github.com/libratbag/libratbag'


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

2020-09-25 Thread Filipe Laíns via arch-commits
Date: Friday, September 25, 2020 @ 20:48:26
  Author: ffy00
Revision: 712313

archrelease: copy trunk to community-x86_64

Added:
  libratbag/repos/community-x86_64/PKGBUILD
(from rev 712312, libratbag/trunk/PKGBUILD)
Deleted:
  libratbag/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 20:48:22 UTC (rev 712312)
+++ PKGBUILD2020-09-25 20:48:26 UTC (rev 712313)
@@ -1,52 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=libratbag
-pkgver=0.14
-pkgrel=2
-pkgdesc='A DBus daemon to configure gaming mice'
-arch=('x86_64')
-url='https://github.com/libratbag/libratbag'
-license=('MIT')
-depends=('glib2' 'libevdev' 'libudev.so' 'libunistring' 'json-glib' 'python' 
'python-evdev' 'python-gobject')
-optdepends=('linux: Linux 5.2 is required for Logitech wireless devices')
-makedepends=('meson' 'swig' 'git' 'python-sphinx' 'python-sphinx_rtd_theme' 
'systemd')
-checkdepends=('check' 'valgrind' 'python-gobject' 'python-lxml')
-validpgpkeys=('3DCE51D60930EBA47858BA4146F633CBB0EB4BF2' # Filipe Laíns 
(FFY00) 
-  '3C2C43D9447D5938EF4551EBE23B7E70B467F0BF' # Peter Hutterer 
(Who-T) 
-  '2F2670AC164DB36F')# Benjamin Tissoires 

-source=("git+$url#tag=v$pkgver?signed")
-sha512sums=('SKIP')
-provides=('ratbagd' 'liblur')
-conflicts=('ratbagd' 'liblur')
-
-build() {
-  mkdir -p $pkgname/build
-  cd $pkgname/build
-
-  arch-meson .. \
-   -Dsystemd-unit-dir=/usr/lib/systemd/system \
-   -Ddocumentation=true
-
-  ninja
-}
-
-check() {
-  cd $pkgname/build
-
-  meson test --no-rebuild
-}
-
-package() {
-  cd $pkgname/build
-
-  DESTDIR="$pkgdir" ninja install
-
-  # Install documentation
-  install -dm 755 "$pkgdir"/usr/share/doc/$pkgname
-  cp -r -a --no-preserve=ownership doc/html "$pkgdir"/usr/share/doc/$pkgname
-  rm -rf "$pkgdir"/usr/share/doc/$pkgname/html/.doctrees
-
-  # Install license
-  install -Dm 644 ../COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: libratbag/repos/community-x86_64/PKGBUILD (from rev 712312, 
libratbag/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 20:48:26 UTC (rev 712313)
@@ -0,0 +1,52 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=libratbag
+pkgver=0.15
+pkgrel=1
+pkgdesc='A DBus daemon to configure gaming mice'
+arch=('x86_64')
+url='https://github.com/libratbag/libratbag'
+license=('MIT')
+depends=('glib2' 'libevdev' 'libudev.so' 'libunistring' 'json-glib' 'python' 
'python-evdev' 'python-gobject')
+optdepends=('linux: Linux 5.2 is required for Logitech wireless devices')
+makedepends=('meson' 'swig' 'git' 'python-sphinx' 'python-sphinx_rtd_theme' 
'systemd')
+checkdepends=('check' 'valgrind' 'python-gobject' 'python-lxml')
+validpgpkeys=('3DCE51D60930EBA47858BA4146F633CBB0EB4BF2' # Filipe Laíns 
(FFY00) 
+  '3C2C43D9447D5938EF4551EBE23B7E70B467F0BF' # Peter Hutterer 
(Who-T) 
+  '2F2670AC164DB36F')# Benjamin Tissoires 

+source=("git+$url#tag=v$pkgver?signed")
+sha512sums=('SKIP')
+provides=('ratbagd' 'liblur')
+conflicts=('ratbagd' 'liblur')
+
+build() {
+  mkdir -p $pkgname/build
+  cd $pkgname/build
+
+  arch-meson .. \
+   -Dsystemd-unit-dir=/usr/lib/systemd/system \
+   -Ddocumentation=true
+
+  ninja
+}
+
+check() {
+  cd $pkgname/build
+
+  meson test --no-rebuild
+}
+
+package() {
+  cd $pkgname/build
+
+  DESTDIR="$pkgdir" ninja install
+
+  # Install documentation
+  install -dm 755 "$pkgdir"/usr/share/doc/$pkgname
+  cp -r -a --no-preserve=ownership doc/html "$pkgdir"/usr/share/doc/$pkgname
+  rm -rf "$pkgdir"/usr/share/doc/$pkgname/html/.doctrees
+
+  # Install license
+  install -Dm 644 ../COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 20:22:49
  Author: felixonmars
Revision: 712310

upgpkg: babel-cli 7.10.4-1

Modified:
  babel-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 19:56:04 UTC (rev 712309)
+++ PKGBUILD2020-09-25 20:22:49 UTC (rev 712310)
@@ -4,7 +4,7 @@
 # Contributor: Peter Wu 
 
 pkgname=babel-cli
-pkgver=7.10.3
+pkgver=7.10.4
 pkgrel=1
 pkgdesc="A compiler for writing next generation JavaScript"
 arch=('any')
@@ -18,7 +18,7 @@
 
source=("$pkgname-$pkgver.tgz::https://registry.npmjs.org/@babel/cli/-/cli-$pkgver.tgz;
 LICENSE)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('956077c87e7f7d663ca62d8a8f9fdf03ed7b82e27d7de481c390cd8d38eedff9d18bdb179e5d493e1eda290392bdd35b8836e4cf3a0662db2be3a33c7469970d'
+sha512sums=('c57f7d2b857507318975000d2b97302be129175bcff60bea867fa25af1be4ee6c28de729956ed14908a62768dc0afbba7e72b9a58ea664c76ee845938f7d9054'
 
'fc5471459770967e2632efb110b8370caa3424b7d87c1180f49605f7e6b1593746888b6c99c713c0c3046c5833c01c1a15bf3d549a343eaa077885bcc9f3d4e3')
 
 package() {


[arch-commits] Commit in babel-cli/repos/community-any (4 files)

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 20:23:09
  Author: felixonmars
Revision: 712311

archrelease: copy trunk to community-any

Added:
  babel-cli/repos/community-any/LICENSE
(from rev 712310, babel-cli/trunk/LICENSE)
  babel-cli/repos/community-any/PKGBUILD
(from rev 712310, babel-cli/trunk/PKGBUILD)
Deleted:
  babel-cli/repos/community-any/LICENSE
  babel-cli/repos/community-any/PKGBUILD

--+
 LICENSE  |   44 ++--
 PKGBUILD |   74 ++---
 2 files changed, 59 insertions(+), 59 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2020-09-25 20:22:49 UTC (rev 712310)
+++ LICENSE 2020-09-25 20:23:09 UTC (rev 712311)
@@ -1,22 +0,0 @@
-Copyright (c) 2014-2015 Sebastian McKenzie 
-
-MIT License
-
-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: babel-cli/repos/community-any/LICENSE (from rev 712310, 
babel-cli/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2020-09-25 20:23:09 UTC (rev 712311)
@@ -0,0 +1,22 @@
+Copyright (c) 2014-2015 Sebastian McKenzie 
+
+MIT License
+
+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-25 20:22:49 UTC (rev 712310)
+++ PKGBUILD2020-09-25 20:23:09 UTC (rev 712311)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Mario Finelli 
-# Contributor: Andy Weidenbaum 
-# Contributor: Peter Wu 
-
-pkgname=babel-cli
-pkgver=7.10.3
-pkgrel=1
-pkgdesc="A compiler for writing next generation JavaScript"
-arch=('any')
-url="https://babeljs.io/;
-license=('MIT')
-depends=('nodejs' 'babel-core' 'semver')
-makedepends=('npm')
-provides=('nodejs-babel-cli')
-conflicts=('nodejs-babel-cli' 'openbabel')
-replaces=('nodejs-babel-cli')
-source=("$pkgname-$pkgver.tgz::https://registry.npmjs.org/@babel/cli/-/cli-$pkgver.tgz;
-LICENSE)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('956077c87e7f7d663ca62d8a8f9fdf03ed7b82e27d7de481c390cd8d38eedff9d18bdb179e5d493e1eda290392bdd35b8836e4cf3a0662db2be3a33c7469970d'
-
'fc5471459770967e2632efb110b8370caa3424b7d87c1180f49605f7e6b1593746888b6c99c713c0c3046c5833c01c1a15bf3d549a343eaa077885bcc9f3d4e3')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  rm -r "$pkgdir"/usr/lib/node_modules/@babel/cli/node_modules/{,.bin/}semver
-
-  # Non-deterministic race in npm gives 777 permissions to random directories.
-  # See https://github.com/npm/npm/issues/9359 for details.
-  chmod -R u=rwX,go=rX "$pkgdir"
-
-  # npm installs package.json owned by build user
-  # https://bugs.archlinux.org/task/63396
-  chown -R root:root "$pkgdir"
-}

Copied: babel-cli/repos/community-any/PKGBUILD (from 

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

2020-09-25 Thread Jelle van der Waa via arch-commits
Date: Friday, September 25, 2020 @ 19:34:28
  Author: jelle
Revision: 712225

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 19:34:19 UTC (rev 712224)
+++ PKGBUILD2020-09-25 19:34:28 UTC (rev 712225)
@@ -1,46 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Michael Straube 
-# Contributor: Kevin Brubeck Unhammer 
-
-pkgbase=python-editor
-pkgname=('python-editor' 'python2-editor')
-pkgver=1.0.4
-pkgrel=3
-pkgdesc='Programmatically open an editor, capture the result'
-url='https://github.com/fmoo/python-editor'
-arch=('any')
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/fmoo/python-editor/archive/${pkgver}.tar.gz)
-sha256sums=('61a4758919668b8ffe5eb389a86a4c2e8c2f789c02b9c6aee0ddf3c4ebfe3fd3')
-sha512sums=('2a01ffa5967be31ec425ddb9cd2c57f327b61547f011e1510005a7b6cab30ba01fe81e18cb38e7c4f39796350701997d11a5059568b987355878671a5299eaf5')
-
-prepare() {
-  cp -a ${pkgbase}-${pkgver}{,-py2}
-  sed 's|python|python2|' -i ${pkgbase}-${pkgver}-py2/editor.py
-}
-
-build() {
-  (cd ${pkgbase}-${pkgver}
-python setup.py build
-  )
-  (cd ${pkgbase}-${pkgver}-py2
-python2 setup.py build
-  )
-}
-
-package_python-editor() {
-  depends=('python')
-  cd ${pkgbase}-${pkgver}
-  python setup.py install --root="${pkgdir}" -O1 --skip-build
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-package_python2-editor() {
-  depends=('python2')
-  cd ${pkgbase}-${pkgver}-py2
-  python2 setup.py install --root="${pkgdir}" -O1 --skip-build
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-editor/repos/community-any/PKGBUILD (from rev 712224, 
python-editor/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 19:34:28 UTC (rev 712225)
@@ -0,0 +1,30 @@
+# Maintainer: Levente Polyak 
+# Contributor: Michael Straube 
+# Contributor: Kevin Brubeck Unhammer 
+
+pkgname=python-editor
+pkgver=1.0.4
+pkgrel=4
+pkgdesc='Programmatically open an editor, capture the result'
+url='https://github.com/fmoo/python-editor'
+arch=('any')
+license=('Apache')
+depends=('python')
+makedepends=('python-setuptools')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/fmoo/python-editor/archive/${pkgver}.tar.gz)
+sha256sums=('61a4758919668b8ffe5eb389a86a4c2e8c2f789c02b9c6aee0ddf3c4ebfe3fd3')
+sha512sums=('2a01ffa5967be31ec425ddb9cd2c57f327b61547f011e1510005a7b6cab30ba01fe81e18cb38e7c4f39796350701997d11a5059568b987355878671a5299eaf5')
+
+build() {
+  (cd ${pkgbase}-${pkgver}
+python setup.py build
+  )
+}
+
+package() {
+  cd ${pkgbase}-${pkgver}
+  python setup.py install --root="${pkgdir}" -O1 --skip-build
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-25 Thread Jelle van der Waa via arch-commits
Date: Friday, September 25, 2020 @ 19:34:19
  Author: jelle
Revision: 712224

remove unrequired python2 package

Modified:
  python-editor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 19:14:06 UTC (rev 712223)
+++ PKGBUILD2020-09-25 19:34:19 UTC (rev 712224)
@@ -2,45 +2,29 @@
 # Contributor: Michael Straube 
 # Contributor: Kevin Brubeck Unhammer 
 
-pkgbase=python-editor
-pkgname=('python-editor' 'python2-editor')
+pkgname=python-editor
 pkgver=1.0.4
-pkgrel=3
+pkgrel=4
 pkgdesc='Programmatically open an editor, capture the result'
 url='https://github.com/fmoo/python-editor'
 arch=('any')
 license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools')
+depends=('python')
+makedepends=('python-setuptools')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/fmoo/python-editor/archive/${pkgver}.tar.gz)
 sha256sums=('61a4758919668b8ffe5eb389a86a4c2e8c2f789c02b9c6aee0ddf3c4ebfe3fd3')
 
sha512sums=('2a01ffa5967be31ec425ddb9cd2c57f327b61547f011e1510005a7b6cab30ba01fe81e18cb38e7c4f39796350701997d11a5059568b987355878671a5299eaf5')
 
-prepare() {
-  cp -a ${pkgbase}-${pkgver}{,-py2}
-  sed 's|python|python2|' -i ${pkgbase}-${pkgver}-py2/editor.py
-}
-
 build() {
   (cd ${pkgbase}-${pkgver}
 python setup.py build
   )
-  (cd ${pkgbase}-${pkgver}-py2
-python2 setup.py build
-  )
 }
 
-package_python-editor() {
-  depends=('python')
+package() {
   cd ${pkgbase}-${pkgver}
   python setup.py install --root="${pkgdir}" -O1 --skip-build
   install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
 }
 
-package_python2-editor() {
-  depends=('python2')
-  cd ${pkgbase}-${pkgver}-py2
-  python2 setup.py install --root="${pkgdir}" -O1 --skip-build
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
 # vim: ts=2 sw=2 et:


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

2020-09-25 Thread Andreas Radke via arch-commits
Date: Friday, September 25, 2020 @ 19:24:32
  Author: andyrtr
Revision: 396563

upgpkg: ghostscript 9.53.2-1: upstream update 9.53.2

Modified:
  ghostscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 19:03:15 UTC (rev 396562)
+++ PKGBUILD2020-09-25 19:24:32 UTC (rev 396563)
@@ -2,7 +2,7 @@
 
 pkgbase=ghostscript
 pkgname=(ghostscript ghostxps ghostpcl)
-pkgver=9.53.1
+pkgver=9.53.2
 pkgrel=1
 pkgdesc="An interpreter for the PostScript language"
 url="https://www.ghostscript.com/;
@@ -13,7 +13,7 @@
 makedepends=('gtk3' 'gnutls' 'glu' 'freeglut')
 # https://github.com/ArtifexSoftware/ghostpdl-downloads/releases
 
source=(https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${pkgver//./}/ghostpdl-${pkgver}.tar.gz)
-sha512sums=('4aaeba969239690966bde288c8dc4663e0956361f9c667ca5aae117e950621291aed40d5828f7ac99bc0a812595430fe0e8311a75c4f482c1320c9c294028008')
+sha512sums=('292d585938a9b15498941ea663630b3e9dccb4e31e9750e007d69500bdaa74e00ca48c2e48c8b429a68f293a2f84f9ef802406b0928b8d16361ad986a9378eb8')
 
 
 ### update jbig2dec first! ###


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

2020-09-25 Thread Andreas Radke via arch-commits
Date: Friday, September 25, 2020 @ 19:24:46
  Author: andyrtr
Revision: 396564

archrelease: copy trunk to extra-x86_64

Added:
  ghostscript/repos/extra-x86_64/PKGBUILD
(from rev 396563, ghostscript/trunk/PKGBUILD)
Deleted:
  ghostscript/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  206 ++---
 1 file changed, 103 insertions(+), 103 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 19:24:32 UTC (rev 396563)
+++ PKGBUILD2020-09-25 19:24:46 UTC (rev 396564)
@@ -1,103 +0,0 @@
-# Maintainer: AndyRTR 
-
-pkgbase=ghostscript
-pkgname=(ghostscript ghostxps ghostpcl)
-pkgver=9.53.1
-pkgrel=1
-pkgdesc="An interpreter for the PostScript language"
-url="https://www.ghostscript.com/;
-arch=('x86_64')
-license=('AGPL3' 'custom')
-depends=('libxt' 'libcups' 'fontconfig' 'zlib' 'libpng' 'libjpeg' 'jbig2dec'
- 'libtiff' 'lcms2' 'dbus' 'libpaper' 'ijs' 'openjpeg2' 'libidn')
-makedepends=('gtk3' 'gnutls' 'glu' 'freeglut')
-# https://github.com/ArtifexSoftware/ghostpdl-downloads/releases
-source=(https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${pkgver//./}/ghostpdl-${pkgver}.tar.gz)
-sha512sums=('4aaeba969239690966bde288c8dc4663e0956361f9c667ca5aae117e950621291aed40d5828f7ac99bc0a812595430fe0e8311a75c4f482c1320c9c294028008')
-
-
-### update jbig2dec first! ###
-
-prepare() {
-  cd ghostpdl-${pkgver}
-
-  # force it to use system-libs
-  rm -r cups/libs expat ijs jbig2dec jpeg lcms2mt libpng openjpeg tiff zlib
-  # using tree freetype because of https://bugs.archlinux.org/task/56849
-  # lcms2mt is the new lcms2 fork aimed to replace lcms2 in a thread safe way
-  
-  # 
http://git.ghostscript.com/?p=ghostpdl.git;a=commit;h=40dc5b409c6262b18b4bf5386b5482ead4c511e3
-  # libs link unwanted to libgpdl that isn't installed
-  rm -rf gpdl
-}
-
-build() {
-  cd ghostpdl-${pkgver}
-  ./configure --prefix=/usr \
-  --enable-dynamic \
-  --with-ijs \
-  --with-jbig2dec \
-  --with-x \
-  --with-drivers=ALL \
-  --with-fontpath=/usr/share/fonts/gsfonts \
-  --enable-fontconfig \
-  --enable-freetype \
-  --enable-openjpeg \
-  --without-luratech \
-  --with-system-libtiff \
-  --with-libpaper \
-  --disable-compile-inits #--help # needed for linking with 
system-zlib
-
-  make so-only
-}
-
-package_ghostscript() {
-  optdepends=('texlive-core:  needed for dvipdf'
-  'gtk3:  needed for gsx')
-
-  cd ghostpdl-${pkgver}
-
-  make DESTDIR="${pkgdir}" \
-   CUPSSERVERROOT="${pkgdir}$(cups-config --serverroot)" \
-   CUPSSERVERBIN="${pkgdir}$(cups-config --serverbin)" \
-   soinstall
-  ln -s gsc "${pkgdir}"/usr/bin/gs
-
-  # remove useless broken doc/ symlink - FS#59507
-  rm -f "${pkgdir}"/usr/share/ghostscript/${pkgver}/doc
-
-  # remove unwanted localized manpages
-  rm -r "${pkgdir}"/usr/share/man/de
-
-  install -Dt "${pkgdir}"/usr/share/licenses/${pkgname} -m644 LICENSE
-}
-
-package_ghostxps() {
-  pkgdesc="${pkgdesc/PostScript/XPS document}"
-  depends=("ghostscript=${pkgver}-${pkgrel}")
-
-  cd ghostpdl-${pkgver}
-
-  install -Dt "${pkgdir}"/usr/bin sobin/gxpsc
-  ln -s gxpsc "${pkgdir}"/usr/bin/gxps
-
-  install -Dt "${pkgdir}"/usr/lib sobin/libgxps.so.${pkgver%.*}
-  ln -s libgxps.so.${pkgver%.*} "${pkgdir}"/usr/lib/libgxps.so.${pkgver%rc*}
-
-  install -Dt "${pkgdir}"/usr/share/licenses/${pkgname} -m644 LICENSE
-}
-
-package_ghostpcl() {
-  pkgdesc="${pkgdesc/PostScript/PCL 6}"
-  depends=("ghostscript=${pkgver}-${pkgrel}")
-
-  cd ghostpdl-${pkgver}
-
-  install -Dt "${pkgdir}"/usr/bin sobin/gpcl6c
-  ln -sf gpcl6c "${pkgdir}"/usr/bin/gpcl6
-
-  install -Dt "${pkgdir}"/usr/lib sobin/libgpcl6.so.${pkgver%.*}
-  ln -s libgpcl6.so.${pkgver%.*} "${pkgdir}"/usr/lib/libgpcl6.so.${pkgver%rc*}
-
-  install -Dt "${pkgdir}"/usr/share/licenses/${pkgname} -m644 LICENSE
-}

Copied: ghostscript/repos/extra-x86_64/PKGBUILD (from rev 396563, 
ghostscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 19:24:46 UTC (rev 396564)
@@ -0,0 +1,103 @@
+# Maintainer: AndyRTR 
+
+pkgbase=ghostscript
+pkgname=(ghostscript ghostxps ghostpcl)
+pkgver=9.53.2
+pkgrel=1
+pkgdesc="An interpreter for the PostScript language"
+url="https://www.ghostscript.com/;
+arch=('x86_64')
+license=('AGPL3' 'custom')
+depends=('libxt' 'libcups' 'fontconfig' 'zlib' 'libpng' 'libjpeg' 'jbig2dec'
+ 'libtiff' 'lcms2' 'dbus' 'libpaper' 'ijs' 'openjpeg2' 'libidn')
+makedepends=('gtk3' 'gnutls' 'glu' 'freeglut')
+# https://github.com/ArtifexSoftware/ghostpdl-downloads/releases

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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 19:13:50
  Author: felixonmars
Revision: 71

upgpkg: python-hypothesis 5.36.1-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 19:11:24 UTC (rev 712221)
+++ PKGBUILD2020-09-25 19:13:50 UTC (rev 71)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-hypothesis
-pkgver=5.36.0
+pkgver=5.36.1
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -20,7 +20,7 @@
   'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
   'python-typing_extensions' 'python-black')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('e7324f98ac8609c1ce7ed957d0ee0280d177e9a6d369cc3bdb2cc8bde7f5e79d8f19b53c6b19fdfc732c9f84e4cd7dffa9c2af3cc004b3b5dbe703d73ce64009')
+sha512sums=('97d0446ba5660c189e60b47b8f782818525fcc1c5c1d64eec997b85d5ae47fc7d52771439b5c249002380ffe7d95696728f81efe513993ff90c8e192e2ceca8d')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 19:14:06
  Author: felixonmars
Revision: 712223

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 19:13:50 UTC (rev 71)
+++ PKGBUILD2020-09-25 19:14:06 UTC (rev 712223)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-hypothesis
-pkgver=5.36.0
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-depends=('python-attrs' 'python-sortedcontainers')
-optdepends=('python-pytz: for datetime and django module'
-'python-faker: for fakefactory and django module'
-'python-django: for django module'
-'python-numpy: for numpy module'
-'python-pytest: for pytest module'
-'python-lark-parser: for lark module')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
-  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
-  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
-  'python-typing_extensions' 'python-black')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('e7324f98ac8609c1ce7ed957d0ee0280d177e9a6d369cc3bdb2cc8bde7f5e79d8f19b53c6b19fdfc732c9f84e4cd7dffa9c2af3cc004b3b5dbe703d73ce64009')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-}
-
-build() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-}
-
-check() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH" 
PATH="$PWD/tmp_install/usr/bin:$PATH" pytest
-}
-
-package() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 71, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 19:14:06 UTC (rev 712223)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-hypothesis
+pkgver=5.36.1
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+depends=('python-attrs' 'python-sortedcontainers')
+optdepends=('python-pytz: for datetime and django module'
+'python-faker: for fakefactory and django module'
+'python-django: for django module'
+'python-numpy: for numpy module'
+'python-pytest: for pytest module'
+'python-lark-parser: for lark module')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
+  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
+  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
+  'python-typing_extensions' 'python-black')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
+sha512sums=('97d0446ba5660c189e60b47b8f782818525fcc1c5c1d64eec997b85d5ae47fc7d52771439b5c249002380ffe7d95696728f81efe513993ff90c8e192e2ceca8d')
+
+prepare() {
+  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
+}
+
+build() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py build
+}
+
+check() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH" 
PATH="$PWD/tmp_install/usr/bin:$PATH" pytest
+}
+
+package() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 19:11:24
  Author: felixonmars
Revision: 712221

archrelease: copy trunk to community-staging-x86_64

Added:
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 712220, xmobar/trunk/PKGBUILD)

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 712220, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 19:11:24 UTC (rev 712221)
@@ -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=2
+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 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:


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 19:11:10
  Author: felixonmars
Revision: 712220

upgpkg: xmobar 0.36-2: rebuild with http-date 0.0.9

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 19:10:01 UTC (rev 712219)
+++ PKGBUILD2020-09-25 19:11:10 UTC (rev 712220)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.36
-pkgrel=1
+pkgrel=2
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 19:10:01
  Author: felixonmars
Revision: 712219

archrelease: copy trunk to community-staging-x86_64

Added:
  taskell/repos/community-staging-x86_64/
  taskell/repos/community-staging-x86_64/PKGBUILD
(from rev 712218, taskell/trunk/PKGBUILD)

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

Copied: taskell/repos/community-staging-x86_64/PKGBUILD (from rev 712218, 
taskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 19:10:01 UTC (rev 712219)
@@ -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 uusi 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() {
+  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-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 19:09:46
  Author: felixonmars
Revision: 712218

upgpkg: taskell 1.10.0-3: rebuild with http-date 0.0.9

Modified:
  taskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 19:08:49 UTC (rev 712217)
+++ PKGBUILD2020-09-25 19:09:46 UTC (rev 712218)
@@ -2,7 +2,7 @@
 
 pkgname=taskell
 pkgver=1.10.0
-pkgrel=2
+pkgrel=3
 pkgdesc='A command-line kanban board/task manager'
 license=(BSD)
 arch=(x86_64)


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 19:08:35
  Author: felixonmars
Revision: 712216

upgpkg: tamarin-prover 1.6.0-10: rebuild with http-date 0.0.9

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 19:07:30 UTC (rev 712215)
+++ PKGBUILD2020-09-25 19:08:35 UTC (rev 712216)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.6.0
-pkgrel=9
+pkgrel=10
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="https://tamarin-prover.github.io;
 license=("GPL")


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 19:08:49
  Author: felixonmars
Revision: 712217

archrelease: copy trunk to community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 712216, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
712216, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 19:08:49 UTC (rev 712217)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.6.0
+pkgrel=10
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="https://tamarin-prover.github.io;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' 'haskell-hunit' 
'haskell-binary-orphans' 'haskell-binary-instances'
+ 'haskell-blaze-builder' 'haskell-blaze-html' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-fclabels' 'haskell-file-embed' 'haskell-gitrev' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-monad-unlift' 'haskell-resourcet' 
'haskell-safe'
+ 'haskell-shakespeare' 'haskell-threads' 'haskell-wai' 'haskell-warp' 
'haskell-yesod-core'
+ 'haskell-yesod-static' 'haskell-tamarin-prover-utils' 
'haskell-tamarin-prover-term'
+ 'haskell-tamarin-prover-theory' 'haskell-tamarin-prover-sapic')
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml>=4.11.0')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz;)
+sha512sums=('7f3569f740d63d715b92a8f073eaecb8b32efe59b910b246977d36bb9e873765440e72feb6e76c7cbafab0495b88cfc666bb1dd12f685627c60d5cbd97b2973e')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fthreaded -ftest-coverage -f-build-tests --ghc-option='-pie'
+runhaskell Setup build $MAKEFLAGS
+
+cd plugins/sapic
+make -j1
+}
+
+package() {
+cd $pkgname-$pkgver
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/ftdetect/tamarin.vim
+install -Dm644 etc/syntax/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+ln -s spthy.vim "$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 19:07:30
  Author: felixonmars
Revision: 712215

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 712214, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 19:07:30 UTC (rev 712215)
@@ -0,0 +1,82 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.3.1
+pkgrel=139
+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-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 19:07:13
  Author: felixonmars
Revision: 712214

upgpkg: stack 2.3.1-139: rebuild with http-date 0.0.9

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 19:04:04 UTC (rev 712213)
+++ PKGBUILD2020-09-25 19:07:13 UTC (rev 712214)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.3.1
-pkgrel=138
+pkgrel=139
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 19:04:04
  Author: felixonmars
Revision: 712213

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-ci/repos/community-staging-x86_64/PKGBUILD (from rev 712212, 
haskell-ci/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 19:04:04 UTC (rev 712213)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=haskell-ci
+pkgname=haskell-ci
+pkgver=0.10.3
+pkgrel=3
+pkgdesc="Cabal package script generator for Travis-CI"
+url="https://haskell-ci.rtfd.org/;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base-compat' 
'haskell-cabal-install-parsers'
+ 'haskell-generic-lens-lite' 'haskell-hsyaml' 'haskell-lattices' 
'haskell-network-uri'
+ 'haskell-optparse-applicative' 'haskell-temporary' 
'haskell-unordered-containers'
+ 'shellcheck')
+makedepends=('ghc' 'uusi' 'haskell-diff' 'haskell-ansi-terminal' 
'haskell-tasty' 'haskell-tasty-golden')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('7b8bd970619344c8254a678038a19f838a5b4eaba39a8d42c640aa50e1b31ea3')
+
+prepare(){
+  uusi $_hkgname-$pkgver/$_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 $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
+}
+
+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 mm-common/trunk (PKGBUILD)

2020-09-25 Thread Jan Steffens via arch-commits
Date: Friday, September 25, 2020 @ 19:03:15
  Author: heftig
Revision: 396562

1.0.2-1

Modified:
  mm-common/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 18:44:55 UTC (rev 396561)
+++ PKGBUILD2020-09-25 19:03:15 UTC (rev 396562)
@@ -1,7 +1,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=mm-common
-pkgver=1.0.1
+pkgver=1.0.2
 pkgrel=1
 pkgdesc="Common build files of the C++ bindings"
 url="https://www.gtkmm.org/;
@@ -9,7 +9,7 @@
 depends=(graphviz doxygen gtk-doc libsigc++-docs perl-xml-parser)
 makedepends=(libsigc++ git meson)
 license=(GPL2)
-_commit=0f7f6e48fd7a07f21c6f4edc61f254546f9d484a  # tags/1.0.1^0
+_commit=85381b86dcc2490d2b080c178477df9eb65103ca  # tags/1.0.2^0
 source=("git+https://gitlab.gnome.org/GNOME/mm-common.git#commit=$_commit;
 https://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/libstdc++.tag)
 sha256sums=('SKIP'


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 19:03:50
  Author: felixonmars
Revision: 712212

upgpkg: haskell-ci 0.10.3-3: rebuild with http-date 0.0.9

Modified:
  haskell-ci/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 19:02:48 UTC (rev 712211)
+++ PKGBUILD2020-09-25 19:03:50 UTC (rev 712212)
@@ -3,7 +3,7 @@
 _hkgname=haskell-ci
 pkgname=haskell-ci
 pkgver=0.10.3
-pkgrel=2
+pkgrel=3
 pkgdesc="Cabal package script generator for Travis-CI"
 url="https://haskell-ci.rtfd.org/;
 license=("GPL")


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 19:02:34
  Author: felixonmars
Revision: 712210

upgpkg: shellcheck 0.7.1-139: rebuild with http-date 0.0.9

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 19:00:08 UTC (rev 712209)
+++ PKGBUILD2020-09-25 19:02:34 UTC (rev 712210)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.7.1
-pkgrel=138
+pkgrel=139
 pkgdesc="Shell script analysis tool"
 url="https://www.shellcheck.net;
 license=("GPL")


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 19:02:48
  Author: felixonmars
Revision: 712211

archrelease: copy trunk to community-staging-x86_64

Added:
  shellcheck/repos/community-staging-x86_64/
  shellcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 712210, shellcheck/trunk/PKGBUILD)

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 712210, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 19:02:48 UTC (rev 712211)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.7.1
+pkgrel=139
+pkgdesc="Shell script analysis tool"
+url="https://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-diff' 'haskell-quickcheck' 
'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;)
+sha512sums=('95ca827f50035e352eabfbee9eb1791278f7c18c10c3a6c2656c5b9e87396b7b6c088f4cefa3d6f954ac6c2765ea50e232985b9f3eeea2dbe77c17473cc4a437')
+
+prepare() {
+cd $pkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+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='-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
+
+./manpage
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+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 neomutt/trunk (PKGBUILD)

2020-09-25 Thread Maxim Baz via arch-commits
Date: Friday, September 25, 2020 @ 19:00:04
  Author: maximbaz
Revision: 712207

upgpkg: neomutt 20200925-1

Modified:
  neomutt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 18:59:52 UTC (rev 712206)
+++ PKGBUILD2020-09-25 19:00:04 UTC (rev 712207)
@@ -4,7 +4,7 @@
 # Contributor: Chris Salzberg 
 # Contributor: Leonidas Spyropoulos 
 pkgname=neomutt
-pkgver=20200821
+pkgver=20200925
 pkgrel=1
 pkgdesc='A version of mutt with added features'
 url='https://neomutt.org/'
@@ -21,7 +21,7 @@
 source=("$pkgname-$pkgver.tar.gz::$_github/archive/$pkgver.tar.gz"
 
"$pkgname-$pkgver.tar.gz.sig::$_github/releases/download/$pkgver/$pkgver.tar.gz.sig"
 "default-ca-certificates.patch")
-sha256sums=('4233d03e03220a2ba8096ab28061e12ef538259fd7d32ad441aad5207b17b390'
+sha256sums=('dcec98ea2454d7695ff92184c33a0051c2b3c46320f81f7889c4580c943140dd'
 'SKIP'
 '571716b8979e9b43328416c3c56eff228b6c58355d7c080b8987ea89c6360776')
 validpgpkeys=('86C2397270DD7A561263CA4E5FAF0A6EE7371805') # Richard Russon 
(flatcap) 


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

2020-09-25 Thread Maxim Baz via arch-commits
Date: Friday, September 25, 2020 @ 19:00:08
  Author: maximbaz
Revision: 712209

archrelease: copy trunk to community-x86_64

Added:
  neomutt/repos/community-x86_64/PKGBUILD
(from rev 712208, neomutt/trunk/PKGBUILD)
  neomutt/repos/community-x86_64/default-ca-certificates.patch
(from rev 712208, neomutt/trunk/default-ca-certificates.patch)
Deleted:
  neomutt/repos/community-x86_64/PKGBUILD
  neomutt/repos/community-x86_64/default-ca-certificates.patch

---+
 PKGBUILD  |  128 
 default-ca-certificates.patch |   24 +++
 2 files changed, 76 insertions(+), 76 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 19:00:06 UTC (rev 712208)
+++ PKGBUILD2020-09-25 19:00:08 UTC (rev 712209)
@@ -1,64 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Alad Wenter 
-# Contributor: Jelle van der Waa 
-# Contributor: Chris Salzberg 
-# Contributor: Leonidas Spyropoulos 
-pkgname=neomutt
-pkgver=20200821
-pkgrel=1
-pkgdesc='A version of mutt with added features'
-url='https://neomutt.org/'
-license=('GPL')
-arch=('x86_64')
-depends=('glibc' 'gpgme' 'lua53' 'notmuch-runtime' 'krb5' 'gnutls' 'sqlite'
- 'libsasl' 'ncurses' 'libidn2' 'lmdb' 'gdbm' 'kyotocabinet'
- 'lz4' 'zlib' 'zstd')
-optdepends=('python: keybase.py'
-'perl: smime_keys'
-'ca-certificates: default CA certificates')
-makedepends=('git' 'gnupg' 'libxslt' 'docbook-xsl' 'w3m')
-_github='https://github.com/neomutt/neomutt'
-source=("$pkgname-$pkgver.tar.gz::$_github/archive/$pkgver.tar.gz"
-
"$pkgname-$pkgver.tar.gz.sig::$_github/releases/download/$pkgver/$pkgver.tar.gz.sig"
-"default-ca-certificates.patch")
-sha256sums=('4233d03e03220a2ba8096ab28061e12ef538259fd7d32ad441aad5207b17b390'
-'SKIP'
-'571716b8979e9b43328416c3c56eff228b6c58355d7c080b8987ea89c6360776')
-validpgpkeys=('86C2397270DD7A561263CA4E5FAF0A6EE7371805') # Richard Russon 
(flatcap) 
-
-prepare() {
-cd "$pkgname-$pkgver"
-patch -Np1 -i "$srcdir/default-ca-certificates.patch"
-}
-
-build() {
-cd "$pkgname-$pkgver"
-./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---gpgme \
---sqlite \
---autocrypt \
---lua \
---notmuch \
---gss \
---gnutls \
---sasl \
---with-ui=ncurses \
---with-idn2=/usr \
---disable-idn \
---idn2 \
---lmdb \
---kyotocabinet \
---gdbm \
---lz4 \
---zlib \
---zstd
-make
-}
-
-package() {
-cd "$pkgname-$pkgver"
-make DESTDIR="$pkgdir" install
-}

Copied: neomutt/repos/community-x86_64/PKGBUILD (from rev 712208, 
neomutt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 19:00:08 UTC (rev 712209)
@@ -0,0 +1,64 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Alad Wenter 
+# Contributor: Jelle van der Waa 
+# Contributor: Chris Salzberg 
+# Contributor: Leonidas Spyropoulos 
+pkgname=neomutt
+pkgver=20200925
+pkgrel=1
+pkgdesc='A version of mutt with added features'
+url='https://neomutt.org/'
+license=('GPL')
+arch=('x86_64')
+depends=('glibc' 'gpgme' 'lua53' 'notmuch-runtime' 'krb5' 'gnutls' 'sqlite'
+ 'libsasl' 'ncurses' 'libidn2' 'lmdb' 'gdbm' 'kyotocabinet'
+ 'lz4' 'zlib' 'zstd')
+optdepends=('python: keybase.py'
+'perl: smime_keys'
+'ca-certificates: default CA certificates')
+makedepends=('git' 'gnupg' 'libxslt' 'docbook-xsl' 'w3m')
+_github='https://github.com/neomutt/neomutt'
+source=("$pkgname-$pkgver.tar.gz::$_github/archive/$pkgver.tar.gz"
+
"$pkgname-$pkgver.tar.gz.sig::$_github/releases/download/$pkgver/$pkgver.tar.gz.sig"
+"default-ca-certificates.patch")
+sha256sums=('dcec98ea2454d7695ff92184c33a0051c2b3c46320f81f7889c4580c943140dd'
+'SKIP'
+'571716b8979e9b43328416c3c56eff228b6c58355d7c080b8987ea89c6360776')
+validpgpkeys=('86C2397270DD7A561263CA4E5FAF0A6EE7371805') # Richard Russon 
(flatcap) 
+
+prepare() {
+cd "$pkgname-$pkgver"
+patch -Np1 -i "$srcdir/default-ca-certificates.patch"
+}
+
+build() {
+cd "$pkgname-$pkgver"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--gpgme \
+--sqlite \
+--autocrypt \
+--lua \
+--notmuch \
+--gss \
+--gnutls \
+--sasl \
+--with-ui=ncurses \
+--with-idn2=/usr \
+--disable-idn \
+--idn2 \
+ 

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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 19:00:06
  Author: felixonmars
Revision: 712208

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 712206, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 19:00:06 UTC (rev 712208)
@@ -0,0 +1,71 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=7.0.1
+pkgrel=95
+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-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:59:52
  Author: felixonmars
Revision: 712206

upgpkg: postgrest 7.0.1-95: rebuild with http-date 0.0.9

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 18:57:48 UTC (rev 712205)
+++ PKGBUILD2020-09-25 18:59:52 UTC (rev 712206)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=7.0.1
-pkgrel=94
+pkgrel=95
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:57:48
  Author: felixonmars
Revision: 712205

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc-crossref/repos/community-staging-x86_64/
  pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 712204, pandoc-crossref/trunk/PKGBUILD)

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
712204, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 18:57:48 UTC (rev 712205)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.8.1
+pkgrel=6
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-data-accessor' 
'haskell-data-accessor-template'
+ 'haskell-data-accessor-transformers' 'haskell-gitrev' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz;)
+sha512sums=('1436c2e83ee27caddbe8477df9f19dd1c579ff7f99e0f2f206acf34d9a8952e20e089931e644a5f7690b0bebb6492d6596237d10990e6d1a4e61ddcf91c286ce')
+
+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 \
+   -f-enable_flaky_tests
+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
+
+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 pandoc-crossref/trunk (PKGBUILD)

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:57:34
  Author: felixonmars
Revision: 712204

upgpkg: pandoc-crossref 0.3.8.1-6: rebuild with http-date 0.0.9

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 18:56:24 UTC (rev 712203)
+++ PKGBUILD2020-09-25 18:57:34 UTC (rev 712204)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.8.1
-pkgrel=5
+pkgrel=6
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:56:24
  Author: felixonmars
Revision: 712203

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
712202, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 18:56:24 UTC (rev 712203)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.13.4.0
+pkgrel=68
+pkgdesc="A static website compiler library"
+url="https://jaspervdj.be/hakyll;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-memory' 
'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
+
hakyll-pandoc-2.10.patch::https://github.com/jaspervdj/hakyll/pull/787.patch)
+sha512sums=('4ade6776cfee7a8293ba4a659cf8633c0e6641ee2c33db9cdddeaca996ff092d027ce4165e174d7acdeb8485904394d9a899351d9e3c065e4ce7cb5af61ee08a'
+
'c78d30619a29f0015d74b997187ed22fdd11c62f10a8da3362c3c2090446bdd17cd0afb7397c3f789305de7047299c54bcad845e0255cee327138c463d3dd8ad')
+
+prepare() {
+cd $_hkgname-$pkgver
+patch -p1 -i ../hakyll-pandoc-2.10.patch
+sed -i 's/< *0.0.12/<1/;s/< *2.14/<3/;s/< *1.2/<2/' $_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 --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+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
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning 
"https://github.com/jaspervdj/hakyll/issues/682;
+}
+
+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-hakyll/trunk (PKGBUILD)

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:56:10
  Author: felixonmars
Revision: 712202

upgpkg: haskell-hakyll 4.13.4.0-68: rebuild with http-date 0.0.9

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 18:55:00 UTC (rev 712201)
+++ PKGBUILD2020-09-25 18:56:10 UTC (rev 712202)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.13.4.0
-pkgrel=67
+pkgrel=68
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll;
 license=("BSD")


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:54:47
  Author: felixonmars
Revision: 712200

upgpkg: pandoc-citeproc 0.17.0.2-39: rebuild with http-date 0.0.9

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 18:52:30 UTC (rev 712199)
+++ PKGBUILD2020-09-25 18:54:47 UTC (rev 712200)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.17.0.2
-pkgrel=38
+pkgrel=39
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:55:00
  Author: felixonmars
Revision: 712201

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc-citeproc/repos/community-staging-x86_64/
  pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD
(from rev 712200, pandoc-citeproc/trunk/PKGBUILD)

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
712200, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 18:55:00 UTC (rev 712201)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.17.0.2
+pkgrel=39
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-base-compat' 'haskell-data-default' 'haskell-hs-bibutils' 
'haskell-libyaml'
+ 'haskell-network' 'haskell-old-locale' 'pandoc' 
'haskell-pandoc-types' 'haskell-rfc5051'
+ 'haskell-safe' 'haskell-setenv' 'haskell-split' 'haskell-syb' 
'haskell-tagsoup'
+ 'haskell-temporary' 'haskell-text-icu' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-xml-conduit' 'haskell-yaml' 'haskell-hsyaml' 
'haskell-hsyaml-aeson')
+conflicts=('haskell-pandoc-citeproc')
+replaces=('haskell-pandoc-citeproc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz;)
+sha512sums=('5ce079a542b096c06d6e4e205625a993422a972f04787495ac9013dd3131df62733f30e4c3004335e3738b02bb22a7ad50a31c1eb3f67d2b4ef51605c7fcbf16')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+# TODO: find a better solution
+sed -i 
"s|(\"HOME\",\".\")|(\"HOME\",\".\"),(\"LD_LIBRARY_PATH\",\"$PWD/dist/build\"),(\"pandoc_citeproc_datadir\",\"$PWD\")|"
 tests/test-pandoc-citeproc.hs
+}
+
+build() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils -f-static
+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
+# https://github.com/jgm/pandoc-citeproc/issues/342
+runhaskell Setup test || warning "Tests failed"
+}
+
+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 pandoc/repos (2 files)

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:52:30
  Author: felixonmars
Revision: 712199

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc/repos/community-staging-x86_64/
  pandoc/repos/community-staging-x86_64/PKGBUILD
(from rev 712198, pandoc/trunk/PKGBUILD)

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 712198, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 18:52:30 UTC (rev 712199)
@@ -0,0 +1,70 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.10.1
+pkgrel=28
+pkgdesc='Conversion between markup formats'
+url='https://pandoc.org'
+license=('GPL')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-juicypixels' 'haskell-sha' 
'haskell-aeson'
+ 'haskell-aeson-pretty' 'haskell-attoparsec' 
'haskell-base64-bytestring'
+ 'haskell-blaze-html' 'haskell-blaze-markup' 'haskell-case-insensitive'
+ 'haskell-commonmark' 'haskell-commonmark-extensions' 
'haskell-commonmark-pandoc'
+ 'haskell-connection' 'haskell-data-default' 'haskell-doclayout'
+ 'haskell-doctemplates' 'haskell-emojis' 'haskell-glob'
+ 'haskell-haddock-library' 'haskell-ipynb' 'haskell-jira-wiki-markup' 
'haskell-skylighting'
+ 'haskell-skylighting-core' 'haskell-hslua' 
'haskell-hslua-module-system'
+ 'haskell-hslua-module-text' 'haskell-http-client' 'haskell-syb' 
'haskell-hsyaml'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-safe' 
'haskell-split'
+ 'haskell-texmath' 'haskell-network' 'haskell-pandoc-types' 
'haskell-random'
+ 'haskell-scientific' 'haskell-tagsoup' 'haskell-temporary' 
'haskell-text-conversions'
+ 'haskell-network-uri' 'haskell-unicode-transforms' 
'haskell-unordered-containers'
+ 'haskell-zip-archive' 'haskell-xml' 'haskell-zlib')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-lua'
+ 'haskell-tasty-quickcheck' 'haskell-tasty-golden' 
'haskell-quickcheck'
+ 'haskell-executable-path')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('055d0d87c621ec428da7d2c589de9e1371ec6ebf613d943573d89c8bb98f2a0d67d4c156cf31f4257f0093c69f4006d06e11426ee04e7267f535c68381cfabf2')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+sed -i 's/< *1.2/<2/' $pkgname.cabal
+
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-trypandoc -f-embed_data_files -f-static
+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 "${srcdir}/${pkgname}-${pkgver}"
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/${pkgbase}-${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 "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+install -Dm644 man/pandoc.1 "${pkgdir}"/usr/share/man/man1/pandoc.1
+}


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:52:16
  Author: felixonmars
Revision: 712198

upgpkg: pandoc 2.10.1-28: rebuild with http-date 0.0.9

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 18:43:19 UTC (rev 712197)
+++ PKGBUILD2020-09-25 18:52:16 UTC (rev 712198)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.10.1
-pkgrel=27
+pkgrel=28
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')


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

2020-09-25 Thread Jan Steffens via arch-commits
Date: Friday, September 25, 2020 @ 18:44:55
  Author: heftig
Revision: 396561

2.30.1-1

Modified:
  webkit2gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 18:44:20 UTC (rev 396560)
+++ PKGBUILD2020-09-25 18:44:55 UTC (rev 396561)
@@ -2,7 +2,7 @@
 # Contributor: Eric Bélanger 
 
 pkgname=webkit2gtk
-pkgver=2.28.4
+pkgver=2.30.1
 pkgrel=1
 pkgdesc="GTK+ Web content engine library"
 arch=(x86_64)
@@ -18,7 +18,7 @@
 'gst-plugins-bad: media decoding'
 'gst-libav: nonfree media decoding')
 source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz{,.asc})
-sha256sums=('821952e8c9303ed752f1fb1d4283f612c25249d00d705d2b79c2db1bc49c9464'
+sha256sums=('17c59dfdadb7377192e9b59bc56c8a029c9fad4f38ed732b652bf33d0bd5d6b1'
 'SKIP')
 validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3'
   '5AA3BC334FD7E3369E7C77B291C559DBE4C9123B')
@@ -30,7 +30,7 @@
 build() {
   CFLAGS+=" $CPPFLAGS"
   CXXFLAGS+=" $CPPFLAGS"
-  cmake -Hwebkitgtk-$pkgver -Bbuild -G Ninja \
+  cmake -S webkitgtk-$pkgver -B build -G Ninja \
 -DPORT=GTK \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
@@ -50,7 +50,7 @@
   depends+=(libwpe-1.0.so libWPEBackend-fdo-1.0.so)
   provides+=(libjavascriptcoregtk-4.0.so libwebkit2gtk-4.0.so)
 
-  DESTDIR="$pkgdir" cmake --build build --target install
+  DESTDIR="$pkgdir" cmake --install build
 
   cd webkitgtk-$pkgver
   find Source -name 'COPYING*' -or -name 'LICENSE*' -print0 | sort -z |


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:43:19
  Author: felixonmars
Revision: 712197

archrelease: copy trunk to community-staging-x86_64

Added:
  idris/repos/community-staging-x86_64/
  idris/repos/community-staging-x86_64/PKGBUILD
(from rev 712196, idris/trunk/PKGBUILD)

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

Copied: idris/repos/community-staging-x86_64/PKGBUILD (from rev 712196, 
idris/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 18:43:19 UTC (rev 712197)
@@ -0,0 +1,62 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=1.3.3
+pkgrel=74
+pkgdesc="Functional Programming Language with Dependent Types"
+url="https://www.idris-lang.org/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-base64-bytestring' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cheapskate' 'haskell-code-page' 
'haskell-fingertree'
+ 'haskell-fsnotify' 'haskell-ieee754' 'haskell-libffi' 
'haskell-megaparsec'
+ 'haskell-network' 'haskell-optparse-applicative' 
'haskell-parser-combinators'
+ 'haskell-regex-tdfa' 'haskell-safe' 'haskell-split' 
'haskell-terminal-size'
+ 'haskell-uniplate' 'haskell-unordered-containers' 
'haskell-utf8-string' 'haskell-vector'
+ 'haskell-vector-binary-instances' 'haskell-zip-archive')
+makedepends=('ghc' 'haskell-tagged' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-rerun'
+ 'nodejs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/idris-lang/Idris-dev/archive/v$pkgver.tar.gz;
+
idris-haskeline-0.8.patch::https://github.com/idris-lang/Idris-dev/pull/4871.patch)
+sha512sums=('fc5c65847c8021ed691c7968043a04fcffaed3a44a6339f611fed616fddefa1b5bc2da8e7e6662dfa552981688a1c96571eadc197e4e50ba060de3c6ddbd03de'
+
'5f2efe359d5626c44f0c146f108dae4635ae2c8babf53841d5147d17d5be2460ab19a0b952492c68c93fa6470989bcf396cd7fbf6c8d44ac77792a54c3bbb141')
+
+prepare() {
+cd Idris-dev-$pkgver
+patch -p1 -i ../idris-haskeline-0.8.patch
+sed -i '1ioverride IDRIS := env LD_PRELOAD=$(shell ls 
../../dist/build/libHSidris-*-ghc*.so) $(IDRIS)' \
+libs/*/Makefile
+sed -i -e 's/< *1.5/<2/;s/< *3.1.2/<3.2/;s/< *1.2/<2/;s/< *0.11/<1/' 
idris.cabal
+}
+
+build() {
+cd Idris-dev-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fFFI -fGMP -f-release -f-freestanding -f-CI -f-execonly 
--ghc-option='-pie'
+LC_CTYPE=en_US.UTF-8 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 Idris-dev-$pkgver
+# TODO: figure out the tests
+PATH="$PWD/dist/build:$PWD/dist/build/idris:$PATH" 
LD_LIBRARY_PATH="$PWD/dist/build" IDRIS_LIBRARY_PATH="$PWD/libs" runhaskell 
Setup test || warning "Tests failed"
+}
+
+package() {
+cd Idris-dev-$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 vte3/trunk (PKGBUILD)

2020-09-25 Thread Jan Steffens via arch-commits
Date: Friday, September 25, 2020 @ 18:44:20
  Author: heftig
Revision: 396560

0.62.0-1

Modified:
  vte3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 18:07:21 UTC (rev 396559)
+++ PKGBUILD2020-09-25 18:44:20 UTC (rev 396560)
@@ -1,9 +1,9 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan Alexander Steffens (heftig) 
 # Contributor: Ionut Biru 
 
 pkgbase=vte3
 pkgname=(vte3 vte-common)
-pkgver=0.60.3
+pkgver=0.62.0
 pkgrel=1
 pkgdesc="Virtual Terminal Emulator widget"
 url="https://wiki.gnome.org/Apps/Terminal/VTE;
@@ -11,7 +11,7 @@
 license=(LGPL)
 depends=(gtk3 pcre2 gnutls fribidi systemd-libs)
 makedepends=(gobject-introspection vala git gtk-doc gperf meson)
-_commit=14e68fbe47de262e8b25d8bbbf6eef6fd7c28cc2  # tags/0.60.3^0
+_commit=a6bd0926440d4bd854cb04f2daa35099b657a148  # tags/0.62.0^0
 source=("git+https://gitlab.gnome.org/GNOME/vte.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -26,7 +26,7 @@
 
 build() {
   arch-meson vte build -D docs=true -D b_lto=false
-  ninja -C build
+  meson compile -C build
 }
 
 check() {


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

2020-09-25 Thread Christian Rebischke via arch-commits
Date: Friday, September 25, 2020 @ 18:42:31
  Author: shibumi
Revision: 712195

archrelease: copy trunk to community-any

Added:
  puppet/repos/community-any/PKGBUILD
(from rev 712194, puppet/trunk/PKGBUILD)
  puppet/repos/community-any/puppet.install
(from rev 712194, puppet/trunk/puppet.install)
Deleted:
  puppet/repos/community-any/PKGBUILD
  puppet/repos/community-any/puppet.install

+
 PKGBUILD   |  228 +++
 puppet.install |   10 +-
 2 files changed, 119 insertions(+), 119 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 18:42:24 UTC (rev 712194)
+++ PKGBUILD2020-09-25 18:42:31 UTC (rev 712195)
@@ -1,114 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Jonathan Steel 
-# Contributor: Greg Sutcliffe 
-# Contributor: Hyacinthe Cartiaux 
-# Contributor: Thomas S Hatch 
-# Contributor: Xavion 
-# Contributor: Miah Johnson 
-# Contributor: Dave Simons 
-# Contributor: Niels Abspoel 
-# Contributor: Tim Meusel 
-
-pkgname=puppet
-pkgver=6.17.0
-pkgrel=1
-pkgdesc="Server automation framework and application"
-arch=('any')
-url="https://puppet.com/products/open-source-projects;
-license=('Apache')
-depends=('ruby' 'facter' 'hiera' 'ruby-semantic_puppet' 'ruby-augeas'
-'ruby-shadow' 'ruby-concurrent' 'ruby-multi_json' 'ruby-puppet-resource_api'
-'ruby-httpclient' 'ruby-deep_merge' 'ruby-sync')
-makedepends=('git' 'ruby-rspec')
-checkdepends=('ruby-rake' 'ruby-rspec' 'ruby-yard')
-backup=('etc/puppetlabs/puppet/auth.conf'
-'etc/puppetlabs/puppet/puppet.conf'
-'etc/puppetlabs/puppet/hiera.yaml')
-install="$pkgname.install"
-
-_augeas_commit=416e8fe9df9d467289e2923c083367b04e7d8bd1
-_cron_commit=4aa7bdba01493007b0d485b7ed78aee5ff347dca
-_host_commit=34dca65fe54ba08bd764691e2619371c213df70b
-_mount_commit=1e56e2588058551360269472823bf3426c5e1900
-_selinux_commit=cfa0d78156c507f1e95a4fbd91bd5a7b0c2a2ddc
-_sshkeys_commit=d28c73de96c5207409e1a1ed858399a643cca84f
-_yumrepo_commit=34a1559b2b9e5455efe39fae8c96ad55891d
-_zfs_commit=bd48971776fec1b01ae4ee401f13b06bd946107d
-_zone_commit=7880999cdcf15b9a3594b78a06e47399c78baba1
-
-source=("https://github.com/puppetlabs/puppet/archive/${pkgver}/puppet-${pkgver}.tar.gz;
-
"augeas_core::git+https://github.com/puppetlabs/puppetlabs-augeas_core#commit=${_augeas_commit};
-
"cron_core::git+https://github.com/puppetlabs/puppetlabs-cron_core#commit=${_cron_commit};
-
"host_core::git+https://github.com/puppetlabs/puppetlabs-host_core#commit=${_host_commit};
-
"mount_core::git+https://github.com/puppetlabs/puppetlabs-mount_core#commit=${_mount_commit};
-
"selinux_core::git+https://github.com/puppetlabs/puppetlabs-selinux_core#commit=${_selinux_commit};
-
"sshkeys_core::git+https://github.com/puppetlabs/puppetlabs-sshkeys_core#commit=${_sshkeys_commit};
-
"yumrepo_core::git+https://github.com/puppetlabs/puppetlabs-yumrepo_core#commit=${_yumrepo_commit};
-
"zfs_core::git+https://github.com/puppetlabs/puppetlabs-zfs_core#commit=${_zfs_commit};
-
"zone_core::git+https://github.com/puppetlabs/puppetlabs-zone_core#commit=${_zone_commit};
-)
-sha512sums=('6e7695f4bc5611224e00536f23877997ea2a74044c2c9bd20c8d60ac5daafcf24ee2a44871e6d7acb23328166fecb933ac83c0cb3d44eeb7d83394e9b893dca2'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-conflicts=('puppet5')
-provides=('puppet')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-
-  # FS#45044: fix file location
-  sed -i 's_/opt/puppetlabs/puppet_/usr_' ext/systemd/puppet.service
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  # This breaks right now due to missing dependencies
-  #rake --tasks  # show all tasks
-  #rake commits # requires a git repo
-  #rake warnings# requires a git repo
-  #rake spec# run tests single threaded
-  #rake parallel:spec[8]
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  # generate manpages | this breaks right now..
-  #rake gen_manpages
-
-  ruby install.rb --destdir="$pkgdir" --sitelibdir="$( ruby -e \
-'puts RbConfig::CONFIG["vendorlibdir"]' )"
-
-  install -d "$pkgdir"/usr/lib/{sysusers.d,tmpfiles.d}
-
-  echo 'u puppet 52 "Puppet" /var/lib/puppet' > \
-"$pkgdir"/usr/lib/sysusers.d/$pkgname.conf
-  echo "d /run/puppetlabs 0755 $pkgname $pkgname -" > \
-"$pkgdir"/usr/lib/tmpfiles.d/$pkgname.conf
-
-  # systemd
-  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/systemd/$pkgname.service \
-"$pkgdir"/usr/lib/systemd/system/$pkgname.service
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  # Match permissions that puppet sets when running
-  install -dm775 "$pkgdir"/var/lib/puppet
-  chmod 750 

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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:43:04
  Author: felixonmars
Revision: 712196

upgpkg: idris 1.3.3-74: rebuild with http-date 0.0.9

Modified:
  idris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 18:42:31 UTC (rev 712195)
+++ PKGBUILD2020-09-25 18:43:04 UTC (rev 712196)
@@ -3,7 +3,7 @@
 
 pkgname=idris
 pkgver=1.3.3
-pkgrel=73
+pkgrel=74
 pkgdesc="Functional Programming Language with Dependent Types"
 url="https://www.idris-lang.org/;
 license=("BSD")


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

2020-09-25 Thread Christian Rebischke via arch-commits
Date: Friday, September 25, 2020 @ 18:42:24
  Author: shibumi
Revision: 712194

upgpkg: puppet 6.18.0-1

Modified:
  puppet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 18:30:02 UTC (rev 712193)
+++ PKGBUILD2020-09-25 18:42:24 UTC (rev 712194)
@@ -10,7 +10,7 @@
 # Contributor: Tim Meusel 
 
 pkgname=puppet
-pkgver=6.17.0
+pkgver=6.18.0
 pkgrel=1
 pkgdesc="Server automation framework and application"
 arch=('any')
@@ -27,13 +27,13 @@
 install="$pkgname.install"
 
 _augeas_commit=416e8fe9df9d467289e2923c083367b04e7d8bd1
-_cron_commit=4aa7bdba01493007b0d485b7ed78aee5ff347dca
+_cron_commit=cebfbf3365b08e967366c8e1b26e0297d17268d3
 _host_commit=34dca65fe54ba08bd764691e2619371c213df70b
 _mount_commit=1e56e2588058551360269472823bf3426c5e1900
 _selinux_commit=cfa0d78156c507f1e95a4fbd91bd5a7b0c2a2ddc
-_sshkeys_commit=d28c73de96c5207409e1a1ed858399a643cca84f
-_yumrepo_commit=34a1559b2b9e5455efe39fae8c96ad55891d
-_zfs_commit=bd48971776fec1b01ae4ee401f13b06bd946107d
+_sshkeys_commit=8eacd67a7235fc36370084ef2b094ea2e032b536
+_yumrepo_commit=4bf78c89309e2539342aaed5b9c92ea6a0a96281
+_zfs_commit=98192e8adecd7fa60bcb8c49c6af62faeda22730
 _zone_commit=7880999cdcf15b9a3594b78a06e47399c78baba1
 
 
source=("https://github.com/puppetlabs/puppet/archive/${pkgver}/puppet-${pkgver}.tar.gz;
@@ -47,7 +47,7 @@
 
"zfs_core::git+https://github.com/puppetlabs/puppetlabs-zfs_core#commit=${_zfs_commit};
 
"zone_core::git+https://github.com/puppetlabs/puppetlabs-zone_core#commit=${_zone_commit};
 )
-sha512sums=('6e7695f4bc5611224e00536f23877997ea2a74044c2c9bd20c8d60ac5daafcf24ee2a44871e6d7acb23328166fecb933ac83c0cb3d44eeb7d83394e9b893dca2'
+sha512sums=('35bd0d987a0b2fe716ae623a3b39a5d97f56e6db04f02b779527f32bd085f2fbc1530f8d3e9bcf87065aeedd2d877b1b7fe66219940489a9fca1be8506519e6f'
 'SKIP'
 'SKIP'
 'SKIP'


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:29:48
  Author: felixonmars
Revision: 712192

upgpkg: hopenpgp-tools 0.23.1-122: rebuild with http-date 0.0.9

Modified:
  hopenpgp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 18:28:35 UTC (rev 712191)
+++ PKGBUILD2020-09-25 18:29:48 UTC (rev 712192)
@@ -3,7 +3,7 @@
 
 pkgname=hopenpgp-tools
 pkgver=0.23.1
-pkgrel=121
+pkgrel=122
 pkgdesc="hOpenPGP-based command-line tools"
 url="https://salsa.debian.org/clint/hopenpgp-tools;
 license=("AGPL3")


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:30:02
  Author: felixonmars
Revision: 712193

archrelease: copy trunk to community-staging-x86_64

Added:
  hopenpgp-tools/repos/community-staging-x86_64/
  hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD
(from rev 712192, hopenpgp-tools/trunk/PKGBUILD)

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

Copied: hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD (from rev 
712192, hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 18:30:02 UTC (rev 712193)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.23.1
+pkgrel=122
+pkgdesc="hOpenPGP-based command-line tools"
+url="https://salsa.debian.org/clint/hopenpgp-tools;
+license=("AGPL3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-binary-conduit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-crypto-pubkey'
+ 'haskell-cryptohash' 'haskell-errors' 'haskell-fgl' 
'haskell-graphviz' 'haskell-hopenpgp'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-ixset-typed'
+ 'haskell-lens' 'haskell-monad-loops' 'haskell-openpgp-asciiarmor'
+ 'haskell-optparse-applicative' 'haskell-prettyprinter'
+ 'haskell-prettyprinter-ansi-terminal' 
'haskell-prettyprinter-convert-ansi-wl-pprint'
+ 'haskell-resourcet' 'haskell-time-locale-compat' 'haskell-yaml')
+makedepends=('alex' 'happy' 'ghc')
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('325a188af92587b84e453e73a40ed11cf6682632fed514c8971ebd2e684b949fb71cb5942b6efa93f95199f76a065a751ae82ad246c15c5593fecdee1ec0f533')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build $MAKEFLAGS
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
+rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
+}


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:28:35
  Author: felixonmars
Revision: 712191

archrelease: copy trunk to community-staging-x86_64

Added:
  hoogle/repos/community-staging-x86_64/
  hoogle/repos/community-staging-x86_64/PKGBUILD
(from rev 712190, hoogle/trunk/PKGBUILD)

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

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 712190, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 18:28:35 UTC (rev 712191)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.18
+pkgrel=52
+pkgdesc="Haskell API Search"
+url="https://www.haskell.org/hoogle/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cmdargs' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-connection' 'haskell-extra' 'haskell-foundation' 
'haskell-hashable'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-mmap' 'haskell-network' 'haskell-old-locale' 
'haskell-process-extras'
+ 'haskell-resourcet' 'haskell-src-exts' 'haskell-storable-tuple' 
'haskell-tar'
+ 'haskell-uniplate' 'haskell-utf8-string' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-logger' 'haskell-warp' 'haskell-warp-tls' 'haskell-zlib')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('a5f636513f89574e9fca721d9afdb35e56908ed56b31e292e874125ce997cd76fb2a035037564deb217cc62952d45a6f75adf1e60a9009b3106e23c919cf93cd')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--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
+}
+
+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 hoogle/trunk (PKGBUILD)

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:28:22
  Author: felixonmars
Revision: 712190

upgpkg: hoogle 5.0.18-52: rebuild with http-date 0.0.9

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 18:27:21 UTC (rev 712189)
+++ PKGBUILD2020-09-25 18:28:22 UTC (rev 712190)
@@ -3,7 +3,7 @@
 
 pkgname=hoogle
 pkgver=5.0.18
-pkgrel=51
+pkgrel=52
 pkgdesc="Haskell API Search"
 url="https://www.haskell.org/hoogle/;
 license=("BSD")


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:27:21
  Author: felixonmars
Revision: 712189

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-web/repos/community-staging-x86_64/
  hledger-web/repos/community-staging-x86_64/PKGBUILD
(from rev 712188, hledger-web/trunk/PKGBUILD)

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 712188, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 18:27:21 UTC (rev 712189)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.19.1
+pkgrel=12
+pkgdesc="Web-based user interface for the hledger accounting system"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 
'haskell-clientsession'
+ 'haskell-cmdargs' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-data-default'
+ 'haskell-decimal' 'haskell-extra' 'haskell-hjsmin' 
'haskell-http-conduit'
+ 'haskell-http-client' 'haskell-http-types' 'haskell-megaparsec' 
'haskell-network'
+ 'haskell-shakespeare' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-wai' 'haskell-wai-cors' 
'haskell-wai-extra'
+ 'haskell-wai-handler-launch' 'haskell-warp' 'haskell-yesod' 
'haskell-yesod-core'
+ 'haskell-yesod-form' 'haskell-yesod-static')
+makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test')
+replaces=('hledger-api')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('adef619601e918962e7b9eb9a4cd4a5e094b2ad245461d1cddcf9cfdb1c8d9f3b5b7ea08adee50c7855cbac28cf8216decc00dd1f3c1d6fc7da91aeecd9ed1be')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+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 "${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}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-25 Thread Felix Yan via arch-commits
Date: Friday, September 25, 2020 @ 18:27:06
  Author: felixonmars
Revision: 712188

upgpkg: hledger-web 1.19.1-12: rebuild with http-date 0.0.9

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 18:26:03 UTC (rev 712187)
+++ PKGBUILD2020-09-25 18:27:06 UTC (rev 712188)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.19.1
-pkgrel=11
+pkgrel=12
 pkgdesc="Web-based user interface for the hledger accounting system"
 url="http://hledger.org;
 license=("GPL")


  1   2   3   4   >