[arch-commits] Commit in nvidia-lts/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:20
  Author: heftig
Revision: 387047

archrelease: copy trunk to testing-x86_64

Added:
  nvidia-lts/repos/testing-x86_64/
  nvidia-lts/repos/testing-x86_64/PKGBUILD
(from rev 387045, nvidia-lts/trunk/PKGBUILD)

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

Copied: nvidia-lts/repos/testing-x86_64/PKGBUILD (from rev 387045, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-20 23:01:20 UTC (rev 387047)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=440.82
+pkgrel=17
+epoch=1
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=('linux-lts-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

[arch-commits] Commit in nvidia/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:21
  Author: heftig
Revision: 387048

archrelease: copy trunk to testing-x86_64

Added:
  nvidia/repos/testing-x86_64/
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 387045, nvidia/trunk/PKGBUILD)

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

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 387045, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-20 23:01:21 UTC (rev 387048)
@@ -0,0 +1,40 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=440.82
+pkgrel=17
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=('linux-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:18
  Author: heftig
Revision: 631028

archrelease: copy trunk to community-testing-x86_64

Added:
  deepin-anything-arch/repos/community-testing-x86_64/
  deepin-anything-arch/repos/community-testing-x86_64/0001-linux-5.6.patch
(from rev 631025, deepin-anything-arch/trunk/0001-linux-5.6.patch)
  deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 631027, deepin-anything-arch/trunk/PKGBUILD)

--+
 0001-linux-5.6.patch |   40 
 PKGBUILD |   35 +++
 2 files changed, 75 insertions(+)

Copied: 
deepin-anything-arch/repos/community-testing-x86_64/0001-linux-5.6.patch (from 
rev 631025, deepin-anything-arch/trunk/0001-linux-5.6.patch)
===
--- community-testing-x86_64/0001-linux-5.6.patch   
(rev 0)
+++ community-testing-x86_64/0001-linux-5.6.patch   2020-05-20 23:01:18 UTC 
(rev 631028)
@@ -0,0 +1,40 @@
+diff --git a/kernelmod/vfs_change.c b/kernelmod/vfs_change.c
+index 6a0e334..e25faf4 100644
+--- a/kernelmod/vfs_change.c
 b/kernelmod/vfs_change.c
+@@ -125,7 +125,11 @@ static ssize_t copy_vfs_changes(struct TIMESTRUCT *last, 
char* buf, size_t size)
+   ))
+   continue;
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 6, 0)
+   time_t shifted_secs = vc->ts.tv_sec + hour_shift*3600;
++#else
++  time64_t shifted_secs = vc->ts.tv_sec + hour_shift*3600;
++#endif
+   struct tm ts;
+ #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 20, 0)
+   time_to_tm(shifted_secs, 0, );
+@@ -333,6 +337,7 @@ static long ioctl_vfs_changes(struct file* filp, unsigned 
int cmd, unsigned long
+   }
+ }
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 6, 0)
+ static struct file_operations procfs_ops = {
+   .owner = THIS_MODULE,
+   .open = open_vfs_changes,
+@@ -342,6 +347,15 @@ static struct file_operations procfs_ops = {
+   //.llseek = generic_file_llseek,
+   .release = release_vfs_changes,
+ };
++#else
++static struct proc_ops procfs_ops = {
++  .proc_open = open_vfs_changes,
++  .proc_read = read_vfs_changes,
++  .proc_ioctl = ioctl_vfs_changes,
++  .proc_lseek = no_llseek,
++  .proc_release = release_vfs_changes,
++};
++#endif
+ 
+ int __init init_vfs_changes(void)
+ {

Copied: deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD (from rev 
631027, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-20 23:01:18 UTC (rev 631028)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=5.0.1
+pkgrel=82
+pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-anything;
+license=('GPL3')
+makedepends=('linux-headers')
+provides=('DEEPIN-ANYTHING-MODULE')
+replaces=('deepin-anything-module')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-anything/archive/$pkgver.tar.gz;
+'0001-linux-5.6.patch')
+sha512sums=('f79b4db917cce2611bd6964d00ae0e162fc500fa7ca76a987145456a9ee81296c776d2b83cf6492a4224c4e4fd95df3ad95a25c1c14d2d4e6865f5bbd639be14'
+
'5ddbd2d968bc5b01dbc99648cec81ea072675d7fe7198835649d5b581997945d32bd842dd7ebf60185aa84722b94575ac7aeb5e4616945e22fae53272907305b')
+
+prepare() {
+  cd deepin-anything-$pkgver
+  patch -Np1 < ../0001-linux-5.6.patch
+}
+
+build() {
+  cd deepin-anything-$pkgver
+  make -C kernelmod kdir=/usr/src/linux
+}
+
+package() {
+  depends=('linux')
+
+  cd deepin-anything-$pkgver
+  local extradir=/usr/lib/modules/$(

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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:22
  Author: heftig
Revision: 631018

5.0.1-82: linux 5.6.14.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:20 UTC (rev 631017)
+++ PKGBUILD2020-05-20 23:00:22 UTC (rev 631018)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-anything-arch
 pkgver=5.0.1
-pkgrel=81
+pkgrel=82
 pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-anything;


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:19
  Author: heftig
Revision: 631030

archrelease: copy trunk to community-testing-x86_64

Added:
  tp_smapi-lts/repos/community-testing-x86_64/
  tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD
(from rev 631028, tp_smapi-lts/trunk/PKGBUILD)

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

Copied: tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD (from rev 631028, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-20 23:01:19 UTC (rev 631030)
@@ -0,0 +1,50 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi-lts
+pkgver=0.43
+pkgrel=68
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+makedepends=('linux-lts-headers' 'git')
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd tp_smapi
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd tp_smapi
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(

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

2020-05-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, May 20, 2020 @ 21:08:43
  Author: bisson
Revision: 630995

upstream update

Modified:
  unbound/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 21:03:40 UTC (rev 630994)
+++ PKGBUILD2020-05-20 21:08:43 UTC (rev 630995)
@@ -3,8 +3,8 @@
 # Contributor: Massimiliano Torromeo 
 
 pkgname=unbound
-pkgver=1.10.0
-pkgrel=3
+pkgver=1.10.1
+pkgrel=1
 pkgdesc='Validating, recursive, and caching DNS resolver'
 url='https://unbound.net/'
 license=('custom:BSD')
@@ -19,7 +19,7 @@
 'sysusers.d'
 'tmpfiles.d'
 'hook')
-sha256sums=('152f486578242fe5c36e89995d0440b78d64c05123990aae16246b7f776ce955'
+sha256sums=('b73677c21a71cf92f15cc8cfe76a3d875e40f65b6150081c39620b286582d536'
 'SKIP'
 '85b8f00881fb93bcce83bdfe3246463a396eb5b352c0d7f5fca32fcb839d22fa'
 '31a573f43287dd7e3678be1680388bfc7d8dee8280eb2443f521a4b349aaa6b6'


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

2020-05-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, May 20, 2020 @ 21:15:09
  Author: bisson
Revision: 630997

archrelease: copy trunk to community-staging-x86_64

Added:
  unbound/repos/community-staging-x86_64/PKGBUILD
(from rev 630996, unbound/trunk/PKGBUILD)
  unbound/repos/community-staging-x86_64/hook
(from rev 630996, unbound/trunk/hook)
  unbound/repos/community-staging-x86_64/sysusers.d
(from rev 630996, unbound/trunk/sysusers.d)
  unbound/repos/community-staging-x86_64/tmpfiles.d
(from rev 630996, unbound/trunk/tmpfiles.d)
Deleted:
  unbound/repos/community-staging-x86_64/PKGBUILD
  unbound/repos/community-staging-x86_64/hook
  unbound/repos/community-staging-x86_64/sysusers.d
  unbound/repos/community-staging-x86_64/tmpfiles.d

+
 PKGBUILD   |  138 +--
 hook   |   20 
 sysusers.d |2 
 tmpfiles.d |2 
 4 files changed, 81 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 21:09:11 UTC (rev 630996)
+++ PKGBUILD2020-05-20 21:15:09 UTC (rev 630997)
@@ -1,69 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Hisato Tatekura 
-# Contributor: Massimiliano Torromeo 
-
-pkgname=unbound
-pkgver=1.10.0
-pkgrel=3
-pkgdesc='Validating, recursive, and caching DNS resolver'
-url='https://unbound.net/'
-license=('custom:BSD')
-arch=('x86_64')
-makedepends=('expat')
-optdepends=('expat: unbound-anchor')
-depends=('fstrm' 'openssl' 'libsodium' 'protobuf-c' 'libevent' 'hiredis' 
'ldns' 'dnssec-anchors')
-backup=('etc/unbound/unbound.conf')
-validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D'
-  '21615A7F2478EA8C27DD26B830918D8275724222')
-source=("https://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
-'sysusers.d'
-'tmpfiles.d'
-'hook')
-sha256sums=('152f486578242fe5c36e89995d0440b78d64c05123990aae16246b7f776ce955'
-'SKIP'
-'85b8f00881fb93bcce83bdfe3246463a396eb5b352c0d7f5fca32fcb839d22fa'
-'31a573f43287dd7e3678be1680388bfc7d8dee8280eb2443f521a4b349aaa6b6'
-'afb7a0a5e2da327c27c8f666b1ffaf34689121684c301928624221ac1d0c066a')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed '/# trust-anchor-file:/c\\ttrust-anchor-file: 
/etc/unbound/trusted-key.key' -i doc/example.conf.in
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --sbindir=/usr/bin \
-   --disable-rpath \
-   --enable-dnscrypt \
-   --enable-dnstap \
-   --enable-pie \
-   --enable-relro-now \
-   --enable-subnet \
-   --enable-systemd \
-   --enable-tfo-client \
-   --enable-tfo-server \
-   --enable-cachedb \
-   --with-libhiredis \
-   --with-conf-file=/etc/unbound/unbound.conf \
-   --with-pidfile=/run/unbound.pid \
-   --with-rootkey-file=/etc/trusted-key.key \
-   --with-libevent \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 contrib/unbound.service 
"${pkgdir}/usr/lib/systemd/system/unbound.service"
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   install -Dm644 ../sysusers.d "${pkgdir}/usr/lib/sysusers.d/unbound.conf"
-
-   # Trust anchor file available from within unbound's chroot.
-   install -Dm644 ../tmpfiles.d "${pkgdir}/usr/lib/tmpfiles.d/unbound.conf"
-   install -Dm644 ../hook 
"${pkgdir}/usr/share/libalpm/hooks/unbound-key.hook"
-}

Copied: unbound/repos/community-staging-x86_64/PKGBUILD (from rev 630996, 
unbound/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 21:15:09 UTC (rev 630997)
@@ -0,0 +1,69 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Hisato Tatekura 
+# Contributor: Massimiliano Torromeo 
+
+pkgname=unbound
+pkgver=1.10.1
+pkgrel=1
+pkgdesc='Validating, recursive, and caching DNS resolver'
+url='https://unbound.net/'
+license=('custom:BSD')
+arch=('x86_64')
+makedepends=('expat')
+optdepends=('expat: unbound-anchor')
+depends=('fstrm' 'openssl' 'libsodium' 'protobuf-c' 'libevent' 'hiredis' 
'ldns' 'dnssec-anchors')
+backup=('etc/unbound/unbound.conf')
+validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D'
+  '21615A7F2478EA8C27DD26B830918D8275724222')
+source=("https://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'sysusers.d'
+'tmpfiles.d'
+'hook')
+sha256sums=('b73677c21a71cf92f15cc8cfe76a3d875e40f65b6150081c39620b286582d536'
+'SKIP'
+

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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 19:18:20
  Author: felixonmars
Revision: 630972

upgpkg: shellcheck 0.7.1-19: rebuild with skylighting 0.8.4, skylighting-core 
0.8.4

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 19:15:09 UTC (rev 630971)
+++ PKGBUILD2020-05-20 19:18:20 UTC (rev 630972)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.7.1
-pkgrel=18
+pkgrel=19
 pkgdesc="Shell script analysis tool"
 url="https://www.shellcheck.net;
 license=("GPL")


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 19:18:34
  Author: felixonmars
Revision: 630973

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 630972, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 19:18:34 UTC (rev 630973)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.7.1
+pkgrel=19
+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 mumble/repos (2 files)

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 21:32:36
  Author: dvzrv
Revision: 631001

archrelease: copy trunk to community-staging-x86_64

Added:
  mumble/repos/community-staging-x86_64/
  mumble/repos/community-staging-x86_64/PKGBUILD
(from rev 631000, mumble/trunk/PKGBUILD)

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

Copied: mumble/repos/community-staging-x86_64/PKGBUILD (from rev 631000, 
mumble/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 21:32:36 UTC (rev 631001)
@@ -0,0 +1,74 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: David Runge 
+# Contributor: Lauri Niskanen 
+# Contributor: sebastian.sal...@gmx.de
+# Contributor: Doc Angelo
+
+pkgname=mumble
+pkgver=1.3.0
+pkgrel=9
+arch=('x86_64')
+pkgdesc="A voice chat application similar to TeamSpeak"
+license=('BSD')
+depends=('gcc-libs' 'glibc' 'hicolor-icon-theme' 'libspeechd' 'libx11' 'libxi'
+'lsb-release' 'openssl' 'opus' 'qt5-base' 'qt5-svg' 'speex' 'xdg-utils')
+makedepends=('alsa-lib' 'avahi' 'boost' 'jack' 'libpulse' 'libsndfile' 'mesa'
+'protobuf' 'python' 'qt5-tools')
+optdepends=('speech-dispatcher: Text-to-speech support'
+'espeak-ng: Text-to-speech support')
+url="https://www.mumble.info/;
+source=("https://github.com/mumble-voip/mumble/releases/download/${pkgver}/mumble-${pkgver}.tar.gz"{,.sig}
+
"${pkgname}-1.3.0-jack.patch::https://github.com/mumble-voip/mumble/pull/3990.patch;)
+sha512sums=('2a629fc97f3c7c587c9a3b40fc96cf15d668acada37282ec1c4a5b169ad37717d60af94d12c7bce45f2816c265f76a99ebad40a006adcf8ca38a117e7c0a4122'
+'SKIP'
+
'11e4e1b65b8d1fb0aa07b0eff131026a6f8d6063ed57b67d9ea23152ff55e9fdb5f65691089fa8b0498d7609f6bad7e1367eb5c8b9adfd1db1d48c908618d217')
+validpgpkeys=('56D0B23AE00B1EE9A8BAAC0F5B8CF87BB893449B') # Mumble Automatic 
Build Infrastructure 2019 
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  # changing the default to *not* unconditionally and automatically start a
+  # JACK server, when mumble is started
+  # https://bugs.archlinux.org/task/62755
+  # https://github.com/mumble-voip/mumble/issues/3989
+  patch -Np1 -i "../${pkgname}-1.3.0-jack.patch"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  qmake-qt5 main.pro \
+CONFIG+="no-bundled-opus no-bundled-speex no-g15 no-xevie no-server \
+no-embed-qt-translations no-update packaged" \
+DEFINES+="PLUGIN_PATH=/usr/lib/mumble" \
+INCLUDEPATH+="/usr/include/speech-dispatcher"
+  make release
+}
+
+package() {
+  depends+=('libasound.so' 'libdns_sd.so' 'libjack.so' 'libprotobuf.so'
+  'libpulse.so' 'libsndfile.so')
+  cd "$pkgname-$pkgver"
+  # mumble has no install target: 
https://github.com/mumble-voip/mumble/issues/1029
+  # binaries and scripts
+  install -vDm 755 release/mumble -t "$pkgdir/usr/bin"
+  install -vDm 755 scripts/mumble-overlay -t "$pkgdir/usr/bin/"
+  # (vendored) libs
+  install -vdm 755 "$pkgdir/usr/lib/mumble/"
+  local _lib
+  for _lib in release/*.so*; do
+if [ -L "$_lib" ]; then
+  cp -vP "$_lib" "$pkgdir/usr/lib/mumble/"
+else
+  install -vDm 755 "$_lib" -t "$pkgdir/usr/lib/mumble/"
+fi
+  done
+  install -vDm 755 release/plugins/*.so -t "$pkgdir/usr/lib/mumble/"
+  # XDG desktop integration
+  install -vDm 644 scripts/mumble.desktop -t "$pkgdir/usr/share/applications"
+  # man page
+  install -vDm 644 "man/${pkgname}"*.1 -t "$pkgdir/usr/share/man/man1/"
+  # XDG desktop icons
+  install -vDm 644 icons/mumble.svg -t 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/"
+  # license
+  install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}
+# vim: sw=2:ts=2 et:


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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 21:31:56
  Author: dvzrv
Revision: 631000

upgpkg: mumble 1.3.0-9: Rebuilding against protobuf 3.12.

Modified:
  mumble/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 21:19:22 UTC (rev 630999)
+++ PKGBUILD2020-05-20 21:31:56 UTC (rev 631000)
@@ -6,7 +6,7 @@
 
 pkgname=mumble
 pkgver=1.3.0
-pkgrel=8
+pkgrel=9
 arch=('x86_64')
 pkgdesc="A voice chat application similar to TeamSpeak"
 license=('BSD')


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 19:12:19
  Author: felixonmars
Revision: 630967

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 630966, haskell-hakyll/trunk/PKGBUILD)

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
630966, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 19:12:19 UTC (rev 630967)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.13.3.0
+pkgrel=25
+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;)
+sha512sums=('104b0ab5092d2f0b7017ff8beae2bbe2fdcbfe37fe9d2cf3165227856e2ab3e13d25f0b4827aab450b5ded447763044580a63a41762e3523f29eb1e647666918')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.1/<3/;s/< *1.3/<2/;s/< *0.0.12/<1/' $_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-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 19:12:04
  Author: felixonmars
Revision: 630966

upgpkg: haskell-hakyll 4.13.3.0-25: rebuild with skylighting 0.8.4, 
skylighting-core 0.8.4

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 19:10:02 UTC (rev 630965)
+++ PKGBUILD2020-05-20 19:12:04 UTC (rev 630966)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.13.3.0
-pkgrel=24
+pkgrel=25
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll;
 license=("BSD")


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

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

archrelease: copy trunk to community-x86_64

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

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

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

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

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

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

Upstream update to 1.5.0 and apply golang changes

Modified:
  loki/trunk/PKGBUILD

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

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


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

2020-05-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, May 20, 2020 @ 19:49:53
  Author: arojas
Revision: 630981

Update to 0.29.19

Modified:
  cython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 19:26:44 UTC (rev 630980)
+++ PKGBUILD2020-05-20 19:49:53 UTC (rev 630981)
@@ -4,7 +4,7 @@
 
 pkgname=(cython cython2)
 pkgbase=cython
-pkgver=0.29.18
+pkgver=0.29.19
 pkgrel=1
 pkgdesc="C-Extensions for Python"
 arch=(x86_64)
@@ -13,7 +13,7 @@
 makedepends=(python-setuptools python2-setuptools)
 
source=($pkgbase-$pkgver.tar.gz::"https://github.com/cython/cython/archive/$pkgver.tar.gz;
 
cython-hash-int-conversion.patch::"https://github.com/cython/cython/commit/28251032.patch;)
-sha256sums=('60a9afcdb82d7f9306dce5e3875111d9f34f165246605d01f7a360978c7e89a6'
+sha256sums=('9d27b6261ce8bffdf811a713df7f0be5a168b46b229db334592f8ecf8976f07b'
 '28b2b065a9853e86d0bc09287e8a21f50ebc1f3cfee3b2ab03b6b917cb9e81d8')
 
 prepare() {


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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 20:35:09
  Author: dvzrv
Revision: 630985

upgpkg: freerdp 1:2.1.1-1: Upgrading to 2.1.1.

Applying latest cmake packaging guidelines.

Modified:
  freerdp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 20:31:50 UTC (rev 630984)
+++ PKGBUILD2020-05-20 20:35:09 UTC (rev 630985)
@@ -4,8 +4,8 @@
 
 _name=FreeRDP
 pkgname=freerdp
-epoch=2
-pkgver=2.1.0
+epoch=1
+pkgver=2.1.1
 pkgrel=1
 pkgdesc="Free implementation of the Remote Desktop Protocol (RDP)"
 arch=('x86_64')
@@ -22,7 +22,7 @@
 'libwinpr-tools2.so' 'libuwac0.so')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
 "$pkgname-2.0.0-manpage_formatting.patch")
-sha512sums=('afed8893128067b688bf5ba87e7d28296ece3b4848d84653ab0ad0c3723b6a8bc36733aca9649fb29a0d4a53b39fdd49d56d17e9b4eac8bf7b06fa4b27e66b14'
+sha512sums=('e3e667f9a1f954ce914e7dcd24ba4d171fd147e812883ebcb67363dde4054e2d3cbe5fe4e7104fe52f84453c67e32281b5ee62889ba68850ba762196549855ba'
 
'd960e042d1527b5d5721136b6b20fc36f65beafd010581ea5b908668537fe9fe622de6689a29c0274b0d6f1e513615f0d02e56c1d1d1e613d093e145d39af8d7')
 
 prepare() {
@@ -35,6 +35,8 @@
 
 build() {
   cd "${pkgname}-${pkgver}"
+  export CFLAGS+=" ${CPPFLAGS}"
+  export CXXFLAGS+=" ${CPPFLAGS}"
   cmake -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_INSTALL_LIBDIR=lib \
 -DWITH_DSP_FFMPEG=ON \
@@ -50,6 +52,8 @@
 -DWITH_SERVER_CHANNELS=ON \
 -DCHANNEL_URBDRC_CLIENT=ON \
 -DPROXY_PLUGINDIR=/usr/lib/freerdp2/server/proxy/plugins \
+-DCMAKE_BUILD_TYPE='None' \
+-Wno-dev \
 -B build \
 -S .
   make VERBOSE=1 -C build


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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 20:35:15
  Author: dvzrv
Revision: 630986

archrelease: copy trunk to community-x86_64

Added:
  freerdp/repos/community-x86_64/PKGBUILD
(from rev 630985, freerdp/trunk/PKGBUILD)
  freerdp/repos/community-x86_64/freerdp-2.0.0-manpage_formatting.patch
(from rev 630985, freerdp/trunk/freerdp-2.0.0-manpage_formatting.patch)
Deleted:
  freerdp/repos/community-x86_64/PKGBUILD
  freerdp/repos/community-x86_64/freerdp-2.0.0-manpage_formatting.patch

+
 PKGBUILD   |  134 +++
 freerdp-2.0.0-manpage_formatting.patch |   24 ++---
 2 files changed, 81 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 20:35:09 UTC (rev 630985)
+++ PKGBUILD2020-05-20 20:35:15 UTC (rev 630986)
@@ -1,65 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: David Runge 
-# Contributor: Stijn Segers 
-
-_name=FreeRDP
-pkgname=freerdp
-epoch=2
-pkgver=2.1.0
-pkgrel=1
-pkgdesc="Free implementation of the Remote Desktop Protocol (RDP)"
-arch=('x86_64')
-url="https://www.freerdp.com/;
-license=('Apache')
-depends=('dbus-glib' 'glibc' 'gstreamer' 'gst-plugins-base-libs' 'libcups'
-'libjpeg-turbo' 'libgssglue' 'libx11' 'libxcursor' 'libxext' 'libxdamage'
-'libxfixes' 'libxkbcommon' 'libxi' 'libxinerama' 'libxkbfile' 'libxrandr'
-'libxrender' 'libxtst' 'openssl' 'pam' 'pcsclite' 'wayland')
-makedepends=('alsa-lib' 'cmake' 'docbook-xsl' 'ffmpeg' 'krb5' 'libpulse'
-'libusb' 'systemd-libs' 'xmlto' 'xorgproto')
-provides=('libfreerdp2.so' 'libfreerdp-client2.so' 'libfreerdp-server2'
-'libfreerdp-shadow2.so' 'libfreerdp-shadow-subsystem2.so' 'libwinpr2.so'
-'libwinpr-tools2.so' 'libuwac0.so')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
-"$pkgname-2.0.0-manpage_formatting.patch")
-sha512sums=('afed8893128067b688bf5ba87e7d28296ece3b4848d84653ab0ad0c3723b6a8bc36733aca9649fb29a0d4a53b39fdd49d56d17e9b4eac8bf7b06fa4b27e66b14'
-
'd960e042d1527b5d5721136b6b20fc36f65beafd010581ea5b908668537fe9fe622de6689a29c0274b0d6f1e513615f0d02e56c1d1d1e613d093e145d39af8d7')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  # fix man page formatting:
-  # https://bugs.archlinux.org/task/64814
-  patch -Np1 -i "../${pkgname}-2.0.0-manpage_formatting.patch"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DWITH_DSP_FFMPEG=ON \
--DWITH_FFMPEG=ON \
--DWITH_PULSE=ON \
--DWITH_CUPS=ON \
--DWITH_PCSC=ON \
--DWITH_JPEG=ON \
--DWITH_SERVER=ON \
--DWITH_SWSCALE=ON \
--DWITH_CHANNELS=ON \
--DWITH_CLIENT_CHANNELS=ON \
--DWITH_SERVER_CHANNELS=ON \
--DCHANNEL_URBDRC_CLIENT=ON \
--DPROXY_PLUGINDIR=/usr/lib/freerdp2/server/proxy/plugins \
--B build \
--S .
-  make VERBOSE=1 -C build
-}
-
-package() {
-  depends+=('libasound.so' 'libavcodec.so' 'libavutil.so' 'libpulse.so'
-  'libswscale.so' 'libswresample.so' 'libsystemd.so' 'libusb-1.0.so')
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install -C build
-  install -vDm 644 {ChangeLog,README.md} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: freerdp/repos/community-x86_64/PKGBUILD (from rev 630985, 
freerdp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 20:35:15 UTC (rev 630986)
@@ -0,0 +1,69 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: David Runge 
+# Contributor: Stijn Segers 
+
+_name=FreeRDP
+pkgname=freerdp
+epoch=1
+pkgver=2.1.1
+pkgrel=1
+pkgdesc="Free implementation of the Remote Desktop Protocol (RDP)"
+arch=('x86_64')
+url="https://www.freerdp.com/;
+license=('Apache')
+depends=('dbus-glib' 'glibc' 'gstreamer' 'gst-plugins-base-libs' 'libcups'
+'libjpeg-turbo' 'libgssglue' 'libx11' 'libxcursor' 'libxext' 'libxdamage'
+'libxfixes' 'libxkbcommon' 'libxi' 'libxinerama' 'libxkbfile' 'libxrandr'
+'libxrender' 'libxtst' 'openssl' 'pam' 'pcsclite' 'wayland')
+makedepends=('alsa-lib' 'cmake' 'docbook-xsl' 'ffmpeg' 'krb5' 'libpulse'
+'libusb' 'systemd-libs' 'xmlto' 'xorgproto')
+provides=('libfreerdp2.so' 'libfreerdp-client2.so' 'libfreerdp-server2'
+'libfreerdp-shadow2.so' 'libfreerdp-shadow-subsystem2.so' 'libwinpr2.so'
+'libwinpr-tools2.so' 'libuwac0.so')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
+"$pkgname-2.0.0-manpage_formatting.patch")
+sha512sums=('e3e667f9a1f954ce914e7dcd24ba4d171fd147e812883ebcb67363dde4054e2d3cbe5fe4e7104fe52f84453c67e32281b5ee62889ba68850ba762196549855ba'
+

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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:13
  Author: heftig
Revision: 631012

8.048.02-16: linux 5.6.14.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:11 UTC (rev 631011)
+++ PKGBUILD2020-05-20 23:00:13 UTC (rev 631012)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.048.02
-pkgrel=15
+pkgrel=16
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:18
  Author: heftig
Revision: 387044

1.0.20200506-7: linux-lts 5.4.42-1

Modified:
  wireguard-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:08 UTC (rev 387043)
+++ PKGBUILD2020-05-20 23:00:18 UTC (rev 387044)
@@ -2,7 +2,7 @@
 
 pkgname=wireguard-lts
 pkgver=1.0.20200506
-pkgrel=6
+pkgrel=7
 pkgdesc='Wireguard module for LTS Kernel'
 url='https://www.wireguard.com/'
 arch=('x86_64')


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:17
  Author: heftig
Revision: 631016

1.1.0-321: linux 5.6.14.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:17 UTC (rev 631015)
+++ PKGBUILD2020-05-20 23:00:17 UTC (rev 631016)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call
 pkgver=1.1.0
-pkgrel=320
+pkgrel=321
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:09
  Author: heftig
Revision: 631010

0.8-322: linux 5.6.14.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:07 UTC (rev 631009)
+++ PKGBUILD2020-05-20 23:00:09 UTC (rev 631010)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=321
+pkgrel=322
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:19
  Author: heftig
Revision: 387045

440.82-17: linux 5.6.14.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:18 UTC (rev 387044)
+++ PKGBUILD2020-05-20 23:00:19 UTC (rev 387045)
@@ -4,7 +4,7 @@
 
 pkgname=nvidia
 pkgver=440.82
-pkgrel=16
+pkgrel=17
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/;


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:17
  Author: heftig
Revision: 631015

8.048.02-17: linux-lts 5.4.42-1

Modified:
  r8168-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:15 UTC (rev 631014)
+++ PKGBUILD2020-05-20 23:00:17 UTC (rev 631015)
@@ -2,7 +2,7 @@
 
 pkgname=r8168-lts
 pkgver=8.048.02
-pkgrel=16
+pkgrel=17
 pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:06
  Author: heftig
Revision: 631008

0.43-209: linux 5.6.14.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:04 UTC (rev 631007)
+++ PKGBUILD2020-05-20 23:00:06 UTC (rev 631008)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=208
+pkgrel=209
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:15
  Author: heftig
Revision: 631014

20200106-45: linux 5.6.14.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:14 UTC (rev 631013)
+++ PKGBUILD2020-05-20 23:00:15 UTC (rev 631014)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20200106
-pkgrel=44
+pkgrel=45
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/;
 arch=(x86_64)


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:14
  Author: heftig
Revision: 631013

1.1.0-149: linux-lts 5.4.42-1

Modified:
  acpi_call-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:13 UTC (rev 631012)
+++ PKGBUILD2020-05-20 23:00:14 UTC (rev 631013)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call-lts
 pkgver=1.1.0
-pkgrel=148
+pkgrel=149
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:08
  Author: heftig
Revision: 387043

440.82-17: linux-lts 5.4.42-1

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 22:56:30 UTC (rev 387042)
+++ PKGBUILD2020-05-20 23:00:08 UTC (rev 387043)
@@ -3,7 +3,7 @@
 
 pkgname=nvidia-lts
 pkgver=440.82
-pkgrel=16
+pkgrel=17
 epoch=1
 pkgdesc="NVIDIA drivers for linux-lts"
 arch=('x86_64')


[arch-commits] Commit in virtualbox-host-modules-arch/trunk (PKGBUILD)

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:04
  Author: heftig
Revision: 631007

6.1.8-2: linux 5.6.14.arch1-1

Modified:
  virtualbox-host-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:03 UTC (rev 631006)
+++ PKGBUILD2020-05-20 23:00:04 UTC (rev 631007)
@@ -3,7 +3,7 @@
 
 pkgname='virtualbox-host-modules-arch'
 pkgver=6.1.8
-pkgrel=1
+pkgrel=2
 pkgdesc='Virtualbox host kernel modules for Arch Kernel'
 arch=('x86_64')
 url='https://virtualbox.org/'


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:11
  Author: heftig
Revision: 631011

0.43-68: linux-lts 5.4.42-1

Modified:
  tp_smapi-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:09 UTC (rev 631010)
+++ PKGBUILD2020-05-20 23:00:11 UTC (rev 631011)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi-lts
 pkgver=0.43
-pkgrel=67
+pkgrel=68
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:07
  Author: heftig
Revision: 631009

6.30.223.271-202: linux 5.6.14.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:06 UTC (rev 631008)
+++ PKGBUILD2020-05-20 23:00:07 UTC (rev 631009)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=201
+pkgrel=202
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:03
  Author: heftig
Revision: 631006

r73.0cf3b48-21: linux 5.6.14.arch1-1

Modified:
  netfilter-fullconenat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 21:48:19 UTC (rev 631005)
+++ PKGBUILD2020-05-20 23:00:03 UTC (rev 631006)
@@ -3,7 +3,7 @@
 
 pkgname=netfilter-fullconenat
 pkgver=r73.0cf3b48
-pkgrel=20
+pkgrel=21
 pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
 arch=('x86_64')
 url="https://github.com/Chion82/netfilter-full-cone-nat;


[arch-commits] Commit in firefox-developer-edition/repos/community-x86_64 (8 files)

2020-05-20 Thread Andrew Crerar via arch-commits
Date: Thursday, May 21, 2020 @ 02:23:40
  Author: andrewsc
Revision: 631035

archrelease: copy trunk to community-x86_64

Added:
  
firefox-developer-edition/repos/community-x86_64/0001_Use_remoting_name_for_GDK_application_names.patch
(from rev 631034, 
firefox-developer-edition/trunk/0001_Use_remoting_name_for_GDK_application_names.patch)
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
(from rev 631034, firefox-developer-edition/trunk/PKGBUILD)
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
(from rev 631034, 
firefox-developer-edition/trunk/firefox-developer-edition.desktop)
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
(from rev 631034, firefox-developer-edition/trunk/firefox-install-dir.patch)
Deleted:
  
firefox-developer-edition/repos/community-x86_64/0001_Use_remoting_name_for_GDK_application_names.patch
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch

+
 0001_Use_remoting_name_for_GDK_application_names.patch |   96 +-
 PKGBUILD   |  450 -
 firefox-developer-edition.desktop  |  680 +++
 firefox-install-dir.patch  |   86 -
 4 files changed, 656 insertions(+), 656 deletions(-)

Deleted: 0001_Use_remoting_name_for_GDK_application_names.patch
===
--- 0001_Use_remoting_name_for_GDK_application_names.patch  2020-05-21 
02:23:13 UTC (rev 631034)
+++ 0001_Use_remoting_name_for_GDK_application_names.patch  2020-05-21 
02:23:40 UTC (rev 631035)
@@ -1,48 +0,0 @@
-# HG changeset patch
-# User Andrew Crerar 
-# Date 153129 14400
-#  Thu May 07 16:25:29 2020 -0400
-# Node ID 9970281ae22ce7cad35870ef91d27149ec7e9879
-# Parent  c9a2a8be0647d05e5f354794c3e7b7298cdbe26f
-Use remoting name for GDK application names
-
-diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
 a/toolkit/xre/nsAppRunner.cpp
-+++ b/toolkit/xre/nsAppRunner.cpp
-@@ -3703,11 +3703,7 @@
-   // consistently.
- 
-   // Set program name to the one defined in application.ini.
--  {
--nsAutoCString program(gAppData->name);
--ToLowerCase(program);
--g_set_prgname(program.get());
--  }
-+  g_set_prgname(gAppData->remotingName);
- 
-   // Initialize GTK here for splash.
- 
-diff --git a/widget/gtk/nsAppShell.cpp b/widget/gtk/nsAppShell.cpp
 a/widget/gtk/nsAppShell.cpp
-+++ b/widget/gtk/nsAppShell.cpp
-@@ -24,6 +24,7 @@
- #  include "WakeLockListener.h"
- #endif
- #include "gfxPlatform.h"
-+#include "nsAppRunner.h"
- #include "ScreenHelperGTK.h"
- #include "HeadlessScreenHelper.h"
- #include "mozilla/widget/ScreenManager.h"
-@@ -178,10 +179,8 @@
-   // creating top-level windows. (At this point, a child process hasn't
-   // received the list of registered chrome packages, so the
-   // GetBrandShortName call would fail anyway.)
--  nsAutoString brandName;
--  mozilla::widget::WidgetUtils::GetBrandShortName(brandName);
--  if (!brandName.IsEmpty()) {
--gdk_set_program_class(NS_ConvertUTF16toUTF8(brandName).get());
-+  if (gAppData) {
-+gdk_set_program_class(gAppData->remotingName);
-   }
- }
-   }

Copied: 
firefox-developer-edition/repos/community-x86_64/0001_Use_remoting_name_for_GDK_application_names.patch
 (from rev 631034, 
firefox-developer-edition/trunk/0001_Use_remoting_name_for_GDK_application_names.patch)
===
--- 0001_Use_remoting_name_for_GDK_application_names.patch  
(rev 0)
+++ 0001_Use_remoting_name_for_GDK_application_names.patch  2020-05-21 
02:23:40 UTC (rev 631035)
@@ -0,0 +1,48 @@
+# HG changeset patch
+# User Andrew Crerar 
+# Date 153129 14400
+#  Thu May 07 16:25:29 2020 -0400
+# Node ID 9970281ae22ce7cad35870ef91d27149ec7e9879
+# Parent  c9a2a8be0647d05e5f354794c3e7b7298cdbe26f
+Use remoting name for GDK application names
+
+diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
+--- a/toolkit/xre/nsAppRunner.cpp
 b/toolkit/xre/nsAppRunner.cpp
+@@ -3703,11 +3703,7 @@
+   // consistently.
+ 
+   // Set program name to the one defined in application.ini.
+-  {
+-nsAutoCString program(gAppData->name);
+-ToLowerCase(program);
+-g_set_prgname(program.get());
+-  }
++  g_set_prgname(gAppData->remotingName);
+ 
+   // Initialize GTK here for splash.
+ 
+diff --git a/widget/gtk/nsAppShell.cpp b/widget/gtk/nsAppShell.cpp
+--- a/widget/gtk/nsAppShell.cpp
 b/widget/gtk/nsAppShell.cpp
+@@ -24,6 +24,7 @@
+ #  include "WakeLockListener.h"
+ #endif
+ #include "gfxPlatform.h"
++#include "nsAppRunner.h"
+ 

[arch-commits] Commit in firefox-developer-edition/trunk (PKGBUILD)

2020-05-20 Thread Andrew Crerar via arch-commits
Date: Thursday, May 21, 2020 @ 02:23:13
  Author: andrewsc
Revision: 631034

upgpkg: firefox-developer-edition 77.0b8-1

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-21 02:06:43 UTC (rev 631033)
+++ PKGBUILD2020-05-21 02:23:13 UTC (rev 631034)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=77.0b7
+pkgver=77.0b8
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')
@@ -23,7 +23,7 @@
 firefox-install-dir.patch
 0001_Use_remoting_name_for_GDK_application_names.patch
 "$pkgname".desktop)
-sha512sums=('276d856a5d930cf7d07d07fac4ce0337a047cf2bb4883dde3619334df2125ce08707d217e484efa81d1d50ba242e7317ab2fc26f736056461b7f194422f9238e'
+sha512sums=('3c8350e18b33cab581f07e29bfaa29c56041b0011ff6dc4fe2fe15e93539fcf01909dc6ba692898f77dea8e1d693f0a551539eaa335a8893bc7ed284f0c8839d'
 'SKIP'
 
'b66dbe7f262d036e5a5b895ab5b0dbb03313bca18b0823c001ef2dbaeb1a33169b57db0cf4dfd268499f28913845119902b5d62e8a6a9cc4820eb0ee2f322a1e'
 
'812f0f34d16472a305ad78b5b22f4d0ef0ac63e47e10700954f4e3374cfe25d596a9ef137ea48a421128d504affb653cf310bd3c33bc313d505924f8f392ad8f'


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

2020-05-20 Thread Kpcyrd via arch-commits
Date: Thursday, May 21, 2020 @ 02:06:43
  Author: kpcyrd
Revision: 631033

archrelease: copy trunk to community-x86_64

Added:
  reprepro/repos/community-x86_64/
  reprepro/repos/community-x86_64/PKGBUILD
(from rev 631032, reprepro/trunk/PKGBUILD)

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

Copied: reprepro/repos/community-x86_64/PKGBUILD (from rev 631032, 
reprepro/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-05-21 02:06:43 UTC (rev 631033)
@@ -0,0 +1,29 @@
+# Maintainer: kpcyrd 
+# Contributor: Andre Klitzing 
+# Contributor: max-k 
+
+pkgname=reprepro
+pkgver=5.3.0
+pkgrel=2
+pkgdesc='Debian package repository producer'
+url="https://salsa.debian.org/brlink/reprepro;
+arch=('x86_64')
+license=('GPL2')
+depends=('db' 'gpgme' 'zlib' 'bzip2' 'xz' 'libarchive' 'libgpg-error')
+source=("http://ftp.debian.org/debian/pool/main/r/${pkgname}/${pkgname}_${pkgver}.orig.tar.gz;)
+sha512sums=('2d4c7d6389bbec629b2c75355d120efbb9fcc1a603c8086093fa7cf466c6ea390f2e688a38800094031746b0d05a9906d32019aa2ed591cecbfe9c875ce76916')
+b2sums=('e58722c5c72055271288def4d2639357a146fbb032e7f3be12c70ac54692fe7a2c4cd57c1850332ef7852f060d5d7d0f86665193be5123f4cdc3fb3da2fe28aa')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2020-05-20 Thread Kpcyrd via arch-commits
Date: Thursday, May 21, 2020 @ 02:06:20
  Author: kpcyrd
Revision: 631032

upgpkg: reprepro 5.3.0-2

Added:
  reprepro/
  reprepro/repos/
  reprepro/trunk/
  reprepro/trunk/PKGBUILD

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

Added: reprepro/trunk/PKGBUILD
===
--- reprepro/trunk/PKGBUILD (rev 0)
+++ reprepro/trunk/PKGBUILD 2020-05-21 02:06:20 UTC (rev 631032)
@@ -0,0 +1,29 @@
+# Maintainer: kpcyrd 
+# Contributor: Andre Klitzing 
+# Contributor: max-k 
+
+pkgname=reprepro
+pkgver=5.3.0
+pkgrel=2
+pkgdesc='Debian package repository producer'
+url="https://salsa.debian.org/brlink/reprepro;
+arch=('x86_64')
+license=('GPL2')
+depends=('db' 'gpgme' 'zlib' 'bzip2' 'xz' 'libarchive' 'libgpg-error')
+source=("http://ftp.debian.org/debian/pool/main/r/${pkgname}/${pkgname}_${pkgver}.orig.tar.gz;)
+sha512sums=('2d4c7d6389bbec629b2c75355d120efbb9fcc1a603c8086093fa7cf466c6ea390f2e688a38800094031746b0d05a9906d32019aa2ed591cecbfe9c875ce76916')
+b2sums=('e58722c5c72055271288def4d2639357a146fbb032e7f3be12c70ac54692fe7a2c4cd57c1850332ef7852f060d5d7d0f86665193be5123f4cdc3fb3da2fe28aa')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in firefox-developer-edition-i18n/repos/community-any (2 files)

2020-05-20 Thread Andrew Crerar via arch-commits
Date: Thursday, May 21, 2020 @ 02:45:10
  Author: andrewsc
Revision: 631037

archrelease: copy trunk to community-any

Added:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD
(from rev 631036, firefox-developer-edition-i18n/trunk/PKGBUILD)
Deleted:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD

--+
 PKGBUILD |  460 ++---
 1 file changed, 230 insertions(+), 230 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-21 02:44:45 UTC (rev 631036)
+++ PKGBUILD2020-05-21 02:45:10 UTC (rev 631037)
@@ -1,230 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=77.0b7
-pkgrel=1
-pkgdesc="Language pack for Firefox Developer Edition"
-arch=('any')
-url="https://www.mozilla.com/;
-license=('MPL' 'GPL')
-
-_languages=(
-  'ach "Acholi"'
-  'af  "Afrikaans"'
-  'an  "Aragonese"'
-  'ar  "Arabic"'
-  'ast "Asturian"'
-  'az  "Azerbaijani"'
-  'be  "Belarusian"'
-  'bg  "Bulgarian"'
-  'bn  "Bengali"'
-  'br  "Breton"'
-  'bs  "Bosnian"'
-  'ca  "Catalan"'
-  'ca-valencia "Catalan (Valencian)"'
-  'cak "Maya Kaqchikel"'
-  'cs  "Czech"'
-  'cy  "Welsh"'
-  'da  "Danish"'
-  'de  "German"'
-  'dsb "Lower Sorbian"'
-  'el  "Greek"'
-  'en-CA   "English (Canada)"'
-  'en-GB   "English (British)"'
-  'en-US   "English (American)"'
-  'eo  "Esperanto"'
-  'es-AR   "Spanish (Argentina)"'
-  'es-CL   "Spanish (Chile)"'
-  'es-ES   "Spanish (Spain)"'
-  'es-MX   "Spanish (Mexico)"'
-  'et  "Estonian"'
-  'eu  "Basque"'
-  'fa  "Persian"'
-  'ff  "Fulah"'
-  'fi  "Finnish"'
-  'fr  "French"'
-  'fy-NL   "Frisian"'
-  'ga-IE   "Irish"'
-  'gd  "Gaelic (Scotland)"'
-  'gl  "Galician"'
-  'gn  "Guarani"'
-  'gu-IN   "Gujarati (India)"'
-  'he  "Hebrew"'
-  'hi-IN   "Hindi (India)"'
-  'hr  "Croatian"'
-  'hsb "Upper Sorbian"'
-  'hu  "Hungarian"'
-  'hy-AM   "Armenian"'
-  'ia  "Interlingua"'
-  'id  "Indonesian"'
-  'is  "Icelandic"'
-  'it  "Italian"'
-  'ja  "Japanese"'
-  'ka  "Georgian"'
-  'kab "Kabyle"'
-  'kk  "Kazakh"'
-  'km  "Khmer"'
-  'kn  "Kannada"'
-  'ko  "Korean"'
-  'lij "Ligurian"'
-  'lt  "Lithuanian"'
-  'lv  "Latvian"'
-  'mk  "Macedonian"'
-  'mr  "Marathi"'
-  'ms  "Malay"'
-  'my  "Burmese"'
-  'nb-NO   "Norwegian (Bokmål)"'
-  'ne-NP   "Nepali"'
-  'nl  "Dutch"'
-  'nn-NO   "Norwegian (Nynorsk)"'
-  'oc  "Occitan"'
-  'pa-IN   "Punjabi (India)"'
-  'pl  "Polish"'
-  'pt-BR   "Portuguese (Brazilian)"'
-  'pt-PT   "Portuguese (Portugal)"'
-  'rm  "Romansh"'
-  'ro  "Romanian"'
-  'ru  "Russian"'
-  'si  "Sinhala"'
-  'sk  "Slovak"'
-  'sl  "Slovenian"'
-  'son "Songhai"'
-  'sq  "Albanian"'
-  'sr  "Serbian"'
-  'sv-SE   "Swedish"'
-  'ta  "Tamil"'
-  'te  "Telugu"'
-  'th  "Thai"'
-  'tl  "Tagalog"'
-  'tr  "Turkish"'
-  'trs "Triqui"'
-  'uk  "Ukrainian"'
-  'ur  "Urdu"'
-  'uz  "Uzbek"'
-  'vi  "Vietnamese"'
-  'xh  "Xhosa"'
-  'zh-CN   "Chinese (Simplified)"'
-  'zh-TW   "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://archive.mozilla.org/pub/firefox/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-developer-edition-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  
source+=("firefox-developer-edition-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox Developer Edition"
-  depends=("firefox-developer-edition>=$pkgver")
-  install -Dm644 firefox-developer-edition-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
-}
-
-sha512sums=('8e967d35aea6d7dbc84ab2566305631bbb6dbaaa4edf2a56b6662611b7102d1d46af81c07cf4243b7b5545857a7eebf7c0b495a5bb830433fcb63d2ce3124e3c'
-
'f0aea46e431b2278e12e55aed161fdc1abfafbc241732c01281f61f429af71c49565bd03e3d9d5a0742d35489fa9c84f816129feb99b6bbde4cc050d7bf89cd7'
-
'aa1444f0e35b2a90a0252de4d79525a8fde73b20fee2082724a94f2fa8d2f37a83e99a2e87e1698df1590076551b374b7350747eed8f381b2d5d4da269bb4bec'
-

[arch-commits] Commit in firefox-developer-edition-i18n/trunk (PKGBUILD)

2020-05-20 Thread Andrew Crerar via arch-commits
Date: Thursday, May 21, 2020 @ 02:44:45
  Author: andrewsc
Revision: 631036

upgpkg: firefox-developer-edition-i18n 77.0b8-1

Modified:
  firefox-developer-edition-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  194 ++---
 1 file changed, 97 insertions(+), 97 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-21 02:23:40 UTC (rev 631035)
+++ PKGBUILD2020-05-21 02:44:45 UTC (rev 631036)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=77.0b7
+pkgver=77.0b8
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -132,99 +132,99 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
 }
 
-sha512sums=('8e967d35aea6d7dbc84ab2566305631bbb6dbaaa4edf2a56b6662611b7102d1d46af81c07cf4243b7b5545857a7eebf7c0b495a5bb830433fcb63d2ce3124e3c'
-
'f0aea46e431b2278e12e55aed161fdc1abfafbc241732c01281f61f429af71c49565bd03e3d9d5a0742d35489fa9c84f816129feb99b6bbde4cc050d7bf89cd7'
-
'aa1444f0e35b2a90a0252de4d79525a8fde73b20fee2082724a94f2fa8d2f37a83e99a2e87e1698df1590076551b374b7350747eed8f381b2d5d4da269bb4bec'
-
'f3a0c8f7795a5596f3d630407dda9a21ef42fdc2d5f5fffcec8cf1684d11240fc08df7e43aa1b4446e4a7d6dd0623713f6d60f2e533aed2c553dcfe98a366140'
-
'142e71712961653954aaab91ea35af28390d365cfba2606cdfe6686d494f487303f887b8f5af650fbbfc8050f7f183b25c4b23dd84d70d9968948ea1f40e376c'
-
'd6cb59a528ce35954fd8947fb548af451acbf2d13fb4fcf5c9aa3ef9849e712101f7290ce3d71d07d9ece677b41715f0a40ea39b956d6da198a52dfa983ac4ab'
-
'c4f7732f78f8bd6a3ff7eafc077b77fbe268a083c985d373dec4db6b93101fb197e7613cc86b674e08ba8ea8eb8c06f614f837a0a1e61a7aa79ed26b71423101'
-
'0f4770a6d317b8f0c0da0eaa6eca7fd6f7d14c972ada4ad29171fb4946f0c4c158f7c0b877230616ee8d2fc0a4028d146b116814e757763a3f71fcfa9f5d'
-
'e6460d84338272bab23a1d59d8feda65266878b555dc5bd87308ef805ff0e8d3d9d377f3e4de7179aa65b57a4fb3aed26ad3be304641eea4d96d704d5a59b6a4'
-
'63117cca40407a59c303015f76a46acaa1def900489b3e112571547397092c7ad2c3d0508045054595bbadbbda2f83011c6493cd11f2a86858e6720c4cc02554'
-
'5cf6d93a81ed56f407b39b45b3473f604089b2d36eda5cb5e82c1db438ff8ed76cd249f7f188108b5738ee528ee832b18f77b77af8bb1860164924d97829a858'
-
'dc6d7ae2009a2adf298779b76ce9259cfea2ab7722cd22668c0f48d784218397f7be3ce6ff80be2a2160ae1790019102a11ef4362ad089a947a92dbf7676da34'
-
'b315596437b5f33045ec5d3b9749589be3375013edfa9b224efe13d3c8e59e64b18be2dc3e5afb91a658a5477d2fb64350ff29dcaf0032fc04034f1f7b3eda94'
-
'03053750c50ad0dbe75065227d9234156d3e57d1f070c3594ddc14b0c84c6bc878a9797281872b04343c161281d5b3e62c821bca86f523fa5b8096bdaf7e844a'
-
'f5ea97ee1d71486b4d0d5fb40374df03ff1596be3a2a4f34c640455c864abe64d82f5668a38d7c5c1f57f47e5dc0da0be468cb42290282492ddd8cabdc1d5fbb'
-
'472d305cc84fcecf10b22bb86a50763ee51feb676b2b861dfb2f2cd02574c86221502995c29fdb8ebbc14314c26634aa5a950c2fdd53e08f6a1d716b062f51db'
-
'd49077182670b08bc6a0aba749b5d68fbff05573a72d03f5569cc24dd0c64c5f81754e66bbe24a88e63bf0438af3f4cef70fc5b0a8f538676eb282507e849b64'
-
'e049757ee44a7cbd859dbeee84268157e9de09e6a1f5f051b0d5ae950f5d7ced1cf680e0dea588c2ff029ba5aa1445023f5bc69cac72292385546751b5ae'
-
'74e20ba6287f5f4943d2be353f56333888c37139e05fccd8c16dd00f87cb8d776f2e86555c37d7e33b03cc3bba4cdbed12e061177056b54cb4ad8e6dcde55504'
-
'ca7ef67fc2aeba58f322e95c4f6a23e0a14e5deda380581fbbcc305a27138ae4d1db2f84e3f80dc4857a70e1c79240956df3e48f6f2829ff3f3aa98a3325981c'
-
'd67f3f52e0fa0f2ddec29f2dc15c79376a639c4ad51c62a8b0789bc7e121f6b7a861bbc2752d7a6cecc6551f5daf3d76b1efecdecd4898e4ee3381863ff30ac2'
-
'f36bfd7d67948f78fd6f47a65027cd53c0b50b18d4801c42d60b757fe8748014b3fd004fbdb928b98b63a0dd8c7f320c5201913d6a9ccb259cf7e8c41d478319'
-
'6e148f457b1ed362885d09ac90dbad2e888ab27d92114fe6d41415bdb3f9b2f8bab3e3472b2d05dc8d29c16431a1930335681f097572a4458f38a5437fb34bf2'
-
'67dc88bc8f938d946a3092480448e80cb082546f336e1f1c4f95e9b93eea9dc3f2773a9b21eb2b6ce31fd708301dd1fb3646b044e8ffa345b54b73ab5299d1c6'
-
'9cbaf1aaa8d997ee25728e5398e781f0942186de74d98dfac5111c0e7f97d5de18e0570225310cadc86da3d9b63e3e69ab8d6bd2c7649a305412b312aa999401'
-
'a237c3ddd432748075091f3cb0726e1ad0c1655d1e560a23541d689a01e86747bbbddcb9f14279759c7df7f2d97232dfc2deeefa0bb3de6d5a164ae099ed504a'
-
'e5f0b1adb4f752dcbd430661612ae79c4fca6b5c8c0492ed95c0de04c5cc56dc38c1d10536d7a4be4464895c9b8131a29f338fc1b57ef6f555a13e7c66d0'
-
'2c9bbabcd1652d03ff8c5214841ddf1d4c735f2a05cfe69b874534f34a351d6e3ca2de980d2c3a291845ef2f8805fac1e3d166e9a90884b2a444d6219e979ec6'
-

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

2020-05-20 Thread Allan McRae via arch-commits
Date: Thursday, May 21, 2020 @ 05:16:35
  Author: allan
Revision: 387351

archrelease: copy trunk to extra-x86_64

Added:
  sound-juicer/repos/extra-x86_64/PKGBUILD
(from rev 387350, sound-juicer/trunk/PKGBUILD)
Deleted:
  sound-juicer/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-21 05:16:18 UTC (rev 387350)
+++ PKGBUILD2020-05-21 05:16:35 UTC (rev 387351)
@@ -1,38 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Ben 
-
-pkgname=sound-juicer
-pkgver=3.24.0+2+gb8380d2d
-pkgrel=2
-pkgdesc="A lean and friendly audio CD extractor for GNOME"
-url="https://wiki.gnome.org/Apps/SoundJuicer;
-arch=(x86_64)
-license=(GPL)
-depends=(libmusicbrainz5 libdiscid gtk3 gst-plugins-base gst-plugins-good 
brasero iso-codes)
-makedepends=(intltool itstool gnome-common appstream-glib git)
-_commit=b8380d2da3b799560d5703ae8159a492877cd411  # master
-source=("git+https://git.gnome.org/browse/sound-juicer#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---enable-compile-warnings=minimum
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-}

Copied: sound-juicer/repos/extra-x86_64/PKGBUILD (from rev 387350, 
sound-juicer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-21 05:16:35 UTC (rev 387351)
@@ -0,0 +1,39 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Ben 
+
+pkgname=sound-juicer
+pkgver=3.24.0+2+gb8380d2d
+pkgrel=3
+pkgdesc="A lean and friendly audio CD extractor for GNOME"
+url="https://wiki.gnome.org/Apps/SoundJuicer;
+arch=(x86_64)
+license=(GPL)
+depends=(libmusicbrainz5 libdiscid gtk3 gst-plugins-base gst-plugins-good 
brasero iso-codes)
+makedepends=(intltool itstool gnome-common appstream-glib git)
+_commit=b8380d2da3b799560d5703ae8159a492877cd411  # master
+source=("git+https://git.gnome.org/browse/sound-juicer#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  sed -i "/^AM_GNU_GETTEXT_VERSION.*/a 
AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.6])" configure.ac  
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--enable-compile-warnings=minimum
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}


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

2020-05-20 Thread Allan McRae via arch-commits
Date: Thursday, May 21, 2020 @ 05:16:18
  Author: allan
Revision: 387350

upgpkg: sound-juicer 3.24.0+2+gb8380d2d-3: fix FTBFS

Modified:
  sound-juicer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-21 00:22:11 UTC (rev 387349)
+++ PKGBUILD2020-05-21 05:16:18 UTC (rev 387350)
@@ -4,7 +4,7 @@
 
 pkgname=sound-juicer
 pkgver=3.24.0+2+gb8380d2d
-pkgrel=2
+pkgrel=3
 pkgdesc="A lean and friendly audio CD extractor for GNOME"
 url="https://wiki.gnome.org/Apps/SoundJuicer;
 arch=(x86_64)
@@ -22,6 +22,7 @@
 
 prepare() {
   cd $pkgname
+  sed -i "/^AM_GNU_GETTEXT_VERSION.*/a 
AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.6])" configure.ac  
   NOCONFIGURE=1 ./autogen.sh
 }
 


[arch-commits] Commit in rcs/repos/extra-x86_64 (5 files)

2020-05-20 Thread Allan McRae via arch-commits
Date: Thursday, May 21, 2020 @ 05:28:12
  Author: allan
Revision: 387353

archrelease: copy trunk to extra-x86_64

Added:
  rcs/repos/extra-x86_64/PKGBUILD
(from rev 387352, rcs/trunk/PKGBUILD)
  rcs/repos/extra-x86_64/rcs-c++11.patch
(from rev 387352, rcs/trunk/rcs-c++11.patch)
  rcs/repos/extra-x86_64/t810.diff
(from rev 387352, rcs/trunk/t810.diff)
Deleted:
  rcs/repos/extra-x86_64/PKGBUILD
  rcs/repos/extra-x86_64/rcs-c++11.patch

-+
 PKGBUILD|   79 +++---
 rcs-c++11.patch |  186 +++---
 t810.diff   |   14 
 3 files changed, 148 insertions(+), 131 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-21 05:27:50 UTC (rev 387352)
+++ PKGBUILD2020-05-21 05:28:12 UTC (rev 387353)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: dorphell 
-
-pkgname=rcs
-pkgver=5.9.4
-pkgrel=2
-pkgdesc='Revision Control System: manages multiple revisions of files'
-url='http://www.gnu.org/software/rcs/'
-license=('GPL3')
-arch=('x86_64')
-depends=('ed')
-validpgpkeys=('748EA0E81CB8A7489BFA6CE4670322244C807502')
-source=("ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig} 
rcs-c++11.patch)
-sha256sums=('063d5a0d7da1821754b80c639cdae2c82b535c8ff4131f75dc7bbf0cd63a5dff'
-'SKIP'
-'569a8d5c851d2619393474a681e05c2eb83912e71adcf1124b895478c91e1fbb')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i ../rcs-c++11.patch # Fix build with C++11
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make prefix="${pkgdir}/usr" install
-}

Copied: rcs/repos/extra-x86_64/PKGBUILD (from rev 387352, rcs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-21 05:28:12 UTC (rev 387353)
@@ -0,0 +1,41 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: dorphell 
+
+pkgname=rcs
+pkgver=5.9.4
+pkgrel=3
+pkgdesc='Revision Control System: manages multiple revisions of files'
+url='https://www.gnu.org/software/rcs/'
+license=('GPL3')
+arch=('x86_64')
+depends=('ed')
+validpgpkeys=('748EA0E81CB8A7489BFA6CE4670322244C807502')
+source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig}
+rcs-c++11.patch
+t810.diff)
+sha256sums=('063d5a0d7da1821754b80c639cdae2c82b535c8ff4131f75dc7bbf0cd63a5dff'
+'SKIP'
+'569a8d5c851d2619393474a681e05c2eb83912e71adcf1124b895478c91e1fbb'
+'f7d8f458c6c7a0d435183378eb44e07d9d66c8013b2fea4efca9a3e66a6d')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../rcs-c++11.patch # Fix build with C++11
+  patch -p1 -i $srcdir/t810.diff # fix test suite failure - git 
f2330a6268d244e97f47a97f4767736fc3b31455
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make prefix="${pkgdir}/usr" install
+}

Deleted: rcs-c++11.patch
===
--- rcs-c++11.patch 2020-05-21 05:27:50 UTC (rev 387352)
+++ rcs-c++11.patch 2020-05-21 05:28:12 UTC (rev 387353)
@@ -1,93 +0,0 @@
-From 260704a9164dd34cf7128d6b1e88075ffa3be054 Mon Sep 17 00:00:00 2001
-From: Thien-Thi Nguyen 
-Date: Thu, 18 Jun 2015 21:25:53 +0200
-Subject: [PATCH] =?UTF-8?q?[C=20slog]=20Move=20=E2=80=98exiting=E2=80=99?=
- =?UTF-8?q?=20to=20beginning=20of=20func=20decl.?=
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Apparently, ‘gcc --std=c11’ does not abide the ‘exiting’
-attribute appearing at the end of the func decl.
-Reported by Romain Francoise.
-See also .
-
-* src/b-complain.h (generic_fatal, fatal_syntax, fatal_sys)
-* src/b-fb.h (Ierror, Oerror)
-* src/base.h (unexpected_EOF, thank_you_and_goodnight):
-Move ‘exiting’ attribute to beginning of func decl.

- src/b-complain.h | 10 ++
- src/b-fb.h   |  6 --
- src/base.h   |  8 
-
-diff --git a/src/b-complain.h b/src/b-complain.h
-index 0ffd157..ea0ffc5 100644
 a/src/b-complain.h
-+++ b/src/b-complain.h
-@@ -32,12 +32,14 @@ extern void generic_warn (char const *who, char const 
*fmt, ...)
-   printf_string (2, 3);
- extern void generic_error (char const *who, char const *fmt, ...)
-   printf_string (2, 3);
-+exiting
- extern void generic_fatal (char const *who, char const *fmt, ...)
--  printf_string (2, 3) exiting;
-+  printf_string (2, 3);
-+exiting
- extern void fatal_syntax (size_t lno, char const *fmt, ...)
--  printf_string (2, 3) exiting;
--extern void fatal_sys (char const *who)
--  exiting;
-+  printf_string (2, 3);
-+exiting
-+extern void fatal_sys (char 

[arch-commits] Commit in rcs/trunk (PKGBUILD t810.diff)

2020-05-20 Thread Allan McRae via arch-commits
Date: Thursday, May 21, 2020 @ 05:27:50
  Author: allan
Revision: 387352

upgpkg: rcs 5.9.4-3: fix FTBFS

Added:
  rcs/trunk/t810.diff
Modified:
  rcs/trunk/PKGBUILD

---+
 PKGBUILD  |   10 +++---
 t810.diff |   14 ++
 2 files changed, 21 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-21 05:16:35 UTC (rev 387351)
+++ PKGBUILD2020-05-21 05:27:50 UTC (rev 387352)
@@ -3,7 +3,7 @@
 
 pkgname=rcs
 pkgver=5.9.4
-pkgrel=2
+pkgrel=3
 pkgdesc='Revision Control System: manages multiple revisions of files'
 url='https://www.gnu.org/software/rcs/'
 license=('GPL3')
@@ -10,14 +10,18 @@
 arch=('x86_64')
 depends=('ed')
 validpgpkeys=('748EA0E81CB8A7489BFA6CE4670322244C807502')
-source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig}
 rcs-c++11.patch)
+source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig}
+rcs-c++11.patch
+t810.diff)
 sha256sums=('063d5a0d7da1821754b80c639cdae2c82b535c8ff4131f75dc7bbf0cd63a5dff'
 'SKIP'
-'569a8d5c851d2619393474a681e05c2eb83912e71adcf1124b895478c91e1fbb')
+'569a8d5c851d2619393474a681e05c2eb83912e71adcf1124b895478c91e1fbb'
+'f7d8f458c6c7a0d435183378eb44e07d9d66c8013b2fea4efca9a3e66a6d')
 
 prepare() {
   cd $pkgname-$pkgver
   patch -p1 -i ../rcs-c++11.patch # Fix build with C++11
+  patch -p1 -i $srcdir/t810.diff # fix test suite failure - git 
f2330a6268d244e97f47a97f4767736fc3b31455
 }
 
 build() {

Added: t810.diff
===
--- t810.diff   (rev 0)
+++ t810.diff   2020-05-21 05:27:50 UTC (rev 387352)
@@ -0,0 +1,14 @@
+diff --git a/tests/t810 b/tests/t810
+index ad3c00d..2e1c653 100644
+--- a/tests/t810
 b/tests/t810
+@@ -27,7 +27,8 @@ split_std_out_err no
+ 
+ must 'echo new line >> $w'
+ must 'ci -mm -l -d -T $w'
+-test $w -nt $v && problem "$w newer than $v"
++test 1 = `./btdt mtimecmp $w $v` \
++&& problem "$w newer than $v"
+ 
+ exit 0
+ 
\ No newline at end of file


[arch-commits] Commit in kodi-addon-inputstream-adaptive/trunk (PKGBUILD)

2020-05-20 Thread Ike Devolder via arch-commits
Date: Wednesday, May 20, 2020 @ 07:04:35
  Author: idevolder
Revision: 630369

upgpkg: kodi-addon-inputstream-adaptive 2.4.5-1

Modified:
  kodi-addon-inputstream-adaptive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 04:38:28 UTC (rev 630368)
+++ PKGBUILD2020-05-20 07:04:35 UTC (rev 630369)
@@ -3,7 +3,7 @@
 # Contributor: kevku 
 
 pkgname=kodi-addon-inputstream-adaptive
-pkgver=2.4.4
+pkgver=2.4.5
 _codename=Leia
 pkgrel=1
 pkgdesc="InputStream client for adaptive streams for Kodi 18+"
@@ -14,7 +14,7 @@
 depends=('kodi' 'kodi-platform')
 makedepends=('cmake' 'kodi-dev')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/peak3d/inputstream.adaptive/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('5ddc8ee08144f43369d807b1a8a2b1fc2fa70a3a0063be09a47d1df021442f0a7fb46acf2399e458bb807429f38abe9bdea5b4994ab58f93f07214b330e150f2')
+sha512sums=('b38e175fb21dcc155aa5b5cda4ffdbd26336a763c9ecf8857058352a3a8f6d9a617a4999f6aed1bee4edd97d18e7a1f4e4a2318cdf871982415e7dd2b519f498')
 
 build() {
 cd "inputstream.adaptive-$pkgver-$_codename"


[arch-commits] Commit in kodi-addon-inputstream-adaptive/repos/community-x86_64 (2 files)

2020-05-20 Thread Ike Devolder via arch-commits
Date: Wednesday, May 20, 2020 @ 07:04:43
  Author: idevolder
Revision: 630370

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-inputstream-adaptive/repos/community-x86_64/PKGBUILD
(from rev 630369, kodi-addon-inputstream-adaptive/trunk/PKGBUILD)
Deleted:
  kodi-addon-inputstream-adaptive/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   68 ++---
 1 file changed, 34 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 07:04:35 UTC (rev 630369)
+++ PKGBUILD2020-05-20 07:04:43 UTC (rev 630370)
@@ -1,34 +0,0 @@
-# Maintainer: BlackIkeEagle 
-# Contributor: Cedric Girard 
-# Contributor: kevku 
-
-pkgname=kodi-addon-inputstream-adaptive
-pkgver=2.4.4
-_codename=Leia
-pkgrel=1
-pkgdesc="InputStream client for adaptive streams for Kodi 18+"
-arch=('x86_64')
-url="https://github.com/peak3d/inputstream.adaptive;
-license=('GPL2')
-groups=('kodi-addons' 'kodi-addons-inputstream')
-depends=('kodi' 'kodi-platform')
-makedepends=('cmake' 'kodi-dev')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/peak3d/inputstream.adaptive/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('5ddc8ee08144f43369d807b1a8a2b1fc2fa70a3a0063be09a47d1df021442f0a7fb46acf2399e458bb807429f38abe9bdea5b4994ab58f93f07214b330e150f2')
-
-build() {
-cd "inputstream.adaptive-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-cd "inputstream.adaptive-$pkgver-$_codename"
-   make DESTDIR="$pkgdir/" install
-#sed -i 
's|special://home/cdm|/usr/lib/kodi/addons/inputstream.adaptive/lib|g' 
"$pkgdir/usr/share/kodi/addons/inputstream.adaptive/resources/settings.xml"
-}

Copied: kodi-addon-inputstream-adaptive/repos/community-x86_64/PKGBUILD (from 
rev 630369, kodi-addon-inputstream-adaptive/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 07:04:43 UTC (rev 630370)
@@ -0,0 +1,34 @@
+# Maintainer: BlackIkeEagle 
+# Contributor: Cedric Girard 
+# Contributor: kevku 
+
+pkgname=kodi-addon-inputstream-adaptive
+pkgver=2.4.5
+_codename=Leia
+pkgrel=1
+pkgdesc="InputStream client for adaptive streams for Kodi 18+"
+arch=('x86_64')
+url="https://github.com/peak3d/inputstream.adaptive;
+license=('GPL2')
+groups=('kodi-addons' 'kodi-addons-inputstream')
+depends=('kodi' 'kodi-platform')
+makedepends=('cmake' 'kodi-dev')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/peak3d/inputstream.adaptive/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('b38e175fb21dcc155aa5b5cda4ffdbd26336a763c9ecf8857058352a3a8f6d9a617a4999f6aed1bee4edd97d18e7a1f4e4a2318cdf871982415e7dd2b519f498')
+
+build() {
+cd "inputstream.adaptive-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+cd "inputstream.adaptive-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+#sed -i 
's|special://home/cdm|/usr/lib/kodi/addons/inputstream.adaptive/lib|g' 
"$pkgdir/usr/share/kodi/addons/inputstream.adaptive/resources/settings.xml"
+}


[arch-commits] Commit in opera/trunk (PKGBUILD eula.html privacy.html terms.html)

2020-05-20 Thread Ike Devolder via arch-commits
Date: Wednesday, May 20, 2020 @ 07:05:03
  Author: idevolder
Revision: 630371

upgpkg: opera 68.0.3618.125-3

Modified:
  opera/trunk/PKGBUILD
  opera/trunk/eula.html
  opera/trunk/privacy.html
  opera/trunk/terms.html

--+
 PKGBUILD |   12 
 eula.html| 1294 
 privacy.html | 1535 -
 terms.html   | 1395 ---
 4 files changed, 3307 insertions(+), 929 deletions(-)

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


[arch-commits] Commit in opera/repos/community-x86_64 (14 files)

2020-05-20 Thread Ike Devolder via arch-commits
Date: Wednesday, May 20, 2020 @ 07:05:16
  Author: idevolder
Revision: 630372

archrelease: copy trunk to community-x86_64

Added:
  opera/repos/community-x86_64/PKGBUILD
(from rev 630371, opera/trunk/PKGBUILD)
  opera/repos/community-x86_64/default
(from rev 630371, opera/trunk/default)
  opera/repos/community-x86_64/eula.html
(from rev 630371, opera/trunk/eula.html)
  opera/repos/community-x86_64/opera
(from rev 630371, opera/trunk/opera)
  opera/repos/community-x86_64/opera.install
(from rev 630371, opera/trunk/opera.install)
  opera/repos/community-x86_64/privacy.html
(from rev 630371, opera/trunk/privacy.html)
  opera/repos/community-x86_64/terms.html
(from rev 630371, opera/trunk/terms.html)
Deleted:
  opera/repos/community-x86_64/PKGBUILD
  opera/repos/community-x86_64/default
  opera/repos/community-x86_64/eula.html
  opera/repos/community-x86_64/opera
  opera/repos/community-x86_64/opera.install
  opera/repos/community-x86_64/privacy.html
  opera/repos/community-x86_64/terms.html

---+
 PKGBUILD  |  176 ++---
 default   |8 
 eula.html | 1410 +++
 opera |   26 
 opera.install |   78 +-
 privacy.html  | 1653 ++--
 terms.html| 1511 +++
 7 files changed, 3620 insertions(+), 1242 deletions(-)

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


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

2020-05-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, May 20, 2020 @ 07:16:18
  Author: arojas
Revision: 386990

archrelease: copy trunk to staging-x86_64

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

+
 PKGBUILD   |   72 +++
 kismet.install |   19 +++
 kismet.sysusers|1 
 python-install-flags.patch |   45 ++
 4 files changed, 137 insertions(+)

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

Copied: kismet/repos/staging-x86_64/kismet.install (from rev 386989, 
kismet/trunk/kismet.install)
===
--- staging-x86_64/kismet.install   (rev 0)
+++ staging-x86_64/kismet.install   2020-05-20 07:16:18 UTC (rev 386990)
@@ -0,0 +1,19 @@
+post_install() {
+  post_upgrade
+
+  cat << EOP
+  Kismet has been installed with net_raw,net_admin capabilities capture helper
+  executables for users in the 'kismet' group. This WILL ALLOW USERS IN THIS
+  GROUP TO ALTER YOUR NETWORK INTERFACE STATES, but is more secure than running
+  all of Kismet as root. ONLY users in this group will be able to run Kismet
+  and capture from physical network devices.
+EOP
+}
+
+post_upgrade() {
+  for cap_bin in /usr/bin/kismet_cap_*; do
+setcap cap_net_raw,cap_net_admin=eip "${cap_bin}";
+  done
+}
+
+# vim:set ts=2 sw=2 et:

Copied: kismet/repos/staging-x86_64/kismet.sysusers (from rev 386989, 
kismet/trunk/kismet.sysusers)
===
--- staging-x86_64/kismet.sysusers  (rev 0)
+++ 

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

2020-05-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, May 20, 2020 @ 07:11:14
  Author: arojas
Revision: 386988

archrelease: copy trunk to staging-x86_64

Added:
  hefur/repos/staging-x86_64/
  hefur/repos/staging-x86_64/PKGBUILD
(from rev 386987, hefur/trunk/PKGBUILD)
  hefur/repos/staging-x86_64/hefurd.service
(from rev 386987, hefur/trunk/hefurd.service)
  hefur/repos/staging-x86_64/sysusers.conf
(from rev 386987, hefur/trunk/sysusers.conf)
  hefur/repos/staging-x86_64/tmpfiles.conf
(from rev 386987, hefur/trunk/tmpfiles.conf)

+
 PKGBUILD   |   45 +
 hefurd.service |   12 
 sysusers.conf  |1 +
 tmpfiles.conf  |2 ++
 4 files changed, 60 insertions(+)

Copied: hefur/repos/staging-x86_64/PKGBUILD (from rev 386987, 
hefur/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-05-20 07:11:14 UTC (rev 386988)
@@ -0,0 +1,45 @@
+# Maintainer: Pierre Schmitz 
+# Contributor: Alexandre Bique 
+
+pkgname=hefur
+pkgver=0.6
+pkgrel=11
+pkgdesc='A standalone and lightweight BitTorrent tracker'
+arch=('x86_64')
+url='https://github.com/abique/hefur'
+license=('MIT')
+makedepends=('git' 'cmake' 'docbook-xsl')
+depends=('gnutls' 'xz' 'protobuf')
+source=("git+https://github.com/abique/${pkgname}.git#tag=${pkgver};
+'hefurd.service' 'tmpfiles.conf' 'sysusers.conf')
+md5sums=('SKIP'
+ '3107be29769b8afde3574dc6e31d5b6a'
+ 'b884385d6c87c350172427da4ba2688f'
+ '7971708a1fe25c1b51e0a05e812f17c9')
+
+prepare() {
+   cd ${srcdir}/${pkgname}
+   git submodule init
+   git submodule update
+   sed -i "s/PROJECT_NUMBER.*/PROJECT_NUMBER=${pkgver}/g" Doxyfile
+}
+
+build() {
+   cd ${srcdir}/${pkgname}/manual
+   xsltproc -o manual.html 
/usr/share/xml/docbook/xsl-stylesheets-*/html/docbook.xsl manual.xml
+
+   cd ${srcdir}/${pkgname}
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr ..
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}/build
+   DESTDIR=${pkgdir} make install
+   install -D -m644 ${srcdir}/hefurd.service 
${pkgdir}/usr/lib/systemd/system/hefurd.service
+   install -D -m644 ${srcdir}/tmpfiles.conf 
${pkgdir}/usr/lib/tmpfiles.d/hefurd.conf
+   install -D -m644 ${srcdir}/sysusers.conf 
${pkgdir}/usr/lib/sysusers.d/hefurd.conf
+   install -D -m644 ${srcdir}/${pkgname}/LICENSE 
${pkgdir}/usr/share/licenses/hefur/LICENSE
+}

Copied: hefur/repos/staging-x86_64/hefurd.service (from rev 386987, 
hefur/trunk/hefurd.service)
===
--- staging-x86_64/hefurd.service   (rev 0)
+++ staging-x86_64/hefurd.service   2020-05-20 07:11:14 UTC (rev 386988)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Hefur BitTorrent tracker
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/hefurd -torrent-dir /var/lib/hefurd
+User=hefur
+Group=hefur
+CPUSchedulingPolicy=batch
+
+[Install]
+WantedBy=multi-user.target

Copied: hefur/repos/staging-x86_64/sysusers.conf (from rev 386987, 
hefur/trunk/sysusers.conf)
===
--- staging-x86_64/sysusers.conf(rev 0)
+++ staging-x86_64/sysusers.conf2020-05-20 07:11:14 UTC (rev 386988)
@@ -0,0 +1 @@
+u hefur - - /var/lib/hefurd

Copied: hefur/repos/staging-x86_64/tmpfiles.conf (from rev 386987, 
hefur/trunk/tmpfiles.conf)
===
--- staging-x86_64/tmpfiles.conf(rev 0)
+++ staging-x86_64/tmpfiles.conf2020-05-20 07:11:14 UTC (rev 386988)
@@ -0,0 +1,2 @@
+d /run/hefur - hefur hefur -
+d /var/lib/hefurd - hefur hefur -


[arch-commits] Commit in libmilter/repos/extra-x86_64 (5 files)

2020-05-20 Thread Allan McRae via arch-commits
Date: Wednesday, May 20, 2020 @ 06:00:33
  Author: allan
Revision: 386984

archrelease: copy trunk to extra-x86_64

Added:
  libmilter/repos/extra-x86_64/PKGBUILD
(from rev 386983, libmilter/trunk/PKGBUILD)
  libmilter/repos/extra-x86_64/fd-passing-libmilter.patch
(from rev 386983, libmilter/trunk/fd-passing-libmilter.patch)
  libmilter/repos/extra-x86_64/sendmail-8.15.2-glibc-2.30.patch
(from rev 386983, libmilter/trunk/sendmail-8.15.2-glibc-2.30.patch)
Deleted:
  libmilter/repos/extra-x86_64/PKGBUILD
  libmilter/repos/extra-x86_64/fd-passing-libmilter.patch

--+
 PKGBUILD |  109 +
 fd-passing-libmilter.patch   |  160 ++---
 sendmail-8.15.2-glibc-2.30.patch |   57 +
 3 files changed, 195 insertions(+), 131 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 06:00:05 UTC (rev 386983)
+++ PKGBUILD2020-05-20 06:00:33 UTC (rev 386984)
@@ -1,51 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Sergej Pupykin 
-# Contributor: mutantmonkey 
-
-pkgname=libmilter
-_pkgname=sendmail
-pkgver=8.15.2
-pkgrel=2
-pkgdesc='Implementation of the sendmail Mail Filter API'
-url='https://www.proofpoint.com/us/sendmail-open-source'
-arch=('x86_64')
-options=('staticlibs')
-license=('custom:Sendmail open source license')
-validpgpkeys=('30BCA74705FA415455731D7BAAF5B5DE05BDCC53')
-source=("http://ftp.sendmail.org/${_pkgname}.${pkgver}.tar.gz"{,.sig}
-'fd-passing-libmilter.patch')
-sha256sums=('24f94b5fd76705f15897a78932a5f2439a32b1a2fdc35769bb1a5f5d9b4db439'
-'SKIP'
-'b856ebc17e39151652bda93f40f79756ac83eb4a0b67e6d55c049f3ebde42983')
-
-prepare() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   patch -p1 -i ../fd-passing-libmilter.patch # FS#49421
-
-   # From 
http://www.j-chkmail.org/wiki/doku.php/doc/installation/start#libmilter
-   cat >> devtools/Site/site.config.m4 <
+# Contributor: Sergej Pupykin 
+# Contributor: mutantmonkey 
+
+pkgname=libmilter
+_pkgname=sendmail
+pkgver=8.15.2
+pkgrel=3
+pkgdesc='Implementation of the sendmail Mail Filter API'
+url='https://www.proofpoint.com/us/sendmail-open-source'
+arch=('x86_64')
+options=('staticlibs')
+license=('custom:Sendmail open source license')
+validpgpkeys=('30BCA74705FA415455731D7BAAF5B5DE05BDCC53')
+source=("https://ftp.sendmail.org/${_pkgname}.${pkgver}.tar.gz"{,.sig}
+'fd-passing-libmilter.patch'
+'sendmail-8.15.2-glibc-2.30.patch')
+sha256sums=('24f94b5fd76705f15897a78932a5f2439a32b1a2fdc35769bb1a5f5d9b4db439'
+'SKIP'
+'b856ebc17e39151652bda93f40f79756ac83eb4a0b67e6d55c049f3ebde42983'
+'f5378261028782c95014b0c91546e87132c13d4a39d81f61fc6039a0738a0c71')
+
+
+prepare() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   patch -p1 -i ../fd-passing-libmilter.patch # FS#49421
+   patch -p0 -i ../sendmail-8.15.2-glibc-2.30.patch
+
+   # From 
http://www.j-chkmail.org/wiki/doku.php/doc/installation/start#libmilter
+   cat >> devtools/Site/site.config.m4 <{unix|local}:/path/to/file -- A named pipe.
-   inet:port@{hostname|ip-address} -- An IPV4 socket.
-   inet6:port@{hostname|ip-address} -- An IPV6 socket.
-+  fd:number -- Pre-opened file descriptor.
-   
-   
- 
-diff --git a/libmilter/listener.c b/libmilter/listener.c
-index 48c552f..2249a1f 100644
 a/libmilter/listener.c
-+++ b/libmilter/listener.c
-@@ -197,6 +197,11 @@ mi_milteropen(conn, backlog, rmsocket, name)
-   L_socksize = sizeof addr.sin6;
-   }
- #endif /* NETINET6 */
-+  else if (strcasecmp(p, "fd") == 0)
-+  {
-+  addr.sa.sa_family = AF_UNSPEC;
-+  L_socksize = sizeof (_SOCK_ADDR);
-+  }
-   else
-   {
-   smi_log(SMI_LOG_ERR, "%s: unknown socket type %s",
-@@ -443,7 +448,21 @@ mi_milteropen(conn, backlog, rmsocket, name)
-   }
- #endif /* NETINET || NETINET6 */
- 
--  sock = socket(addr.sa.sa_family, SOCK_STREAM, 0);
-+  if (addr.sa.sa_family == AF_UNSPEC)
-+  {
-+  char *end;
-+  sock = strtol(colon, , 10);
-+  if (*end != '\0' || sock < 0)
-+  {
-+  smi_log(SMI_LOG_ERR, "%s: expected positive integer as 
fd, got %s", name, colon);
-+  return INVALID_SOCKET;
-+  }
-+  }
-+  else
-+  {
-+  sock = socket(addr.sa.sa_family, SOCK_STREAM, 0);
-+  }
-+
-   if (!ValidSocket(sock))
-   {
-   smi_log(SMI_LOG_ERR,
-@@ -466,6 +485,7 @@ mi_milteropen(conn, backlog, rmsocket, name)
- #if NETUNIX
-   addr.sa.sa_family != AF_UNIX &&
- #endif /* NETUNIX */
-+  addr.sa.sa_family != AF_UNSPEC &&
-   setsockopt(sock, SOL_SOCKET, 

[arch-commits] Commit in libmilter/trunk (PKGBUILD sendmail-8.15.2-glibc-2.30.patch)

2020-05-20 Thread Allan McRae via arch-commits
Date: Wednesday, May 20, 2020 @ 06:00:05
  Author: allan
Revision: 386983

upgpkg: libmilter 8.15.2-3: fix FTBFS

Added:
  libmilter/trunk/sendmail-8.15.2-glibc-2.30.patch
Modified:
  libmilter/trunk/PKGBUILD

--+
 PKGBUILD |   13 ++--
 sendmail-8.15.2-glibc-2.30.patch |   57 +
 2 files changed, 67 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 05:27:14 UTC (rev 386982)
+++ PKGBUILD2020-05-20 06:00:05 UTC (rev 386983)
@@ -5,7 +5,7 @@
 pkgname=libmilter
 _pkgname=sendmail
 pkgver=8.15.2
-pkgrel=2
+pkgrel=3
 pkgdesc='Implementation of the sendmail Mail Filter API'
 url='https://www.proofpoint.com/us/sendmail-open-source'
 arch=('x86_64')
@@ -13,14 +13,18 @@
 license=('custom:Sendmail open source license')
 validpgpkeys=('30BCA74705FA415455731D7BAAF5B5DE05BDCC53')
 source=("https://ftp.sendmail.org/${_pkgname}.${pkgver}.tar.gz"{,.sig}
-'fd-passing-libmilter.patch')
+'fd-passing-libmilter.patch'
+'sendmail-8.15.2-glibc-2.30.patch')
 sha256sums=('24f94b5fd76705f15897a78932a5f2439a32b1a2fdc35769bb1a5f5d9b4db439'
 'SKIP'
-'b856ebc17e39151652bda93f40f79756ac83eb4a0b67e6d55c049f3ebde42983')
+'b856ebc17e39151652bda93f40f79756ac83eb4a0b67e6d55c049f3ebde42983'
+'f5378261028782c95014b0c91546e87132c13d4a39d81f61fc6039a0738a0c71')
 
+
 prepare() {
cd "${srcdir}/${_pkgname}-${pkgver}"
patch -p1 -i ../fd-passing-libmilter.patch # FS#49421
+   patch -p0 -i ../sendmail-8.15.2-glibc-2.30.patch
 
# From 
http://www.j-chkmail.org/wiki/doku.php/doc/installation/start#libmilter
cat >> devtools/Site/site.config.m4 h_addrtype != family)
+   {


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

2020-05-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, May 20, 2020 @ 07:10:32
  Author: arojas
Revision: 386987

protobuf 3.12 rebuild

Modified:
  hefur/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 07:08:34 UTC (rev 386986)
+++ PKGBUILD2020-05-20 07:10:32 UTC (rev 386987)
@@ -3,7 +3,7 @@
 
 pkgname=hefur
 pkgver=0.6
-pkgrel=10
+pkgrel=11
 pkgdesc='A standalone and lightweight BitTorrent tracker'
 arch=('x86_64')
 url='https://github.com/abique/hefur'


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

2020-05-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, May 20, 2020 @ 07:15:46
  Author: arojas
Revision: 386989

protobuf 3.12 rebuild

Modified:
  kismet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 07:11:14 UTC (rev 386988)
+++ PKGBUILD2020-05-20 07:15:46 UTC (rev 386989)
@@ -6,7 +6,7 @@
 pkgname=kismet
 pkgver=2020_04_R2
 _realver="${pkgver//_/-}"
-pkgrel=1
+pkgrel=2
 pkgdesc="802.11 layer2 wireless network detector, sniffer, and intrusion 
detection system"
 url="https://www.kismetwireless.net/;
 arch=('x86_64')


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

2020-05-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, May 20, 2020 @ 07:08:05
  Author: arojas
Revision: 386985

protobuf 3.12 rebuild

Modified:
  libgadu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 06:00:33 UTC (rev 386984)
+++ PKGBUILD2020-05-20 07:08:05 UTC (rev 386985)
@@ -4,7 +4,7 @@
 
 pkgname=libgadu
 pkgver=1.12.2
-pkgrel=11
+pkgrel=12
 pkgdesc="This library implements the client side of the Gadu-Gadu protocol"
 arch=('x86_64')
 url="https://libgadu.net/;


[arch-commits] Commit in libgadu/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2020-05-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, May 20, 2020 @ 07:08:34
  Author: arojas
Revision: 386986

archrelease: copy trunk to staging-x86_64

Added:
  libgadu/repos/staging-x86_64/
  libgadu/repos/staging-x86_64/PKGBUILD
(from rev 386985, libgadu/trunk/PKGBUILD)

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

Copied: libgadu/repos/staging-x86_64/PKGBUILD (from rev 386985, 
libgadu/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-05-20 07:08:34 UTC (rev 386986)
@@ -0,0 +1,28 @@
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Mateusz Herych 
+
+pkgname=libgadu
+pkgver=1.12.2
+pkgrel=12
+pkgdesc="This library implements the client side of the Gadu-Gadu protocol"
+arch=('x86_64')
+url="https://libgadu.net/;
+license=('LGPL2.1')
+depends=('gnutls' 'protobuf-c')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/wojtekka/libgadu/archive/$pkgver.tar.gz;)
+md5sums=('1eecae8245d696adfbcfd40a2b36f0ca')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+
+  ./autogen.sh
+  ./protobufgen.sh
+  ./configure --prefix=/usr --disable-tests --disable-static
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


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

2020-05-20 Thread Christian Hesse via arch-commits
Date: Wednesday, May 20, 2020 @ 08:26:15
  Author: eworm
Revision: 386991

upgpkg: ldb 1:2.1.3-1

new upstream release

Modified:
  ldb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 07:16:18 UTC (rev 386990)
+++ PKGBUILD2020-05-20 08:26:15 UTC (rev 386991)
@@ -3,7 +3,7 @@
 # Contributor: Marco A Rojas 
 
 pkgname=ldb
-pkgver=2.1.2
+pkgver=2.1.3
 pkgrel=1
 epoch=1
 pkgdesc='Schema-less, ldap like, API and database'
@@ -16,7 +16,7 @@
 optdepends=('python: for python bindings')
 provides=(libldb.so)
 validpgpkeys=('9147A339719518EE9011BCB54793916113084025') # Samba Library 
Distribution Key 
-sha512sums=('6b9a7e6e3f6532ccedb087394b1d2d28f53a034353288bac1ea8d9ca65da5981191e31de6493445daa87684e08cc587886dd7fce19391bd20f1c7d440dbf3fbf'
+sha512sums=('3f5adf5ed6c98cefce56ba47c986c5d59619731def8fa66440957aba1483de19bcfdc4ec5498d34db70753312b1ad47b864020269df924d3d431c8d4d223af10'
 'SKIP')
 
 build() {


[arch-commits] Commit in ldb/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-05-20 Thread Christian Hesse via arch-commits
Date: Wednesday, May 20, 2020 @ 08:26:22
  Author: eworm
Revision: 386992

archrelease: copy trunk to testing-x86_64

Added:
  ldb/repos/testing-x86_64/
  ldb/repos/testing-x86_64/PKGBUILD
(from rev 386991, ldb/trunk/PKGBUILD)

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

Copied: ldb/repos/testing-x86_64/PKGBUILD (from rev 386991, ldb/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-20 08:26:22 UTC (rev 386992)
@@ -0,0 +1,40 @@
+# Maintainer: Tobias Powalowski 
+# Contributor: Christian Hesse 
+# Contributor: Marco A Rojas 
+
+pkgname=ldb
+pkgver=2.1.3
+pkgrel=1
+epoch=1
+pkgdesc='Schema-less, ldap like, API and database'
+arch=('x86_64')
+url="https://ldb.samba.org/;
+source=(https://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar{.gz,.asc})
+license=('GPL3')
+depends=('talloc' 'libtevent.so' 'tdb' 'libtdb.so' 'popt' 'lmdb')
+makedepends=('python' 'cmocka' 'docbook-xsl' 'tevent')
+optdepends=('python: for python bindings')
+provides=(libldb.so)
+validpgpkeys=('9147A339719518EE9011BCB54793916113084025') # Samba Library 
Distribution Key 
+sha512sums=('3f5adf5ed6c98cefce56ba47c986c5d59619731def8fa66440957aba1483de19bcfdc4ec5498d34db70753312b1ad47b864020269df924d3d431c8d4d223af10'
+'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--disable-rpath \
+--disable-rpath-install \
+--bundled-libraries=NONE \
+--builtin-libraries=replace \
+--with-modulesdir=/usr/lib/ldb/modules \
+--with-privatelibdir=/usr/lib/ldb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:38:19
  Author: felixonmars
Revision: 630547

upgpkg: haskell-unexceptionalio 0.5.1-1

Modified:
  haskell-unexceptionalio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 08:13:32 UTC (rev 630546)
+++ PKGBUILD2020-05-20 08:38:19 UTC (rev 630547)
@@ -3,8 +3,8 @@
 
 _hkgname=unexceptionalio
 pkgname=haskell-unexceptionalio
-pkgver=0.5.0
-pkgrel=4
+pkgver=0.5.1
+pkgrel=1
 pkgdesc="IO without any non-error, synchronous exceptions"
 url="https://github.com/singpolyma/unexceptionalio;
 license=("custom")
@@ -12,13 +12,8 @@
 depends=('ghc-libs')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('6aefa186dde521b5d139664958e96474bd91515dff367be1de0f8f7d2f4b3e09e798569db304a22c32882ecc7fd46a4fa48209d85537a95b250ef195f861fcb5')
+sha512sums=('62c42e5c683cd05505971602fe4e64a50b5949d9540acefd8d4d66ec0bf57075cdb8e35e99f7e7c4b4fdf589b2af47aa31c0cd62d518b4ded5fc5f9f382008ba')
 
-prepare() {
-cd $_hkgname-$pkgver
-sed -i '/fail s =/i instance MonadFail UIO where' UnexceptionalIO.hs
-}
-
 build() {
 cd $_hkgname-$pkgver
 


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:43:15
  Author: felixonmars
Revision: 630552

archrelease: copy trunk to community-any

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

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

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

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


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:48:02
  Author: felixonmars
Revision: 630559

upgpkg: python-google-auth 1.13.0-1

Modified:
  python-google-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 08:47:55 UTC (rev 630558)
+++ PKGBUILD2020-05-20 08:48:02 UTC (rev 630559)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-google-auth
-pkgver=1.12.0
+pkgver=1.13.0
 pkgrel=1
 pkgdesc="Google Authentication Library"
 url="https://github.com/GoogleCloudPlatform/google-auth-library-python;
@@ -13,7 +13,7 @@
   'python-oauth2client' 'python-pytest-localserver' 
'python-cryptography'
   'python-freezegun' 'python-responses' 'python-pyopenssl')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/GoogleCloudPlatform/google-auth-library-python/archive/v$pkgver.tar.gz;)
-sha512sums=('67cc7919542ef55844f78d5c8d4df01c8b2cc03de100c3eef1f4b172f2a9e2eb6fdfe80129b36060f9f953484e341a69a3929968d70b0881995a22b16e69070e')
+sha512sums=('e1a2a3f0575ebfcea2e73b9b38f9515201d2be9682aa0a9b874735cfcb98eccc8fb9d0b65f911c087c01f1a365098f6c6860f54d552a4f28e27f3b23d76fe2ca')
 
 prepare() {
   # Use system cert


[arch-commits] Commit in v2ray-domain-list-community/trunk (PKGBUILD)

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:47:03
  Author: felixonmars
Revision: 630555

upgpkg: v2ray-domain-list-community 202005200628-1

Modified:
  v2ray-domain-list-community/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 08:46:52 UTC (rev 630554)
+++ PKGBUILD2020-05-20 08:47:03 UTC (rev 630555)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=v2ray-domain-list-community
-pkgver=202005150954
+pkgver=202005200628
 pkgrel=1
 pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
 arch=('any')
@@ -9,7 +9,7 @@
 license=('MIT')
 makedepends=('go-pie' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/domain-list-community/archive/$pkgver.tar.gz;)
-sha512sums=('ff923f7a71d14e74a0296eb28485d229f23ebb001a4979aa8ed5a945e554e6495a6436b22236bdbb89d616230096c32508940fa416a573c740fbcd66383ca38c')
+sha512sums=('a51eba9efaa2d5f3ec560a85db3dc180ccaf5b79dc294da15d4e919e420e435065d5f0e9853d2364bd8ca54b62bf5c4901f447fed8675cdc5bc48d729183ea5a')
 
 prepare() {
   mkdir .gopath


[arch-commits] Commit in v2ray-domain-list-community/repos/community-any (2 files)

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:47:25
  Author: felixonmars
Revision: 630556

archrelease: copy trunk to community-any

Added:
  v2ray-domain-list-community/repos/community-any/PKGBUILD
(from rev 630555, v2ray-domain-list-community/trunk/PKGBUILD)
Deleted:
  v2ray-domain-list-community/repos/community-any/PKGBUILD

--+
 PKGBUILD |   68 ++---
 1 file changed, 34 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 08:47:03 UTC (rev 630555)
+++ PKGBUILD2020-05-20 08:47:25 UTC (rev 630556)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=v2ray-domain-list-community
-pkgver=202005150954
-pkgrel=1
-pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
-arch=('any')
-url="https://github.com/v2ray/domain-list-community;
-license=('MIT')
-makedepends=('go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/domain-list-community/archive/$pkgver.tar.gz;)
-sha512sums=('ff923f7a71d14e74a0296eb28485d229f23ebb001a4979aa8ed5a945e554e6495a6436b22236bdbb89d616230096c32508940fa416a573c740fbcd66383ca38c')
-
-prepare() {
-  mkdir .gopath
-  export GOPATH="$srcdir/.gopath"
-
-  mkdir -p .gopath/src/github.com/v2ray
-  ln -s "$PWD/domain-list-community-$pkgver" 
.gopath/src/github.com/v2ray/domain-list-community
-
-  go get github.com/golang/protobuf/proto
-  go get -insecure v2ray.com/core/app/router
-}
-
-build() {
-  cd .gopath
-  go run ./src/github.com/v2ray/domain-list-community/main.go
-}
-
-package() {
-  cd .gopath
-  install -Dm755 dlc.dat "$pkgdir"/usr/lib/v2ray/geosite.dat
-  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: v2ray-domain-list-community/repos/community-any/PKGBUILD (from rev 
630555, v2ray-domain-list-community/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 08:47:25 UTC (rev 630556)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+
+pkgname=v2ray-domain-list-community
+pkgver=202005200628
+pkgrel=1
+pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
+arch=('any')
+url="https://github.com/v2ray/domain-list-community;
+license=('MIT')
+makedepends=('go-pie' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/domain-list-community/archive/$pkgver.tar.gz;)
+sha512sums=('a51eba9efaa2d5f3ec560a85db3dc180ccaf5b79dc294da15d4e919e420e435065d5f0e9853d2364bd8ca54b62bf5c4901f447fed8675cdc5bc48d729183ea5a')
+
+prepare() {
+  mkdir .gopath
+  export GOPATH="$srcdir/.gopath"
+
+  mkdir -p .gopath/src/github.com/v2ray
+  ln -s "$PWD/domain-list-community-$pkgver" 
.gopath/src/github.com/v2ray/domain-list-community
+
+  go get github.com/golang/protobuf/proto
+  go get -insecure v2ray.com/core/app/router
+}
+
+build() {
+  cd .gopath
+  go run ./src/github.com/v2ray/domain-list-community/main.go
+}
+
+package() {
+  cd .gopath
+  install -Dm755 dlc.dat "$pkgdir"/usr/lib/v2ray/geosite.dat
+  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:47:34
  Author: felixonmars
Revision: 630557

upgpkg: python-vistir 0.5.2-1

Modified:
  python-vistir/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 08:47:25 UTC (rev 630556)
+++ PKGBUILD2020-05-20 08:47:34 UTC (rev 630557)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-vistir
-pkgver=0.5.1
+pkgver=0.5.2
 pkgrel=1
 pkgdesc="Miscellaneous utilities for dealing with filesystems, paths, 
projects, subprocesses, and more"
 url="https://github.com/sarugaku/vistir;
@@ -12,7 +12,7 @@
 checkdepends=('python-pytest-runner' 'python-hypothesis-fspaths' 
'python-pytest-cov'
   'python-pytest-timeout' 'python-yaspin')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sarugaku/vistir/archive/$pkgver.tar.gz;)
-sha512sums=('8f53ef0e8f2b1e0fe88d5ba0d5ddc86c4a3554915b34aa73d1aa3daa7ba808594b0e0c500f5427eef8d160f79bd177191727e2c7541dcf6b43c79a5b5c04')
+sha512sums=('fdeea91160f7d170af972b42a1448e0931d13dd56eddfb92274d078e5c2250b9d649cc434ccc9fe71d5ec080d2c490d730da0f38bfad0863de6ae063fc28136e')
 
 build() {
   cd vistir-$pkgver


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:47:55
  Author: felixonmars
Revision: 630558

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 08:47:34 UTC (rev 630557)
+++ PKGBUILD2020-05-20 08:47:55 UTC (rev 630558)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-vistir
-pkgver=0.5.1
-pkgrel=1
-pkgdesc="Miscellaneous utilities for dealing with filesystems, paths, 
projects, subprocesses, and more"
-url="https://github.com/sarugaku/vistir;
-license=('BSD')
-arch=('any')
-depends=('python-colorama' 'python-requests' 'python-six')
-makedepends=('python-setuptools' 'python-wheel')
-checkdepends=('python-pytest-runner' 'python-hypothesis-fspaths' 
'python-pytest-cov'
-  'python-pytest-timeout' 'python-yaspin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/sarugaku/vistir/archive/$pkgver.tar.gz;)
-sha512sums=('8f53ef0e8f2b1e0fe88d5ba0d5ddc86c4a3554915b34aa73d1aa3daa7ba808594b0e0c500f5427eef8d160f79bd177191727e2c7541dcf6b43c79a5b5c04')
-
-build() {
-  cd vistir-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd vistir-$pkgver
-  LC_CTYPE=en_US.UTF-8 python setup.py pytest
-}
-
-package() {
-  cd vistir-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: python-vistir/repos/community-any/PKGBUILD (from rev 630557, 
python-vistir/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 08:47:55 UTC (rev 630558)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-vistir
+pkgver=0.5.2
+pkgrel=1
+pkgdesc="Miscellaneous utilities for dealing with filesystems, paths, 
projects, subprocesses, and more"
+url="https://github.com/sarugaku/vistir;
+license=('BSD')
+arch=('any')
+depends=('python-colorama' 'python-requests' 'python-six')
+makedepends=('python-setuptools' 'python-wheel')
+checkdepends=('python-pytest-runner' 'python-hypothesis-fspaths' 
'python-pytest-cov'
+  'python-pytest-timeout' 'python-yaspin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sarugaku/vistir/archive/$pkgver.tar.gz;)
+sha512sums=('fdeea91160f7d170af972b42a1448e0931d13dd56eddfb92274d078e5c2250b9d649cc434ccc9fe71d5ec080d2c490d730da0f38bfad0863de6ae063fc28136e')
+
+build() {
+  cd vistir-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd vistir-$pkgver
+  LC_CTYPE=en_US.UTF-8 python setup.py pytest
+}
+
+package() {
+  cd vistir-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:46:52
  Author: felixonmars
Revision: 630554

archrelease: copy trunk to community-any

Added:
  v2ray-geoip/repos/community-any/PKGBUILD
(from rev 630553, v2ray-geoip/trunk/PKGBUILD)
Deleted:
  v2ray-geoip/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 08:46:27 UTC (rev 630553)
+++ PKGBUILD2020-05-20 08:46:52 UTC (rev 630554)
@@ -1,15 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=v2ray-geoip
-pkgver=202005130002
-pkgrel=1
-pkgdesc="GeoIP List for V2Ray"
-arch=('any')
-url="https://github.com/v2ray/geoip;
-license=('MIT')
-source=("geoip-$pkgver.dat::https://github.com/v2ray/geoip/releases/download/$pkgver/geoip.dat;)
-sha512sums=('ca13fc5f2134913042b456504fb1456e5a8b99c2f138b5708cf1c1c509e93ece84f9a76851a04e4d4c584a83fac6cba81d0c799b33bb1002a36e4de586e4f3d4')
-
-package() {
-  install -Dm755 geoip-$pkgver.dat "$pkgdir"/usr/lib/v2ray/geoip.dat
-}

Copied: v2ray-geoip/repos/community-any/PKGBUILD (from rev 630553, 
v2ray-geoip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 08:46:52 UTC (rev 630554)
@@ -0,0 +1,15 @@
+# Maintainer: Felix Yan 
+
+pkgname=v2ray-geoip
+pkgver=20200522
+pkgrel=1
+pkgdesc="GeoIP List for V2Ray"
+arch=('any')
+url="https://github.com/v2ray/geoip;
+license=('MIT')
+source=("geoip-$pkgver.dat::https://github.com/v2ray/geoip/releases/download/$pkgver/geoip.dat;)
+sha512sums=('57352f55d93cda65ee04d16ec9b466e2fe36d59dac3156b4de21f56e40044768fb2eaecd0cc44fefeb0e90d9d86edd626443d23d052deca550798d2da6b843cd')
+
+package() {
+  install -Dm755 geoip-$pkgver.dat "$pkgdir"/usr/lib/v2ray/geoip.dat
+}


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:46:27
  Author: felixonmars
Revision: 630553

upgpkg: v2ray-geoip 20200522-1

Modified:
  v2ray-geoip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 08:43:15 UTC (rev 630552)
+++ PKGBUILD2020-05-20 08:46:27 UTC (rev 630553)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=v2ray-geoip
-pkgver=202005130002
+pkgver=20200522
 pkgrel=1
 pkgdesc="GeoIP List for V2Ray"
 arch=('any')
@@ -8,7 +8,7 @@
 url="https://github.com/v2ray/geoip;
 license=('MIT')
 
source=("geoip-$pkgver.dat::https://github.com/v2ray/geoip/releases/download/$pkgver/geoip.dat;)
-sha512sums=('ca13fc5f2134913042b456504fb1456e5a8b99c2f138b5708cf1c1c509e93ece84f9a76851a04e4d4c584a83fac6cba81d0c799b33bb1002a36e4de586e4f3d4')
+sha512sums=('57352f55d93cda65ee04d16ec9b466e2fe36d59dac3156b4de21f56e40044768fb2eaecd0cc44fefeb0e90d9d86edd626443d23d052deca550798d2da6b843cd')
 
 package() {
   install -Dm755 geoip-$pkgver.dat "$pkgdir"/usr/lib/v2ray/geoip.dat


[arch-commits] Commit in perl-mozilla-ca/repos/extra-any (PKGBUILD PKGBUILD)

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:50:33
  Author: felixonmars
Revision: 386996

archrelease: copy trunk to extra-any

Added:
  perl-mozilla-ca/repos/extra-any/PKGBUILD
(from rev 386995, perl-mozilla-ca/trunk/PKGBUILD)
Deleted:
  perl-mozilla-ca/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 08:50:10 UTC (rev 386995)
+++ PKGBUILD2020-05-20 08:50:33 UTC (rev 386996)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Justin Davis (juster) 
-
-pkgname=perl-mozilla-ca
-pkgver=20180117
-pkgrel=3
-pkgdesc="Mozilla's CA cert bundle in PEM format"
-arch=('any')
-license=('GPL2' 'LGPL2.1')
-options=('!emptydirs')
-depends=('perl')
-url='https://metacpan.org/release/Mozilla-CA'
-source=("http://search.cpan.org/CPAN/authors/id/A/AB/ABH/Mozilla-CA-$pkgver.tar.gz;)
-sha512sums=('8b4187f47638ba8d670b3f5cafc1de4040dfec1dde6a932411c79b41a8a454bcd3b66f9818c6d28135e29551ce93bc3ddb61e648c7810b30cb147ea0beaaedba')
-
-build() (
-  cd Mozilla-CA-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-)
-
-check() (
-  cd Mozilla-CA-$pkgver
-  make test
-)
-
-package() (
-  cd Mozilla-CA-$pkgver
-  make install DESTDIR="$pkgdir"
-)
-
-# vim:set ts=2 sw=2 et:

Copied: perl-mozilla-ca/repos/extra-any/PKGBUILD (from rev 386995, 
perl-mozilla-ca/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 08:50:33 UTC (rev 386996)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+# Contributor: Justin Davis (juster) 
+
+pkgname=perl-mozilla-ca
+pkgver=20200520
+pkgrel=1
+pkgdesc="Mozilla's CA cert bundle in PEM format"
+arch=('any')
+license=('GPL2' 'LGPL2.1')
+options=('!emptydirs')
+depends=('perl')
+url='https://metacpan.org/release/Mozilla-CA'
+source=("https://search.cpan.org/CPAN/authors/id/A/AB/ABH/Mozilla-CA-$pkgver.tar.gz;)
+sha512sums=('5bc7c43c55baa3f878fd2dbf1c85d6b20dcdc9e54ae073d1be4f6b808fa5a4b1205428b7967b5f752b31a62464a8b5cc67b32b3f70b834a4da9c39efe3d5d59f')
+
+build() (
+  cd Mozilla-CA-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+)
+
+check() (
+  cd Mozilla-CA-$pkgver
+  make test
+)
+
+package() (
+  cd Mozilla-CA-$pkgver
+  make install DESTDIR="$pkgdir"
+)
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in perl-mozilla-ca/trunk (PKGBUILD)

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:50:10
  Author: felixonmars
Revision: 386995

upgpkg: perl-mozilla-ca 20200520-1

Modified:
  perl-mozilla-ca/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 08:40:43 UTC (rev 386994)
+++ PKGBUILD2020-05-20 08:50:10 UTC (rev 386995)
@@ -2,8 +2,8 @@
 # Contributor: Justin Davis (juster) 
 
 pkgname=perl-mozilla-ca
-pkgver=20180117
-pkgrel=4
+pkgver=20200520
+pkgrel=1
 pkgdesc="Mozilla's CA cert bundle in PEM format"
 arch=('any')
 license=('GPL2' 'LGPL2.1')
@@ -11,7 +11,7 @@
 depends=('perl')
 url='https://metacpan.org/release/Mozilla-CA'
 
source=("https://search.cpan.org/CPAN/authors/id/A/AB/ABH/Mozilla-CA-$pkgver.tar.gz;)
-sha512sums=('8b4187f47638ba8d670b3f5cafc1de4040dfec1dde6a932411c79b41a8a454bcd3b66f9818c6d28135e29551ce93bc3ddb61e648c7810b30cb147ea0beaaedba')
+sha512sums=('5bc7c43c55baa3f878fd2dbf1c85d6b20dcdc9e54ae073d1be4f6b808fa5a4b1205428b7967b5f752b31a62464a8b5cc67b32b3f70b834a4da9c39efe3d5d59f')
 
 build() (
   cd Mozilla-CA-$pkgver


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:50:08
  Author: felixonmars
Revision: 630562

archrelease: copy trunk to community-any

Added:
  typescript/repos/community-any/PKGBUILD
(from rev 630561, typescript/trunk/PKGBUILD)
Deleted:
  typescript/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 08:49:47 UTC (rev 630561)
+++ PKGBUILD2020-05-20 08:50:08 UTC (rev 630562)
@@ -1,29 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Bruno Galeotti 
-
-pkgname=typescript
-pkgver=3.9.2
-pkgrel=1
-pkgdesc="TypeScript is a language for application scale JavaScript development"
-arch=('any')
-url="http://typescriptlang.org/;
-license=('Apache')
-depends=('nodejs')
-makedepends=('npm')
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('ab692dab89ffb8bb8d3528726b28adf834e86d5d80a4f128ffab28ebc25a0f9a23bdcffa1829418a979d07dccd598c514809595c07b8d394658a3ce5eaa0e24b')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-
-  # 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"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: typescript/repos/community-any/PKGBUILD (from rev 630561, 
typescript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 08:50:08 UTC (rev 630562)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+# Contributor: Bruno Galeotti 
+
+pkgname=typescript
+pkgver=3.9.3
+pkgrel=1
+pkgdesc="TypeScript is a language for application scale JavaScript development"
+arch=('any')
+url="http://typescriptlang.org/;
+license=('Apache')
+depends=('nodejs')
+makedepends=('npm')
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('0ffc2a9c1db1ccd148728046f451bc7174438e2a924db1b6c1df03319790c8994fd6f7d3908c47e062af796684058c9228883e512bbe13e103211e3b4aa9da31')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+
+  # 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"
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:56:04
  Author: felixonmars
Revision: 630564

archrelease: copy trunk to community-any

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

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

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 08:55:23 UTC (rev 630563)
+++ PKGBUILD2020-05-20 08:56:04 UTC (rev 630564)
@@ -1,44 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=2.236
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='https://jenkins.io'
-license=('MIT')
-depends=('java-runtime=8' 'ttf-dejavu')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')
-backup=('etc/conf.d/jenkins')
-install='jenkins.install'

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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:56:54
  Author: felixonmars
Revision: 386997

upgpkg: python2-isort 4.3.12-1

Modified:
  python2-isort/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 08:50:33 UTC (rev 386996)
+++ PKGBUILD2020-05-20 08:56:54 UTC (rev 386997)
@@ -2,7 +2,7 @@
 # Contributor: Yaron de Leeuw 
 
 pkgname=python2-isort
-pkgver=4.3.11
+pkgver=4.3.12
 pkgrel=1
 pkgdesc="A Python utility / library to sort Python imports."
 arch=('any')
@@ -10,7 +10,7 @@
 license=('MIT')
 depends=('python2-futures' 'python2-setuptools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/timothycrosley/isort/archive/$pkgver.tar.gz;)
-sha512sums=('e992db693fdf5cafc79ebf0fbcaf87e4941d2db4b18bbf376b3e392cb3a7013aab3f413ac789605a3fd939d5c69c66b46084c2272cf0d09b50e359f8603756a6')
+sha512sums=('66568a821a703cceb31129d032554017e9762a82cb3194b983a9114f1e7ca2941cc1d9ebcb3f684636fdec5023f3e7c86d55833d71c7051ff13eba1302c81935')
 
 build() {
   cd isort-$pkgver


[arch-commits] Commit in perl-mozilla-ca/repos/testing-any (PKGBUILD PKGBUILD)

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 09:00:50
  Author: felixonmars
Revision: 387000

archrelease: copy trunk to testing-any

Added:
  perl-mozilla-ca/repos/testing-any/PKGBUILD
(from rev 386999, perl-mozilla-ca/trunk/PKGBUILD)
Deleted:
  perl-mozilla-ca/repos/testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 09:00:29 UTC (rev 386999)
+++ PKGBUILD2020-05-20 09:00:50 UTC (rev 387000)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Justin Davis (juster) 
-
-pkgname=perl-mozilla-ca
-pkgver=20180117
-pkgrel=4
-pkgdesc="Mozilla's CA cert bundle in PEM format"
-arch=('any')
-license=('GPL2' 'LGPL2.1')
-options=('!emptydirs')
-depends=('perl')
-url='https://metacpan.org/release/Mozilla-CA'
-source=("https://search.cpan.org/CPAN/authors/id/A/AB/ABH/Mozilla-CA-$pkgver.tar.gz;)
-sha512sums=('8b4187f47638ba8d670b3f5cafc1de4040dfec1dde6a932411c79b41a8a454bcd3b66f9818c6d28135e29551ce93bc3ddb61e648c7810b30cb147ea0beaaedba')
-
-build() (
-  cd Mozilla-CA-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-)
-
-check() (
-  cd Mozilla-CA-$pkgver
-  make test
-)
-
-package() (
-  cd Mozilla-CA-$pkgver
-  make install DESTDIR="$pkgdir"
-)
-
-# vim:set ts=2 sw=2 et:

Copied: perl-mozilla-ca/repos/testing-any/PKGBUILD (from rev 386999, 
perl-mozilla-ca/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 09:00:50 UTC (rev 387000)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+# Contributor: Justin Davis (juster) 
+
+pkgname=perl-mozilla-ca
+pkgver=20200520
+pkgrel=2
+pkgdesc="Mozilla's CA cert bundle in PEM format"
+arch=('any')
+license=('GPL2' 'LGPL2.1')
+options=('!emptydirs')
+depends=('perl')
+url='https://metacpan.org/release/Mozilla-CA'
+source=("https://search.cpan.org/CPAN/authors/id/A/AB/ABH/Mozilla-CA-$pkgver.tar.gz;)
+sha512sums=('5bc7c43c55baa3f878fd2dbf1c85d6b20dcdc9e54ae073d1be4f6b808fa5a4b1205428b7967b5f752b31a62464a8b5cc67b32b3f70b834a4da9c39efe3d5d59f')
+
+build() (
+  cd Mozilla-CA-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+)
+
+check() (
+  cd Mozilla-CA-$pkgver
+  make test
+)
+
+package() (
+  cd Mozilla-CA-$pkgver
+  make install DESTDIR="$pkgdir"
+)
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in perl-mozilla-ca/trunk (PKGBUILD)

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 09:00:29
  Author: felixonmars
Revision: 386999

upgpkg: perl-mozilla-ca 20200520-2

Modified:
  perl-mozilla-ca/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 08:57:12 UTC (rev 386998)
+++ PKGBUILD2020-05-20 09:00:29 UTC (rev 386999)
@@ -3,7 +3,7 @@
 
 pkgname=perl-mozilla-ca
 pkgver=20200520
-pkgrel=1
+pkgrel=2
 pkgdesc="Mozilla's CA cert bundle in PEM format"
 arch=('any')
 license=('GPL2' 'LGPL2.1')


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 09:03:23
  Author: felixonmars
Revision: 630572

archrelease: copy trunk to community-x86_64

Added:
  terraform/repos/community-x86_64/CHANGELOG.md
(from rev 630571, terraform/trunk/CHANGELOG.md)
  terraform/repos/community-x86_64/PKGBUILD
(from rev 630571, terraform/trunk/PKGBUILD)
  terraform/repos/community-x86_64/test-backport.patch
(from rev 630571, terraform/trunk/test-backport.patch)
Deleted:
  terraform/repos/community-x86_64/CHANGELOG.md
  terraform/repos/community-x86_64/PKGBUILD
  terraform/repos/community-x86_64/test-backport.patch

-+
 CHANGELOG.md|   58 ++--
 PKGBUILD|   80 +-
 test-backport.patch |   64 
 3 files changed, 101 insertions(+), 101 deletions(-)

Deleted: CHANGELOG.md
===
--- CHANGELOG.md2020-05-20 09:02:52 UTC (rev 630571)
+++ CHANGELOG.md2020-05-20 09:03:23 UTC (rev 630572)
@@ -1,29 +0,0 @@
-## 0.13.0 (Unreleased)
-
-BREAKING CHANGES:
-
-* command/import: remove the deprecated `-provider` command line argument 
[GH-24090]
-#22862 fixed a bug where the `import` command was not properly attaching the 
configured provider for a resource to be imported, making the `-provider` 
command line argument unnecessary. 
-* config: Inside `provisioner` blocks that have `when = destroy` set, and 
inside any `connection` blocks that are used by such `provisioner` blocks, it 
is now an error to refer to any objects other than `self`, `count`, or `each` 
[GH-24083]
-* config: The `merge` function now returns more precise type information, 
making it usable for values passed to `for_each` [GH-24032]
-* The official MacOS builds of Terraform CLI are no longer compatible with Mac 
OS 10.10 Yosemite; Terraform now requires at least Mac OS 10.11 El Capitan. 
Terraform 0.13 is the last major release that will support 10.11 El Capitan, so 
if you are upgrading your OS we recommend upgrading to Mac OS 10.12 Sierra or 
later.
-* The official FreeBSD builds of Terraform CLI are no longer compatible with 
FreeBSD 10.x, which has reached end-of-life. Terraform now requires FreeBSD 
11.2 or later.
-
-ENHANCEMENTS:
-* config: `templatefile` function will now return a helpful error message if a 
given variable has an invalid name, rather than relying on a syntax error in 
the template parsing itself. [GH-24184]
-* config: The configuration language now uses Unicode 12.0 character tables 
for certain Unicode-version-sensitive operations on strings, such as the 
`upper` and `lower` functions. Those working with strings containing new 
characters introduced since Unicode 9.0 may see small differences in behavior 
as a result of these table updates.
-* Terraform CLI now supports TLS 1.3 and supports Ed25519 certificates when 
making outgoing connections to remote TLS servers. While both of these changes 
are backwards compatible in principle, certain legacy TLS server 
implementations can reportedly encounter problems when attempting to negotiate 
TLS 1.3. (These changes affects only requests made by Terraform CLI itself, 
such as to module registries or backends. Provider plugins have separate TLS 
implementations that will gain these features on a separate release schedule.)
-* On Unix systems where `use-vc` is set in `resolv.conf`, Terraform will now 
use TCP for DNS resolution. We don't expect this to cause any problem for most 
users, but if you find you are seeing DNS resolution failures after upgrading 
please verify that you can either reach your configured nameservers using TCP 
or that your resolver configuration does not include the `use-vc` directive.
-
-BUG FIXES: 
-* cli: Fix `terraform state mv` to correctly set the resource each mode based 
on the target address [GH-24254]
-* cli: The `terraform plan` command (and the implied plan run by `terraform 
apply` with no arguments) will now print any warnings that were generated even 
if there are no changes to be made. [GH-24095]
-* command/show (json output): fix inconsistency in resource addresses between 
plan and prior state output [GH-24256]
-* core: Instances are now destroyed only using their stored state, removing 
many cycle errors [GH-24083]
-* lang: Fix non-string key panics in map function [GH-24277]
-

-For information on prior major releases, see their changelogs:
-
-* [v0.12](https://github.com/hashicorp/terraform/blob/v0.12/CHANGELOG.md)
-* [v0.11 and 
earlier](https://github.com/hashicorp/terraform/blob/v0.11/CHANGELOG.md)

Copied: terraform/repos/community-x86_64/CHANGELOG.md (from rev 630571, 
terraform/trunk/CHANGELOG.md)
===
--- CHANGELOG.md(rev 0)
+++ CHANGELOG.md2020-05-20 09:03:23 UTC (rev 630572)
@@ -0,0 +1,29 @@
+## 0.13.0 (Unreleased)
+

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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 09:03:41
  Author: felixonmars
Revision: 630573

upgpkg: fcitx5-anthy 0.0.0.20200520-1

Modified:
  fcitx5-anthy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 09:03:23 UTC (rev 630572)
+++ PKGBUILD2020-05-20 09:03:41 UTC (rev 630573)
@@ -3,8 +3,8 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-anthy
-pkgver=0.0.0.20200513
-_commit=b7bbb8c8da62742f991ca100272a0f87d90e6a4d
+pkgver=0.0.0.20200520
+_commit=89b025c3a86ce3c239b8a4a260d4534cd550d27a
 pkgrel=1
 pkgdesc="Anthy Wrapper for Fcitx5"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('fcitx5' 'anthy')
 makedepends=('extra-cmake-modules')
 
source=("https://github.com/fcitx/fcitx5-anthy/archive/$_commit/fcitx5-anthy-$_commit.tar.gz;)
-sha512sums=('ac79df9af101a1e6de4e8cb155a41a5dc329236bcc52abbdafa0caa39687fe041dcdcda784712f6834a8ce7ec4f896cc6f195e53ef6d8e5c8b32de71bf55f2a6')
+sha512sums=('5ace9b5c78396581a74eb1483de911be67c9f386ebb87ec3a2513852b5bc83a5513a495bd84f217e749823be15d9659e8ac502c4e91870d2b97816c7fba8d33c')
 
 build(){
   cd $pkgname-$_commit


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 09:04:01
  Author: felixonmars
Revision: 630574

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-anthy/repos/community-x86_64/PKGBUILD
(from rev 630573, fcitx5-anthy/trunk/PKGBUILD)
Deleted:
  fcitx5-anthy/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 09:03:41 UTC (rev 630573)
+++ PKGBUILD2020-05-20 09:04:01 UTC (rev 630574)
@@ -1,28 +0,0 @@
-# $Id: PKGBUILD 226039 2017-04-27 13:52:30Z felixonmars $
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-anthy
-pkgver=0.0.0.20200513
-_commit=b7bbb8c8da62742f991ca100272a0f87d90e6a4d
-pkgrel=1
-pkgdesc="Anthy Wrapper for Fcitx5"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5-anthy;
-license=('GPL')
-depends=('fcitx5' 'anthy')
-makedepends=('extra-cmake-modules')
-source=("https://github.com/fcitx/fcitx5-anthy/archive/$_commit/fcitx5-anthy-$_commit.tar.gz;)
-sha512sums=('ac79df9af101a1e6de4e8cb155a41a5dc329236bcc52abbdafa0caa39687fe041dcdcda784712f6834a8ce7ec4f896cc6f195e53ef6d8e5c8b32de71bf55f2a6')
-
-build(){
-  cd $pkgname-$_commit
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  make
-}
-
-package() {
-  cd $pkgname-$_commit
-  make DESTDIR="$pkgdir" install
-}

Copied: fcitx5-anthy/repos/community-x86_64/PKGBUILD (from rev 630573, 
fcitx5-anthy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 09:04:01 UTC (rev 630574)
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 226039 2017-04-27 13:52:30Z felixonmars $
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-anthy
+pkgver=0.0.0.20200520
+_commit=89b025c3a86ce3c239b8a4a260d4534cd550d27a
+pkgrel=1
+pkgdesc="Anthy Wrapper for Fcitx5"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-anthy;
+license=('GPL')
+depends=('fcitx5' 'anthy')
+makedepends=('extra-cmake-modules')
+source=("https://github.com/fcitx/fcitx5-anthy/archive/$_commit/fcitx5-anthy-$_commit.tar.gz;)
+sha512sums=('5ace9b5c78396581a74eb1483de911be67c9f386ebb87ec3a2513852b5bc83a5513a495bd84f217e749823be15d9659e8ac502c4e91870d2b97816c7fba8d33c')
+
+build(){
+  cd $pkgname-$_commit
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  make
+}
+
+package() {
+  cd $pkgname-$_commit
+  make DESTDIR="$pkgdir" install
+}


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 09:05:06
  Author: felixonmars
Revision: 630577

upgpkg: haskell-optparse-simple 0.1.1.2-188: rebuild with hpack 0.33.1

Modified:
  haskell-optparse-simple/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 09:04:39 UTC (rev 630576)
+++ PKGBUILD2020-05-20 09:05:06 UTC (rev 630577)
@@ -4,7 +4,7 @@
 _hkgname=optparse-simple
 pkgname=haskell-optparse-simple
 pkgver=0.1.1.2
-pkgrel=187
+pkgrel=188
 pkgdesc="Simple interface to optparse-applicative"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("BSD")


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 09:04:39
  Author: felixonmars
Revision: 630576

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-rime/repos/community-x86_64/PKGBUILD
(from rev 630575, fcitx5-rime/trunk/PKGBUILD)
Deleted:
  fcitx5-rime/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 09:04:09 UTC (rev 630575)
+++ PKGBUILD2020-05-20 09:04:39 UTC (rev 630576)
@@ -1,28 +0,0 @@
-  # $Id: PKGBUILD 226039 2017-04-27 13:52:30Z felixonmars $
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-rime
-pkgver=0.0.0.20200517
-_commit=efc307cf1d2572038a1f5ae9b5ce43181b45d5ba
-pkgrel=1
-pkgdesc="RIME support for Fcitx5"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5-rime;
-license=('GPL')
-depends=('fcitx5' 'librime')
-makedepends=('extra-cmake-modules')
-source=("https://github.com/fcitx/fcitx5-rime/archive/$_commit/fcitx5-rime-$_commit.tar.gz;)
-sha512sums=('c9d5a2e5d6d980065cf166ced011c5648f3e9a83c04c64764b9e198ad550355c88d753b1a69d6f4fa8d1fb6b1030f06e801b6a0aba20dbf914ab978efbb4493b')
-
-build(){
-  cd $pkgname-$_commit
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  make
-}
-
-package() {
-  cd $pkgname-$_commit
-  make DESTDIR="$pkgdir" install
-}

Copied: fcitx5-rime/repos/community-x86_64/PKGBUILD (from rev 630575, 
fcitx5-rime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 09:04:39 UTC (rev 630576)
@@ -0,0 +1,28 @@
+  # $Id: PKGBUILD 226039 2017-04-27 13:52:30Z felixonmars $
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-rime
+pkgver=0.0.0.20200520
+_commit=efc307cf1d2572038a1f5ae9b5ce43181b45d5ba
+pkgrel=1
+pkgdesc="RIME support for Fcitx5"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-rime;
+license=('GPL')
+depends=('fcitx5' 'librime')
+makedepends=('extra-cmake-modules')
+source=("https://github.com/fcitx/fcitx5-rime/archive/$_commit/fcitx5-rime-$_commit.tar.gz;)
+sha512sums=('c9d5a2e5d6d980065cf166ced011c5648f3e9a83c04c64764b9e198ad550355c88d753b1a69d6f4fa8d1fb6b1030f06e801b6a0aba20dbf914ab978efbb4493b')
+
+build(){
+  cd $pkgname-$_commit
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  make
+}
+
+package() {
+  cd $pkgname-$_commit
+  make DESTDIR="$pkgdir" install
+}


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 09:04:09
  Author: felixonmars
Revision: 630575

upgpkg: fcitx5-rime 0.0.0.20200520-1

Modified:
  fcitx5-rime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 09:04:01 UTC (rev 630574)
+++ PKGBUILD2020-05-20 09:04:09 UTC (rev 630575)
@@ -3,7 +3,7 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-rime
-pkgver=0.0.0.20200517
+pkgver=0.0.0.20200520
 _commit=efc307cf1d2572038a1f5ae9b5ce43181b45d5ba
 pkgrel=1
 pkgdesc="RIME support for Fcitx5"


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 09:15:48
  Author: felixonmars
Revision: 630587

upgpkg: tldr 1.0.0-1

Modified:
  tldr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 09:14:30 UTC (rev 630586)
+++ PKGBUILD2020-05-20 09:15:48 UTC (rev 630587)
@@ -1,22 +1,17 @@
 # Maintainer: Felix Yan 
 
 pkgname=tldr
-pkgver=0.5
-pkgrel=2
+pkgver=1.0.0
+pkgrel=1
 pkgdesc="Command line client for tldr, a collection of simplified and 
community-driven man pages."
 arch=('any')
 url="https://github.com/tldr-pages/tldr-python-client;
 license=('MIT')
-depends=('python-colorama' 'python-six' 'python-termcolor')
-makedepends=('python-setuptools-markdown' 'python-setuptools-scm')
+depends=('python-colorama' 'python-termcolor')
 checkdepends=('python-pytest-runner')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/tldr-pages/tldr-python-client/archive/$pkgver.tar.gz;)
-sha512sums=('fe8a1764101a6228bcda01b935701aa475ea91626db4479cc796e61ef7743ecc559403a0b94a049285e1a2aed14a6eed74fe63dae9c789ba03cf17632b06edb9')
+sha512sums=('b428fdab4954909fe74b46cdaa01362148965d4c52658cb2a9c3ad970096bd4aaf545845468649e6b217d01110eb932d4bc6d6df588b863a9d1e0c4ae281962a')
 
-prepare() {
-  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-}
-
 build() {
   cd tldr-python-client-$pkgver
   python setup.py build
@@ -30,7 +25,7 @@
 package() {
   cd tldr-python-client-$pkgver
   python setup.py install -O1 --prefix=/usr --root="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 LICENSE.md -t "$pkgdir"/usr/share/licenses/$pkgname/
 }
 
 # vim:set ts=2 sw=2 et:


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 09:16:19
  Author: felixonmars
Revision: 630588

archrelease: copy trunk to community-any

Added:
  tldr/repos/community-any/PKGBUILD
(from rev 630587, tldr/trunk/PKGBUILD)
Deleted:
  tldr/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 09:15:48 UTC (rev 630587)
+++ PKGBUILD2020-05-20 09:16:19 UTC (rev 630588)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=tldr
-pkgver=0.5
-pkgrel=2
-pkgdesc="Command line client for tldr, a collection of simplified and 
community-driven man pages."
-arch=('any')
-url="https://github.com/tldr-pages/tldr-python-client;
-license=('MIT')
-depends=('python-colorama' 'python-six' 'python-termcolor')
-makedepends=('python-setuptools-markdown' 'python-setuptools-scm')
-checkdepends=('python-pytest-runner')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/tldr-pages/tldr-python-client/archive/$pkgver.tar.gz;)
-sha512sums=('fe8a1764101a6228bcda01b935701aa475ea91626db4479cc796e61ef7743ecc559403a0b94a049285e1a2aed14a6eed74fe63dae9c789ba03cf17632b06edb9')
-
-prepare() {
-  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-}
-
-build() {
-  cd tldr-python-client-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd tldr-python-client-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd tldr-python-client-$pkgver
-  python setup.py install -O1 --prefix=/usr --root="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: tldr/repos/community-any/PKGBUILD (from rev 630587, tldr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 09:16:19 UTC (rev 630588)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=tldr
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="Command line client for tldr, a collection of simplified and 
community-driven man pages."
+arch=('any')
+url="https://github.com/tldr-pages/tldr-python-client;
+license=('MIT')
+depends=('python-colorama' 'python-termcolor')
+checkdepends=('python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/tldr-pages/tldr-python-client/archive/$pkgver.tar.gz;)
+sha512sums=('b428fdab4954909fe74b46cdaa01362148965d4c52658cb2a9c3ad970096bd4aaf545845468649e6b217d01110eb932d4bc6d6df588b863a9d1e0c4ae281962a')
+
+build() {
+  cd tldr-python-client-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd tldr-python-client-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd tldr-python-client-$pkgver
+  python setup.py install -O1 --prefix=/usr --root="$pkgdir"
+  install -Dm644 LICENSE.md -t "$pkgdir"/usr/share/licenses/$pkgname/
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-05-20 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, May 20, 2020 @ 07:49:45
  Author: mtorromeo
Revision: 630376

archrelease: copy trunk to community-x86_64

Added:
  sssd/repos/community-x86_64/PKGBUILD
(from rev 630375, sssd/trunk/PKGBUILD)
Deleted:
  sssd/repos/community-x86_64/PKGBUILD
  sssd/repos/community-x86_64/kerberos-1.18-fix.patch
  sssd/repos/community-x86_64/samba-4.12-fix.patch

-+
 PKGBUILD|  221 ++
 kerberos-1.18-fix.patch |   14 --
 samba-4.12-fix.patch|  120 
 3 files changed, 110 insertions(+), 245 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 07:49:40 UTC (rev 630375)
+++ PKGBUILD2020-05-20 07:49:45 UTC (rev 630376)
@@ -1,111 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Maintainer: Mantas M. 
-
-pkgname=sssd
-pkgver=2.2.3
-pkgrel=7
-pkgdesc="System Security Services Daemon"
-arch=('x86_64')
-url="https://pagure.io/SSSD/sssd;
-license=('GPL3')
-depends=(
-  'bind'  # for nsupdate
-  'c-ares'
-  'cyrus-sasl-gssapi'
-  'ding-libs'
-  'libnl'
-  'libunistring'
-  'nss'
-  'smbclient' # for libndr-nbt
-  'nfsidmap'
-  'jansson'
-  'libtevent.so'
-  'libldb.so'
-)
-makedepends=(
-  'docbook-xsl'
-  'doxygen'
-  'python'
-  'samba' # for libndr-nbt headers
-  'systemd'
-  'tevent'
-  'ldb'
-)
-checkdepends=(
-  'check'
-  'cmocka'
-  'libfaketime'
-  'openssh'
-)
-source=("https://releases.pagure.org/SSSD/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc}
-samba-4.12-fix.patch
-kerberos-1.18-fix.patch)
-sha512sums=('b61d52a53e26e8efa9cb799fc6efc2314bf9d174d3cacfe591a4ca77530637591eacc0dc70c0555252e04a9617e8b134b1ab2d9b0f7351b4228e7b61499e6a10'
-'SKIP'
-
'34c8161176e8012c27b9f19e6f0b1b008d4c2accd3d6a9229df995726f5bad10cca5ae2b3684d86d28e9b77d9a780a156ab4a24a649ad1f0499f6f976895414b'
-
'8adec825e4c159f1eb6aec77113fa01fefaa3f7c73a21f5823c6187e6be067c34659d9e78a8a8c00d4cb7452c4ff983bc081a3fd6194812c9e451b4c92eb8cef')
-validpgpkeys=('E4E366758CA0716AAB8048671EC6AB7532E7BC25'
-  '16F24229488E736048952737BA88000FE6398272')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  for f in "${source[@]}"; do
-if [[ $f == *.patch ]]; then
-  patch -p1 < "$srcdir/$f"
-fi
-  done
-
-  # dbus policy files in /usr/share/dbus-1
-  sed -i -e 's/^dbuspolicydir = $(sysconfdir)/dbuspolicydir = $(datadir)/' 
Makefile.in
-
-  # remove flaky network test
-  sed '/fail_over-tests/d' -i Makefile.am
-  autoreconf -fiv
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin\
---sysconfdir=/etc \
---localstatedir=/var  \
---libexecdir=/usr/lib/sssd\
---datadir=/usr/share  \
---enable-pammoddir=/usr/lib/security  \
---enable-pac-responder\
---with-initscript=systemd \
---with-os=fedora  \
---with-pid-path=/run  \
---without-python2-bindings\
---with-python3-bindings   \
---with-syslog=journald\
---without-selinux \
---without-semanage\
---with-systemdunitdir=/usr/lib/systemd/system \
-;
-  sed -i '/\/d' config.h
-  make
-}
-
-check() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make check
-}
-
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make -j1 DESTDIR="$pkgdir/" install
-  rm -rf "$pkgdir"/etc/rc.d
-  rm -rf "$pkgdir"/lib
-  rm -rf "$pkgdir"/run
-  rm -f "$pkgdir"/usr/lib/ldb/modules/ldb/memberof.la
-  find "$pkgdir"/usr -depth -type d \
--exec rmdir --ignore-fail-on-non-empty {} \;
-
-  cd "$srcdir"
-  rm -rf "$pkgdir/etc/systemd" # remove the drop-in
-}
-
-# vim: ts=2:sw=2:et:nowrap

Copied: sssd/repos/community-x86_64/PKGBUILD (from rev 630375, 
sssd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 07:49:45 UTC (rev 630376)
@@ -0,0 +1,110 @@
+# Maintainer: Massimiliano Torromeo 
+# Maintainer: Mantas M. 
+
+pkgname=sssd
+pkgver=2.3.0
+pkgrel=1
+pkgdesc="System Security Services Daemon"
+arch=('x86_64')
+url="https://github.com/SSSD/sssd;
+license=('GPL3')
+depends=(
+  'bind'  # for nsupdate
+  'c-ares'
+  'cyrus-sasl-gssapi'
+  'ding-libs'
+  'libnl'
+  'libunistring'
+  'nss'
+  'smbclient' # for libndr-nbt
+  'nfsidmap'
+  'jansson'
+  'libtevent.so'
+  'libldb.so'
+)
+makedepends=(
+  'docbook-xsl'
+  'doxygen'
+  'python'
+  'samba' # for libndr-nbt headers
+  'systemd'
+  'tevent'
+  'ldb'
+)
+checkdepends=(
+  'check'
+  'cmocka'
+  

[arch-commits] Commit in sssd/trunk (3 files)

2020-05-20 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, May 20, 2020 @ 07:49:40
  Author: mtorromeo
Revision: 630375

upgpkg: sssd 2.3.0-1

Modified:
  sssd/trunk/PKGBUILD
Deleted:
  sssd/trunk/kerberos-1.18-fix.patch
  sssd/trunk/samba-4.12-fix.patch

-+
 PKGBUILD|   21 +++-
 kerberos-1.18-fix.patch |   14 -
 samba-4.12-fix.patch|  120 --
 3 files changed, 10 insertions(+), 145 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 07:49:22 UTC (rev 630374)
+++ PKGBUILD2020-05-20 07:49:40 UTC (rev 630375)
@@ -2,11 +2,11 @@
 # Maintainer: Mantas M. 
 
 pkgname=sssd
-pkgver=2.2.3
-pkgrel=7
+pkgver=2.3.0
+pkgrel=1
 pkgdesc="System Security Services Daemon"
 arch=('x86_64')
-url="https://pagure.io/SSSD/sssd;
+url="https://github.com/SSSD/sssd;
 license=('GPL3')
 depends=(
   'bind'  # for nsupdate
@@ -36,16 +36,14 @@
   'cmocka'
   'libfaketime'
   'openssh'
+  'softhsm'
 )
-source=("https://releases.pagure.org/SSSD/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc}
-samba-4.12-fix.patch
-kerberos-1.18-fix.patch)
-sha512sums=('b61d52a53e26e8efa9cb799fc6efc2314bf9d174d3cacfe591a4ca77530637591eacc0dc70c0555252e04a9617e8b134b1ab2d9b0f7351b4228e7b61499e6a10'
-'SKIP'
-
'34c8161176e8012c27b9f19e6f0b1b008d4c2accd3d6a9229df995726f5bad10cca5ae2b3684d86d28e9b77d9a780a156ab4a24a649ad1f0499f6f976895414b'
-
'8adec825e4c159f1eb6aec77113fa01fefaa3f7c73a21f5823c6187e6be067c34659d9e78a8a8c00d4cb7452c4ff983bc081a3fd6194812c9e451b4c92eb8cef')
+source=("https://github.com/SSSD/$pkgname/releases/download/$pkgname-${pkgver//./_}/$pkgname-$pkgver.tar.gz"{,.asc})
+sha512sums=('72fc69018c4b8a71198f4a82e89d49d7a5c513e9291deff2f8e0e132cbd67341a8fa89598d28fcc1d785497526c9eeffe9b261c751524ee0e553badf0f748d59'
+'SKIP')
 validpgpkeys=('E4E366758CA0716AAB8048671EC6AB7532E7BC25'
-  '16F24229488E736048952737BA88000FE6398272')
+  '16F24229488E736048952737BA88000FE6398272'
+  '1A41DC67505F89A330828B66AFFE75DDE8508E12')
 
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"
@@ -83,6 +81,7 @@
 --without-selinux \
 --without-semanage\
 --with-systemdunitdir=/usr/lib/systemd/system \
+--with-crypto=nss \
 ;
   sed -i '/\/d' config.h
   make

Deleted: kerberos-1.18-fix.patch
===
--- kerberos-1.18-fix.patch 2020-05-20 07:49:22 UTC (rev 630374)
+++ kerberos-1.18-fix.patch 2020-05-20 07:49:40 UTC (rev 630375)
@@ -1,14 +0,0 @@
-diff --git a/src/external/pac_responder.m4 b/src/external/pac_responder.m4
-index dc986a1..114d847 100644
 a/src/external/pac_responder.m4
-+++ b/src/external/pac_responder.m4
-@@ -19,7 +19,8 @@ then
- Kerberos\ 5\ release\ 1.14* | \
- Kerberos\ 5\ release\ 1.15* | \
- Kerberos\ 5\ release\ 1.16* | \
--Kerberos\ 5\ release\ 1.17*)
-+Kerberos\ 5\ release\ 1.17* | \
-+Kerberos\ 5\ release\ 1.18*)
- krb5_version_ok=yes
- AC_MSG_RESULT([yes])
- ;;

Deleted: samba-4.12-fix.patch
===
--- samba-4.12-fix.patch2020-05-20 07:49:22 UTC (rev 630374)
+++ samba-4.12-fix.patch2020-05-20 07:49:40 UTC (rev 630375)
@@ -1,120 +0,0 @@
-diff --git a/src/external/samba.m4 b/src/external/samba.m4
-index 65947fa..a0cfd27 100644
 a/src/external/samba.m4
-+++ b/src/external/samba.m4
-@@ -130,10 +130,17 @@ int main(void)
- AC_DEFINE_UNQUOTED(SMB_IDMAP_DOMAIN_HAS_DOM_SID, 1,
-[Samba's struct idmap_domain has dom_sid member])
- AC_MSG_NOTICE([Samba's struct idmap_domain has dom_sid member])
-+if test $samba_minor_version -ge 12 ; then
-+AC_DEFINE_UNQUOTED(SMB_HAS_NEW_NDR_PULL_STEAL_SWITCH, 1,
-+   [Samba's new push/pull switch functions])
-+AC_MSG_NOTICE([Samba has support for new 
ndr_push_steal_switch_value and ndr_pull_steal_switch_value functions])
-+else
-+AC_MSG_NOTICE([Samba supports old ndr_pull_steal_switch_value and 
ndr_pull_steal_switch_value functions])
-+fi
- else
- AC_MSG_NOTICE([Samba's struct idmap_domain does not have dom_sid 
member])
-+AC_MSG_NOTICE([Samba supports old ndr_pull_steal_switch_value and 
ndr_pull_steal_switch_value functions])
- fi
--
- fi
- 
- SAVE_CFLAGS=$CFLAGS
-diff --git a/src/providers/ad/ad_gpo_ndr.c b/src/providers/ad/ad_gpo_ndr.c
-index 101701c..ee7203c 100644
 a/src/providers/ad/ad_gpo_ndr.c
-+++ b/src/providers/ad/ad_gpo_ndr.c
-@@ -105,9 +105,14 @@ ndr_pull_security_ace_object_type(struct ndr_pull *ndr,
-   union security_ace_object_type *r)
- {
- 

[arch-commits] Commit in (4 files)

2020-05-20 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, May 20, 2020 @ 07:49:02
  Author: mtorromeo
Revision: 630373

Added softhsm as checkdepends for sssd

Added:
  softhsm/
  softhsm/trunk/
  softhsm/trunk/PKGBUILD
  softhsm/trunk/softhsm-2.6.1-rh1831086-exit.patch

+
 PKGBUILD   |   58 
 softhsm-2.6.1-rh1831086-exit.patch |   72 +++
 2 files changed, 130 insertions(+)

Added: softhsm/trunk/PKGBUILD
===
--- softhsm/trunk/PKGBUILD  (rev 0)
+++ softhsm/trunk/PKGBUILD  2020-05-20 07:49:02 UTC (rev 630373)
@@ -0,0 +1,58 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Javier Torres 
+
+pkgname=softhsm
+pkgver=2.6.1
+pkgrel=1
+pkgdesc="Software PKCS#11 store"
+arch=('x86_64')
+url="https://www.opendnssec.org/softhsm/;
+license=('BSD')
+depends=('botan' 'sqlite3' 'openssl' 'p11-kit')
+checkdepends=('cppunit')
+backup=("etc/softhsm2.conf")
+options=(!libtool)
+source=("https://dist.opendnssec.org/source/$pkgname-$pkgver.tar.gz"{,.sig}
+"softhsm-2.6.1-rh1831086-exit.patch")
+sha256sums=('61249473054bcd1811519ef9a989a880a7bdcc36d317c9c25457fc614df475f2'
+'SKIP'
+'163338a73ab1bcc475e07b96f054d3c8f67ac9d2637b8f74ddaa97aa6b4171e1')
+validpgpkeys=('4D0388CE86BB398B387B663041F623BE4FCB0B94')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  patch -p1 -i "$srcdir/softhsm-2.6.1-rh1831086-exit.patch"
+  sed -i 's:^full_libdir=":#full_libdir=":g' configure.ac
+  sed -i "s:libdir)/@PACKAGE@:libdir):" Makefile.in
+  autoreconf -vfi
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib/pkcs11 \
+--datarootdir=/usr/share \
+--localstatedir=/var \
+--sysconfdir=/etc \
+--with-p11-kit=/usr/share/p11-kit/modules/ \
+--with-migrate \
+--enable-visibility \
+--enable-ecc \
+--enable-eddsa \
+--disable-gost
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+  install -Dm0644 "LICENSE" "$pkgdir/usr/share/licenses/softhsm/LICENSE"
+  rm "$pkgdir/etc/softhsm2.conf.sample"
+
+  cd "$pkgdir/usr/lib"
+  install -dm0755 softhsm
+  ln -s pkcs11/libsofthsm2.so softhsm/
+  ln -s pkcs11/libsofthsm2.so
+}

Added: softhsm/trunk/softhsm-2.6.1-rh1831086-exit.patch
===
--- softhsm/trunk/softhsm-2.6.1-rh1831086-exit.patch
(rev 0)
+++ softhsm/trunk/softhsm-2.6.1-rh1831086-exit.patch2020-05-20 07:49:02 UTC 
(rev 630373)
@@ -0,0 +1,72 @@
+diff --git a/src/lib/crypto/OSSLCryptoFactory.cpp 
b/src/lib/crypto/OSSLCryptoFactory.cpp
+index 32daca2..ace4bcb 100644
+--- a/src/lib/crypto/OSSLCryptoFactory.cpp
 b/src/lib/crypto/OSSLCryptoFactory.cpp
+@@ -226,31 +226,49 @@ err:
+ // Destructor
+ OSSLCryptoFactory::~OSSLCryptoFactory()
+ {
+-#ifdef WITH_GOST
+-  // Finish the GOST engine
+-  if (eg != NULL)
++  bool ossl_shutdown = false;
++
++#if OPENSSL_VERSION_NUMBER >= 0x1010L && !defined(LIBRESSL_VERSION_NUMBER)
++  // OpenSSL 1.1.0+ will register an atexit() handler to run
++  // OPENSSL_cleanup(). If that has already happened we must
++  // not attempt to free any ENGINEs because they'll already
++  // have been destroyed and the use-after-free would cause
++  // a deadlock or crash.
++  //
++  // Detect that situation because reinitialisation will fail
++  // after OPENSSL_cleanup() has run.
++  (void)ERR_set_mark();
++  ossl_shutdown = !OPENSSL_init_crypto(OPENSSL_INIT_ENGINE_RDRAND, NULL);
++  (void)ERR_pop_to_mark();
++#endif
++  if (!ossl_shutdown)
+   {
+-  ENGINE_finish(eg);
+-  ENGINE_free(eg);
+-  eg = NULL;
+-  }
++#ifdef WITH_GOST
++  // Finish the GOST engine
++  if (eg != NULL)
++  {
++  ENGINE_finish(eg);
++  ENGINE_free(eg);
++  eg = NULL;
++  }
+ #endif
+ 
+-  // Finish the rd_rand engine
+-  ENGINE_finish(rdrand_engine);
+-  ENGINE_free(rdrand_engine);
+-  rdrand_engine = NULL;
++  // Finish the rd_rand engine
++  ENGINE_finish(rdrand_engine);
++  ENGINE_free(rdrand_engine);
++  rdrand_engine = NULL;
+ 
++  // Recycle locks
++#if OPENSSL_VERSION_NUMBER < 0x1010L || defined(LIBRESSL_VERSION_NUMBER)
++  if (setLockingCallback)
++  {
++  CRYPTO_set_locking_callback(NULL);
++  }
++#endif
++  }
+   // Destroy the one-and-only RNG
+   delete rng;
+ 
+-  // Recycle locks
+-#if OPENSSL_VERSION_NUMBER < 0x1010L || defined(LIBRESSL_VERSION_NUMBER)
+-  if (setLockingCallback)
+-  {
+-  

[arch-commits] Commit in softhsm (4 files)

2020-05-20 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, May 20, 2020 @ 07:49:22
  Author: mtorromeo
Revision: 630374

archrelease: copy trunk to community-x86_64

Added:
  softhsm/repos/
  softhsm/repos/community-x86_64/
  softhsm/repos/community-x86_64/PKGBUILD
(from rev 630373, softhsm/trunk/PKGBUILD)
  softhsm/repos/community-x86_64/softhsm-2.6.1-rh1831086-exit.patch
(from rev 630373, softhsm/trunk/softhsm-2.6.1-rh1831086-exit.patch)

+
 PKGBUILD   |   58 
 softhsm-2.6.1-rh1831086-exit.patch |   72 +++
 2 files changed, 130 insertions(+)

Copied: softhsm/repos/community-x86_64/PKGBUILD (from rev 630373, 
softhsm/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2020-05-20 07:49:22 UTC (rev 630374)
@@ -0,0 +1,58 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Javier Torres 
+
+pkgname=softhsm
+pkgver=2.6.1
+pkgrel=1
+pkgdesc="Software PKCS#11 store"
+arch=('x86_64')
+url="https://www.opendnssec.org/softhsm/;
+license=('BSD')
+depends=('botan' 'sqlite3' 'openssl' 'p11-kit')
+checkdepends=('cppunit')
+backup=("etc/softhsm2.conf")
+options=(!libtool)
+source=("https://dist.opendnssec.org/source/$pkgname-$pkgver.tar.gz"{,.sig}
+"softhsm-2.6.1-rh1831086-exit.patch")
+sha256sums=('61249473054bcd1811519ef9a989a880a7bdcc36d317c9c25457fc614df475f2'
+'SKIP'
+'163338a73ab1bcc475e07b96f054d3c8f67ac9d2637b8f74ddaa97aa6b4171e1')
+validpgpkeys=('4D0388CE86BB398B387B663041F623BE4FCB0B94')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  patch -p1 -i "$srcdir/softhsm-2.6.1-rh1831086-exit.patch"
+  sed -i 's:^full_libdir=":#full_libdir=":g' configure.ac
+  sed -i "s:libdir)/@PACKAGE@:libdir):" Makefile.in
+  autoreconf -vfi
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib/pkcs11 \
+--datarootdir=/usr/share \
+--localstatedir=/var \
+--sysconfdir=/etc \
+--with-p11-kit=/usr/share/p11-kit/modules/ \
+--with-migrate \
+--enable-visibility \
+--enable-ecc \
+--enable-eddsa \
+--disable-gost
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+  install -Dm0644 "LICENSE" "$pkgdir/usr/share/licenses/softhsm/LICENSE"
+  rm "$pkgdir/etc/softhsm2.conf.sample"
+
+  cd "$pkgdir/usr/lib"
+  install -dm0755 softhsm
+  ln -s pkcs11/libsofthsm2.so softhsm/
+  ln -s pkcs11/libsofthsm2.so
+}

Copied: softhsm/repos/community-x86_64/softhsm-2.6.1-rh1831086-exit.patch (from 
rev 630373, softhsm/trunk/softhsm-2.6.1-rh1831086-exit.patch)
===
--- repos/community-x86_64/softhsm-2.6.1-rh1831086-exit.patch   
(rev 0)
+++ repos/community-x86_64/softhsm-2.6.1-rh1831086-exit.patch   2020-05-20 
07:49:22 UTC (rev 630374)
@@ -0,0 +1,72 @@
+diff --git a/src/lib/crypto/OSSLCryptoFactory.cpp 
b/src/lib/crypto/OSSLCryptoFactory.cpp
+index 32daca2..ace4bcb 100644
+--- a/src/lib/crypto/OSSLCryptoFactory.cpp
 b/src/lib/crypto/OSSLCryptoFactory.cpp
+@@ -226,31 +226,49 @@ err:
+ // Destructor
+ OSSLCryptoFactory::~OSSLCryptoFactory()
+ {
+-#ifdef WITH_GOST
+-  // Finish the GOST engine
+-  if (eg != NULL)
++  bool ossl_shutdown = false;
++
++#if OPENSSL_VERSION_NUMBER >= 0x1010L && !defined(LIBRESSL_VERSION_NUMBER)
++  // OpenSSL 1.1.0+ will register an atexit() handler to run
++  // OPENSSL_cleanup(). If that has already happened we must
++  // not attempt to free any ENGINEs because they'll already
++  // have been destroyed and the use-after-free would cause
++  // a deadlock or crash.
++  //
++  // Detect that situation because reinitialisation will fail
++  // after OPENSSL_cleanup() has run.
++  (void)ERR_set_mark();
++  ossl_shutdown = !OPENSSL_init_crypto(OPENSSL_INIT_ENGINE_RDRAND, NULL);
++  (void)ERR_pop_to_mark();
++#endif
++  if (!ossl_shutdown)
+   {
+-  ENGINE_finish(eg);
+-  ENGINE_free(eg);
+-  eg = NULL;
+-  }
++#ifdef WITH_GOST
++  // Finish the GOST engine
++  if (eg != NULL)
++  {
++  ENGINE_finish(eg);
++  ENGINE_free(eg);
++  eg = NULL;
++  }
+ #endif
+ 
+-  // Finish the rd_rand engine
+-  ENGINE_finish(rdrand_engine);
+-  ENGINE_free(rdrand_engine);
+-  rdrand_engine = NULL;
++  // Finish the rd_rand engine
++  ENGINE_finish(rdrand_engine);
++  ENGINE_free(rdrand_engine);
++  rdrand_engine = NULL;
+ 
++  // Recycle locks
++#if OPENSSL_VERSION_NUMBER < 0x1010L || defined(LIBRESSL_VERSION_NUMBER)
++  if 

[arch-commits] Commit in samba/repos (13 files)

2020-05-20 Thread Christian Hesse via arch-commits
Date: Wednesday, May 20, 2020 @ 08:40:43
  Author: eworm
Revision: 386994

archrelease: copy trunk to testing-x86_64

Added:
  samba/repos/testing-x86_64/
  samba/repos/testing-x86_64/PKGBUILD
(from rev 386993, samba/trunk/PKGBUILD)
  samba/repos/testing-x86_64/nmbd.service
(from rev 386993, samba/trunk/nmbd.service)
  samba/repos/testing-x86_64/samba.conf
(from rev 386993, samba/trunk/samba.conf)
  samba/repos/testing-x86_64/samba.conf.d
(from rev 386993, samba/trunk/samba.conf.d)
  samba/repos/testing-x86_64/samba.install
(from rev 386993, samba/trunk/samba.install)
  samba/repos/testing-x86_64/samba.logrotate
(from rev 386993, samba/trunk/samba.logrotate)
  samba/repos/testing-x86_64/samba.pam
(from rev 386993, samba/trunk/samba.pam)
  samba/repos/testing-x86_64/samba.service
(from rev 386993, samba/trunk/samba.service)
  samba/repos/testing-x86_64/smbd.service
(from rev 386993, samba/trunk/smbd.service)
  samba/repos/testing-x86_64/smbd.socket
(from rev 386993, samba/trunk/smbd.socket)
  samba/repos/testing-x86_64/smbd@.service
(from rev 386993, samba/trunk/smbd@.service)
  samba/repos/testing-x86_64/winbindd.service
(from rev 386993, samba/trunk/winbindd.service)

--+
 PKGBUILD |  205 +
 nmbd.service |   12 +++
 samba.conf   |2 
 samba.conf.d |   18 
 samba.install|   10 ++
 samba.logrotate  |5 +
 samba.pam|3 
 samba.service|   14 +++
 smbd.service |   12 +++
 smbd.socket  |9 ++
 smbd@.service|7 +
 winbindd.service |   12 +++
 12 files changed, 309 insertions(+)

Copied: samba/repos/testing-x86_64/PKGBUILD (from rev 386993, 
samba/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-20 08:40:43 UTC (rev 386994)
@@ -0,0 +1,205 @@
+
+# Maintainer: Tobias Powalowski 
+# Contributor: judd 
+# Contributor: Michael Hansen 
+# Contributor: Marco A Rojas 
+# Contributor: Netanel Shine 
+# Contributor: ngoonee 
+# Contributor: Adam Russell 
+# Contributor: Dhananjay Sathe 
+
+pkgbase=samba
+pkgname=('smbclient' 'samba')
+pkgver=4.12.3
+pkgrel=1
+arch=(x86_64)
+url="https://www.samba.org;
+license=('GPL3')
+makedepends=('python' 'docbook-xsl' 'pkg-config' 'libbsd' 'db' 'popt' 'libcups'
+ 'readline' 'tevent' 'acl' 'libldap' 'libcap' 'ldb' 'krb5' 'pam'
+ 'systemd' 'gnutls' 'talloc' 'tdb' 'dbus' 'libaio'
+ 'perl-parse-yapp' 'libnsl' 'libtirpc' 'rpcsvc-proto' 'jansson'
+ 'ceph-libs')
+optdepends=(
+ 'python-dnspython: samba_dnsupdate and samba_upgradedns in AD 
setup'
+)
+source=(https://us1.samba.org/samba/ftp/stable/${pkgbase}-${pkgver}.tar{.gz,.asc}
+samba.logrotate
+samba.pam
+samba.conf)
+validpgpkeys=('52FBC0B86D954B0843324CDC6F33915B6568B7EA') #Samba Distribution 
Verification Key 
+sha512sums=('5de66c21db0710880b6e0347ae1eff17ff1881eb926e9a0cf5af9ddc27599cf8daa9ca6ea35b2a0a2158226a38cdf7074b28a51e460a139720c78a522b1a5908'
+'SKIP'
+
'2ba0691ded467e4d6e40821f6de58c00f8962209efe2e60284c0c87756ab471c22c3d63b77d506e48c90ed0d852a2a24e41be1d499cf74a73cb99da0b503c858'
+
'1e6183ab0eb812b3ef687ac2c26ce78f7cb30540f606d20023669ac00ba04075487fb72e4dc89cc05dab0269ff6aca98fc1167cc75669c225b88b592482fbf67'
+
'e46ee848baabb261e7468ecee43aba4d001a24f86f5322ae522abdb75030fd0ebd9063b9df0be3576c4d1654d81331f5e389aee16ec2fa138259ae4728e94efc')
+### UNINSTALL dmapi package before building!!!
+
+build() {
+  # Use samba-pkg as a staging directory for the split packages
+  # (This is so RPATHS and symlinks are generated correctly via
+  # make install, but the otherwise unsplit pieces can be split)
+  _pkgsrc="${srcdir}"/samba-pkg
+  rm -rf ${_pkgsrc}
+  _samba4_idmap_modules=idmap_ad,idmap_rid,idmap_adex,idmap_hash,idmap_tdb2
+  
_samba4_pdb_modules=pdb_tdbsam,pdb_ldap,pdb_ads,pdb_smbpasswd,pdb_wbc_sam,pdb_samba4
+  
_samba4_auth_modules=auth_unix,auth_wbc,auth_server,auth_netlogond,auth_script,auth_samba4
+  cd samba-${pkgver}
+  ./configure --enable-fhs \
+  --prefix=/usr \
+  --sysconfdir=/etc \
+  --sbindir=/usr/bin \
+  --libdir=/usr/lib \
+  --libexecdir=/usr/lib/samba \
+  --localstatedir=/var \
+  --with-configdir=/etc/samba \
+  --with-lockdir=/var/cache/samba \
+  --with-sockets-dir=/run/samba \
+  --with-piddir=/run \
+  --with-ads \
+  --with-ldap \
+  --with-winbind \
+  --with-acl-support \
+  --with-systemd \
+  --systemd-install-services \
+  --with-pam \
+  --with-pammodulesdir=/usr/lib/security \
+  

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

2020-05-20 Thread Christian Hesse via arch-commits
Date: Wednesday, May 20, 2020 @ 08:40:32
  Author: eworm
Revision: 386993

upgpkg: samba 4.12.3-1

new upstream release

Modified:
  samba/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 08:26:22 UTC (rev 386992)
+++ PKGBUILD2020-05-20 08:40:32 UTC (rev 386993)
@@ -10,8 +10,8 @@
 
 pkgbase=samba
 pkgname=('smbclient' 'samba')
-pkgver=4.12.2
-pkgrel=3
+pkgver=4.12.3
+pkgrel=1
 arch=(x86_64)
 url="https://www.samba.org;
 license=('GPL3')
@@ -28,7 +28,7 @@
 samba.pam
 samba.conf)
 validpgpkeys=('52FBC0B86D954B0843324CDC6F33915B6568B7EA') #Samba Distribution 
Verification Key 
-sha512sums=('c1d5f62ea2e43c246988aa65c4b690de232f73c0213cbc5d532e43c8cfbea17f1ac92435526b64c9a85c582b29381eecfb57713861efc32f6e6257000c393562'
+sha512sums=('5de66c21db0710880b6e0347ae1eff17ff1881eb926e9a0cf5af9ddc27599cf8daa9ca6ea35b2a0a2158226a38cdf7074b28a51e460a139720c78a522b1a5908'
 'SKIP'
 
'2ba0691ded467e4d6e40821f6de58c00f8962209efe2e60284c0c87756ab471c22c3d63b77d506e48c90ed0d852a2a24e41be1d499cf74a73cb99da0b503c858'
 
'1e6183ab0eb812b3ef687ac2c26ce78f7cb30540f606d20023669ac00ba04075487fb72e4dc89cc05dab0269ff6aca98fc1167cc75669c225b88b592482fbf67'


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:57:12
  Author: felixonmars
Revision: 386998

archrelease: copy trunk to extra-any

Added:
  python2-isort/repos/extra-any/PKGBUILD
(from rev 386997, python2-isort/trunk/PKGBUILD)
Deleted:
  python2-isort/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 08:56:54 UTC (rev 386997)
+++ PKGBUILD2020-05-20 08:57:12 UTC (rev 386998)
@@ -1,26 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Yaron de Leeuw 
-
-pkgname=python2-isort
-pkgver=4.3.11
-pkgrel=1
-pkgdesc="A Python utility / library to sort Python imports."
-arch=('any')
-url="https://github.com/timothycrosley/isort;
-license=('MIT')
-depends=('python2-futures' 'python2-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/timothycrosley/isort/archive/$pkgver.tar.gz;)
-sha512sums=('e992db693fdf5cafc79ebf0fbcaf87e4941d2db4b18bbf376b3e392cb3a7013aab3f413ac789605a3fd939d5c69c66b46084c2272cf0d09b50e359f8603756a6')
-
-build() {
-  cd isort-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd isort-$pkgver
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  mv "$pkgdir"/usr/bin/isort{,2}
-}

Copied: python2-isort/repos/extra-any/PKGBUILD (from rev 386997, 
python2-isort/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 08:57:12 UTC (rev 386998)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan 
+# Contributor: Yaron de Leeuw 
+
+pkgname=python2-isort
+pkgver=4.3.12
+pkgrel=1
+pkgdesc="A Python utility / library to sort Python imports."
+arch=('any')
+url="https://github.com/timothycrosley/isort;
+license=('MIT')
+depends=('python2-futures' 'python2-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/timothycrosley/isort/archive/$pkgver.tar.gz;)
+sha512sums=('66568a821a703cceb31129d032554017e9762a82cb3194b983a9114f1e7ca2941cc1d9ebcb3f684636fdec5023f3e7c86d55833d71c7051ff13eba1302c81935')
+
+build() {
+  cd isort-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd isort-$pkgver
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  mv "$pkgdir"/usr/bin/isort{,2}
+}


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:57:27
  Author: felixonmars
Revision: 630566

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hpack/repos/community-staging-x86_64/PKGBUILD (from rev 630565, 
haskell-hpack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 08:57:27 UTC (rev 630566)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-hpack
+_hkgname=hpack
+pkgver=0.33.1
+pkgrel=1
+pkgdesc="A modern format for Haskell packages"
+url="https://github.com/sol/hpack#readme;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-bifunctors' 'haskell-cryptonite' 
'haskell-glob'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types'
+ 'haskell-infer-license' 'haskell-scientific' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-yaml')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-interpolate'
+ 'haskell-mockery' 'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
+sha512sums=('f6214d43ba55bcfcfbf25379d381f12057f650617bcc29b0af8fd01a1176e3df2930b7a7a3915aaa4360dc6107223d0b44a6e1a89d8930ec8b62073fadbe12de')
+
+build() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test || warning "https://github.com/sol/hpack/issues/358;
+}
+
+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-hpack/trunk (PKGBUILD)

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:57:11
  Author: felixonmars
Revision: 630565

upgpkg: haskell-hpack 0.33.1-1: rebuild with hpack 0.33.1

Modified:
  haskell-hpack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 08:56:04 UTC (rev 630564)
+++ PKGBUILD2020-05-20 08:57:11 UTC (rev 630565)
@@ -4,8 +4,8 @@
 
 pkgname=haskell-hpack
 _hkgname=hpack
-pkgver=0.33.0
-pkgrel=123
+pkgver=0.33.1
+pkgrel=1
 pkgdesc="A modern format for Haskell packages"
 url="https://github.com/sol/hpack#readme;
 license=("MIT")
@@ -17,7 +17,7 @@
 makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-interpolate'
  'haskell-mockery' 'haskell-temporary')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
-sha512sums=('8d70bea1c18e9a26fe137f6e20fec4af28dff6ebc50981d2f57ad9a8e0b9574ff158adb5ba16597b6a5f0e4d843c09fee57dd82407dc1383b1e07453b64d010b')
+sha512sums=('f6214d43ba55bcfcfbf25379d381f12057f650617bcc29b0af8fd01a1176e3df2930b7a7a3915aaa4360dc6107223d0b44a6e1a89d8930ec8b62073fadbe12de')
 
 build() {
   cd $_hkgname-$pkgver


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 09:10:34
  Author: felixonmars
Revision: 630583

upgpkg: kcm-fcitx5 0.0.0.20200520-1

Modified:
  kcm-fcitx5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 09:06:28 UTC (rev 630582)
+++ PKGBUILD2020-05-20 09:10:34 UTC (rev 630583)
@@ -3,8 +3,8 @@
 # Contributor: csslayer 
 
 pkgname=kcm-fcitx5
-pkgver=0.0.0.20200519
-_commit=765b011c7f0ae15a9c2e638c958b3e30239470be
+pkgver=0.0.0.20200520
+_commit=176524f45d644e86cbb2453c489a750459d69f5a
 pkgrel=1
 pkgdesc="KDE Config Module for Fcitx5"
 arch=('x86_64')
@@ -15,7 +15,7 @@
 'kirigami2: for KCM support')
 makedepends=('extra-cmake-modules' 'kdeclarative' 'kirigami2' 'python')
 
source=("https://github.com/fcitx/kcm-fcitx5/archive/$_commit/kcm-fcitx5-$_commit.tar.gz;)
-sha512sums=('f3115cb73a4d268c91baac30ac80b19ced93f9d5da13605230a788a3ede55f3dce1a6e8a164649e9dd00d81c85025911089c63ea5d9d0fbba7730f53188fa3a3')
+sha512sums=('cdfb1f5f238c50f94e3885531941e2401641aa545ce045f62bbee2fb81581a48d4da95d0668eb916c62e37a030afd8deb7848e622a3635c2076af54352674c4c')
 
 build(){
   cd $pkgname-$_commit


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 09:10:54
  Author: felixonmars
Revision: 630584

archrelease: copy trunk to community-x86_64

Added:
  kcm-fcitx5/repos/community-x86_64/PKGBUILD
(from rev 630583, kcm-fcitx5/trunk/PKGBUILD)
Deleted:
  kcm-fcitx5/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 09:10:34 UTC (rev 630583)
+++ PKGBUILD2020-05-20 09:10:54 UTC (rev 630584)
@@ -1,30 +0,0 @@
-# $Id: PKGBUILD 226039 2017-04-27 13:52:30Z felixonmars $
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=kcm-fcitx5
-pkgver=0.0.0.20200519
-_commit=765b011c7f0ae15a9c2e638c958b3e30239470be
-pkgrel=1
-pkgdesc="KDE Config Module for Fcitx5"
-arch=('x86_64')
-url="https://github.com/fcitx/kcm-fcitx5;
-license=('GPL')
-depends=('fcitx5-qt' 'kwidgetsaddons' 'kitemviews')
-optdepends=('kdeclarative: for KCM support'
-'kirigami2: for KCM support')
-makedepends=('extra-cmake-modules' 'kdeclarative' 'kirigami2' 'python')
-source=("https://github.com/fcitx/kcm-fcitx5/archive/$_commit/kcm-fcitx5-$_commit.tar.gz;)
-sha512sums=('f3115cb73a4d268c91baac30ac80b19ced93f9d5da13605230a788a3ede55f3dce1a6e8a164649e9dd00d81c85025911089c63ea5d9d0fbba7730f53188fa3a3')
-
-build(){
-  cd $pkgname-$_commit
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib 
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON .
-  make
-}
-
-package() {
-  cd $pkgname-$_commit
-  make DESTDIR="$pkgdir" install
-}

Copied: kcm-fcitx5/repos/community-x86_64/PKGBUILD (from rev 630583, 
kcm-fcitx5/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 09:10:54 UTC (rev 630584)
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 226039 2017-04-27 13:52:30Z felixonmars $
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=kcm-fcitx5
+pkgver=0.0.0.20200520
+_commit=176524f45d644e86cbb2453c489a750459d69f5a
+pkgrel=1
+pkgdesc="KDE Config Module for Fcitx5"
+arch=('x86_64')
+url="https://github.com/fcitx/kcm-fcitx5;
+license=('GPL')
+depends=('fcitx5-qt' 'kwidgetsaddons' 'kitemviews')
+optdepends=('kdeclarative: for KCM support'
+'kirigami2: for KCM support')
+makedepends=('extra-cmake-modules' 'kdeclarative' 'kirigami2' 'python')
+source=("https://github.com/fcitx/kcm-fcitx5/archive/$_commit/kcm-fcitx5-$_commit.tar.gz;)
+sha512sums=('cdfb1f5f238c50f94e3885531941e2401641aa545ce045f62bbee2fb81581a48d4da95d0668eb916c62e37a030afd8deb7848e622a3635c2076af54352674c4c')
+
+build(){
+  cd $pkgname-$_commit
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib 
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON .
+  make
+}
+
+package() {
+  cd $pkgname-$_commit
+  make DESTDIR="$pkgdir" install
+}


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 09:14:12
  Author: felixonmars
Revision: 630585

upgpkg: python-openmdao 3.1.0-1

Modified:
  python-openmdao/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 09:10:54 UTC (rev 630584)
+++ PKGBUILD2020-05-20 09:14:12 UTC (rev 630585)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-openmdao
-pkgver=3.0.0
+pkgver=3.1.0
 pkgrel=1
 pkgdesc="An open-source high-performance computing platform"
 url="https://github.com/OpenMDAO/OpenMDAO;
@@ -13,7 +13,7 @@
  'python-tornado' 'python-pydoe2')
 checkdepends=('python-mpi4py')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenMDAO/OpenMDAO/archive/$pkgver.tar.gz;)
-sha512sums=('39848be5320001dc3a68c5421d56f22527ceeb4680fb75ce9abd5c554ea9efba9f4350f8f4e93cb2d99bb3e2049753846513836247684c6bc7368043f6e18952')
+sha512sums=('f607827a85653e17b1035c80ae47e458ac84f7050d0408837347108f0db01772f171dc8b748ea4e785cae60271c070b641cbf38c88f59c69ddc7620b273598f8')
 
 prepare() {
   cd OpenMDAO-$pkgver


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 09:14:30
  Author: felixonmars
Revision: 630586

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 09:14:12 UTC (rev 630585)
+++ PKGBUILD2020-05-20 09:14:30 UTC (rev 630586)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-openmdao
-pkgver=3.0.0
-pkgrel=1
-pkgdesc="An open-source high-performance computing platform"
-url="https://github.com/OpenMDAO/OpenMDAO;
-license=('Apache')
-arch=('any')
-depends=('python-six' 'python-numpydoc' 'python-scipy' 'python-sqlitedict' 
'python-pycodestyle'
- 'python-pydocstyle' 'python-testflo' 'python-parameterized' 
'python-pyparsing'
- 'python-networkx' 'python-sphinx' 'python-redbaron' 'python-mock' 
'python-requests-mock'
- 'python-tornado' 'python-pydoe2')
-checkdepends=('python-mpi4py')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenMDAO/OpenMDAO/archive/$pkgver.tar.gz;)
-sha512sums=('39848be5320001dc3a68c5421d56f22527ceeb4680fb75ce9abd5c554ea9efba9f4350f8f4e93cb2d99bb3e2049753846513836247684c6bc7368043f6e18952')
-
-prepare() {
-  cd OpenMDAO-$pkgver
-  sed -e 's/from distutils.core/from setuptools/' \
-  -e 's/==/>=/' \
-  -i setup.py
-}
-
-build() {
-  cd OpenMDAO-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd OpenMDAO-$pkgver
-  PYTHONPATH="$PWD/build/lib" testflo -n 16 --timeout=120 openmdao || warning 
"Tests failed"
-}
-
-package() {
-  cd OpenMDAO-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-openmdao/repos/community-any/PKGBUILD (from rev 630585, 
python-openmdao/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 09:14:30 UTC (rev 630586)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-openmdao
+pkgver=3.1.0
+pkgrel=1
+pkgdesc="An open-source high-performance computing platform"
+url="https://github.com/OpenMDAO/OpenMDAO;
+license=('Apache')
+arch=('any')
+depends=('python-six' 'python-numpydoc' 'python-scipy' 'python-sqlitedict' 
'python-pycodestyle'
+ 'python-pydocstyle' 'python-testflo' 'python-parameterized' 
'python-pyparsing'
+ 'python-networkx' 'python-sphinx' 'python-redbaron' 'python-mock' 
'python-requests-mock'
+ 'python-tornado' 'python-pydoe2')
+checkdepends=('python-mpi4py')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenMDAO/OpenMDAO/archive/$pkgver.tar.gz;)
+sha512sums=('f607827a85653e17b1035c80ae47e458ac84f7050d0408837347108f0db01772f171dc8b748ea4e785cae60271c070b641cbf38c88f59c69ddc7620b273598f8')
+
+prepare() {
+  cd OpenMDAO-$pkgver
+  sed -e 's/from distutils.core/from setuptools/' \
+  -e 's/==/>=/' \
+  -i setup.py
+}
+
+build() {
+  cd OpenMDAO-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd OpenMDAO-$pkgver
+  PYTHONPATH="$PWD/build/lib" testflo -n 16 --timeout=120 openmdao || warning 
"Tests failed"
+}
+
+package() {
+  cd OpenMDAO-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


[arch-commits] Commit in haskell-unexceptionalio/repos/community-x86_64 (2 files)

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:38:36
  Author: felixonmars
Revision: 630548

archrelease: copy trunk to community-x86_64

Added:
  haskell-unexceptionalio/repos/community-x86_64/PKGBUILD
(from rev 630547, haskell-unexceptionalio/trunk/PKGBUILD)
Deleted:
  haskell-unexceptionalio/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 08:38:19 UTC (rev 630547)
+++ PKGBUILD2020-05-20 08:38:36 UTC (rev 630548)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=unexceptionalio
-pkgname=haskell-unexceptionalio
-pkgver=0.5.0
-pkgrel=4
-pkgdesc="IO without any non-error, synchronous exceptions"
-url="https://github.com/singpolyma/unexceptionalio;
-license=("custom")
-arch=('x86_64')
-depends=('ghc-libs')
-makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('6aefa186dde521b5d139664958e96474bd91515dff367be1de0f8f7d2f4b3e09e798569db304a22c32882ecc7fd46a4fa48209d85537a95b250ef195f861fcb5')
-
-prepare() {
-cd $_hkgname-$pkgver
-sed -i '/fail s =/i instance MonadFail UIO where' UnexceptionalIO.hs
-}
-
-build() {
-cd $_hkgname-$pkgver
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
-runhaskell Setup build
-runhaskell Setup register --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-package() {
-cd $_hkgname-$pkgver
-
-install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
-install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
-runhaskell Setup copy --destdir="$pkgdir"
-install -D -m644 "COPYING" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING"
-}

Copied: haskell-unexceptionalio/repos/community-x86_64/PKGBUILD (from rev 
630547, haskell-unexceptionalio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 08:38:36 UTC (rev 630548)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=unexceptionalio
+pkgname=haskell-unexceptionalio
+pkgver=0.5.1
+pkgrel=1
+pkgdesc="IO without any non-error, synchronous exceptions"
+url="https://github.com/singpolyma/unexceptionalio;
+license=("custom")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('62c42e5c683cd05505971602fe4e64a50b5949d9540acefd8d4d66ec0bf57075cdb8e35e99f7e7c4b4fdf589b2af47aa31c0cd62d518b4ded5fc5f9f382008ba')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "COPYING" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING"
+}


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:42:08
  Author: felixonmars
Revision: 630549

upgpkg: deepin-calendar 5.6.3-1

Modified:
  deepin-calendar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 08:38:36 UTC (rev 630548)
+++ PKGBUILD2020-05-20 08:42:08 UTC (rev 630549)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-calendar
-pkgver=5.6.2
+pkgver=5.6.3
 pkgrel=1
 pkgdesc='Calendar for Deepin Desktop Environment'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('deepin-gettext-tools' 'qt5-tools')
 groups=('deepin')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-calendar/archive/$pkgver.tar.gz;)
-sha512sums=('c486b66a57f0f19abc8876f7eebf74b3fce1247b7f8c3b56161c72d81674fa73b758f64566f95d4bc9647c7feb76e0da2a4ddd1728b768ea575ddcf018091902')
+sha512sums=('b53dfc9f98d79b292a503e1450f27dd43409aa4218fab4aa0655b23aec5084ba04bb90e38ae3d6b309f2d6a6d2edab6b0ae01df9e361cef7f0f2247efa4d7844')
 
 prepare() {
   cd dde-calendar-$pkgver


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:42:25
  Author: felixonmars
Revision: 630550

archrelease: copy trunk to community-x86_64

Added:
  deepin-calendar/repos/community-x86_64/PKGBUILD
(from rev 630549, deepin-calendar/trunk/PKGBUILD)
Deleted:
  deepin-calendar/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   68 ++---
 1 file changed, 34 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 08:42:08 UTC (rev 630549)
+++ PKGBUILD2020-05-20 08:42:25 UTC (rev 630550)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-calendar
-pkgver=5.6.2
-pkgrel=1
-pkgdesc='Calendar for Deepin Desktop Environment'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dde-calendar;
-license=('GPL3')
-depends=('deepin-qt5integration')
-makedepends=('deepin-gettext-tools' 'qt5-tools')
-groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-calendar/archive/$pkgver.tar.gz;)
-sha512sums=('c486b66a57f0f19abc8876f7eebf74b3fce1247b7f8c3b56161c72d81674fa73b758f64566f95d4bc9647c7feb76e0da2a4ddd1728b768ea575ddcf018091902')
-
-prepare() {
-  cd dde-calendar-$pkgver
-  sed -i '/QMenuBar/a #include /' src/yearwindow.cpp
-  sed -i '//a #include /' src/daymonthview.cpp
-  sed -i '//a #include /' 
src/schcedulesearchview.cpp
-}
-
-build() {
-  cd dde-calendar-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-calendar-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-calendar/repos/community-x86_64/PKGBUILD (from rev 630549, 
deepin-calendar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 08:42:25 UTC (rev 630550)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-calendar
+pkgver=5.6.3
+pkgrel=1
+pkgdesc='Calendar for Deepin Desktop Environment'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-calendar;
+license=('GPL3')
+depends=('deepin-qt5integration')
+makedepends=('deepin-gettext-tools' 'qt5-tools')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-calendar/archive/$pkgver.tar.gz;)
+sha512sums=('b53dfc9f98d79b292a503e1450f27dd43409aa4218fab4aa0655b23aec5084ba04bb90e38ae3d6b309f2d6a6d2edab6b0ae01df9e361cef7f0f2247efa4d7844')
+
+prepare() {
+  cd dde-calendar-$pkgver
+  sed -i '/QMenuBar/a #include /' src/yearwindow.cpp
+  sed -i '//a #include /' src/daymonthview.cpp
+  sed -i '//a #include /' 
src/schcedulesearchview.cpp
+}
+
+build() {
+  cd dde-calendar-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-calendar-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:42:58
  Author: felixonmars
Revision: 630551

upgpkg: vim-nerdtree 6.7.3-1

Modified:
  vim-nerdtree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 08:42:25 UTC (rev 630550)
+++ PKGBUILD2020-05-20 08:42:58 UTC (rev 630551)
@@ -6,7 +6,7 @@
 # Contributor: Laszlo Papp 
 
 pkgname=vim-nerdtree
-pkgver=6.7.2
+pkgver=6.7.3
 pkgrel=1
 pkgdesc='Tree explorer plugin for navigating the filesystem'
 url='https://github.com/scrooloose/nerdtree'
@@ -15,7 +15,7 @@
 depends=('vim')
 groups=('vim-plugins')
 
source=(https://github.com/scrooloose/nerdtree/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('fac5186e2bf025cfe26d98e341a8d1c2689cb2854fe35407c7b1c3a56aa7b6d936c08f4e1e914b617ef153164bb474920973075aa8374e1ad5815db706ab3cd7')
+sha512sums=('3764a75db674ae13c83b681d05a1ffe6c85ff34843fe800d04484f9f78758a21ca73fbe37a0ae85ad0d8e696828c16e9aaf5133e4b635da443d3e697e01cab68')
 
 prepare() {
   cd nerdtree-${pkgver}


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:49:47
  Author: felixonmars
Revision: 630561

upgpkg: typescript 3.9.3-1

Modified:
  typescript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 08:48:30 UTC (rev 630560)
+++ PKGBUILD2020-05-20 08:49:47 UTC (rev 630561)
@@ -2,7 +2,7 @@
 # Contributor: Bruno Galeotti 
 
 pkgname=typescript
-pkgver=3.9.2
+pkgver=3.9.3
 pkgrel=1
 pkgdesc="TypeScript is a language for application scale JavaScript development"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('npm')
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('ab692dab89ffb8bb8d3528726b28adf834e86d5d80a4f128ffab28ebc25a0f9a23bdcffa1829418a979d07dccd598c514809595c07b8d394658a3ce5eaa0e24b')
+sha512sums=('0ffc2a9c1db1ccd148728046f451bc7174438e2a924db1b6c1df03319790c8994fd6f7d3908c47e062af796684058c9228883e512bbe13e103211e3b4aa9da31')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:48:30
  Author: felixonmars
Revision: 630560

archrelease: copy trunk to community-testing-any

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

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

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

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

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

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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 08:55:23
  Author: felixonmars
Revision: 630563

upgpkg: jenkins 2.237-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 08:50:08 UTC (rev 630562)
+++ PKGBUILD2020-05-20 08:55:23 UTC (rev 630563)
@@ -4,7 +4,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=2.236
+pkgver=2.237
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -24,7 +24,7 @@
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'LICENSE')
-sha512sums=('ce0867b0a8611e5a159e1d61cc07b8beb68a953134837b74312040379328b418b325162fd4b1ccbaa12a50bbebedf66238a35c040de68bb7f4be202906ec55fa'
+sha512sums=('7f9e82c74bc9f35f937b5e371b91c5ba97e4d0710cad6b1cfce98d4f64d6af950ec05de76b36f3eadb992590bbf4f3f30496bb57d91efca9cdacc17b19e174f7'
 
'7a81b2fd0ce91da42bacf35615fd7cb0352a0316b78b41fe180ba531848ca85b1f1df1573ab5707d9aebb36bacc51c81bc200f80cf41f1d1903309c1478d50f8'
 
'320e3d7bcdb78861e829e97be3ec37b8f1846737032ba70f624dfc5be86569d527279f53654a4a22d78b816ff1b07df429725a1d0a8059d44900d1095d1189ab'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'


<    1   2   3   4   5   >