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

2019-08-06 Thread Evangelos Foutras via arch-commits
Date: Wednesday, August 7, 2019 @ 04:19:34
  Author: foutrelis
Revision: 359275

upgpkg: dialog 1:1.3_20190806-1

New upstream release.

Modified:
  dialog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-07 01:53:36 UTC (rev 359274)
+++ PKGBUILD2019-08-07 04:19:34 UTC (rev 359275)
@@ -4,7 +4,7 @@
 # Contributor: Andreas Radke 
 
 pkgname=dialog
-pkgver=1.3_20190728
+pkgver=1.3_20190806
 pkgrel=1
 epoch=1
 pkgdesc="A tool to display dialog boxes from shell scripts"
@@ -14,7 +14,7 @@
 depends=('sh' 'ncurses')
 provides=('libdialog.so')
 
source=(https://invisible-mirror.net/archives/$pkgname/$pkgname-${pkgver/_/-}.tgz)
-sha256sums=('e5eb0eaaef9cae8c822887bd998e33c2c3b94ebadd37b4f6aba018c0194a2a87')
+sha256sums=('017cf3d5c608078e4c00e40a158352a779f37cc117bc592aa11d0bffa40295eb')
 
 build() {
   cd "$srcdir/$pkgname-${pkgver/_/-}"


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

2019-08-06 Thread Evangelos Foutras via arch-commits
Date: Wednesday, August 7, 2019 @ 04:19:38
  Author: foutrelis
Revision: 359276

archrelease: copy trunk to testing-x86_64

Added:
  dialog/repos/testing-x86_64/
  dialog/repos/testing-x86_64/PKGBUILD
(from rev 359275, dialog/trunk/PKGBUILD)

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

Copied: dialog/repos/testing-x86_64/PKGBUILD (from rev 359275, 
dialog/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-08-07 04:19:38 UTC (rev 359276)
@@ -0,0 +1,35 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Andreas Radke 
+
+pkgname=dialog
+pkgver=1.3_20190806
+pkgrel=1
+epoch=1
+pkgdesc="A tool to display dialog boxes from shell scripts"
+arch=('x86_64')
+url="https://invisible-island.net/dialog/;
+license=('LGPL2.1')
+depends=('sh' 'ncurses')
+provides=('libdialog.so')
+source=(https://invisible-mirror.net/archives/$pkgname/$pkgname-${pkgver/_/-}.tgz)
+sha256sums=('017cf3d5c608078e4c00e40a158352a779f37cc117bc592aa11d0bffa40295eb')
+
+build() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+
+  ./configure \
+--prefix=/usr \
+--enable-nls \
+--with-libtool \
+--with-ncursesw
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+  make DESTDIR="$pkgdir" install-full
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in python-dephell/repos/community-any (3 files)

2019-08-06 Thread Eli Schwartz via arch-commits
Date: Wednesday, August 7, 2019 @ 03:45:24
  Author: eschwartz
Revision: 498123

archrelease: copy trunk to community-any

Added:
  
python-dephell/repos/community-any/0001-Do-not-override-the-system-SSL-certificates-with-the.patch
(from rev 498122, 
python-dephell/trunk/0001-Do-not-override-the-system-SSL-certificates-with-the.patch)
  python-dephell/repos/community-any/PKGBUILD
(from rev 498122, python-dephell/trunk/PKGBUILD)
Deleted:
  python-dephell/repos/community-any/PKGBUILD

-+
 0001-Do-not-override-the-system-SSL-certificates-with-the.patch |   40 +++
 PKGBUILD|  124 
+-
 2 files changed, 108 insertions(+), 56 deletions(-)

Copied: 
python-dephell/repos/community-any/0001-Do-not-override-the-system-SSL-certificates-with-the.patch
 (from rev 498122, 
python-dephell/trunk/0001-Do-not-override-the-system-SSL-certificates-with-the.patch)
===
--- 0001-Do-not-override-the-system-SSL-certificates-with-the.patch 
(rev 0)
+++ 0001-Do-not-override-the-system-SSL-certificates-with-the.patch 
2019-08-07 03:45:24 UTC (rev 498123)
@@ -0,0 +1,40 @@
+From 4ad8b8276699f7d24178e66d0ea4147b776a0234 Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Tue, 6 Aug 2019 19:43:13 -0400
+Subject: [PATCH] Do not override the system SSL certificates with the certifi
+ bundle.
+
+We need to respect the system certification policy, and by default the
+ssl module will use our packaged ca-certificates.
+---
+ dephell/networking.py | 7 +--
+ 1 file changed, 1 insertion(+), 6 deletions(-)
+
+diff --git a/dephell/networking.py b/dephell/networking.py
+index 9f862be..b33e1b1 100644
+--- a/dephell/networking.py
 b/dephell/networking.py
+@@ -2,7 +2,6 @@
+ from ssl import create_default_context
+ 
+ # external
+-import certifi
+ import requests
+ from aiohttp import ClientSession, TCPConnector
+ 
+@@ -17,11 +16,7 @@ def aiohttp_session(*, auth=None, **kwargs):
+ headers = dict()
+ if auth:
+ headers['Authorization'] = auth.encode()
+-ssl_context = create_default_context(cafile=certifi.where())
+-try:
+-connector = TCPConnector(ssl=ssl_context)
+-except TypeError:
+-connector = TCPConnector(ssl_context=ssl_context)
++connector = TCPConnector()
+ return ClientSession(headers=headers, connector=connector, **kwargs)
+ 
+ 
+-- 
+2.22.0
+

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-07 03:45:06 UTC (rev 498122)
+++ PKGBUILD2019-08-07 03:45:24 UTC (rev 498123)
@@ -1,56 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=dephell
-pkgname=python-dephell
-pkgver=0.7.4
-pkgrel=1
-pkgdesc="universal Python project management: convert between formats, build, 
manage venvs"
-arch=('any')
-url="https://github.com/dephell/${_pkgname};
-license=('ISC')
-_deps=('aiohttp' 'appdirs' 'attrs' 'cerberus' 'dephell-archive' 
'dephell-discover'
-   'dephell-licenses' 'dephell-links' 'dephell-markers' 'dephell-pythons'
-   'dephell-shells' 'dephell-specifier' 'dephell-venvs' 'jinja' 'packaging'
-   'pip' 'requests' 'setuptools' 'tomlkit' 'yaml' 'yaspin')
-depends=("${_deps[@]/#/python-}" 'm2r')
-checkdepends=('python-pytest' 'python-aioresponses' 'python-requests-mock')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
-sha256sums=('4e21ccaaa8366c68d7b2351ad9f06cabc381f09031878f8a880698b67885883e')
-b2sums=('8e532ae03fc2e841add6b3ea4a864cdfeafb385cdd8c1b72dc23258e9a48a49d8bd194306202807b055e3143ed51b30e84a19d26fcb0d5ccf38bd3ca5025d2cc')
-
-prepare() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-# pycache slipped into release tarballs
-find . -name \*.pyc -delete
-}
-
-build(){
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py build
-}
-
-check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-# skip git tests, which rely on being run from dephell's own git repo
-python -m pytest -k 'not test_git_git'
-}
-
-package() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-# make shell completions
-python -c 'from dephell.actions._autocomplete import 
make_bash_autocomplete as comp; print(comp())' | \
-install -Dm644 /dev/stdin 
"${pkgdir}"/usr/share/bash-completion/completions/dephell
-
-# rewrite zsh completion to support autoloading
-{   printf '#compdef dephell\n'
-python -c 'from dephell.actions._autocomplete import 
make_zsh_autocomplete as comp; print(comp())' | \
-sed 's/^compdef _dephell dephell$/_dephell/'
-} | install -Dm644 /dev/stdin 
"${pkgdir}"/usr/share/zsh/site-functions/_dephell
-}

Copied: 

[arch-commits] Commit in python-dephell/trunk (2 files)

2019-08-06 Thread Eli Schwartz via arch-commits
Date: Wednesday, August 7, 2019 @ 03:45:06
  Author: eschwartz
Revision: 498122

upgpkg: python-dephell 0.7.7-1

upstream release
update dependencies in accordance with new features; do not use certifi

Added:
  
python-dephell/trunk/0001-Do-not-override-the-system-SSL-certificates-with-the.patch
Modified:
  python-dephell/trunk/PKGBUILD

-+
 0001-Do-not-override-the-system-SSL-certificates-with-the.patch |   40 
++
 PKGBUILD|   26 --
 2 files changed, 59 insertions(+), 7 deletions(-)

Added: 0001-Do-not-override-the-system-SSL-certificates-with-the.patch
===
--- 0001-Do-not-override-the-system-SSL-certificates-with-the.patch 
(rev 0)
+++ 0001-Do-not-override-the-system-SSL-certificates-with-the.patch 
2019-08-07 03:45:06 UTC (rev 498122)
@@ -0,0 +1,40 @@
+From 4ad8b8276699f7d24178e66d0ea4147b776a0234 Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Tue, 6 Aug 2019 19:43:13 -0400
+Subject: [PATCH] Do not override the system SSL certificates with the certifi
+ bundle.
+
+We need to respect the system certification policy, and by default the
+ssl module will use our packaged ca-certificates.
+---
+ dephell/networking.py | 7 +--
+ 1 file changed, 1 insertion(+), 6 deletions(-)
+
+diff --git a/dephell/networking.py b/dephell/networking.py
+index 9f862be..b33e1b1 100644
+--- a/dephell/networking.py
 b/dephell/networking.py
+@@ -2,7 +2,6 @@
+ from ssl import create_default_context
+ 
+ # external
+-import certifi
+ import requests
+ from aiohttp import ClientSession, TCPConnector
+ 
+@@ -17,11 +16,7 @@ def aiohttp_session(*, auth=None, **kwargs):
+ headers = dict()
+ if auth:
+ headers['Authorization'] = auth.encode()
+-ssl_context = create_default_context(cafile=certifi.where())
+-try:
+-connector = TCPConnector(ssl=ssl_context)
+-except TypeError:
+-connector = TCPConnector(ssl_context=ssl_context)
++connector = TCPConnector()
+ return ClientSession(headers=headers, connector=connector, **kwargs)
+ 
+ 
+-- 
+2.22.0
+

Modified: PKGBUILD
===
--- PKGBUILD2019-08-07 02:18:19 UTC (rev 498121)
+++ PKGBUILD2019-08-07 03:45:06 UTC (rev 498122)
@@ -2,25 +2,37 @@
 
 _pkgname=dephell
 pkgname=python-dephell
-pkgver=0.7.4
+pkgver=0.7.7
 pkgrel=1
 pkgdesc="universal Python project management: convert between formats, build, 
manage venvs"
 arch=('any')
 url="https://github.com/dephell/${_pkgname};
 license=('ISC')
-_deps=('aiohttp' 'appdirs' 'attrs' 'cerberus' 'dephell-archive' 
'dephell-discover'
+_deps=('aiohttp' 'appdirs' 'attrs' 'bowler' 'cerberus' 'dephell-archive' 
'dephell-discover'
'dephell-licenses' 'dephell-links' 'dephell-markers' 'dephell-pythons'
-   'dephell-shells' 'dephell-specifier' 'dephell-venvs' 'jinja' 'packaging'
+   'dephell-shells' 'dephell-specifier' 'dephell-venvs' 
'dephell-versioning'
+   'docker' 'dockerpty' 'html5lib' 'jinja' 'packaging'
'pip' 'requests' 'setuptools' 'tomlkit' 'yaml' 'yaspin')
 depends=("${_deps[@]/#/python-}" 'm2r')
-checkdepends=('python-pytest' 'python-aioresponses' 'python-requests-mock')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
-sha256sums=('4e21ccaaa8366c68d7b2351ad9f06cabc381f09031878f8a880698b67885883e')
-b2sums=('8e532ae03fc2e841add6b3ea4a864cdfeafb385cdd8c1b72dc23258e9a48a49d8bd194306202807b055e3143ed51b30e84a19d26fcb0d5ccf38bd3ca5025d2cc')
+checkdepends=('git' 'python-pytest' 'python-aioresponses' 
'python-requests-mock')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;
+
"${url}/pull/250/commits/5cc501da4f3b1873b86d3da606f03503fc79b23f.patch"
+"0001-Do-not-override-the-system-SSL-certificates-with-the.patch")
+sha256sums=('cd3beb4d0827360ce78303d71985fb612406e965fd3b65538550315482f3ffc9'
+'23fb102ce6faf3b94ac0ccf30ea576a2a4a2f225dd11e6e55bc9207f5c8f4e0b'
+'4dc2412354c0d96956f88b2e5474652e4a87108588905510d96674ddf939b4c1')
+b2sums=('60d498f457a1166124384f77f57f08780ab4347e5512ba562c2d18baefaac73f729a963257025380edff2ca524600b067ba5d3ebb0ccda4b07e4047fffc091d2'
+
'dae22561541fd0c99ea0953edbb952da7bb84a4b0cc802b1ac66f3cbe5424190a6c959132a4a3dd7f089a7d1673d6ca6d9cc06a9ad1811e6483b35165cc09fa2'
+
'f379265aecef50dd45026f777f68725348083c8fb8aa57e14733883067d52aa1ea39e1affc2f4b84e7574e64695bb84a1c13ca5a0f691e089ae5a9438eedab07')
 
 prepare() {
 cd "${srcdir}"/${_pkgname}-${pkgver}
 
+# fix tests: https://github.com/dephell/dephell/pull/250
+patch -p1 -i ../5cc501da4f3b1873b86d3da606f03503fc79b23f.patch
+# bad certifi
+patch -p1 -i 

[arch-commits] Commit in (betterdiscord betterdiscord/repos betterdiscord/trunk)

2019-08-06 Thread Filipe Laíns via arch-commits
Date: Wednesday, August 7, 2019 @ 02:18:19
  Author: ffy00
Revision: 498121

add root structure

Added:
  betterdiscord/
  betterdiscord/repos/
  betterdiscord/trunk/


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

2019-08-06 Thread Filipe Laíns via arch-commits
Date: Wednesday, August 7, 2019 @ 02:16:36
  Author: ffy00
Revision: 498120

archrelease: copy trunk to community-x86_64

Added:
  betterdiscordctl/repos/community-x86_64/
  betterdiscordctl/repos/community-x86_64/PKGBUILD
(from rev 498119, betterdiscordctl/trunk/PKGBUILD)

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

Copied: betterdiscordctl/repos/community-x86_64/PKGBUILD (from rev 498119, 
betterdiscordctl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-08-07 02:16:36 UTC (rev 498120)
@@ -0,0 +1,21 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=betterdiscordctl
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='Utility for managing BetterDiscord on Linux'
+arch=('x86_64')
+url='https://github.com/bb010g/betterdiscordctl'
+license=('MIT')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('b5a66e1e5c27b085548630adfd6ee90319baa687581718955ab7633295ce6bd3da23141b1a6a4ed46a892126259ee24bb65621972ca93b5a9ae46e0a5223f767')
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -Dm 755 $pkgname "$pkgdir"/usr/bin/$pkgname
+
+  # License
+  install -Dm 644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


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

2019-08-06 Thread Filipe Laíns via arch-commits
Date: Wednesday, August 7, 2019 @ 02:16:33
  Author: ffy00
Revision: 498119

upgpkg: betterdiscordctl 1.6.1-1

Added:
  betterdiscordctl/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-07 02:16:33 UTC (rev 498119)
@@ -0,0 +1,21 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=betterdiscordctl
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='Utility for managing BetterDiscord on Linux'
+arch=('x86_64')
+url='https://github.com/bb010g/betterdiscordctl'
+license=('MIT')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('b5a66e1e5c27b085548630adfd6ee90319baa687581718955ab7633295ce6bd3da23141b1a6a4ed46a892126259ee24bb65621972ca93b5a9ae46e0a5223f767')
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -Dm 755 $pkgname "$pkgdir"/usr/bin/$pkgname
+
+  # License
+  install -Dm 644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


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

2019-08-06 Thread Filipe Laíns via arch-commits
Date: Wednesday, August 7, 2019 @ 02:14:36
  Author: ffy00
Revision: 498118

archrelease: copy trunk to community-x86_64

Added:
  discord-ptb/repos/community-x86_64/
  discord-ptb/repos/community-x86_64/PKGBUILD
(from rev 498117, discord-ptb/trunk/PKGBUILD)

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

Copied: discord-ptb/repos/community-x86_64/PKGBUILD (from rev 498117, 
discord-ptb/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-08-07 02:14:36 UTC (rev 498118)
@@ -0,0 +1,52 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=discord-ptb
+_pkgname=DiscordPTB
+pkgver=0.0.15
+pkgrel=2
+pkgdesc="All-in-one voice and text chat for gamers that's free and secure. 
(Public Test Build)"
+arch=('x86_64')
+url='https://discordapp.com'
+license=('custom')
+depends=('libnotify' 'libxss' 'nspr' 'nss'
+ 'opera-ffmpeg-codecs' 'libegl' 'libgles') # Replacements
+optdepends=('libpulse: Pulseaudio support'
+'xdg-utils: Open files')
+provides=('discord')
+source=("https://dl-ptb.discordapp.net/apps/linux/$pkgver/$pkgname-$pkgver.tar.gz;
+'LICENSE.html::https://discordapp.com/terms'
+'OSS-LICENSES.html::https://discordapp.com/licenses')
+sha512sums=('78db1273b8098396fe80d86516fc2a116728f1bf3161e4255cb70ef54e91f02640eb7bc97dcf97909322c2e981650410a0d3b556d41ea11532829b7e69a792e1'
+
'e26de51df34fb0190ed2c0b350b718f4de8e1da75c2aedfec095435e5e0d17e1bd86aac12c25763b47e6cf7158c8e620f4aa9a034d950548208e9da251755df0'
+
'75d842415ec550334b343d9a060d12451db2ca199519e53a2fb198a761a78600abf789e34f7940d56fb4f6fb87a27443ff4cf85a22b1804ef2ea51b02ecd7c7a')
+
+prepare() {
+  sed -i "s|Exec=.*|Exec=/usr/bin/$pkgname|" $_pkgname/$pkgname.desktop
+}
+
+package() {
+  # Install the app
+  install -d "$pkgdir"/opt/$pkgname
+  cp -a $_pkgname/. "$pkgdir"/opt/$pkgname
+
+  chmod 755 "$pkgdir"/opt/$pkgname/$_pkgname
+
+  rm "$pkgdir"/opt/$pkgname/postinst.sh
+
+  install -d "$pkgdir"/usr/{bin,share/{pixmaps,applications}}
+  ln -s /opt/$pkgname/$_pkgname "$pkgdir"/usr/bin/$pkgname
+  ln -s /opt/$pkgname/discord.png "$pkgdir"/usr/share/pixmaps/$pkgname.png
+  ln -s /opt/$pkgname/$pkgname.desktop 
"$pkgdir"/usr/share/applications/$pkgname.desktop
+
+  # Replacement symlinks
+  ln -sf /usr/lib/opera/lib_extra/libffmpeg.so 
"$pkgdir"/opt/$pkgname/libffmpeg.so
+  ln -sf /usr/lib/libEGL.so "$pkgdir"/opt/$pkgname/libEGL.so
+  ln -sf /usr/lib/libGLESv2.so "$pkgdir"/opt/$pkgname/libGLESv2.so
+  ln -sf /usr/lib/libEGL.so "$pkgdir"/opt/$pkgname/swiftshader/libEGL.so
+  ln -sf /usr/lib/libGLESv2.so "$pkgdir"/opt/$pkgname/swiftshader/libGLESv2.so
+
+  # Licenses
+  install -Dm 644 LICENSE.html 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.html
+  install -Dm 644 OSS-LICENSES.html 
"$pkgdir"/usr/share/licenses/$pkgname/OSS-LICENSES.html
+}
+


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

2019-08-06 Thread Filipe Laíns via arch-commits
Date: Wednesday, August 7, 2019 @ 02:14:32
  Author: ffy00
Revision: 498117

upgpkg: discord-ptb 0.0.15-2

Added:
  discord-ptb/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-07 02:14:32 UTC (rev 498117)
@@ -0,0 +1,52 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=discord-ptb
+_pkgname=DiscordPTB
+pkgver=0.0.15
+pkgrel=2
+pkgdesc="All-in-one voice and text chat for gamers that's free and secure. 
(Public Test Build)"
+arch=('x86_64')
+url='https://discordapp.com'
+license=('custom')
+depends=('libnotify' 'libxss' 'nspr' 'nss'
+ 'opera-ffmpeg-codecs' 'libegl' 'libgles') # Replacements
+optdepends=('libpulse: Pulseaudio support'
+'xdg-utils: Open files')
+provides=('discord')
+source=("https://dl-ptb.discordapp.net/apps/linux/$pkgver/$pkgname-$pkgver.tar.gz;
+'LICENSE.html::https://discordapp.com/terms'
+'OSS-LICENSES.html::https://discordapp.com/licenses')
+sha512sums=('78db1273b8098396fe80d86516fc2a116728f1bf3161e4255cb70ef54e91f02640eb7bc97dcf97909322c2e981650410a0d3b556d41ea11532829b7e69a792e1'
+
'e26de51df34fb0190ed2c0b350b718f4de8e1da75c2aedfec095435e5e0d17e1bd86aac12c25763b47e6cf7158c8e620f4aa9a034d950548208e9da251755df0'
+
'75d842415ec550334b343d9a060d12451db2ca199519e53a2fb198a761a78600abf789e34f7940d56fb4f6fb87a27443ff4cf85a22b1804ef2ea51b02ecd7c7a')
+
+prepare() {
+  sed -i "s|Exec=.*|Exec=/usr/bin/$pkgname|" $_pkgname/$pkgname.desktop
+}
+
+package() {
+  # Install the app
+  install -d "$pkgdir"/opt/$pkgname
+  cp -a $_pkgname/. "$pkgdir"/opt/$pkgname
+
+  chmod 755 "$pkgdir"/opt/$pkgname/$_pkgname
+
+  rm "$pkgdir"/opt/$pkgname/postinst.sh
+
+  install -d "$pkgdir"/usr/{bin,share/{pixmaps,applications}}
+  ln -s /opt/$pkgname/$_pkgname "$pkgdir"/usr/bin/$pkgname
+  ln -s /opt/$pkgname/discord.png "$pkgdir"/usr/share/pixmaps/$pkgname.png
+  ln -s /opt/$pkgname/$pkgname.desktop 
"$pkgdir"/usr/share/applications/$pkgname.desktop
+
+  # Replacement symlinks
+  ln -sf /usr/lib/opera/lib_extra/libffmpeg.so 
"$pkgdir"/opt/$pkgname/libffmpeg.so
+  ln -sf /usr/lib/libEGL.so "$pkgdir"/opt/$pkgname/libEGL.so
+  ln -sf /usr/lib/libGLESv2.so "$pkgdir"/opt/$pkgname/libGLESv2.so
+  ln -sf /usr/lib/libEGL.so "$pkgdir"/opt/$pkgname/swiftshader/libEGL.so
+  ln -sf /usr/lib/libGLESv2.so "$pkgdir"/opt/$pkgname/swiftshader/libGLESv2.so
+
+  # Licenses
+  install -Dm 644 LICENSE.html 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.html
+  install -Dm 644 OSS-LICENSES.html 
"$pkgdir"/usr/share/licenses/$pkgname/OSS-LICENSES.html
+}
+


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

2019-08-06 Thread Filipe Laíns via arch-commits
Date: Wednesday, August 7, 2019 @ 02:11:50
  Author: ffy00
Revision: 498115

upgpkg: discord-canary 0.0.91-2

Added:
  discord-canary/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-07 02:11:50 UTC (rev 498115)
@@ -0,0 +1,52 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=discord-canary
+_pkgname=DiscordCanary
+pkgver=0.0.91
+pkgrel=2
+pkgdesc="All-in-one voice and text chat for gamers that's free and secure. 
(canary build)"
+arch=('x86_64')
+url='https://discordapp.com'
+license=('custom')
+depends=('libnotify' 'libxss' 'nspr' 'nss'
+ 'opera-ffmpeg-codecs' 'libegl' 'libgles') # Replacements
+optdepends=('libpulse: Pulseaudio support'
+'xdg-utils: Open files')
+provides=('discord')
+source=("https://dl-canary.discordapp.net/apps/linux/$pkgver/$pkgname-$pkgver.tar.gz;
+'LICENSE.html::https://discordapp.com/terms'
+'OSS-LICENSES.html::https://discordapp.com/licenses')
+sha512sums=('7bc9682c8a843138da8b282ba50e47bf20f70ef166f0ba8443a6cb6c662b76d5217a3816a1a0c6b663b1655d08a47e40e8fdb288ddb13fb0e353c013b58c2cc5'
+
'e9a77e969adc32f5cf6f30e031b4302e34e803f0aec2f80b1c3fc556663eb7b0b7abfe31a7e76532dd1e8cb6f56272e0ed770e95595c8ae85e1fceb084a7d341'
+
'3e20b9360801200a9f4ee793aad10395293077f83296a9b10455b74917b9ed75ae1a89041c4586588197c268a18dba015e79a807a2e6eec414dd8cc1c24a00ab')
+
+prepare() {
+  sed -i "s|Exec=.*|Exec=/usr/bin/$pkgname|" $_pkgname/$pkgname.desktop
+}
+
+package() {
+  # Install the app
+  install -d "$pkgdir"/opt/$pkgname
+  cp -a $_pkgname/. "$pkgdir"/opt/$pkgname
+
+  chmod 755 "$pkgdir"/opt/$pkgname/$_pkgname
+
+  rm "$pkgdir"/opt/$pkgname/postinst.sh
+
+  install -d "$pkgdir"/usr/{bin,share/{pixmaps,applications}}
+  ln -s /opt/$pkgname/$_pkgname "$pkgdir"/usr/bin/$pkgname
+  ln -s /opt/$pkgname/discord.png "$pkgdir"/usr/share/pixmaps/$pkgname.png
+  ln -s /opt/$pkgname/$pkgname.desktop 
"$pkgdir"/usr/share/applications/$pkgname.desktop
+
+  # Replacement symlinks
+  ln -sf /usr/lib/opera/lib_extra/libffmpeg.so 
"$pkgdir"/opt/$pkgname/libffmpeg.so
+  ln -sf /usr/lib/libEGL.so "$pkgdir"/opt/$pkgname/libEGL.so
+  ln -sf /usr/lib/libGLESv2.so "$pkgdir"/opt/$pkgname/libGLESv2.so
+  ln -sf /usr/lib/libEGL.so "$pkgdir"/opt/$pkgname/swiftshader/libEGL.so
+  ln -sf /usr/lib/libGLESv2.so "$pkgdir"/opt/$pkgname/swiftshader/libGLESv2.so
+
+  # Licenses
+  install -Dm 644 LICENSE.html 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.html
+  install -Dm 644 OSS-LICENSES.html 
"$pkgdir"/usr/share/licenses/$pkgname/OSS-LICENSES.html
+}
+


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

2019-08-06 Thread Filipe Laíns via arch-commits
Date: Wednesday, August 7, 2019 @ 02:11:54
  Author: ffy00
Revision: 498116

archrelease: copy trunk to community-x86_64

Added:
  discord-canary/repos/community-x86_64/
  discord-canary/repos/community-x86_64/PKGBUILD
(from rev 498115, discord-canary/trunk/PKGBUILD)

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

Copied: discord-canary/repos/community-x86_64/PKGBUILD (from rev 498115, 
discord-canary/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-08-07 02:11:54 UTC (rev 498116)
@@ -0,0 +1,52 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=discord-canary
+_pkgname=DiscordCanary
+pkgver=0.0.91
+pkgrel=2
+pkgdesc="All-in-one voice and text chat for gamers that's free and secure. 
(canary build)"
+arch=('x86_64')
+url='https://discordapp.com'
+license=('custom')
+depends=('libnotify' 'libxss' 'nspr' 'nss'
+ 'opera-ffmpeg-codecs' 'libegl' 'libgles') # Replacements
+optdepends=('libpulse: Pulseaudio support'
+'xdg-utils: Open files')
+provides=('discord')
+source=("https://dl-canary.discordapp.net/apps/linux/$pkgver/$pkgname-$pkgver.tar.gz;
+'LICENSE.html::https://discordapp.com/terms'
+'OSS-LICENSES.html::https://discordapp.com/licenses')
+sha512sums=('7bc9682c8a843138da8b282ba50e47bf20f70ef166f0ba8443a6cb6c662b76d5217a3816a1a0c6b663b1655d08a47e40e8fdb288ddb13fb0e353c013b58c2cc5'
+
'e9a77e969adc32f5cf6f30e031b4302e34e803f0aec2f80b1c3fc556663eb7b0b7abfe31a7e76532dd1e8cb6f56272e0ed770e95595c8ae85e1fceb084a7d341'
+
'3e20b9360801200a9f4ee793aad10395293077f83296a9b10455b74917b9ed75ae1a89041c4586588197c268a18dba015e79a807a2e6eec414dd8cc1c24a00ab')
+
+prepare() {
+  sed -i "s|Exec=.*|Exec=/usr/bin/$pkgname|" $_pkgname/$pkgname.desktop
+}
+
+package() {
+  # Install the app
+  install -d "$pkgdir"/opt/$pkgname
+  cp -a $_pkgname/. "$pkgdir"/opt/$pkgname
+
+  chmod 755 "$pkgdir"/opt/$pkgname/$_pkgname
+
+  rm "$pkgdir"/opt/$pkgname/postinst.sh
+
+  install -d "$pkgdir"/usr/{bin,share/{pixmaps,applications}}
+  ln -s /opt/$pkgname/$_pkgname "$pkgdir"/usr/bin/$pkgname
+  ln -s /opt/$pkgname/discord.png "$pkgdir"/usr/share/pixmaps/$pkgname.png
+  ln -s /opt/$pkgname/$pkgname.desktop 
"$pkgdir"/usr/share/applications/$pkgname.desktop
+
+  # Replacement symlinks
+  ln -sf /usr/lib/opera/lib_extra/libffmpeg.so 
"$pkgdir"/opt/$pkgname/libffmpeg.so
+  ln -sf /usr/lib/libEGL.so "$pkgdir"/opt/$pkgname/libEGL.so
+  ln -sf /usr/lib/libGLESv2.so "$pkgdir"/opt/$pkgname/libGLESv2.so
+  ln -sf /usr/lib/libEGL.so "$pkgdir"/opt/$pkgname/swiftshader/libEGL.so
+  ln -sf /usr/lib/libGLESv2.so "$pkgdir"/opt/$pkgname/swiftshader/libGLESv2.so
+
+  # Licenses
+  install -Dm 644 LICENSE.html 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.html
+  install -Dm 644 OSS-LICENSES.html 
"$pkgdir"/usr/share/licenses/$pkgname/OSS-LICENSES.html
+}
+


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

2019-08-06 Thread Filipe Laíns via arch-commits
Date: Wednesday, August 7, 2019 @ 02:10:56
  Author: ffy00
Revision: 498114

archrelease: copy trunk to community-x86_64

Added:
  discord/repos/community-x86_64/
  discord/repos/community-x86_64/PKGBUILD
(from rev 498113, discord/trunk/PKGBUILD)
  discord/repos/community-x86_64/Permission_to_Distribute.mbox
(from rev 498113, discord/trunk/Permission_to_Distribute.mbox)

---+
 PKGBUILD  |   51 
 Permission_to_Distribute.mbox |   83 
 2 files changed, 134 insertions(+)

Copied: discord/repos/community-x86_64/PKGBUILD (from rev 498113, 
discord/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-08-07 02:10:56 UTC (rev 498114)
@@ -0,0 +1,51 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=discord
+_pkgname=Discord
+pkgver=0.0.9
+pkgrel=4
+pkgdesc="All-in-one voice and text chat for gamers that's free and secure."
+arch=('x86_64')
+url='https://discordapp.com'
+license=('custom')
+depends=('libnotify' 'libxss' 'nspr' 'nss'
+ 'opera-ffmpeg-codecs' 'libegl' 'libgles') # Replacements
+optdepends=('libpulse: Pulseaudio support'
+'xdg-utils: Open files')
+source=("https://dl.discordapp.net/apps/linux/$pkgver/$pkgname-$pkgver.tar.gz;
+'LICENSE.html::https://discordapp.com/terms'
+'OSS-LICENSES.html::https://discordapp.com/licenses')
+sha512sums=('ec1977a4eb83e1a563974c2f38c1f7d4126619aeb9899c4355395531550a767b8c8cf01d89d796b62c07d4959d148d04f1d77ff5797c0e08ca2b7eb7e0ee5c78'
+
'c83dfebe020d2529f64f3272b7ff8a8f49b2cb39df00b052fa82a279caf9a186440c3b4e6d894e01345ab6a6f6e7746deddc4f1caf2b9f96cf7fe99d253dcca4'
+
'9586ea3f7f10195eb0093057e20cbada252cd1cf2f913c5e425ffe3453fb02b08b528c7bbbf28f18754d23dfec0904cd0cafe9bc02822b50860495c968cfbfeb')
+
+prepare() {
+  sed -i "s|Exec=.*|Exec=/usr/bin/$pkgname|" $_pkgname/$pkgname.desktop
+}
+
+package() {
+  # Install the app
+  install -d "$pkgdir"/opt/$pkgname
+  cp -a $_pkgname/. "$pkgdir"/opt/$pkgname
+
+  chmod 755 "$pkgdir"/opt/$pkgname/$_pkgname
+
+  rm "$pkgdir"/opt/$pkgname/postinst.sh
+
+  install -d "$pkgdir"/usr/{bin,share/{pixmaps,applications}}
+  ln -s /opt/$pkgname/$_pkgname "$pkgdir"/usr/bin/$pkgname
+  ln -s /opt/$pkgname/discord.png "$pkgdir"/usr/share/pixmaps/$pkgname.png
+  ln -s /opt/$pkgname/$pkgname.desktop 
"$pkgdir"/usr/share/applications/$pkgname.desktop
+
+  # Replacement symlinks
+  ln -sf /usr/lib/opera/lib_extra/libffmpeg.so 
"$pkgdir"/opt/$pkgname/libffmpeg.so
+  ln -sf /usr/lib/libEGL.so "$pkgdir"/opt/$pkgname/libEGL.so
+  ln -sf /usr/lib/libGLESv2.so "$pkgdir"/opt/$pkgname/libGLESv2.so
+  ln -sf /usr/lib/libEGL.so "$pkgdir"/opt/$pkgname/swiftshader/libEGL.so
+  ln -sf /usr/lib/libGLESv2.so "$pkgdir"/opt/$pkgname/swiftshader/libGLESv2.so
+
+  # Licenses
+  install -Dm 644 LICENSE.html 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.html
+  install -Dm 644 OSS-LICENSES.html 
"$pkgdir"/usr/share/licenses/$pkgname/OSS-LICENSES.html
+}
+

Copied: discord/repos/community-x86_64/Permission_to_Distribute.mbox (from rev 
498113, discord/trunk/Permission_to_Distribute.mbox)
===
--- community-x86_64/Permission_to_Distribute.mbox  
(rev 0)
+++ community-x86_64/Permission_to_Distribute.mbox  2019-08-07 02:10:56 UTC 
(rev 498114)
@@ -0,0 +1,83 @@
+From kodie.good...@discordapp.com Thu Jun 13 20:34:56 2019
+Return-Path: 
+Delivered-To: ff...@archlinux.org
+Received: from orion.archlinux.org
+   by orion with LMTP
+   id wyBRH3CzAl2FUAAA+xzH6A
+   (envelope-from )
+   for ; Thu, 13 Jun 2019 20:34:56 +
+Received: from orion.archlinux.org (localhost [127.0.0.1])
+   by orion.archlinux.org (Postfix) with ESMTP id 66CA913517A922
+   for ; Thu, 13 Jun 2019 20:34:55 + (UTC)
+X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on orion
+X-Spam-Level: 
+X-Spam-Status: No, score=-1.1 required=5.0
+ tests=BAYES_00=-1,DKIM_SIGNED=0.1,
+ DKIM_VALID=-0.1,DKIM_VALID_AU=-0.1,HTML_MESSAGE=0.001,
+ RCVD_IN_DNSWL_NONE=-0.0001,SPF_HELO_NONE=0.001, T_DMARC_POLICY_QUAR=0.01
+ autolearn=ham autolearn_force=no version=3.4.2
+X-Spam-BL-Results:
+ 

+ [127.0.5.0]
+Received: from mail-lj1-x22c.google.com (mail-lj1-x22c.google.com
+ [IPv6:2a00:1450:4864:20::22c]) (using TLSv1.3 with cipher
+ TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384)
+ server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client
+ certificate requested) by orion.archlinux.org (Postfix) with ESMTPS for
+ ; Thu, 13 Jun 2019 20:34:55 + (UTC)
+Received: by mail-lj1-x22c.google.com with SMTP id s21so58292lji.8
+for ; Thu, 13 Jun 2019 13:34:55 -0700 (PDT)
+DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=discordapp.com;
+ s=gsuite; 

[arch-commits] Commit in discord/trunk (PKGBUILD Permission_to_Distribute.mbox)

2019-08-06 Thread Filipe Laíns via arch-commits
Date: Wednesday, August 7, 2019 @ 02:10:40
  Author: ffy00
Revision: 498113

upgpkg: discord 0.0.9-4

Added:
  discord/trunk/PKGBUILD
  discord/trunk/Permission_to_Distribute.mbox

---+
 PKGBUILD  |   51 
 Permission_to_Distribute.mbox |   83 
 2 files changed, 134 insertions(+)

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-07 02:10:40 UTC (rev 498113)
@@ -0,0 +1,51 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=discord
+_pkgname=Discord
+pkgver=0.0.9
+pkgrel=4
+pkgdesc="All-in-one voice and text chat for gamers that's free and secure."
+arch=('x86_64')
+url='https://discordapp.com'
+license=('custom')
+depends=('libnotify' 'libxss' 'nspr' 'nss'
+ 'opera-ffmpeg-codecs' 'libegl' 'libgles') # Replacements
+optdepends=('libpulse: Pulseaudio support'
+'xdg-utils: Open files')
+source=("https://dl.discordapp.net/apps/linux/$pkgver/$pkgname-$pkgver.tar.gz;
+'LICENSE.html::https://discordapp.com/terms'
+'OSS-LICENSES.html::https://discordapp.com/licenses')
+sha512sums=('ec1977a4eb83e1a563974c2f38c1f7d4126619aeb9899c4355395531550a767b8c8cf01d89d796b62c07d4959d148d04f1d77ff5797c0e08ca2b7eb7e0ee5c78'
+
'c83dfebe020d2529f64f3272b7ff8a8f49b2cb39df00b052fa82a279caf9a186440c3b4e6d894e01345ab6a6f6e7746deddc4f1caf2b9f96cf7fe99d253dcca4'
+
'9586ea3f7f10195eb0093057e20cbada252cd1cf2f913c5e425ffe3453fb02b08b528c7bbbf28f18754d23dfec0904cd0cafe9bc02822b50860495c968cfbfeb')
+
+prepare() {
+  sed -i "s|Exec=.*|Exec=/usr/bin/$pkgname|" $_pkgname/$pkgname.desktop
+}
+
+package() {
+  # Install the app
+  install -d "$pkgdir"/opt/$pkgname
+  cp -a $_pkgname/. "$pkgdir"/opt/$pkgname
+
+  chmod 755 "$pkgdir"/opt/$pkgname/$_pkgname
+
+  rm "$pkgdir"/opt/$pkgname/postinst.sh
+
+  install -d "$pkgdir"/usr/{bin,share/{pixmaps,applications}}
+  ln -s /opt/$pkgname/$_pkgname "$pkgdir"/usr/bin/$pkgname
+  ln -s /opt/$pkgname/discord.png "$pkgdir"/usr/share/pixmaps/$pkgname.png
+  ln -s /opt/$pkgname/$pkgname.desktop 
"$pkgdir"/usr/share/applications/$pkgname.desktop
+
+  # Replacement symlinks
+  ln -sf /usr/lib/opera/lib_extra/libffmpeg.so 
"$pkgdir"/opt/$pkgname/libffmpeg.so
+  ln -sf /usr/lib/libEGL.so "$pkgdir"/opt/$pkgname/libEGL.so
+  ln -sf /usr/lib/libGLESv2.so "$pkgdir"/opt/$pkgname/libGLESv2.so
+  ln -sf /usr/lib/libEGL.so "$pkgdir"/opt/$pkgname/swiftshader/libEGL.so
+  ln -sf /usr/lib/libGLESv2.so "$pkgdir"/opt/$pkgname/swiftshader/libGLESv2.so
+
+  # Licenses
+  install -Dm 644 LICENSE.html 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.html
+  install -Dm 644 OSS-LICENSES.html 
"$pkgdir"/usr/share/licenses/$pkgname/OSS-LICENSES.html
+}
+

Added: Permission_to_Distribute.mbox
===
--- Permission_to_Distribute.mbox   (rev 0)
+++ Permission_to_Distribute.mbox   2019-08-07 02:10:40 UTC (rev 498113)
@@ -0,0 +1,83 @@
+From kodie.good...@discordapp.com Thu Jun 13 20:34:56 2019
+Return-Path: 
+Delivered-To: ff...@archlinux.org
+Received: from orion.archlinux.org
+   by orion with LMTP
+   id wyBRH3CzAl2FUAAA+xzH6A
+   (envelope-from )
+   for ; Thu, 13 Jun 2019 20:34:56 +
+Received: from orion.archlinux.org (localhost [127.0.0.1])
+   by orion.archlinux.org (Postfix) with ESMTP id 66CA913517A922
+   for ; Thu, 13 Jun 2019 20:34:55 + (UTC)
+X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on orion
+X-Spam-Level: 
+X-Spam-Status: No, score=-1.1 required=5.0
+ tests=BAYES_00=-1,DKIM_SIGNED=0.1,
+ DKIM_VALID=-0.1,DKIM_VALID_AU=-0.1,HTML_MESSAGE=0.001,
+ RCVD_IN_DNSWL_NONE=-0.0001,SPF_HELO_NONE=0.001, T_DMARC_POLICY_QUAR=0.01
+ autolearn=ham autolearn_force=no version=3.4.2
+X-Spam-BL-Results:
+ 

+ [127.0.5.0]
+Received: from mail-lj1-x22c.google.com (mail-lj1-x22c.google.com
+ [IPv6:2a00:1450:4864:20::22c]) (using TLSv1.3 with cipher
+ TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384)
+ server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client
+ certificate requested) by orion.archlinux.org (Postfix) with ESMTPS for
+ ; Thu, 13 Jun 2019 20:34:55 + (UTC)
+Received: by mail-lj1-x22c.google.com with SMTP id s21so58292lji.8
+for ; Thu, 13 Jun 2019 13:34:55 -0700 (PDT)
+DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=discordapp.com;
+ s=gsuite; h=mime-version:from:date:message-id:subject:to;
+ bh=LH86dlRYf6cqMyDrtGzBANXLtw1whsnDEezLkFI0V0U=;
+ b=Hn3WJ4XVxRhqkyBToNcRDJR+J2SLLDu+8cVKrCvb6qmXbkUFMP5KjTF0lqRnDmdpU8
+ nRoVXvHLxfuMFyXEAaqWysKomIsfviYpcjPuwsFOawCUkBTlmNrh4AnpQJLdYhqq4EGO
+ Tuu+XuRQSI3xXGlLbf+mROw6t0xr68hGGh3rmVnooweqnOI9Rk0teBp6cMu2KjaF+Dxa
+ zZc/kW3Wn5Kn8GMuNaOptGDQ3xxt3f31aLUCR31uchnSrQngUHQGtXIrAnxQKvoFeTAZ
+ 

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

2019-08-06 Thread Jan Steffens via arch-commits
Date: Wednesday, August 7, 2019 @ 01:53:36
  Author: heftig
Revision: 359274

archrelease: copy trunk to extra-x86_64

Added:
  nautilus/repos/extra-x86_64/PKGBUILD
(from rev 359273, nautilus/trunk/PKGBUILD)
Deleted:
  nautilus/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-07 01:53:28 UTC (rev 359273)
+++ PKGBUILD2019-08-07 01:53:36 UTC (rev 359274)
@@ -1,66 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgbase=nautilus
-pkgname=(nautilus libnautilus-extension)
-pkgver=3.32.2
-pkgrel=1
-pkgdesc="Default file manager for GNOME"
-url="https://wiki.gnome.org/Apps/Nautilus;
-arch=(x86_64)
-license=(GPL)
-depends=(libgexiv2 gnome-desktop gvfs dconf tracker nautilus-sendto 
gnome-autoar
- gst-plugins-base-libs tracker-miners)
-makedepends=(gobject-introspection git gtk-doc meson appstream-glib)
-options=(!emptydirs)
-_commit=0ef5667a09eec35fc053cb5305ae39cc1c990ecd  # tags/3.32.2^0
-source=("git+https://gitlab.gnome.org/GNOME/nautilus.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/libgd.git;)
-sha256sums=('SKIP'
-'SKIP')
-
-prepare() {
-  cd $pkgbase
-
-  git submodule init
-  git config --local submodule.subprojects/libgd.url "$srcdir/libgd"
-  git submodule update
-}
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  arch-meson $pkgbase build \
--D docs=true \
--D packagekit=false
-  ninja -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package_nautilus() {
-  depends+=(libnautilus-extension)
-  groups=(gnome)
-
-  DESTDIR="$pkgdir" meson install -C build
-
-### Split libnautilus-extension
-
-  mkdir -p libne/{lib,share}
-  mv "$pkgdir"/usr/include libne
-  mv "$pkgdir"/usr/lib/{girepository-1.0,libnautilus-extension*,pkgconfig} 
libne/lib
-  mv "$pkgdir"/usr/share/{gir-1.0,gtk-doc} libne/share
-}
-
-package_libnautilus-extension() {
-  pkgdesc="Library for extending the $pkgdesc"
-  depends=(gtk3)
-  mv libne "$pkgdir/usr"
-}
-
-# vim:set sw=2 et:

Copied: nautilus/repos/extra-x86_64/PKGBUILD (from rev 359273, 
nautilus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-07 01:53:36 UTC (rev 359274)
@@ -0,0 +1,66 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgbase=nautilus
+pkgname=(nautilus libnautilus-extension)
+pkgver=3.32.3
+pkgrel=1
+pkgdesc="Default file manager for GNOME"
+url="https://wiki.gnome.org/Apps/Nautilus;
+arch=(x86_64)
+license=(GPL)
+depends=(libgexiv2 gnome-desktop gvfs dconf tracker nautilus-sendto 
gnome-autoar
+ gst-plugins-base-libs tracker-miners)
+makedepends=(gobject-introspection git gtk-doc meson appstream-glib)
+options=(!emptydirs)
+_commit=6b062dc691d8853284bddeaa6b74fe020350f4e9  # tags/3.32.3^0
+source=("git+https://gitlab.gnome.org/GNOME/nautilus.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/libgd.git;)
+sha256sums=('SKIP'
+'SKIP')
+
+prepare() {
+  cd $pkgbase
+
+  git submodule init
+  git config --local submodule.subprojects/libgd.url "$srcdir/libgd"
+  git submodule update
+}
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+build() {
+  arch-meson $pkgbase build \
+-D docs=true \
+-D packagekit=false
+  ninja -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package_nautilus() {
+  depends+=(libnautilus-extension)
+  groups=(gnome)
+
+  DESTDIR="$pkgdir" meson install -C build
+
+### Split libnautilus-extension
+
+  mkdir -p libne/{lib,share}
+  mv "$pkgdir"/usr/include libne
+  mv "$pkgdir"/usr/lib/{girepository-1.0,libnautilus-extension*,pkgconfig} 
libne/lib
+  mv "$pkgdir"/usr/share/{gir-1.0,gtk-doc} libne/share
+}
+
+package_libnautilus-extension() {
+  pkgdesc="Library for extending the $pkgdesc"
+  depends=(gtk3)
+  mv libne "$pkgdir/usr"
+}
+
+# vim:set sw=2 et:


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

2019-08-06 Thread Jan Steffens via arch-commits
Date: Wednesday, August 7, 2019 @ 01:53:28
  Author: heftig
Revision: 359273

3.32.3-1

Modified:
  nautilus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 22:43:49 UTC (rev 359272)
+++ PKGBUILD2019-08-07 01:53:28 UTC (rev 359273)
@@ -3,7 +3,7 @@
 
 pkgbase=nautilus
 pkgname=(nautilus libnautilus-extension)
-pkgver=3.32.2
+pkgver=3.32.3
 pkgrel=1
 pkgdesc="Default file manager for GNOME"
 url="https://wiki.gnome.org/Apps/Nautilus;
@@ -13,7 +13,7 @@
  gst-plugins-base-libs tracker-miners)
 makedepends=(gobject-introspection git gtk-doc meson appstream-glib)
 options=(!emptydirs)
-_commit=0ef5667a09eec35fc053cb5305ae39cc1c990ecd  # tags/3.32.2^0
+_commit=6b062dc691d8853284bddeaa6b74fe020350f4e9  # tags/3.32.3^0
 source=("git+https://gitlab.gnome.org/GNOME/nautilus.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/libgd.git;)
 sha256sums=('SKIP'


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

2019-08-06 Thread Andrew Crerar via arch-commits
Date: Wednesday, August 7, 2019 @ 00:02:22
  Author: andrewsc
Revision: 498112

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  448 ++---
 1 file changed, 224 insertions(+), 224 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-07 00:01:58 UTC (rev 498111)
+++ PKGBUILD2019-08-07 00:02:22 UTC (rev 498112)
@@ -1,224 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=69.0b10
-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"'
-  '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 (US)"'
-  '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"'
-  'tr "Turkish"'
-  '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/devedition/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=('4e08cb433c6221da2b5ca5b43e5e494a2c78554b29a8df4ebf247a427176d6d7669d20d2503c886854b96d7cc94ac9076bd270da75372aba87d699126297'
-
'157e6a99ca437eabae6fcdbc77fd32be3859412032b47e5c98d07ec791931ecff8118f8b62893964c79958300394c9e00a34a8e107dc3a64c30765079ec0c3e1'
-
'4f4c7bda1b1fdf8c675c7f2c9436aba16fae59f15062d31e8290fd26c30a6bc4504ffaf463c948ae091116cae917f3ca3c669219b0220fcd1845cc9222f31c7f'
-
'c506e213687f70f50db81127c1f8e8e5b1b0f7297186531eae46215bf1fbc73b6ec29c37595b7b13ba86816bacf955ca928962750301d6c4cc3781ba9cdddada'
-
'77d06afd169ff568458398e0df0ee95a8b2f6a1dc6845f8ce5ef6457084e516b191a6ff7875511a510be1b9a49183b0a5ad5739793a01c2d72fbd819cc1b4ce4'
-
'49ab809878e94397e4aef36d7ee0f1bcfb0075680943260c35e1a2a5a0fc91b61ecd431993af74c1d18e635120e37e738ac5672a2e9751253905e072b7b32144'
-
'bf0d6a1371f7e081006bdce9f687bfda3f213b880757832b501ebe56c456b1cafe6f6f86328552a09019348f5ca2dc5a59ac633ec904fb71984b79cd72975170'
-

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

2019-08-06 Thread Andrew Crerar via arch-commits
Date: Wednesday, August 7, 2019 @ 00:01:58
  Author: andrewsc
Revision: 498111

upgpkg: firefox-developer-edition-i18n 69.0b11-1

firefox-developer-edition-i18n: Updating to 69.0b11

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

--+
 PKGBUILD |  188 ++---
 1 file changed, 94 insertions(+), 94 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 23:55:48 UTC (rev 498110)
+++ PKGBUILD2019-08-07 00:01:58 UTC (rev 498111)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=69.0b10
+pkgver=69.0b11
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -129,96 +129,96 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
 }
 
-sha512sums=('4e08cb433c6221da2b5ca5b43e5e494a2c78554b29a8df4ebf247a427176d6d7669d20d2503c886854b96d7cc94ac9076bd270da75372aba87d699126297'
-
'157e6a99ca437eabae6fcdbc77fd32be3859412032b47e5c98d07ec791931ecff8118f8b62893964c79958300394c9e00a34a8e107dc3a64c30765079ec0c3e1'
-
'4f4c7bda1b1fdf8c675c7f2c9436aba16fae59f15062d31e8290fd26c30a6bc4504ffaf463c948ae091116cae917f3ca3c669219b0220fcd1845cc9222f31c7f'
-
'c506e213687f70f50db81127c1f8e8e5b1b0f7297186531eae46215bf1fbc73b6ec29c37595b7b13ba86816bacf955ca928962750301d6c4cc3781ba9cdddada'
-
'77d06afd169ff568458398e0df0ee95a8b2f6a1dc6845f8ce5ef6457084e516b191a6ff7875511a510be1b9a49183b0a5ad5739793a01c2d72fbd819cc1b4ce4'
-
'49ab809878e94397e4aef36d7ee0f1bcfb0075680943260c35e1a2a5a0fc91b61ecd431993af74c1d18e635120e37e738ac5672a2e9751253905e072b7b32144'
-
'bf0d6a1371f7e081006bdce9f687bfda3f213b880757832b501ebe56c456b1cafe6f6f86328552a09019348f5ca2dc5a59ac633ec904fb71984b79cd72975170'
-
'580b4a259f8cf79ed27d9e39bc9502d7744acb246af934260a685552e33cc916b59d66b2b950e012f0fc0c8c66366c98b94238814f21e2c720cfb1a1c48b23e4'
-
'435f162d0b723d03ecb6bd49c054207d548106b5a332bfb2cb2ca0fd2cfeb1e8e6f36a567bec3b2b0ef607ee898446012d8b409980d8a231e55ce82a74c9e39e'
-
'2f2a41dcbbe7d76494e7b52e4aa461f7ae8cbd877cab20bae4aa84c5ba2b757ecf166f2433f8d5fe29134e29e7fd747d147c9296a6fdd1320a54f141fd922105'
-
'dcef7e87ffd746eaf5827a562f0fde8013758cc1ae5f48adb4d36ba729c1fa37efd2639b745bd65a8a51c2054e4d817230c091cab099fe34abb39e060d55e0fa'
-
'e91142c4e49148a03ea1bbadb677c18e51a144ce889dfbfe4042167d67e8c443e4705a922734b2067cb2240d85034ee2bd9813015113cf3c3a1181139737b2e8'
-
'8300c5f5993819e467ae21915d3ff64db447c6b6d6de65c54ad5888bcf5bf2fc841199b89eb989ba37f9a5fd07a06704a1f4a78fa07327030fb16186cdf91afa'
-
'da13384268a591d0cf16c12679886c7b69ee1d4ae1b2829945ee35435b5c49bf7d86217d5af5f5a0b52f428cd2d22d00917436f422716e70013c8784c114fba8'
-
'a3922a3af77a654f0e69d62a2480713c303f7ca880aefb3402993ee368f992cecc7c9bfa4a99f8803b9b143280567ac2f499ed158d968ce61b22c772d197bcb5'
-
'd708a83c7e054cf8332d584f0afcb69c3708d41b028361ea2a1baf318f44e35f5ca986b125ded20a60c96f20431d2a1717e589ed25239f8134b6dcf1f27d1898'
-
'09769d36c6d7a71f30baa2d6dd97de46a09a96b855109d3e684d8b8a96b49c0586c6c93184c02d899df567cfcd2f4612e1ed7a99b3e08d8e3e862a055d441212'
-
'cbe4147d95ee89c55b060b6324af9470b6f758333944a780b158d8c4a5986afd6d780cfe5d77a98f63e83d781f8b67babfcdf13790a35d611679ea59dfc27b84'
-
'c3dc228ecbad42718ebd6091efd3e5970d21a07ee00abd2027e1e1d7b939abe1d1551677cd7d96b7ac125694f5662418963531aeab01c40ebc051b2945e83169'
-
'554d51f6b6af1ffc58509a0d33856e90aa538b6cc1866ec4b64557a145636775454793110b5c15774203db6360a7497315bc106b75d847ce93fcda9076527ed3'
-
'32862698c4facf7c9e6211a023872df5c57f5cc485e7c26404af9d162b58c26d73eb33dc14a637fd390212c0d269b4c8bd66329d52b5ebde005d85c717d20be4'
-
'2dbe8629624a38554c6c40fe6d2a219cc043527ddafd4065e25e3bd4de08bc0fa9bdd72b1038d457092dfe88eab9f0a95a9f5ac8470bffa931f068595dbadb4c'
-
'91d43c917ed14eb9f8994c6c208747feb3499191432996e28678d9581b7d73d894920a276463c07121aa22d2807b1d82529fcfb77dbf02930ea05d6e6d1b80d8'
-
'e13ca2b3e7de950e90e587e0690b24dec9e9386feef5e26ed3a2b5c4c84442068f77805a8400309b5192d1bd6c5265bdbd2a2bbd6d44d09cf4ad7cac3a85fc3d'
-
'cdb68cdb3ebfa0d838d02a6852929e7c9bf7eef22ebd951508a2a0add4d2ee9bbc7be3df57463df67527fbb24993b6b4b55ad2e28fe59ae28c28c4e53ab5bfca'
-
'f15244f623df33767a9f74bf9e78748294c2b60594a7249c03d952cd8d941bf02c62753acf65b5f5396efbb4478924ea720499e3d085aa56eb9ee96ffbfd7b80'
-
'54c847819c1e407cdc82965b6f33de821b3f3c7c815405dff2ea3ff90163544f3990f93cbb7bb269778227a5231117de86c5f07e720f5c1ef20dbd90a2fdd695'
-
'3575bffeefa4c2d3dfea677b69a23cfb8479f06d03877f0503ce1e255d9740640c19c3488193e25ec47b45b81e2efe2ad372b653090abc3345b9c017e3d447bd'
-

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

2019-08-06 Thread Andrew Crerar via arch-commits
Date: Tuesday, August 6, 2019 @ 23:55:48
  Author: andrewsc
Revision: 498110

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 498109, 
firefox-developer-edition/trunk/0001-Use-remoting-name-for-GDK-application-names.patch)
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
(from rev 498109, firefox-developer-edition/trunk/PKGBUILD)
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
(from rev 498109, 
firefox-developer-edition/trunk/firefox-developer-edition.desktop)
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
(from rev 498109, firefox-developer-edition/trunk/firefox-install-dir.patch)
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg
(from rev 498109, firefox-developer-edition/trunk/firefox-symbolic.svg)
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
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg

+
 0001-Use-remoting-name-for-GDK-application-names.patch |  112 +-
 PKGBUILD   |  434 -
 firefox-developer-edition.desktop  |  680 +++
 firefox-install-dir.patch  |   86 -
 firefox-symbolic.svg   |  128 +-
 5 files changed, 720 insertions(+), 720 deletions(-)

Deleted: 0001-Use-remoting-name-for-GDK-application-names.patch
===
--- 0001-Use-remoting-name-for-GDK-application-names.patch  2019-08-06 
23:55:23 UTC (rev 498109)
+++ 0001-Use-remoting-name-for-GDK-application-names.patch  2019-08-06 
23:55:48 UTC (rev 498110)
@@ -1,56 +0,0 @@
-From 1cab10b39cfda068100cab8c598f1ca0f50e4131 Mon Sep 17 00:00:00 2001
-Message-Id: 
<1cab10b39cfda068100cab8c598f1ca0f50e4131.1553597287.git.jan.steff...@gmail.com>
-From: "Jan Alexander Steffens (heftig)" 
-Date: Mon, 25 Mar 2019 20:30:11 +0100
-Subject: [PATCH] Use remoting name for GDK application names
-

- toolkit/xre/nsAppRunner.cpp | 6 +-
- widget/gtk/nsAppShell.cpp   | 7 +++
- 2 files changed, 4 insertions(+), 9 deletions(-)
-
-diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
-index 0b808ef215f06..28911c0ffeaec 100644
 a/toolkit/xre/nsAppRunner.cpp
-+++ b/toolkit/xre/nsAppRunner.cpp
-@@ -3728,11 +3728,7 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
-   // 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
-index 0686ff814916b..ae4a4ea55f420 100644
 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"
-@@ -171,10 +172,8 @@ nsresult nsAppShell::Init() {
- // option when program uses gdk_set_program_class().
- //
- // See https://bugzilla.gnome.org/show_bug.cgi?id=747634
--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);
- }
-   }
- 
--- 
-2.21.0
-

Copied: 
firefox-developer-edition/repos/community-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
 (from rev 498109, 
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  2019-08-06 
23:55:48 UTC (rev 498110)
@@ -0,0 +1,56 @@
+From 1cab10b39cfda068100cab8c598f1ca0f50e4131 Mon Sep 17 00:00:00 2001
+Message-Id: 
<1cab10b39cfda068100cab8c598f1ca0f50e4131.1553597287.git.jan.steff...@gmail.com>
+From: "Jan Alexander Steffens (heftig)" 
+Date: Mon, 25 Mar 2019 20:30:11 +0100
+Subject: [PATCH] Use remoting name for GDK application names
+
+---
+ toolkit/xre/nsAppRunner.cpp | 6 +-
+ widget/gtk/nsAppShell.cpp   | 7 +++
+ 2 

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

2019-08-06 Thread Andrew Crerar via arch-commits
Date: Tuesday, August 6, 2019 @ 23:55:23
  Author: andrewsc
Revision: 498109

upgpkg: firefox-developer-edition 69.0b11-1

firefox-developer-edition: Updating to 69.0b11

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 23:02:00 UTC (rev 498108)
+++ PKGBUILD2019-08-06 23:55:23 UTC (rev 498109)
@@ -2,8 +2,8 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=69.0b10
-pkgrel=2
+pkgver=69.0b11
+pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')
 license=('MPL' 'GPL' 'LGPL')
@@ -24,7 +24,7 @@
 firefox-install-dir.patch
 0001-Use-remoting-name-for-GDK-application-names.patch
 "$pkgname".desktop firefox-symbolic.svg)
-sha512sums=('ab93285dffb2abdad96c4586fe5cd67bd86d2346eb1ae56f54d2802540676b81a79377466153ecb9a4a47337b3b36323bab7e4262ab87ef76bf905b7ac7b49b6'
+sha512sums=('38c905c25e1458642d9d931553093aa6c9a2e61cd2818966bad0f29305955d8154162f7670e2f909835a95da7965f176445eca189413eaacbad3df873bc4c6fd'
 'SKIP'
 
'b66dbe7f262d036e5a5b895ab5b0dbb03313bca18b0823c001ef2dbaeb1a33169b57db0cf4dfd268499f28913845119902b5d62e8a6a9cc4820eb0ee2f322a1e'
 
'40c931b8abbe5880122dbcc93d457e04e9b4f2bc3e0275e9e3e35dd347fe0658f9446c89e99553203be8a8c9ab6f4ca872a7aedc514920c107b9235c04df91dc'


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

2019-08-06 Thread Alad Wenter via arch-commits
Date: Tuesday, August 6, 2019 @ 23:02:00
  Author: alad
Revision: 498108

archrelease: copy trunk to community-x86_64

Added:
  i3lock-color/repos/community-x86_64/
  
i3lock-color/repos/community-x86_64/0001-Also-pass-screen-brightness-keys-as-media-keys.patch
(from rev 498107, 
i3lock-color/trunk/0001-Also-pass-screen-brightness-keys-as-media-keys.patch)
  i3lock-color/repos/community-x86_64/PKGBUILD
(from rev 498107, i3lock-color/trunk/PKGBUILD)

---+
 0001-Also-pass-screen-brightness-keys-as-media-keys.patch |   55 
 PKGBUILD  |   40 
 2 files changed, 95 insertions(+)

Copied: 
i3lock-color/repos/community-x86_64/0001-Also-pass-screen-brightness-keys-as-media-keys.patch
 (from rev 498107, 
i3lock-color/trunk/0001-Also-pass-screen-brightness-keys-as-media-keys.patch)
===
--- community-x86_64/0001-Also-pass-screen-brightness-keys-as-media-keys.patch  
(rev 0)
+++ community-x86_64/0001-Also-pass-screen-brightness-keys-as-media-keys.patch  
2019-08-06 23:02:00 UTC (rev 498108)
@@ -0,0 +1,55 @@
+From e71a208aab9f1530be80f6405bd0596dfca35a3a Mon Sep 17 00:00:00 2001
+From: Alad Wenter 
+Date: Wed, 7 Aug 2019 00:47:21 +0200
+Subject: [PATCH] Also pass screen brightness keys as media keys
+
+Rebase of upstream commits:
+
+ 2a6545e5bbc2d5d1f20ac71a45cabef27113d7cd # Also pass screen brightness keys 
as media keys 
+ 2766a1380818d70b7b8ed41b6aaca1124e11c790 # Add docs about passing of media 
keys 
+ 71cf4bda1b6f37847fae95de2f035995454743cd # Add long option for media key 
passing to docs 
+---
+ i3lock.1 | 6 ++
+ i3lock.c | 2 ++
+ 2 files changed, 8 insertions(+)
+
+diff --git a/i3lock.1 b/i3lock.1
+index 761a6bd..f388a09 100644
+--- a/i3lock.1
 b/i3lock.1
+@@ -28,6 +28,7 @@ i3lock-color \- improved screen locker
+ .RB [\|\-u\|]
+ .RB [\|\-e\|]
+ .RB [\|\-f\|]
++.RB [\|\-m\|]
+ 
+ .SH DESCRIPTION
+ .B i3lock-color
+@@ -121,6 +122,11 @@ Note that this number is zero indexed. The ordering is 
dependent on libxinerama.
+ Captures the screen and blurs it using the given sigma (radius).
+ Images may still be overlaid over the blurred screenshot.
+ 
++.TP
++.B \-m, \-\-pass-media-keys
++Allow the following keys to be used while the screen is locked by passing 
them through:
++XF86AudioPlay, XF86AudioPause, XF86AudioStop, XF86AudioPrev, XF86AudioNext, 
XF86AudioMu
++
+ .TP
+ .B \-\-indicator
+ Forces the indicator to always be visible, instead of only showing on 
activity.
+diff --git a/i3lock.c b/i3lock.c
+index d3fcee8..7926599 100644
+--- a/i3lock.c
 b/i3lock.c
+@@ -652,6 +652,8 @@ static void handle_key_press(xcb_key_press_event_t *event) 
{
+ case XKB_KEY_XF86AudioMute:
+ case XKB_KEY_XF86AudioLowerVolume:
+ case XKB_KEY_XF86AudioRaiseVolume:
++case XKB_KEY_XF86MonBrightnessUp:
++case XKB_KEY_XF86MonBrightnessDown:
+ xcb_send_event(conn, true, screen->root, 
XCB_EVENT_MASK_BUTTON_PRESS, (char *)event);
+ return;
+ }
+-- 
+2.22.0
+

Copied: i3lock-color/repos/community-x86_64/PKGBUILD (from rev 498107, 
i3lock-color/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-08-06 23:02:00 UTC (rev 498108)
@@ -0,0 +1,40 @@
+# Maintainer: Alad Wenter 
+# Contributor: ibrokemypie 
+pkgname=i3lock-color
+pkgver=2.12.c
+pkgrel=1
+_commit=60d68356db80549cb6e40a093b2f884b500aac44 # 2.12.c
+pkgdesc="improved screenlocker with color configuration support"
+arch=('x86_64')
+url=https://github.com/PandorasFox/i3lock-color
+license=('MIT')
+depends=('xcb-util-image' 'pam' 'libev' 'cairo' 'libxkbcommon-x11'
+ 'libjpeg-turbo' 'xcb-util-xrm' 'pkgconf')
+makedepends=('git')
+provides=('i3lock')
+conflicts=('i3lock')
+source=("$pkgname-$pkgver::git+https://github.com/PandorasFox/$pkgname#commit=$_commit;
+'0001-Also-pass-screen-brightness-keys-as-media-keys.patch')
+sha256sums=('SKIP'
+'f09ebac78d0f021449734fe38afbc9e389a350255ba88cd5a89d86988fe639db')
+
+prepare() {
+cd "$pkgname-$pkgver"
+patch -p1 < 
"$srcdir"/0001-Also-pass-screen-brightness-keys-as-media-keys.patch
+
+   # Fix ticket FS#31544, sed line taken from gentoo
+   sed -i -e 's:login:system-auth:' pam/i3lock 
+autoreconf -fiv
+}
+
+build() {
+cd "$pkgname-$pkgver"
+./configure --prefix=/usr --sysconfdir=/etc
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" install
+
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in (5 files)

2019-08-06 Thread Alad Wenter via arch-commits
Date: Tuesday, August 6, 2019 @ 23:01:44
  Author: alad
Revision: 498107

add i3lock-color

While there have been some previous concerns that the features in this fork
should be proposed upstream, it has now diverged so far from upstream in terms
of available feature, that one could speak from an entirely different screen
locker. One could say that i3lock-color is to i3lock, what i3lock was to slock.

Other distributions seem to agree, e.g. i3lock-color is packaged in void linux
and NixOS.

Added:
  i3lock-color/
  i3lock-color/repos/
  i3lock-color/trunk/
  i3lock-color/trunk/0001-Also-pass-screen-brightness-keys-as-media-keys.patch
  i3lock-color/trunk/PKGBUILD

---+
 0001-Also-pass-screen-brightness-keys-as-media-keys.patch |   55 
 PKGBUILD  |   40 
 2 files changed, 95 insertions(+)

Added: 
i3lock-color/trunk/0001-Also-pass-screen-brightness-keys-as-media-keys.patch
===
--- 
i3lock-color/trunk/0001-Also-pass-screen-brightness-keys-as-media-keys.patch
(rev 0)
+++ 
i3lock-color/trunk/0001-Also-pass-screen-brightness-keys-as-media-keys.patch
2019-08-06 23:01:44 UTC (rev 498107)
@@ -0,0 +1,55 @@
+From e71a208aab9f1530be80f6405bd0596dfca35a3a Mon Sep 17 00:00:00 2001
+From: Alad Wenter 
+Date: Wed, 7 Aug 2019 00:47:21 +0200
+Subject: [PATCH] Also pass screen brightness keys as media keys
+
+Rebase of upstream commits:
+
+ 2a6545e5bbc2d5d1f20ac71a45cabef27113d7cd # Also pass screen brightness keys 
as media keys 
+ 2766a1380818d70b7b8ed41b6aaca1124e11c790 # Add docs about passing of media 
keys 
+ 71cf4bda1b6f37847fae95de2f035995454743cd # Add long option for media key 
passing to docs 
+---
+ i3lock.1 | 6 ++
+ i3lock.c | 2 ++
+ 2 files changed, 8 insertions(+)
+
+diff --git a/i3lock.1 b/i3lock.1
+index 761a6bd..f388a09 100644
+--- a/i3lock.1
 b/i3lock.1
+@@ -28,6 +28,7 @@ i3lock-color \- improved screen locker
+ .RB [\|\-u\|]
+ .RB [\|\-e\|]
+ .RB [\|\-f\|]
++.RB [\|\-m\|]
+ 
+ .SH DESCRIPTION
+ .B i3lock-color
+@@ -121,6 +122,11 @@ Note that this number is zero indexed. The ordering is 
dependent on libxinerama.
+ Captures the screen and blurs it using the given sigma (radius).
+ Images may still be overlaid over the blurred screenshot.
+ 
++.TP
++.B \-m, \-\-pass-media-keys
++Allow the following keys to be used while the screen is locked by passing 
them through:
++XF86AudioPlay, XF86AudioPause, XF86AudioStop, XF86AudioPrev, XF86AudioNext, 
XF86AudioMu
++
+ .TP
+ .B \-\-indicator
+ Forces the indicator to always be visible, instead of only showing on 
activity.
+diff --git a/i3lock.c b/i3lock.c
+index d3fcee8..7926599 100644
+--- a/i3lock.c
 b/i3lock.c
+@@ -652,6 +652,8 @@ static void handle_key_press(xcb_key_press_event_t *event) 
{
+ case XKB_KEY_XF86AudioMute:
+ case XKB_KEY_XF86AudioLowerVolume:
+ case XKB_KEY_XF86AudioRaiseVolume:
++case XKB_KEY_XF86MonBrightnessUp:
++case XKB_KEY_XF86MonBrightnessDown:
+ xcb_send_event(conn, true, screen->root, 
XCB_EVENT_MASK_BUTTON_PRESS, (char *)event);
+ return;
+ }
+-- 
+2.22.0
+

Added: i3lock-color/trunk/PKGBUILD
===
--- i3lock-color/trunk/PKGBUILD (rev 0)
+++ i3lock-color/trunk/PKGBUILD 2019-08-06 23:01:44 UTC (rev 498107)
@@ -0,0 +1,40 @@
+# Maintainer: Alad Wenter 
+# Contributor: ibrokemypie 
+pkgname=i3lock-color
+pkgver=2.12.c
+pkgrel=1
+_commit=60d68356db80549cb6e40a093b2f884b500aac44 # 2.12.c
+pkgdesc="improved screenlocker with color configuration support"
+arch=('x86_64')
+url=https://github.com/PandorasFox/i3lock-color
+license=('MIT')
+depends=('xcb-util-image' 'pam' 'libev' 'cairo' 'libxkbcommon-x11'
+ 'libjpeg-turbo' 'xcb-util-xrm' 'pkgconf')
+makedepends=('git')
+provides=('i3lock')
+conflicts=('i3lock')
+source=("$pkgname-$pkgver::git+https://github.com/PandorasFox/$pkgname#commit=$_commit;
+'0001-Also-pass-screen-brightness-keys-as-media-keys.patch')
+sha256sums=('SKIP'
+'f09ebac78d0f021449734fe38afbc9e389a350255ba88cd5a89d86988fe639db')
+
+prepare() {
+cd "$pkgname-$pkgver"
+patch -p1 < 
"$srcdir"/0001-Also-pass-screen-brightness-keys-as-media-keys.patch
+
+   # Fix ticket FS#31544, sed line taken from gentoo
+   sed -i -e 's:login:system-auth:' pam/i3lock 
+autoreconf -fiv
+}
+
+build() {
+cd "$pkgname-$pkgver"
+./configure --prefix=/usr --sysconfdir=/etc
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" install
+
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 22:43:49
  Author: anthraxx
Revision: 359272

archrelease: copy trunk to extra-x86_64

Added:
  clamav/repos/extra-x86_64/PKGBUILD
(from rev 359271, clamav/trunk/PKGBUILD)
  clamav/repos/extra-x86_64/clamav.logrotate
(from rev 359271, clamav/trunk/clamav.logrotate)
  clamav/repos/extra-x86_64/clamav.sysusers
(from rev 359271, clamav/trunk/clamav.sysusers)
  clamav/repos/extra-x86_64/clamav.tmpfiles
(from rev 359271, clamav/trunk/clamav.tmpfiles)
Deleted:
  clamav/repos/extra-x86_64/PKGBUILD
  clamav/repos/extra-x86_64/clamav.logrotate
  clamav/repos/extra-x86_64/clamav.sysusers
  clamav/repos/extra-x86_64/clamav.tmpfiles

--+
 PKGBUILD |  184 ++---
 clamav.logrotate |   22 +++---
 clamav.sysusers  |2 
 clamav.tmpfiles  |6 -
 4 files changed, 107 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 22:43:43 UTC (rev 359271)
+++ PKGBUILD2019-08-06 22:43:49 UTC (rev 359272)
@@ -1,92 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Dale Blount 
-# Contributor: Gregor Ibic 
-# Contributor: Gaetan Bisson 
-
-pkgname=clamav
-pkgver=0.101.2
-pkgrel=1
-pkgdesc='Anti-virus toolkit for Unix'
-url='https://www.clamav.net/'
-license=('GPL')
-arch=('x86_64')
-depends=('bzip2' 'libltdl' 'libxml2' 'curl' 'systemd-libs' 'pcre2' 'json-c' 
'libmspack')
-makedepends=('libmilter' 'systemd')
-checkdepends=('check')
-backup=('etc/clamav/clamd.conf'
-'etc/clamav/freshclam.conf'
-'etc/clamav/clamav-milter.conf'
-'etc/logrotate.d/clamav')
-provides=(libclamav.so libclamunrar.so libclamunrar_iface.so)
-source=(https://www.clamav.net/downloads/production/${pkgname}-${pkgver}.tar.gz{,.sig}
-clamav.logrotate
-clamav.tmpfiles
-clamav.sysusers)
-sha512sums=('f9ea4589a8081acf7b6d454d1a068da05ae6574a9070a08f9438935795cb6dc084ffb9222b11fb1623f31962f859e6536a2f5bd1de29ef6b9b314efa5edc8c7e'
-'SKIP'
-
'9cb168c1c16bb43c99900d7ef34456e3f3b593d4d1943c875a0306bc86fd3872cb78e9e1413dcba93579e01b96d466c9eea1975e24190193663b7986c4525d48'
-
'c5443634399bd87fe0d0192518538ffdb7296a8437b5b0160a0fbd58696b01285de3237e3feb552c0095c49e576832dec2e2b2107eef2be42424ed7edd13cd19'
-
'b984836f6c34d97b90d81fa5d17361a2e3f8c0cc709e3350a4d25cf088dc04f7bf2504359980c8be489c96b1b8798c60e6da533069d3378d49d4f50f929a2c90')
-validpgpkeys=('65ED513993F08DA06F9639A6F13F9E16BCA5BFAD') # Talos (Talos, 
Cisco Systems Inc.) 
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed -E 's|^(Example)$|#\1|' -i 
etc/{clamd,freshclam,clamav-milter}.conf.sample
-  sed -E 's|#(User) .+|\1 clamav|' -i 
etc/{clamd,freshclam,clamav-milter}.conf.sample
-  sed -E 's|#(LogFile) .+|\1 /var/log/clamav/clamd.log|' -i 
etc/clamd.conf.sample
-  sed -E 's|#(LogTime) .+|\1 yes|' -i etc/clamd.conf.sample 
etc/clamav-milter.conf.sample
-  sed -E 's|#(PidFile) .+|\1 /run/clamav/clamd.pid|' -i etc/clamd.conf.sample
-  sed -E 's|#(TemporaryDirectory) .+|\1 /tmp|' -i 
etc/{clamd,clamav-milter}.conf.sample
-  sed -E 's|#(LocalSocket) .+|\1 /run/clamav/clamd.ctl|' -i 
etc/clamd.conf.sample
-  sed -E 's|#(UpdateLogFile) .+|\1 /var/log/clamav/freshclam.log|' -i 
etc/freshclam.conf.sample
-  sed -E 's|#(DatabaseMirror) .+|\1 database.clamav.net|' -i 
etc/freshclam.conf.sample
-  sed -E 's|#(NotifyClamd) .+|\1 /etc/clamav/clamd.conf|' -i 
etc/freshclam.conf.sample
-  sed -E 's|#(PidFile) .+|\1 /run/clamav/freshclam.pid|' -i 
etc/freshclam.conf.sample
-  sed -E 's|#(LogFile) .+|\1 /var/log/clamav/clamav-milter.log|' -i 
etc/clamav-milter.conf.sample
-  sed -E 's|#(PidFile) .+|\1 /run/clamav/clamav-milter.pid|' -i 
etc/clamav-milter.conf.sample
-  sed -E 
"s|(\\[Unit\\])|\\1\\nWants=network-online.target\\nAfter=network-online.target|"
 -i freshclam/clamav-freshclam.service.in
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  # --disable-zlib-vcheck because the configure script thinks that
-  # zlib 1.2.11 is older than 1.2.2
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc/clamav \
---with-dbdir=/var/lib/clamav \
---with-user=clamav \
---with-group=clamav \
---with-system-libmspack \
---disable-rpath \
---disable-clamav \
---disable-llvm \
---enable-zlib-vcheck \
---enable-milter \
---enable-clamdtop
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make quick-check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  mv "${pkgdir}"/etc/clamav/freshclam.conf{.sample,}
-  mv "${pkgdir}"/etc/clamav/clamd.conf{.sample,}
-  mv "${pkgdir}"/etc/clamav/clamav-milter.conf{.sample,}
-
-  install -Dm 644 ../clamav.sysusers "${pkgdir}"/usr/lib/sysusers.d/clamav.conf
-  install -Dm 644 ../clamav.tmpfiles 

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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 22:43:43
  Author: anthraxx
Revision: 359271

upgpkg: clamav 0.101.3-1

Modified:
  clamav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 22:39:33 UTC (rev 359270)
+++ PKGBUILD2019-08-06 22:43:43 UTC (rev 359271)
@@ -4,7 +4,7 @@
 # Contributor: Gaetan Bisson 
 
 pkgname=clamav
-pkgver=0.101.2
+pkgver=0.101.3
 pkgrel=1
 pkgdesc='Anti-virus toolkit for Unix'
 url='https://www.clamav.net/'
@@ -22,7 +22,7 @@
 clamav.logrotate
 clamav.tmpfiles
 clamav.sysusers)
-sha512sums=('f9ea4589a8081acf7b6d454d1a068da05ae6574a9070a08f9438935795cb6dc084ffb9222b11fb1623f31962f859e6536a2f5bd1de29ef6b9b314efa5edc8c7e'
+sha512sums=('285e6011ef5b68683daae7287005b2a615d7ee2fb9dac28d6db347cf7fe101da627aaec800366e83551f41afb78c6b08517def7aa30d0f0c347e54344b0b14d3'
 'SKIP'
 
'9cb168c1c16bb43c99900d7ef34456e3f3b593d4d1943c875a0306bc86fd3872cb78e9e1413dcba93579e01b96d466c9eea1975e24190193663b7986c4525d48'
 
'c5443634399bd87fe0d0192518538ffdb7296a8437b5b0160a0fbd58696b01285de3237e3feb552c0095c49e576832dec2e2b2107eef2be42424ed7edd13cd19'


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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 22:39:33
  Author: anthraxx
Revision: 359270

archrelease: copy trunk to extra-x86_64

Added:
  flac/repos/extra-x86_64/PKGBUILD
(from rev 359269, flac/trunk/PKGBUILD)
Deleted:
  flac/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 22:39:29 UTC (rev 359269)
+++ PKGBUILD2019-08-06 22:39:33 UTC (rev 359270)
@@ -1,44 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgbase=flac
-pkgname=('flac' 'flac-doc')
-pkgver=1.3.2
-pkgrel=2
-arch=('x86_64')
-url="http://flac.sourceforge.net/;
-license=('BSD' 'GPL')
-depends=('gcc-libs' 'libogg')
-makedepends=('nasm' 'doxygen')
-options=('!makeflags')
-source=(https://downloads.xiph.org/releases/flac/${pkgbase}-${pkgver}.tar.xz)
-sha1sums=('2bdbb56b128a780a5d998e230f2f4f6eb98f33ee')
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  ./configure --prefix=/usr --disable-sse
-  make
-}
-
-check() {
-  cd ${pkgbase}-${pkgver}
-  make check
-}
-
-package_flac() {
-  pkgdesc="Free Lossless Audio Codec"
-  options=('!docs')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -D -m644 COPYING.Xiph 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_flac-doc() {
-  pkgdesc="Developer documentation for the Free Lossless Audio Codec"
-  depends=('flac')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" -C doc install
-  sed -i "s|$srcdir/${pkgbase}-${pkgver}|/usr|" 
"${pkgdir}/usr/share/doc/${pkgbase}-${pkgver}/FLAC.tag"
-  install -D -m644 COPYING.Xiph 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: flac/repos/extra-x86_64/PKGBUILD (from rev 359269, flac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 22:39:33 UTC (rev 359270)
@@ -0,0 +1,50 @@
+# Maintainer: Levente Polyak 
+# Contributor: Eric Bélanger 
+
+pkgbase=flac
+pkgname=('flac' 'flac-doc')
+pkgver=1.3.3
+pkgrel=1
+pkgdesc='Free Lossless Audio Codec'
+url='https://xiph.org/flac/'
+arch=('x86_64')
+license=('BSD' 'GPL')
+depends=('gcc-libs' 'libogg')
+makedepends=('nasm' 'doxygen')
+source=(https://downloads.xiph.org/releases/flac/${pkgbase}-${pkgver}.tar.xz)
+sha256sums=('213e82bd716c9de6db2f98bcadbc4c24c7e2efe8c75939a1a84e28539c4e1748')
+sha512sums=('d6417e14fab0c41b2df369e5e39ce62a5f588e491af4d465b0162f74e171e5549b2f061867f344bfbf8aaccd246bf5f2acd697e532a2c7901c920c69429b1a28')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--disable-sse
+  make
+}
+
+check() {
+  cd ${pkgbase}-${pkgver}
+  make check
+}
+
+package_flac() {
+  options=('!docs')
+  provides=('libFLAC.so' 'libFLAC++.so')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 COPYING.Xiph -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_flac-doc() {
+  pkgdesc+=' documentation'
+  depends=('flac')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" -C doc install
+  sed -i "s|${srcdir}/${pkgbase}-${pkgver}|/usr|" 
"${pkgdir}/usr/share/doc/${pkgbase}/FLAC.tag"
+  install -Dm 644 COPYING.Xiph -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 22:39:29
  Author: anthraxx
Revision: 359269

upgpkg: flac 1.3.3-1

Modified:
  flac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 20:58:47 UTC (rev 359268)
+++ PKGBUILD2019-08-06 22:39:29 UTC (rev 359269)
@@ -1,21 +1,25 @@
-# Maintainer: Eric Bélanger 
+# Maintainer: Levente Polyak 
+# Contributor: Eric Bélanger 
 
 pkgbase=flac
 pkgname=('flac' 'flac-doc')
-pkgver=1.3.2
-pkgrel=2
+pkgver=1.3.3
+pkgrel=1
+pkgdesc='Free Lossless Audio Codec'
+url='https://xiph.org/flac/'
 arch=('x86_64')
-url="https://xiph.org/flac/;
 license=('BSD' 'GPL')
 depends=('gcc-libs' 'libogg')
 makedepends=('nasm' 'doxygen')
-options=('!makeflags')
 source=(https://downloads.xiph.org/releases/flac/${pkgbase}-${pkgver}.tar.xz)
-sha1sums=('2bdbb56b128a780a5d998e230f2f4f6eb98f33ee')
+sha256sums=('213e82bd716c9de6db2f98bcadbc4c24c7e2efe8c75939a1a84e28539c4e1748')
+sha512sums=('d6417e14fab0c41b2df369e5e39ce62a5f588e491af4d465b0162f74e171e5549b2f061867f344bfbf8aaccd246bf5f2acd697e532a2c7901c920c69429b1a28')
 
 build() {
   cd ${pkgbase}-${pkgver}
-  ./configure --prefix=/usr --disable-sse
+  ./configure \
+--prefix=/usr \
+--disable-sse
   make
 }
 
@@ -25,20 +29,22 @@
 }
 
 package_flac() {
-  pkgdesc="Free Lossless Audio Codec"
   options=('!docs')
+  provides=('libFLAC.so' 'libFLAC++.so')
 
   cd ${pkgbase}-${pkgver}
   make DESTDIR="${pkgdir}" install
-  install -D -m644 COPYING.Xiph 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 COPYING.Xiph -t "${pkgdir}/usr/share/licenses/${pkgname}"
 }
 
 package_flac-doc() {
-  pkgdesc="Developer documentation for the Free Lossless Audio Codec"
+  pkgdesc+=' documentation'
   depends=('flac')
 
   cd ${pkgbase}-${pkgver}
   make DESTDIR="${pkgdir}" -C doc install
-  sed -i "s|$srcdir/${pkgbase}-${pkgver}|/usr|" 
"${pkgdir}/usr/share/doc/${pkgbase}-${pkgver}/FLAC.tag"
-  install -D -m644 COPYING.Xiph 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  sed -i "s|${srcdir}/${pkgbase}-${pkgver}|/usr|" 
"${pkgdir}/usr/share/doc/${pkgbase}/FLAC.tag"
+  install -Dm 644 COPYING.Xiph -t "${pkgdir}/usr/share/licenses/${pkgname}"
 }
+
+# vim: ts=2 sw=2 et:


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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 22:28:16
  Author: anthraxx
Revision: 498105

upgpkg: metasploit 5.0.39-1

Modified:
  metasploit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 22:27:01 UTC (rev 498104)
+++ PKGBUILD2019-08-06 22:28:16 UTC (rev 498105)
@@ -3,7 +3,7 @@
 # Contributor: Tobias Veit - nIcE 
 
 pkgname=metasploit
-pkgver=5.0.28
+pkgver=5.0.39
 pkgrel=1
 pkgdesc='Advanced open-source platform for developing, testing, and using 
exploit code'
 url='https://www.metasploit.com/'
@@ -12,8 +12,8 @@
 depends=('ruby' 'libpcap' 'postgresql-libs' 'ruby-bundler' 'sqlite' 'libxslt' 
'libxml2' 'git')
 options=('!strip' '!emptydirs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/rapid7/metasploit-framework/archive/${pkgver}.tar.gz)
-sha256sums=('7274a00a6b06b8eb4e010061735750d6550800385bc33bcf5c3ee5d9f944f50c')
-sha512sums=('361308c28287e8926dc05294a57d92310cd8d4c72cba14e254f5738a8e7dfc3b429abf20032559dbee40fd833b7d78a3f1c1a747e337b6b9696c27aeed675dbc')
+sha256sums=('ad2991cee9e4042a7f9658e0fa6db7e00b481ba727a2772ae6e7cc68bcca3341')
+sha512sums=('5e65a65c55343784ff110d301f7b286fcf6ef8fb43b97cc42f1410ce3fbdf49c050d020403e0d2d06800ce4411073c52af637d8b8cc908894402b041c1237287')
 
 prepare() {
   cd ${pkgname}-framework-${pkgver}


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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 22:28:21
  Author: anthraxx
Revision: 498106

archrelease: copy trunk to community-x86_64

Added:
  metasploit/repos/community-x86_64/PKGBUILD
(from rev 498105, metasploit/trunk/PKGBUILD)
Deleted:
  metasploit/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 22:28:16 UTC (rev 498105)
+++ PKGBUILD2019-08-06 22:28:21 UTC (rev 498106)
@@ -1,63 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Sabart Otto - Seberm 
-# Contributor: Tobias Veit - nIcE 
-
-pkgname=metasploit
-pkgver=5.0.28
-pkgrel=1
-pkgdesc='Advanced open-source platform for developing, testing, and using 
exploit code'
-url='https://www.metasploit.com/'
-arch=('x86_64')
-license=('BSD')
-depends=('ruby' 'libpcap' 'postgresql-libs' 'ruby-bundler' 'sqlite' 'libxslt' 
'libxml2' 'git')
-options=('!strip' '!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/rapid7/metasploit-framework/archive/${pkgver}.tar.gz)
-sha256sums=('7274a00a6b06b8eb4e010061735750d6550800385bc33bcf5c3ee5d9f944f50c')
-sha512sums=('361308c28287e8926dc05294a57d92310cd8d4c72cba14e254f5738a8e7dfc3b429abf20032559dbee40fd833b7d78a3f1c1a747e337b6b9696c27aeed675dbc')
-
-prepare() {
-  cd ${pkgname}-framework-${pkgver}
-
-  # https://github.com/bundler/bundler/issues/6882
-  sed -e '/BUNDLED WITH/,+1d' -i Gemfile.lock
-
-  bundle config build.nokogiri --use-system-libraries
-  sed 's|git ls-files|find -type f|' -i metasploit-framework.gemspec
-}
-
-build() {
-  cd ${pkgname}-framework-${pkgver}
-  CFLAGS+=" -I/usr/include/libxml2"
-  bundle install -j"$(nproc)" --no-cache --deployment
-  find vendor/bundle/ruby -exec chmod o+r '{}' \;
-  find vendor/bundle/ruby \( -name gem_make.out -or -name mkmf.log \) -delete
-}
-
-package() {
-  cd ${pkgname}-framework-${pkgver}
-
-  install -d "${pkgdir}/opt/${pkgname}" "${pkgdir}/usr/bin"
-  cp -r . "${pkgdir}/opt/${pkgname}"
-
-  for f in "${pkgdir}"/opt/${pkgname}/msf*; do
-local _msffile="${pkgdir}/usr/bin/`basename "${f}"`"
-echo -e "#!/bin/sh\nBUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec 
ruby /opt/${pkgname}/`basename "${f}"` \"\$@\"" > "${_msffile}"
-chmod 755 "${_msffile}"
-  done
-
-  (cd "${pkgdir}/opt/${pkgname}"
-for f in tools/*/*.rb; do
-  install -Dm 755 "${f}" ".${f}"
-  echo -e "#!/bin/sh\nBUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec 
ruby /opt/${pkgname}/."${f}" \"\$@\"" > "${f}"
-  chmod 755 "${f}"
-done
-  )
-
-  install -Dm 644 external/zsh/_* -t "${pkgdir}/usr/share/zsh/site-functions"
-  install -Dm 644 LICENSE COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -d "${pkgdir}/usr/share/doc"
-  mv "${pkgdir}/opt/${pkgname}/documentation" 
"${pkgdir}/usr/share/doc/${pkgname}"
-  rm "${pkgdir}/usr/bin/msfupdate"
-}
-
-# vim: ts=2 sw=2 et:

Copied: metasploit/repos/community-x86_64/PKGBUILD (from rev 498105, 
metasploit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 22:28:21 UTC (rev 498106)
@@ -0,0 +1,63 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sabart Otto - Seberm 
+# Contributor: Tobias Veit - nIcE 
+
+pkgname=metasploit
+pkgver=5.0.39
+pkgrel=1
+pkgdesc='Advanced open-source platform for developing, testing, and using 
exploit code'
+url='https://www.metasploit.com/'
+arch=('x86_64')
+license=('BSD')
+depends=('ruby' 'libpcap' 'postgresql-libs' 'ruby-bundler' 'sqlite' 'libxslt' 
'libxml2' 'git')
+options=('!strip' '!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/rapid7/metasploit-framework/archive/${pkgver}.tar.gz)
+sha256sums=('ad2991cee9e4042a7f9658e0fa6db7e00b481ba727a2772ae6e7cc68bcca3341')
+sha512sums=('5e65a65c55343784ff110d301f7b286fcf6ef8fb43b97cc42f1410ce3fbdf49c050d020403e0d2d06800ce4411073c52af637d8b8cc908894402b041c1237287')
+
+prepare() {
+  cd ${pkgname}-framework-${pkgver}
+
+  # https://github.com/bundler/bundler/issues/6882
+  sed -e '/BUNDLED WITH/,+1d' -i Gemfile.lock
+
+  bundle config build.nokogiri --use-system-libraries
+  sed 's|git ls-files|find -type f|' -i metasploit-framework.gemspec
+}
+
+build() {
+  cd ${pkgname}-framework-${pkgver}
+  CFLAGS+=" -I/usr/include/libxml2"
+  bundle install -j"$(nproc)" --no-cache --deployment
+  find vendor/bundle/ruby -exec chmod o+r '{}' \;
+  find vendor/bundle/ruby \( -name gem_make.out -or -name mkmf.log \) -delete
+}
+
+package() {
+  cd ${pkgname}-framework-${pkgver}
+
+  install -d "${pkgdir}/opt/${pkgname}" "${pkgdir}/usr/bin"
+  cp -r . "${pkgdir}/opt/${pkgname}"
+
+  for f in "${pkgdir}"/opt/${pkgname}/msf*; do
+local _msffile="${pkgdir}/usr/bin/`basename "${f}"`"
+echo -e "#!/bin/sh\nBUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec 
ruby 

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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 22:27:01
  Author: anthraxx
Revision: 498104

archrelease: copy trunk to community-any

Added:
  exploitdb/repos/community-any/PKGBUILD
(from rev 498103, exploitdb/trunk/PKGBUILD)
  exploitdb/repos/community-any/rcfile.diff
(from rev 498103, exploitdb/trunk/rcfile.diff)
Deleted:
  exploitdb/repos/community-any/PKGBUILD
  exploitdb/repos/community-any/rcfile.diff

-+
 PKGBUILD|   76 +-
 rcfile.diff |   62 +++
 2 files changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 22:26:56 UTC (rev 498103)
+++ PKGBUILD2019-08-06 22:27:01 UTC (rev 498104)
@@ -1,38 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Maintainer: Levente Polyak 
-
-pkgname=exploitdb
-_pkgver=2019-08-03
-pkgver=${_pkgver//-/}
-pkgrel=1
-pkgdesc="Offensive Security’s Exploit Database Archive"
-arch=('any')
-url="https://www.exploit-db.com/;
-license=('GPL')
-optdepends=('libxml2: to check nmap XML results'
-'xclip: copy paths to the clipboard')
-backup=('etc/searchsploit_rc')
-options=('!strip')
-source=("${pkgname}-${_pkgver}.tar.gz::https://github.com/offensive-security/${pkgname}/archive/${_pkgver}.tar.gz;
-"rcfile.diff")
-sha512sums=('04d2fd729b481060cf2a8e44c37c4d783bac60edfca583920599e2a38a3a9f6900db77b975c8c16f54bcf882e628b06acdeadf482388c4b590604cb0b914c7ed'
-
'e170da5b974975c6c23c5b09e8c1825bbb17446fb506f2d00f92f86f94394acf18a53458bd90969de38da642fc1f7abb08ba940969108002dab17415b88211d6')
-b2sums=('0a708c31ec49f736ec10908eb4c2633652b9d0e113e3f153a84ea829a8f70bd9f11d9a98e86078b03fd740bec673736751014e9e17ee34da19a1e726856daa91'
-
'f033a50db6358297580363d62bbd9d4a6003b5476ba361650133841138af76b990ed49e2e34d487cf4167ebeb3cd6b8f9230e5e700a5d96f7f06cbc5b42c4076')
-
-prepare() {
-cd ${pkgname}-${_pkgver}
-
-patch -p1 -i ../rcfile.diff
-}
-
-package() {
-cd ${pkgname}-${_pkgver}
-
-install -Dm755 searchsploit "${pkgdir}"/usr/bin/searchsploit
-install -Dm644 .searchsploit_rc "${pkgdir}"/etc/searchsploit_rc
-mkdir -p "${pkgdir}"/usr/share/${pkgname}
-cp -a exploits/ shellcodes/ files_*.csv "${pkgdir}"/usr/share/${pkgname}
-}
-
-# vim: ts=4 sw=4 et:

Copied: exploitdb/repos/community-any/PKGBUILD (from rev 498103, 
exploitdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 22:27:01 UTC (rev 498104)
@@ -0,0 +1,38 @@
+# Maintainer: Eli Schwartz 
+# Maintainer: Levente Polyak 
+
+pkgname=exploitdb
+_pkgver=2019-08-06
+pkgver=${_pkgver//-/}
+pkgrel=1
+pkgdesc="Offensive Security’s Exploit Database Archive"
+arch=('any')
+url="https://www.exploit-db.com/;
+license=('GPL')
+optdepends=('libxml2: to check nmap XML results'
+'xclip: copy paths to the clipboard')
+backup=('etc/searchsploit_rc')
+options=('!strip')
+source=("${pkgname}-${_pkgver}.tar.gz::https://github.com/offensive-security/${pkgname}/archive/${_pkgver}.tar.gz;
+"rcfile.diff")
+sha512sums=('e64e85f00274821bb7386425a140ab70a92f18e932fc2ddf980ecdea1892adbb832a447edcf2656b54912a8a67d0db297cb821c4bffeae0ff610355b836f00e6'
+
'e170da5b974975c6c23c5b09e8c1825bbb17446fb506f2d00f92f86f94394acf18a53458bd90969de38da642fc1f7abb08ba940969108002dab17415b88211d6')
+b2sums=('0a708c31ec49f736ec10908eb4c2633652b9d0e113e3f153a84ea829a8f70bd9f11d9a98e86078b03fd740bec673736751014e9e17ee34da19a1e726856daa91'
+
'f033a50db6358297580363d62bbd9d4a6003b5476ba361650133841138af76b990ed49e2e34d487cf4167ebeb3cd6b8f9230e5e700a5d96f7f06cbc5b42c4076')
+
+prepare() {
+cd ${pkgname}-${_pkgver}
+
+patch -p1 -i ../rcfile.diff
+}
+
+package() {
+cd ${pkgname}-${_pkgver}
+
+install -Dm755 searchsploit "${pkgdir}"/usr/bin/searchsploit
+install -Dm644 .searchsploit_rc "${pkgdir}"/etc/searchsploit_rc
+mkdir -p "${pkgdir}"/usr/share/${pkgname}
+cp -a exploits/ shellcodes/ files_*.csv "${pkgdir}"/usr/share/${pkgname}
+}
+
+# vim: ts=4 sw=4 et:

Deleted: rcfile.diff
===
--- rcfile.diff 2019-08-06 22:26:56 UTC (rev 498103)
+++ rcfile.diff 2019-08-06 22:27:01 UTC (rev 498104)
@@ -1,31 +0,0 @@
-diff --git a/.searchsploit_rc b/.searchsploit_rc
-index 36c9b1c8..62bbe404 100644
 a/.searchsploit_rc
-+++ b/.searchsploit_rc
-@@ -4,7 +4,7 @@ progname="$( basename "$0" )"
- 
- ##-- Exploits
- files_array+=("files_exploits.csv")
--path_array+=("/opt/exploitdb")
-+path_array+=("/usr/share/exploitdb")
- name_array+=("Exploit")
- git_array+=("https://github.com/offensive-security/exploitdb.git;)
- package_array+=("exploitdb")
-@@ -12,7 +12,7 @@ package_array+=("exploitdb")
- 
- ##-- Shellcodes
- files_array+=("files_shellcodes.csv")
--path_array+=("/opt/exploitdb")

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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 22:26:50
  Author: anthraxx
Revision: 498102

archrelease: copy trunk to community-x86_64

Added:
  lsd/repos/community-x86_64/PKGBUILD
(from rev 498101, lsd/trunk/PKGBUILD)
Deleted:
  lsd/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 22:26:46 UTC (rev 498101)
+++ PKGBUILD2019-08-06 22:26:50 UTC (rev 498102)
@@ -1,33 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Julien Nicoulaud 
-
-pkgname=lsd
-pkgver=0.15.1
-pkgrel=1
-pkgdesc='Modern ls with a lot of pretty colors and awesome icons'
-url='https://github.com/Peltoche/lsd'
-arch=('x86_64')
-license=('Apache')
-depends=('gcc-libs' 'awesome-terminal-fonts')
-makedepends=('rust' 'cargo')
-source=(https://github.com/Peltoche/lsd/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('849ad168171737ef1ca74b762b3d9fb885c936cb9a753eca07426886478ad2de')
-sha512sums=('58a280615e72f9dc685e49532d147c17d94be099f80400add15b983d5945d98004a6a636f7f7a76809376dc07cab25f44d716a4b00456db0201c34f935952ed3')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  cargo test --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 target/release/${pkgname} -t "${pkgdir}/usr/bin"
-  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: lsd/repos/community-x86_64/PKGBUILD (from rev 498101, 
lsd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 22:26:50 UTC (rev 498102)
@@ -0,0 +1,33 @@
+# Maintainer: Levente Polyak 
+# Contributor: Julien Nicoulaud 
+
+pkgname=lsd
+pkgver=0.16.0
+pkgrel=1
+pkgdesc='Modern ls with a lot of pretty colors and awesome icons'
+url='https://github.com/Peltoche/lsd'
+arch=('x86_64')
+license=('Apache')
+depends=('gcc-libs' 'awesome-terminal-fonts')
+makedepends=('rust' 'cargo')
+source=(https://github.com/Peltoche/lsd/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('e2406748d78431a1c03bdd2404a204a006c19905d926e41a36587b93a791e003')
+sha512sums=('562c070d3e716af26ff3a54632cd176a1b95471fbb7e947f8175f89df483ff5b337d1a0d7578fa6ee41f77fa7ed1a618d37e91ebf1b8428e6a857918b415aa39')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  cargo test --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 target/release/${pkgname} -t "${pkgdir}/usr/bin"
+  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 22:26:56
  Author: anthraxx
Revision: 498103

upgpkg: exploitdb 20190806-1

Modified:
  exploitdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 22:26:50 UTC (rev 498102)
+++ PKGBUILD2019-08-06 22:26:56 UTC (rev 498103)
@@ -2,7 +2,7 @@
 # Maintainer: Levente Polyak 
 
 pkgname=exploitdb
-_pkgver=2019-08-03
+_pkgver=2019-08-06
 pkgver=${_pkgver//-/}
 pkgrel=1
 pkgdesc="Offensive Security’s Exploit Database Archive"
@@ -15,7 +15,7 @@
 options=('!strip')
 
source=("${pkgname}-${_pkgver}.tar.gz::https://github.com/offensive-security/${pkgname}/archive/${_pkgver}.tar.gz;
 "rcfile.diff")
-sha512sums=('04d2fd729b481060cf2a8e44c37c4d783bac60edfca583920599e2a38a3a9f6900db77b975c8c16f54bcf882e628b06acdeadf482388c4b590604cb0b914c7ed'
+sha512sums=('e64e85f00274821bb7386425a140ab70a92f18e932fc2ddf980ecdea1892adbb832a447edcf2656b54912a8a67d0db297cb821c4bffeae0ff610355b836f00e6'
 
'e170da5b974975c6c23c5b09e8c1825bbb17446fb506f2d00f92f86f94394acf18a53458bd90969de38da642fc1f7abb08ba940969108002dab17415b88211d6')
 
b2sums=('0a708c31ec49f736ec10908eb4c2633652b9d0e113e3f153a84ea829a8f70bd9f11d9a98e86078b03fd740bec673736751014e9e17ee34da19a1e726856daa91'
 
'f033a50db6358297580363d62bbd9d4a6003b5476ba361650133841138af76b990ed49e2e34d487cf4167ebeb3cd6b8f9230e5e700a5d96f7f06cbc5b42c4076')


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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 22:26:46
  Author: anthraxx
Revision: 498101

upgpkg: lsd 0.16.0-1

Modified:
  lsd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 22:19:24 UTC (rev 498100)
+++ PKGBUILD2019-08-06 22:26:46 UTC (rev 498101)
@@ -2,7 +2,7 @@
 # Contributor: Julien Nicoulaud 
 
 pkgname=lsd
-pkgver=0.15.1
+pkgver=0.16.0
 pkgrel=1
 pkgdesc='Modern ls with a lot of pretty colors and awesome icons'
 url='https://github.com/Peltoche/lsd'
@@ -11,8 +11,8 @@
 depends=('gcc-libs' 'awesome-terminal-fonts')
 makedepends=('rust' 'cargo')
 
source=(https://github.com/Peltoche/lsd/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('849ad168171737ef1ca74b762b3d9fb885c936cb9a753eca07426886478ad2de')
-sha512sums=('58a280615e72f9dc685e49532d147c17d94be099f80400add15b983d5945d98004a6a636f7f7a76809376dc07cab25f44d716a4b00456db0201c34f935952ed3')
+sha256sums=('e2406748d78431a1c03bdd2404a204a006c19905d926e41a36587b93a791e003')
+sha512sums=('562c070d3e716af26ff3a54632cd176a1b95471fbb7e947f8175f89df483ff5b337d1a0d7578fa6ee41f77fa7ed1a618d37e91ebf1b8428e6a857918b415aa39')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 22:19:19
  Author: anthraxx
Revision: 498099

upgpkg: wpscan 1:3.6.3-1

Modified:
  wpscan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 21:53:05 UTC (rev 498098)
+++ PKGBUILD2019-08-06 22:19:19 UTC (rev 498099)
@@ -2,7 +2,7 @@
 # Contributor: alexiobash < me (at) alexiobash (dot) com >
 
 pkgname=wpscan
-pkgver=3.6.2
+pkgver=3.6.3
 pkgrel=1
 epoch=1
 pkgdesc='Black box WordPress vulnerability scanner'
@@ -13,8 +13,8 @@
 options=('!strip' '!emptydirs')
 install=wpscan.install
 
source=(https://github.com/wpscanteam/wpscan/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('98f687f7a47e4afc310b2af73c635312f78bb3ee8f490593d2cf8318378a75a2')
-sha512sums=('7c274395b1bf48006bbdb9e2efc4803936de27ec54bdea4266af9073a844e9b8a01f345932bb4d9ba8d9e6dac6570bc0f6d95a8b6a2702cd77b62287dd461563')
+sha256sums=('0e5d2219307e5e41e51028777e908f2f95ff7670ffa8e38529c467f7375cb092')
+sha512sums=('7cfacee4ae483c86392a8e0c7378ae64f80939add272f25337ece755a259b10ed6e7b2791d45687c96e07c34acaa7634516c4c21dc217a3d96d0cfeaf1ffb38e')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 22:19:24
  Author: anthraxx
Revision: 498100

archrelease: copy trunk to community-x86_64

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

+
 PKGBUILD   |   98 +++
 wpscan.install |   18 +-
 2 files changed, 58 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 22:19:19 UTC (rev 498099)
+++ PKGBUILD2019-08-06 22:19:24 UTC (rev 498100)
@@ -1,49 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: alexiobash < me (at) alexiobash (dot) com >
-
-pkgname=wpscan
-pkgver=3.6.2
-pkgrel=1
-epoch=1
-pkgdesc='Black box WordPress vulnerability scanner'
-url='https://wpscan.org'
-arch=('x86_64')
-license=('custom:WPScan')
-depends=('ruby-bundler' 'libxslt' 'libyaml' 'curl' 'libxml2')
-options=('!strip' '!emptydirs')
-install=wpscan.install
-source=(https://github.com/wpscanteam/wpscan/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('98f687f7a47e4afc310b2af73c635312f78bb3ee8f490593d2cf8318378a75a2')
-sha512sums=('7c274395b1bf48006bbdb9e2efc4803936de27ec54bdea4266af9073a844e9b8a01f345932bb4d9ba8d9e6dac6570bc0f6d95a8b6a2702cd77b62287dd461563')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed -i '/bundler/ s|~>|>=|g' $pkgname.gemspec
-  bundle config build.nokogiri --use-system-libraries
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  CFLAGS+=" -I/usr/include/libxml2"
-  bundle install -j"$(nproc)" --path vendor/bundle --without development test
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -d "${pkgdir}/opt/${pkgname}"
-  cp -ra --no-preserve=owner . "${pkgdir}/opt/${pkgname}"
-
-  install -d "${pkgdir}/usr/bin"
-  cat > "${pkgdir}/usr/bin/${pkgname}" << EOF
-#!/bin/sh
-BUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec ruby /opt/wpscan/bin/wpscan 
"\$@"
-EOF
-  chmod 755 "${pkgdir}/usr/bin/${pkgname}"
-
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  find "${pkgdir}" \( -name gem_make.out -or -name mkmf.log \) -delete
-}
-
-# vim: ts=2 sw=2 et:

Copied: wpscan/repos/community-x86_64/PKGBUILD (from rev 498099, 
wpscan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 22:19:24 UTC (rev 498100)
@@ -0,0 +1,49 @@
+# Maintainer: Levente Polyak 
+# Contributor: alexiobash < me (at) alexiobash (dot) com >
+
+pkgname=wpscan
+pkgver=3.6.3
+pkgrel=1
+epoch=1
+pkgdesc='Black box WordPress vulnerability scanner'
+url='https://wpscan.org'
+arch=('x86_64')
+license=('custom:WPScan')
+depends=('ruby-bundler' 'libxslt' 'libyaml' 'curl' 'libxml2')
+options=('!strip' '!emptydirs')
+install=wpscan.install
+source=(https://github.com/wpscanteam/wpscan/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('0e5d2219307e5e41e51028777e908f2f95ff7670ffa8e38529c467f7375cb092')
+sha512sums=('7cfacee4ae483c86392a8e0c7378ae64f80939add272f25337ece755a259b10ed6e7b2791d45687c96e07c34acaa7634516c4c21dc217a3d96d0cfeaf1ffb38e')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i '/bundler/ s|~>|>=|g' $pkgname.gemspec
+  bundle config build.nokogiri --use-system-libraries
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  CFLAGS+=" -I/usr/include/libxml2"
+  bundle install -j"$(nproc)" --path vendor/bundle --without development test
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -d "${pkgdir}/opt/${pkgname}"
+  cp -ra --no-preserve=owner . "${pkgdir}/opt/${pkgname}"
+
+  install -d "${pkgdir}/usr/bin"
+  cat > "${pkgdir}/usr/bin/${pkgname}" << EOF
+#!/bin/sh
+BUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec ruby /opt/wpscan/bin/wpscan 
"\$@"
+EOF
+  chmod 755 "${pkgdir}/usr/bin/${pkgname}"
+
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  find "${pkgdir}" \( -name gem_make.out -or -name mkmf.log \) -delete
+}
+
+# vim: ts=2 sw=2 et:

Deleted: wpscan.install
===
--- wpscan.install  2019-08-06 22:19:19 UTC (rev 498099)
+++ wpscan.install  2019-08-06 22:19:24 UTC (rev 498100)
@@ -1,9 +0,0 @@
-post_install() {
-  echo -n 'Updating wpscan database...'
-  /usr/bin/wpscan --update >/dev/null 2>&1
-  echo "done."
-}
-
-post_upgrade() {
-  post_install
-}

Copied: wpscan/repos/community-x86_64/wpscan.install (from rev 498099, 
wpscan/trunk/wpscan.install)
===
--- wpscan.install  (rev 0)
+++ wpscan.install  2019-08-06 

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

2019-08-06 Thread Alad Wenter via arch-commits
Date: Tuesday, August 6, 2019 @ 21:53:05
  Author: alad
Revision: 498098

archrelease: copy trunk to community-x86_64

Added:
  python-pygame/repos/community-x86_64/
  python-pygame/repos/community-x86_64/PKGBUILD
(from rev 498097, python-pygame/trunk/PKGBUILD)

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

Copied: python-pygame/repos/community-x86_64/PKGBUILD (from rev 498097, 
python-pygame/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-08-06 21:53:05 UTC (rev 498098)
@@ -0,0 +1,25 @@
+# Maintainer: Alad Wenter 
+# Contributor: Matthew McGinn 
+# Contributor: Gryffyn
+# Contributor: Tetsumi
+pkgname=python-pygame
+pkgver=1.9.6
+pkgrel=2
+pkgdesc="Python game library"
+arch=('x86_64')
+url="http://www.pygame.org;
+license=('LGPL')
+makedepends=('python-setuptools')
+depends=('python' 'sdl_mixer' 'sdl_ttf' 'sdl_image' 'portmidi')
+source=("https://pypi.io/packages/source/p/pygame/pygame-$pkgver.tar.gz;)
+sha256sums=('301c6428c0880ecd4a9e3951b80e539c33863b6ff356a443db1758de4f297957')
+
+build() {
+cd pygame-"$pkgver"
+python setup.py build
+}
+
+package() {
+cd pygame-"$pkgver"
+python setup.py install --root="$pkgdir" --prefix=/usr --skip-build
+}


[arch-commits] Commit in (5 files)

2019-08-06 Thread Alad Wenter via arch-commits
Date: Tuesday, August 6, 2019 @ 21:52:50
  Author: alad
Revision: 498097

add python-pygame back to repos

Added:
  python-pygame/
  python-pygame/repos/
  python-pygame/trunk/
  python-pygame/trunk/PKGBUILD
Deleted:
  python-pygame/

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

Added: python-pygame/trunk/PKGBUILD
===
--- python-pygame/trunk/PKGBUILD(rev 0)
+++ python-pygame/trunk/PKGBUILD2019-08-06 21:52:50 UTC (rev 498097)
@@ -0,0 +1,25 @@
+# Maintainer: Alad Wenter 
+# Contributor: Matthew McGinn 
+# Contributor: Gryffyn
+# Contributor: Tetsumi
+pkgname=python-pygame
+pkgver=1.9.6
+pkgrel=2
+pkgdesc="Python game library"
+arch=('x86_64')
+url="http://www.pygame.org;
+license=('LGPL')
+makedepends=('python-setuptools')
+depends=('python' 'sdl_mixer' 'sdl_ttf' 'sdl_image' 'portmidi')
+source=("https://pypi.io/packages/source/p/pygame/pygame-$pkgver.tar.gz;)
+sha256sums=('301c6428c0880ecd4a9e3951b80e539c33863b6ff356a443db1758de4f297957')
+
+build() {
+cd pygame-"$pkgver"
+python setup.py build
+}
+
+package() {
+cd pygame-"$pkgver"
+python setup.py install --root="$pkgdir" --prefix=/usr --skip-build
+}


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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 20:58:47
  Author: anthraxx
Revision: 359268

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/60-linux.hook
(from rev 359267, linux-hardened/trunk/60-linux.hook)
  linux-hardened/repos/extra-x86_64/90-linux.hook
(from rev 359267, linux-hardened/trunk/90-linux.hook)
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 359267, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config.x86_64
(from rev 359267, linux-hardened/trunk/config.x86_64)
  linux-hardened/repos/extra-x86_64/linux.install
(from rev 359267, linux-hardened/trunk/linux.install)
  linux-hardened/repos/extra-x86_64/linux.preset
(from rev 359267, linux-hardened/trunk/linux.preset)
Deleted:
  linux-hardened/repos/extra-x86_64/60-linux.hook
  linux-hardened/repos/extra-x86_64/90-linux.hook
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config.x86_64
  linux-hardened/repos/extra-x86_64/linux.install
  linux-hardened/repos/extra-x86_64/linux.preset

---+
 60-linux.hook |   24 
 90-linux.hook |   22 
 PKGBUILD  |  510 -
 config.x86_64 |20780 
 linux.install |   26 
 linux.preset  |   28 
 6 files changed, 10695 insertions(+), 10695 deletions(-)

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


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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 20:58:39
  Author: anthraxx
Revision: 359267

upgpkg: linux-hardened 5.2.7.a-1

Modified:
  linux-hardened/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 20:32:10 UTC (rev 359266)
+++ PKGBUILD2019-08-06 20:58:39 UTC (rev 359267)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-_pkgver=5.2.6
+_pkgver=5.2.7
 _hardenedver=a
 _srcname=linux-${_pkgver}
 pkgver=${_pkgver}.${_hardenedver}
@@ -26,9 +26,9 @@
 linux.preset   # standard config files for mkinitcpio ramdisk
 )
 replaces=('linux-grsec')
-sha256sums=('be105afb7394dce98953bcea79c2ce02345587eee4638fce9a5f5a1e7e7b1ff2'
+sha256sums=('db3e69936b9a4f2754838086417ab49039807cac6d62cb81bf642fb481835fa9'
 'SKIP'
-'e1fe4e79b5047745fc2a0b908739ce46a674da12875e002245de7b89f2a444de'
+'732be1bb1b2c271658c941e607bc962784b8f952907d529d3dde7e4ee22d7179'
 'SKIP'
 '685188f59ab529893fe540ace20ca6e8832c799ad799811306cf039fd09d5bd3'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'


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

2019-08-06 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 6, 2019 @ 20:32:10
  Author: alucryd
Revision: 359266

archrelease: copy trunk to extra-x86_64

Added:
  ffmpeg/repos/extra-x86_64/PKGBUILD
(from rev 359265, ffmpeg/trunk/PKGBUILD)
Deleted:
  ffmpeg/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  290 ++---
 1 file changed, 146 insertions(+), 144 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 20:32:05 UTC (rev 359265)
+++ PKGBUILD2019-08-06 20:32:10 UTC (rev 359266)
@@ -1,144 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Ionut Biru 
-# Contributor: Tom Newsom 
-# Contributor: Paul Mattal 
-
-pkgname=ffmpeg
-pkgver=4.2
-pkgrel=1
-epoch=1
-pkgdesc='Complete solution to record, convert and stream audio and video'
-arch=(x86_64)
-url=https://ffmpeg.org/
-license=(GPL3)
-depends=(
-  alsa-lib
-  aom
-  bzip2
-  fontconfig
-  fribidi
-  gmp
-  gnutls
-  gsm
-  jack
-  lame
-  libass.so
-  libavc1394
-  libbluray.so
-  libdrm
-  libfreetype.so
-  libiec61883
-  libmodplug
-  libomxil-bellagio
-  libpulse
-  libraw1394
-  libsoxr
-  libssh
-  libtheora
-  libva.so
-  libva-drm.so
-  libva-x11.so
-  libvdpau
-  libvidstab.so
-  libvorbisenc.so
-  libvorbis.so
-  libvpx.so
-  libwebp
-  libx11
-  libx264.so
-  libx265.so
-  libxcb
-  libxext
-  libxml2
-  libxv
-  libxvidcore.so
-  opencore-amr
-  openjpeg2
-  opus
-  sdl2
-  speex
-  v4l-utils
-  xz
-  zlib
-)
-makedepends=(
-  ffnvcodec-headers
-  git
-  ladspa
-  nasm
-)
-optdepends=('ladspa: LADSPA filters')
-provides=(
-  libavcodec.so
-  libavdevice.so
-  libavfilter.so
-  libavformat.so
-  libavutil.so
-  libpostproc.so
-  libswresample.so
-  libswscale.so
-)
-source=(git+https://git.ffmpeg.org/ffmpeg.git#tag=n${pkgver})
-sha256sums=('SKIP')
-
-build() {
-  cd ffmpeg
-
-  ./configure \
---prefix='/usr' \
---disable-debug \
---disable-static \
---disable-stripping \
---enable-fontconfig \
---enable-gmp \
---enable-gnutls \
---enable-gpl \
---enable-ladspa \
---enable-libaom \
---enable-libass \
---enable-libbluray \
---enable-libdrm \
---enable-libfreetype \
---enable-libfribidi \
---enable-libgsm \
---enable-libiec61883 \
---enable-libjack \
---enable-libmodplug \
---enable-libmp3lame \
---enable-libopencore_amrnb \
---enable-libopencore_amrwb \
---enable-libopenjpeg \
---enable-libopus \
---enable-libpulse \
---enable-libsoxr \
---enable-libspeex \
---enable-libssh \
---enable-libtheora \
---enable-libv4l2 \
---enable-libvidstab \
---enable-libvorbis \
---enable-libvpx \
---enable-libwebp \
---enable-libx264 \
---enable-libx265 \
---enable-libxcb \
---enable-libxml2 \
---enable-libxvid \
---enable-nvdec \
---enable-nvenc \
---enable-omx \
---enable-shared \
---enable-version3
-
-  make
-  make tools/qt-faststart
-  make doc/ff{mpeg,play}.1
-}
-
-package() {
-  make DESTDIR="${pkgdir}" -C ffmpeg install install-man
-  install -Dm 755 ffmpeg/tools/qt-faststart "${pkgdir}"/usr/bin/
-}
-
-# vim: ts=2 sw=2 et:

Copied: ffmpeg/repos/extra-x86_64/PKGBUILD (from rev 359265, 
ffmpeg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 20:32:10 UTC (rev 359266)
@@ -0,0 +1,146 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Ionut Biru 
+# Contributor: Tom Newsom 
+# Contributor: Paul Mattal 
+
+pkgname=ffmpeg
+pkgver=4.2
+pkgrel=2
+epoch=1
+pkgdesc='Complete solution to record, convert and stream audio and video'
+arch=(x86_64)
+url=https://ffmpeg.org/
+license=(GPL3)
+depends=(
+  alsa-lib
+  aom
+  bzip2
+  fontconfig
+  fribidi
+  gmp
+  gnutls
+  gsm
+  jack
+  lame
+  libass.so
+  libavc1394
+  libbluray.so
+  libdav1d.so
+  libdrm
+  libfreetype.so
+  libiec61883
+  libmodplug
+  libomxil-bellagio
+  libpulse
+  libraw1394
+  libsoxr
+  libssh
+  libtheora
+  libva.so
+  libva-drm.so
+  libva-x11.so
+  libvdpau
+  libvidstab.so
+  libvorbisenc.so
+  libvorbis.so
+  libvpx.so
+  libwebp
+  libx11
+  libx264.so
+  libx265.so
+  libxcb
+  libxext
+  libxml2
+  libxv
+  libxvidcore.so
+  opencore-amr
+  openjpeg2
+  opus
+  sdl2
+  speex
+  v4l-utils
+  xz
+  zlib
+)
+makedepends=(
+  ffnvcodec-headers
+  git
+  ladspa
+  nasm
+)
+optdepends=('ladspa: LADSPA filters')
+provides=(
+  libavcodec.so
+  libavdevice.so
+  libavfilter.so
+  libavformat.so
+  libavutil.so
+  libpostproc.so
+  libswresample.so
+  libswscale.so
+)
+source=(git+https://git.ffmpeg.org/ffmpeg.git#tag=n${pkgver})
+sha256sums=('SKIP')
+
+build() {
+  cd ffmpeg
+
+  ./configure \
+--prefix='/usr' \
+--disable-debug \
+--disable-static \
+--disable-stripping \
+--enable-fontconfig \
+

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

2019-08-06 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 6, 2019 @ 20:32:05
  Author: alucryd
Revision: 359265

FS#62445: ffmpeg 1:4.2-2

Modified:
  ffmpeg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 20:14:13 UTC (rev 359264)
+++ PKGBUILD2019-08-06 20:32:05 UTC (rev 359265)
@@ -6,7 +6,7 @@
 
 pkgname=ffmpeg
 pkgver=4.2
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc='Complete solution to record, convert and stream audio and video'
 arch=(x86_64)
@@ -26,6 +26,7 @@
   libass.so
   libavc1394
   libbluray.so
+  libdav1d.so
   libdrm
   libfreetype.so
   libiec61883
@@ -98,6 +99,7 @@
 --enable-libaom \
 --enable-libass \
 --enable-libbluray \
+--enable-libdav1d \
 --enable-libdrm \
 --enable-libfreetype \
 --enable-libfribidi \


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

2019-08-06 Thread Alad Wenter via arch-commits
Date: Tuesday, August 6, 2019 @ 20:17:52
  Author: alad
Revision: 498096

edbrowse: change to https url

Modified:
  edbrowse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 20:14:57 UTC (rev 498095)
+++ PKGBUILD2019-08-06 20:17:52 UTC (rev 498096)
@@ -10,7 +10,7 @@
 _commit=7e1be6c69fd336561c89c94a549d7cd454470dee # 3.7.4
 pkgdesc='Line-oriented editor, browser and mail client'
 arch=('x86_64')
-url='http://edbrowse.org'
+url='https://edbrowse.org'
 license=('GPL' 'MPL')
 depends=('duktape' 'tidy' 'curl' 'pcre')
 makedepends=('git')


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

2019-08-06 Thread Alad Wenter via arch-commits
Date: Tuesday, August 6, 2019 @ 20:14:50
  Author: alad
Revision: 498094

upgpkg: asoundconf 1.2-2

Modified:
  asoundconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 20:10:38 UTC (rev 498093)
+++ PKGBUILD2019-08-06 20:14:50 UTC (rev 498094)
@@ -1,21 +1,27 @@
-# Maintainer: Lukas Jirkovsky 
+# Maintainer: Alad Wenter 
+# Contributor: Lukas Jirkovsky 
 pkgname=asoundconf
 pkgver=1.2
-_pkgver=01a1f5320b0a
-pkgrel=1
-epoch=1
-pkgdesc="Get and set configuration parameters in ~/.asoundrc.asoundconf"
+_revision=bf25f416f615a43267abecab4c599e86f363438b # 1.2
+pkgrel=2
+pkgdesc="utility to read and change the user's ALSA library configuration"
 arch=('any')
 url="https://bitbucket.org/stativ/asoundconf;
 license=('GPL')
 depends=('python2')
+makedepends=('mercurial')
 optdepends=('pygtk: asoundconf-gtk GUI')
-source=($pkgname-${pkgver}.tar.gz::https://bitbucket.org/stativ/asoundconf/get/${pkgver}.tar.gz)
-md5sums=('aa12135497217f248e70c6aee286f453')
+source=("hg+https://bitbucket.org/stativ/asoundconf#revision=$_revision;)
+sha256sums=('SKIP')
 
+build() {
+cd "$pkgname"
+python2 setup.py build
+}
+
 package() {
-  cd "$srcdir/stativ-$pkgname-$_pkgver"
-  python2 setup.py install --root="$pkgdir/" --optimize=1
+cd "$pkgname"
+python2 setup.py install --root="$pkgdir/" --optimize=1 --skip-build
 }
 
 # vim:set ts=2 sw=2 et:


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

2019-08-06 Thread Alad Wenter via arch-commits
Date: Tuesday, August 6, 2019 @ 20:14:57
  Author: alad
Revision: 498095

archrelease: copy trunk to community-any

Added:
  asoundconf/repos/community-any/PKGBUILD
(from rev 498094, asoundconf/trunk/PKGBUILD)
Deleted:
  asoundconf/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 20:14:50 UTC (rev 498094)
+++ PKGBUILD2019-08-06 20:14:57 UTC (rev 498095)
@@ -1,21 +0,0 @@
-# Maintainer: Lukas Jirkovsky 
-pkgname=asoundconf
-pkgver=1.2
-_pkgver=01a1f5320b0a
-pkgrel=1
-epoch=1
-pkgdesc="Get and set configuration parameters in ~/.asoundrc.asoundconf"
-arch=('any')
-url="https://bitbucket.org/stativ/asoundconf;
-license=('GPL')
-depends=('python2')
-optdepends=('pygtk: asoundconf-gtk GUI')
-source=($pkgname-${pkgver}.tar.gz::https://bitbucket.org/stativ/asoundconf/get/${pkgver}.tar.gz)
-md5sums=('aa12135497217f248e70c6aee286f453')
-
-package() {
-  cd "$srcdir/stativ-$pkgname-$_pkgver"
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: asoundconf/repos/community-any/PKGBUILD (from rev 498094, 
asoundconf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 20:14:57 UTC (rev 498095)
@@ -0,0 +1,27 @@
+# Maintainer: Alad Wenter 
+# Contributor: Lukas Jirkovsky 
+pkgname=asoundconf
+pkgver=1.2
+_revision=bf25f416f615a43267abecab4c599e86f363438b # 1.2
+pkgrel=2
+pkgdesc="utility to read and change the user's ALSA library configuration"
+arch=('any')
+url="https://bitbucket.org/stativ/asoundconf;
+license=('GPL')
+depends=('python2')
+makedepends=('mercurial')
+optdepends=('pygtk: asoundconf-gtk GUI')
+source=("hg+https://bitbucket.org/stativ/asoundconf#revision=$_revision;)
+sha256sums=('SKIP')
+
+build() {
+cd "$pkgname"
+python2 setup.py build
+}
+
+package() {
+cd "$pkgname"
+python2 setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 20:14:13
  Author: anthraxx
Revision: 359264

archrelease: copy trunk to extra-x86_64

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

-+
 PKGBUILD|  119 +-
 mtr.install |   18 
 2 files changed, 69 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 20:14:07 UTC (rev 359263)
+++ PKGBUILD2019-08-06 20:14:13 UTC (rev 359264)
@@ -1,59 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Ionut Biru 
-# Contributor: Douglas Soares de Andrade 
-
-pkgbase=mtr
-pkgname=('mtr' 'mtr-gtk')
-pkgver=0.93
-pkgrel=1
-pkgdesc='Combines the functionality of traceroute and ping into one tool'
-url='https://www.bitwizard.nl/mtr/'
-arch=('x86_64')
-license=('GPL2')
-makedepends=('ncurses' 'gtk2' 'libcap')
-install=mtr.install
-source=(ftp://ftp.bitwizard.nl/mtr/${pkgbase}-${pkgver}.tar.gz)
-sha512sums=('046e98a661bd6248ce819411ceb6e2b875b92877de38523594898df507836c113573cf40d7d4cc548370f515abe99e0aa4d8b3ba44ad54dd00f8e93c8a96c021')
-
-prepare() {
-  (cd ${pkgbase}-${pkgver}
-autoreconf -fiv
-  )
-  cp -ra ${pkgbase}-${pkgver}{,-cli}
-}
-
-build() {
-  (cd ${pkgbase}-${pkgver}-cli
-./configure \
-  --prefix=/usr \
-  --without-gtk \
-  --sbindir=/usr/bin
-make
-  )
-  (cd ${pkgbase}-${pkgver}
-./configure \
-  --prefix=/usr \
-  --sbindir=/usr/bin
-make
-  )
-}
-
-package_mtr() {
-  pkgdesc='Combines the functionality of traceroute and ping into one tool 
(CLI version)'
-  depends=('ncurses' 'libcap')
-  optdepends=('bash-completion: bash completion support')
-  cd ${pkgbase}-${pkgver}-cli
-  make DESTDIR="${pkgdir}" install
-}
-
-package_mtr-gtk() {
-  pkgdesc='Combines the functionality of traceroute and ping into one tool 
(GTK version)'
-  depends=('ncurses' 'libcap' 'gtk2')
-  optdepends=('bash-completion: bash completion support')
-  conflicts=('mtr')
-  provides=("mtr=${pkgver}")
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: mtr/repos/extra-x86_64/PKGBUILD (from rev 359263, mtr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 20:14:13 UTC (rev 359264)
@@ -0,0 +1,60 @@
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: Douglas Soares de Andrade 
+
+pkgbase=mtr
+pkgname=('mtr' 'mtr-gtk')
+pkgver=0.93
+pkgrel=2
+pkgdesc='Combines the functionality of traceroute and ping into one tool'
+url='https://www.bitwizard.nl/mtr/'
+arch=('x86_64')
+license=('GPL2')
+makedepends=('ncurses' 'gtk2' 'libcap')
+install=mtr.install
+source=(https://github.com/traviscross/mtr/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('865c394d8dfa234c472832dc205ddc9ec3cf0552475f565782fd4f4e878251c03f1473e2d28d6799e59da4fcb33c5355049f1e6f02e8610c6bbf681ffb78f53e')
+
+prepare() {
+  (cd ${pkgbase}-${pkgver}
+echo "${pkgver}" > .tarball-version
+autoreconf -fiv
+  )
+  cp -ra ${pkgbase}-${pkgver}{,-cli}
+}
+
+build() {
+  (cd ${pkgbase}-${pkgver}-cli
+./configure \
+  --prefix=/usr \
+  --without-gtk \
+  --sbindir=/usr/bin
+make
+  )
+  (cd ${pkgbase}-${pkgver}
+./configure \
+  --prefix=/usr \
+  --sbindir=/usr/bin
+make
+  )
+}
+
+package_mtr() {
+  pkgdesc='Combines the functionality of traceroute and ping into one tool 
(CLI version)'
+  depends=('ncurses' 'libcap')
+  optdepends=('bash-completion: bash completion support')
+  cd ${pkgbase}-${pkgver}-cli
+  make DESTDIR="${pkgdir}" install
+}
+
+package_mtr-gtk() {
+  pkgdesc='Combines the functionality of traceroute and ping into one tool 
(GTK version)'
+  depends=('ncurses' 'libcap' 'gtk2')
+  optdepends=('bash-completion: bash completion support')
+  conflicts=('mtr')
+  provides=("mtr=${pkgver}")
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: mtr.install
===
--- mtr.install 2019-08-06 20:14:07 UTC (rev 359263)
+++ mtr.install 2019-08-06 20:14:13 UTC (rev 359264)
@@ -1,9 +0,0 @@
-post_install() {
-  setcap cap_net_bind_service,cap_net_raw+ep usr/bin/mtr-packet
-}
-
-post_upgrade() {
-  post_install
-}
-
-# vim: ts=2 sw=2 et:

Copied: mtr/repos/extra-x86_64/mtr.install (from rev 359263, 
mtr/trunk/mtr.install)
===
--- mtr.install (rev 0)
+++ mtr.install 2019-08-06 20:14:13 UTC (rev 359264)
@@ -0,0 +1,9 @@
+post_install() {
+  setcap cap_net_bind_service,cap_net_raw+ep usr/bin/mtr-packet
+}
+
+post_upgrade() {

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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 20:14:07
  Author: anthraxx
Revision: 359263

upgpkg: mtr 0.93-2 (fix version information)

also prefere unprocessed source files

Modified:
  mtr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 18:41:59 UTC (rev 359262)
+++ PKGBUILD2019-08-06 20:14:07 UTC (rev 359263)
@@ -5,7 +5,7 @@
 pkgbase=mtr
 pkgname=('mtr' 'mtr-gtk')
 pkgver=0.93
-pkgrel=1
+pkgrel=2
 pkgdesc='Combines the functionality of traceroute and ping into one tool'
 url='https://www.bitwizard.nl/mtr/'
 arch=('x86_64')
@@ -12,11 +12,12 @@
 license=('GPL2')
 makedepends=('ncurses' 'gtk2' 'libcap')
 install=mtr.install
-source=(ftp://ftp.bitwizard.nl/mtr/${pkgbase}-${pkgver}.tar.gz)
-sha512sums=('046e98a661bd6248ce819411ceb6e2b875b92877de38523594898df507836c113573cf40d7d4cc548370f515abe99e0aa4d8b3ba44ad54dd00f8e93c8a96c021')
+source=(https://github.com/traviscross/mtr/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('865c394d8dfa234c472832dc205ddc9ec3cf0552475f565782fd4f4e878251c03f1473e2d28d6799e59da4fcb33c5355049f1e6f02e8610c6bbf681ffb78f53e')
 
 prepare() {
   (cd ${pkgbase}-${pkgver}
+echo "${pkgver}" > .tarball-version
 autoreconf -fiv
   )
   cp -ra ${pkgbase}-${pkgver}{,-cli}


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

2019-08-06 Thread Alad Wenter via arch-commits
Date: Tuesday, August 6, 2019 @ 20:10:38
  Author: alad
Revision: 498093

archrelease: copy trunk to community-any

Added:
  youtube-viewer/repos/community-any/PKGBUILD
(from rev 498092, youtube-viewer/trunk/PKGBUILD)
Deleted:
  youtube-viewer/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 20:10:27 UTC (rev 498092)
+++ PKGBUILD2019-08-06 20:10:38 UTC (rev 498093)
@@ -1,48 +0,0 @@
-# Maintainer: Alad Wenter 
-# Contributor: Alexander F Rødseth 
-# Contributor: Daniel Wallace < danielwallace at gtmanfred dot com>
-# Contributor: Trizen 
-
-pkgname=youtube-viewer
-epoch=1
-pkgver=3.5.4
-pkgrel=1
-pkgdesc='Command line utility for viewing YouTube videos'
-arch=('any')
-url='https://github.com/trizen/youtube-viewer'
-license=('GPL3')
-depends=('perl' 'perl-data-dump' 'perl-json' 'perl-lwp-protocol-https' 
'perl-libwww')
-makedepends=('perl-module-build')
-optdepends=('perl-json-xs: faster JSON to HASH conversion'
-'perl-text-charwidth: print results in a fixed-width format'
-'perl-term-readline-gnu: better STDIN support'
-'youtube-dl: play videos with encrypted signatures'
-'wget: download videos with wget'
-'vlc: play videos with VLC'
-'mpv: play videos with MPV'
-'gtk2-perl: GTK GUI'
-'perl-file-sharedir: GTK GUI')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/trizen/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=('d5116359c17c6cface40e336980e341a3d84bfdae97b0e252ca70180104c6475')
-
-build() {
-cd "$pkgname-$pkgver"
-perl Build.PL --installdirs vendor --gtk
-}
-
-check(){
-cd "$pkgname-$pkgver"
-./Build test
-}
-
-package() {
-cd "$pkgname-$pkgver"
-./Build install --destdir "$pkgdir"
-rm -r "$pkgdir"/usr/lib
-
-mkdir "$pkgdir"/usr/share/{applications,pixmaps}
-mv 
"$pkgdir"/usr/share/perl5/vendor_perl/auto/share/dist/WWW-YoutubeViewer/gtk-youtube-viewer.desktop
 \
-"$pkgdir"/usr/share/applications/gtk-youtube-viewer.desktop
-cp 
"$pkgdir"/usr/share/perl5/vendor_perl/auto/share/dist/WWW-YoutubeViewer/icons/gtk-youtube-viewer.png
 \
-"$pkgdir"/usr/share/pixmaps/gtk-youtube-viewer.png
-}

Copied: youtube-viewer/repos/community-any/PKGBUILD (from rev 498092, 
youtube-viewer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 20:10:38 UTC (rev 498093)
@@ -0,0 +1,48 @@
+# Maintainer: Alad Wenter 
+# Contributor: Alexander F Rødseth 
+# Contributor: Daniel Wallace < danielwallace at gtmanfred dot com>
+# Contributor: Trizen 
+
+pkgname=youtube-viewer
+epoch=1
+pkgver=3.5.5
+pkgrel=1
+pkgdesc='Command line utility for viewing YouTube videos'
+arch=('any')
+url='https://github.com/trizen/youtube-viewer'
+license=('GPL3')
+depends=('perl' 'perl-data-dump' 'perl-json' 'perl-lwp-protocol-https' 
'perl-libwww')
+makedepends=('perl-module-build')
+optdepends=('perl-json-xs: faster JSON to HASH conversion'
+'perl-text-charwidth: print results in a fixed-width format'
+'perl-term-readline-gnu: better STDIN support'
+'youtube-dl: play videos with encrypted signatures'
+'wget: download videos with wget'
+'vlc: play videos with VLC'
+'mpv: play videos with MPV'
+'gtk2-perl: GTK GUI'
+'perl-file-sharedir: GTK GUI')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/trizen/$pkgname/archive/$pkgver.tar.gz;)
+sha256sums=('f6ce0a57227dfe2c411ef9a7023824206f1f546de06a23e644a2ca798a154a3f')
+
+build() {
+cd "$pkgname-$pkgver"
+perl Build.PL --installdirs vendor --gtk
+}
+
+check(){
+cd "$pkgname-$pkgver"
+./Build test
+}
+
+package() {
+cd "$pkgname-$pkgver"
+./Build install --destdir "$pkgdir"
+rm -r "$pkgdir"/usr/lib
+
+mkdir "$pkgdir"/usr/share/{applications,pixmaps}
+mv 
"$pkgdir"/usr/share/perl5/vendor_perl/auto/share/dist/WWW-YoutubeViewer/gtk-youtube-viewer.desktop
 \
+"$pkgdir"/usr/share/applications/gtk-youtube-viewer.desktop
+cp 
"$pkgdir"/usr/share/perl5/vendor_perl/auto/share/dist/WWW-YoutubeViewer/icons/gtk-youtube-viewer.png
 \
+"$pkgdir"/usr/share/pixmaps/gtk-youtube-viewer.png
+}


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

2019-08-06 Thread Alad Wenter via arch-commits
Date: Tuesday, August 6, 2019 @ 20:10:27
  Author: alad
Revision: 498092

upgpkg: youtube-viewer 1:3.5.5-1

Modified:
  youtube-viewer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 19:45:10 UTC (rev 498091)
+++ PKGBUILD2019-08-06 20:10:27 UTC (rev 498092)
@@ -5,7 +5,7 @@
 
 pkgname=youtube-viewer
 epoch=1
-pkgver=3.5.4
+pkgver=3.5.5
 pkgrel=1
 pkgdesc='Command line utility for viewing YouTube videos'
 arch=('any')
@@ -23,7 +23,7 @@
 'gtk2-perl: GTK GUI'
 'perl-file-sharedir: GTK GUI')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/trizen/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=('d5116359c17c6cface40e336980e341a3d84bfdae97b0e252ca70180104c6475')
+sha256sums=('f6ce0a57227dfe2c411ef9a7023824206f1f546de06a23e644a2ca798a154a3f')
 
 build() {
 cd "$pkgname-$pkgver"


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 19:45:10
  Author: felixonmars
Revision: 498091

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 19:44:35 UTC (rev 498090)
+++ PKGBUILD2019-08-06 19:45:10 UTC (rev 498091)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-awkward
-pkgver=0.12.5
-pkgrel=1
-pkgdesc="Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy"
-url="https://github.com/scikit-hep/awkward-array;
-license=('BSD')
-arch=('any')
-depends=('python-numpy')
-makedepends=('python-setuptools' 'python-pytest-runner')
-checkdepends=('python-h5py')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/scikit-hep/awkward-array/archive/$pkgver.tar.gz;)
-sha512sums=('2b7a46609f161e27ad5f55becfa8756b47248befbc1fbdeb6aa4b40d4e1a8e5130b480163463dd3dedb9c3727cb0fcc6eb4eaa67a232fbeeb9b16d26a4415c49')
-
-build() {
-  cd awkward-array-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd awkward-array-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd awkward-array-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-awkward/repos/community-any/PKGBUILD (from rev 498090, 
python-awkward/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 19:45:10 UTC (rev 498091)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-awkward
+pkgver=0.12.6
+pkgrel=1
+pkgdesc="Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy"
+url="https://github.com/scikit-hep/awkward-array;
+license=('BSD')
+arch=('any')
+depends=('python-numpy')
+makedepends=('python-setuptools' 'python-pytest-runner')
+checkdepends=('python-h5py')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/scikit-hep/awkward-array/archive/$pkgver.tar.gz;)
+sha512sums=('298ac3680edf1d25130af19832e89e768d5dab0939a2afd89a726287783381cc4dc211423a1872787ef7d7ede9372fa6d4d4753f42af29cf12dfe013d9934fd0')
+
+build() {
+  cd awkward-array-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd awkward-array-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd awkward-array-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 19:44:35
  Author: felixonmars
Revision: 498090

upgpkg: python-awkward 0.12.6-1

Modified:
  python-awkward/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 19:42:39 UTC (rev 498089)
+++ PKGBUILD2019-08-06 19:44:35 UTC (rev 498090)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-awkward
-pkgver=0.12.5
+pkgver=0.12.6
 pkgrel=1
 pkgdesc="Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy"
 url="https://github.com/scikit-hep/awkward-array;
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools' 'python-pytest-runner')
 checkdepends=('python-h5py')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/scikit-hep/awkward-array/archive/$pkgver.tar.gz;)
-sha512sums=('2b7a46609f161e27ad5f55becfa8756b47248befbc1fbdeb6aa4b40d4e1a8e5130b480163463dd3dedb9c3727cb0fcc6eb4eaa67a232fbeeb9b16d26a4415c49')
+sha512sums=('298ac3680edf1d25130af19832e89e768d5dab0939a2afd89a726287783381cc4dc211423a1872787ef7d7ede9372fa6d4d4753f42af29cf12dfe013d9934fd0')
 
 build() {
   cd awkward-array-$pkgver


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

2019-08-06 Thread Eli Schwartz via arch-commits
Date: Tuesday, August 6, 2019 @ 19:40:48
  Author: eschwartz
Revision: 497983

archrelease: copy trunk to community-any

Added:
  python-dephell-versioning/repos/community-any/
  python-dephell-versioning/repos/community-any/PKGBUILD
(from rev 497975, python-dephell-versioning/trunk/PKGBUILD)

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

Copied: python-dephell-versioning/repos/community-any/PKGBUILD (from rev 
497975, python-dephell-versioning/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2019-08-06 19:40:48 UTC (rev 497983)
@@ -0,0 +1,42 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=dephell_versioning
+pkgname=python-dephell-versioning
+pkgver=0.1.1
+pkgrel=1
+pkgdesc="Bump project version like a pro"
+arch=('any')
+url="https://github.com/dephell/${_pkgname};
+license=('MIT')
+depends=('python-packaging')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
+sha256sums=('c438a39662fdf88b00196b56ece4e542db8fa9b16ee5c164a834451240026848')
+b2sums=('2574400f4638ef9d3c3484a821f6dfe17a430e4a4d03ba43c7e203012f18fd2bf066649527f72fbaab36c7fdbd9e5e262083dde0ca29699262520083878807d7')
+
+prepare() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+# pycache slipped into release tarballs
+find . -name \*.pyc -delete
+}
+
+build(){
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python -m pytest
+}
+
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


[arch-commits] Commit in (4 files)

2019-08-06 Thread Eli Schwartz via arch-commits
Date: Tuesday, August 6, 2019 @ 19:40:20
  Author: eschwartz
Revision: 497946

addpkg: python-dephell-versioning 0.1.1-1

part of python-dephell

Added:
  python-dephell-versioning/
  python-dephell-versioning/repos/
  python-dephell-versioning/trunk/
  python-dephell-versioning/trunk/PKGBUILD

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

Added: python-dephell-versioning/trunk/PKGBUILD
===
--- python-dephell-versioning/trunk/PKGBUILD(rev 0)
+++ python-dephell-versioning/trunk/PKGBUILD2019-08-06 19:40:20 UTC (rev 
497946)
@@ -0,0 +1,42 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=dephell_versioning
+pkgname=python-dephell-versioning
+pkgver=0.1.1
+pkgrel=1
+pkgdesc="Bump project version like a pro"
+arch=('any')
+url="https://github.com/dephell/${_pkgname};
+license=('MIT')
+depends=('python-packaging')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
+sha256sums=('c438a39662fdf88b00196b56ece4e542db8fa9b16ee5c164a834451240026848')
+b2sums=('2574400f4638ef9d3c3484a821f6dfe17a430e4a4d03ba43c7e203012f18fd2bf066649527f72fbaab36c7fdbd9e5e262083dde0ca29699262520083878807d7')
+
+prepare() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+# pycache slipped into release tarballs
+find . -name \*.pyc -delete
+}
+
+build(){
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python -m pytest
+}
+
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2019-08-06 Thread Maxim Baz via arch-commits
Date: Tuesday, August 6, 2019 @ 19:38:31
  Author: maximbaz
Revision: 497943

upgpkg: py3status 3.20-1

Modified:
  py3status/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 18:47:01 UTC (rev 497942)
+++ PKGBUILD2019-08-06 19:38:31 UTC (rev 497943)
@@ -4,7 +4,7 @@
 # Contributor: carstene1ns  - http://git.io/ctPKG
 
 pkgname=py3status
-pkgver=3.19
+pkgver=3.20
 pkgrel=1
 pkgdesc="An extensible i3status replacement/wrapper written in python"
 url="https://www.ultrabug.fr/tag/py3status/;
@@ -19,7 +19,7 @@
 'python-tzlocal: for modules that need time zone info'
 'pacman-contrib: for the arch_updates module')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/ultrabug/py3status/archive/$pkgver.tar.gz;)
-sha256sums=('0ca0601f336ce1476cb5a0c69ced39230f2e2c56700c72d8a527cad99f25f7bf')
+sha256sums=('136d3033f6945b522d02f43754b265d7f451694fa57577d923071de1831101f1')
 
 build() {
 cd "$pkgname-$pkgver"


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

2019-08-06 Thread Maxim Baz via arch-commits
Date: Tuesday, August 6, 2019 @ 19:38:36
  Author: maximbaz
Revision: 497944

archrelease: copy trunk to community-any

Added:
  py3status/repos/community-any/PKGBUILD
(from rev 497943, py3status/trunk/PKGBUILD)
Deleted:
  py3status/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 19:38:31 UTC (rev 497943)
+++ PKGBUILD2019-08-06 19:38:36 UTC (rev 497944)
@@ -1,40 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Alexis "Horgix" Chotard 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-
-pkgname=py3status
-pkgver=3.19
-pkgrel=1
-pkgdesc="An extensible i3status replacement/wrapper written in python"
-url="https://www.ultrabug.fr/tag/py3status/;
-arch=('any')
-license=('BSD')
-depends=('python' 'python-setuptools')
-checkdepends=('python-pytest-runner')
-optdepends=('i3status: for i3status modules'
-'i3blocks: for i3blocks modules'
-'python-pyudev: for udev event monitoring'
-'python-pydbus: for modules that rely on D-Bus'
-'python-tzlocal: for modules that need time zone info'
-'pacman-contrib: for the arch_updates module')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ultrabug/py3status/archive/$pkgver.tar.gz;)
-sha256sums=('0ca0601f336ce1476cb5a0c69ced39230f2e2c56700c72d8a527cad99f25f7bf')
-
-build() {
-cd "$pkgname-$pkgver"
-python setup.py build
-}
-
-check() {
-cd "$pkgname-$pkgver"
-python setup.py pytest
-}
-
-package() {
-cd "$pkgname-$pkgver"
-python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-install -d "$pkgdir/usr/share/doc/$pkgname"
-install -m644 doc/* README.rst CHANGELOG "$pkgdir/usr/share/doc/$pkgname"
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: py3status/repos/community-any/PKGBUILD (from rev 497943, 
py3status/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 19:38:36 UTC (rev 497944)
@@ -0,0 +1,40 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Alexis "Horgix" Chotard 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+
+pkgname=py3status
+pkgver=3.20
+pkgrel=1
+pkgdesc="An extensible i3status replacement/wrapper written in python"
+url="https://www.ultrabug.fr/tag/py3status/;
+arch=('any')
+license=('BSD')
+depends=('python' 'python-setuptools')
+checkdepends=('python-pytest-runner')
+optdepends=('i3status: for i3status modules'
+'i3blocks: for i3blocks modules'
+'python-pyudev: for udev event monitoring'
+'python-pydbus: for modules that rely on D-Bus'
+'python-tzlocal: for modules that need time zone info'
+'pacman-contrib: for the arch_updates module')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ultrabug/py3status/archive/$pkgver.tar.gz;)
+sha256sums=('136d3033f6945b522d02f43754b265d7f451694fa57577d923071de1831101f1')
+
+build() {
+cd "$pkgname-$pkgver"
+python setup.py build
+}
+
+check() {
+cd "$pkgname-$pkgver"
+python setup.py pytest
+}
+
+package() {
+cd "$pkgname-$pkgver"
+python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+install -d "$pkgdir/usr/share/doc/$pkgname"
+install -m644 doc/* README.rst CHANGELOG "$pkgdir/usr/share/doc/$pkgname"
+install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-08-06 Thread Eli Schwartz via arch-commits
Date: Tuesday, August 6, 2019 @ 18:47:01
  Author: eschwartz
Revision: 497942

camlp4 is not needed to build because there is no vendored lablgl

Modified:
  llpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 18:43:03 UTC (rev 497941)
+++ PKGBUILD2019-08-06 18:47:01 UTC (rev 497942)
@@ -17,7 +17,7 @@
 'librsvg: llppac svg conversion'
 'imagemagick: llppac image conversion'
 'inotify-tools: for the llpp.inotify autoreload wrapper')
-makedepends=('git' 'asciidoc' 'ocaml' 'ocaml-lablgl' 'libmupdf' 'camlp4')
+makedepends=('git' 'asciidoc' 'ocaml' 'ocaml-lablgl' 'libmupdf')
 
 # llpp seems to go through build systems like fasion, holomorph has provided a
 # very nice Makefile for building this software which has served well for


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

2019-08-06 Thread Gaëtan Bisson via arch-commits
Date: Tuesday, August 6, 2019 @ 18:43:03
  Author: bisson
Revision: 497941

archrelease: copy trunk to community-x86_64

Added:
  ncdu/repos/community-x86_64/PKGBUILD
(from rev 497940, ncdu/trunk/PKGBUILD)
Deleted:
  ncdu/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 18:42:51 UTC (rev 497940)
+++ PKGBUILD2019-08-06 18:43:03 UTC (rev 497941)
@@ -1,28 +0,0 @@
-# Contributor: lp76 
-# Contributor: Daenyth 
-# Maintainer: Gaetan Bisson 
-
-pkgname=ncdu
-pkgver=1.14
-pkgrel=1
-pkgdesc='Disk usage analyzer with an ncurses interface'
-url='https://dev.yorhel.nl/ncdu'
-license=('custom:MIT')
-depends=('ncurses')
-arch=('x86_64')
-validpgpkeys=('74460D32B80810EBA9AFA2E962394C698C2739FA')
-source=("https://dev.yorhel.nl/download/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('c694783aab21e27e64baad314b7c1ff34541bfa219fe9645ef6780f1c5558c44'
-'SKIP')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: ncdu/repos/community-x86_64/PKGBUILD (from rev 497940, 
ncdu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 18:43:03 UTC (rev 497941)
@@ -0,0 +1,28 @@
+# Contributor: lp76 
+# Contributor: Daenyth 
+# Maintainer: Gaetan Bisson 
+
+pkgname=ncdu
+pkgver=1.14.1
+pkgrel=1
+pkgdesc='Disk usage analyzer with an ncurses interface'
+url='https://dev.yorhel.nl/ncdu'
+license=('custom:MIT')
+depends=('ncurses')
+arch=('x86_64')
+validpgpkeys=('74460D32B80810EBA9AFA2E962394C698C2739FA')
+source=("https://dev.yorhel.nl/download/${pkgname}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('be31e0e8c13a0189f2a186936f7e298c6390ebdc573bb4a1330bc1fcbf56e13e'
+'SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2019-08-06 Thread Gaëtan Bisson via arch-commits
Date: Tuesday, August 6, 2019 @ 18:42:51
  Author: bisson
Revision: 497940

upstream update

Modified:
  ncdu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 18:11:36 UTC (rev 497939)
+++ PKGBUILD2019-08-06 18:42:51 UTC (rev 497940)
@@ -3,7 +3,7 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=ncdu
-pkgver=1.14
+pkgver=1.14.1
 pkgrel=1
 pkgdesc='Disk usage analyzer with an ncurses interface'
 url='https://dev.yorhel.nl/ncdu'
@@ -12,7 +12,7 @@
 arch=('x86_64')
 validpgpkeys=('74460D32B80810EBA9AFA2E962394C698C2739FA')
 source=("https://dev.yorhel.nl/download/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('c694783aab21e27e64baad314b7c1ff34541bfa219fe9645ef6780f1c5558c44'
+sha256sums=('be31e0e8c13a0189f2a186936f7e298c6390ebdc573bb4a1330bc1fcbf56e13e'
 'SKIP')
 
 build() {


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

2019-08-06 Thread Gaëtan Bisson via arch-commits
Date: Tuesday, August 6, 2019 @ 18:41:59
  Author: bisson
Revision: 359262

archrelease: copy trunk to extra-x86_64

Added:
  mpd/repos/extra-x86_64/PKGBUILD
(from rev 359261, mpd/trunk/PKGBUILD)
  mpd/repos/extra-x86_64/conf
(from rev 359261, mpd/trunk/conf)
  mpd/repos/extra-x86_64/sysusers.d
(from rev 359261, mpd/trunk/sysusers.d)
  mpd/repos/extra-x86_64/tmpfiles.d
(from rev 359261, mpd/trunk/tmpfiles.d)
Deleted:
  mpd/repos/extra-x86_64/PKGBUILD
  mpd/repos/extra-x86_64/conf
  mpd/repos/extra-x86_64/sysusers.d
  mpd/repos/extra-x86_64/tmpfiles.d

+
 PKGBUILD   |  140 +--
 conf   |   12 ++---
 sysusers.d |4 -
 tmpfiles.d |6 +-
 4 files changed, 81 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 18:41:26 UTC (rev 359261)
+++ PKGBUILD2019-08-06 18:41:59 UTC (rev 359262)
@@ -1,70 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Angel Velasquez 
-# Contributor: Andrea Scarpino 
-# Contributor: Damir Perisa 
-# Contributor: Ben 
-
-pkgname=mpd
-pkgver=0.21.12
-pkgrel=1
-pkgdesc='Flexible, powerful, server-side application for playing music'
-url='https://www.musicpd.org/'
-license=('GPL')
-arch=('x86_64')
-depends=('audiofile' 'avahi' 'curl' 'faad2' 'ffmpeg' 'fluidsynth'
-'icu' 'jack' 'libao' 'libcdio-paranoia' 'libgme' 'libid3tag' 'libmad'
-'libmikmod' 'libmms' 'libmodplug' 'libmpcdec' 'libmpdclient' 'libnfs'
-'libsamplerate' 'libshout' 'libsoxr' 'libvorbis' 'systemd-libs'
-'libupnp' 'mpg123' 'openal' 'smbclient' 'sqlite' 'twolame' 'wavpack'
-'wildmidi' 'yajl' 'zziplib')
-makedepends=('boost' 'meson' 'python-sphinx')
-validpgpkeys=('0392335A78083894A4301C43236E8A58C6DB4512')
-#source=("https://www.musicpd.org/download/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig}
-source=("https://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig}
-'tmpfiles.d'
-'sysusers.d'
-'conf')
-sha256sums=('bb8a7341236a76c667980c261bc37ef4e22298ed850ab0a571448388d175a5bb'
-'SKIP'
-'2faa85c12449a5b3ca422ff1c1fa06d057c7e262a74bfa6298c914a92d6f2e7a'
-'0b74c6e5db08daab3091dc15a6b0c75210ba2f9e98fa074f6cfd605a461056b6'
-'f40f68205834ca53cea3372e930bfe6c2f9ecc9df3b1605df2fec63a658b2e03')
-
-backup=('etc/mpd.conf')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   rm -fr build
-   install -d build
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}/build"
-   _opts=('-Ddocumentation=true'
-  '-Dchromaprint=disabled' # appears not to be used for anything
-  '-Dsidplay=disabled' # unclear why but disabled in the past
-  '-Dadplug=disabled' # not in an official repo
-  '-Dsndio=disabled' # interferes with detection of alsa devices
-  '-Dshine=disabled' # not in an official repo
-  '-Dtremor=disabled' # not in an official repo
-   )
-   arch-meson .. ${_opts[@]}
-   ninja
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}/build"
-   DESTDIR="${pkgdir}" ninja install
-   install -Dm644 ../doc/mpdconf.example 
"${pkgdir}"/usr/share/doc/mpd/mpdconf.example
-   install -Dm644 ../doc/mpd.conf.5 
"${pkgdir}"/usr/share/man/man5/mpd.conf.5
-   install -Dm644 ../doc/mpd.1 "${pkgdir}"/usr/share/man/man1/mpd.1
-
-   install -Dm644 ../../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/mpd.conf
-   install -Dm644 ../../sysusers.d "${pkgdir}"/usr/lib/sysusers.d/mpd.conf
-   install -Dm644 ../../conf "${pkgdir}"/etc/mpd.conf
-
-   sed \
-   -e '/\[Service\]/a User=mpd' \
-   -e '/WantedBy=/c WantedBy=default.target' \
-   -i "${pkgdir}"/usr/lib/systemd/system/mpd.service
-}

Copied: mpd/repos/extra-x86_64/PKGBUILD (from rev 359261, mpd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 18:41:59 UTC (rev 359262)
@@ -0,0 +1,70 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Angel Velasquez 
+# Contributor: Andrea Scarpino 
+# Contributor: Damir Perisa 
+# Contributor: Ben 
+
+pkgname=mpd
+pkgver=0.21.13
+pkgrel=1
+pkgdesc='Flexible, powerful, server-side application for playing music'
+url='https://www.musicpd.org/'
+license=('GPL')
+arch=('x86_64')
+depends=('audiofile' 'avahi' 'curl' 'faad2' 'ffmpeg' 'fluidsynth'
+'icu' 'jack' 'libao' 'libcdio-paranoia' 'libgme' 'libid3tag' 'libmad'
+'libmikmod' 'libmms' 'libmodplug' 'libmpcdec' 'libmpdclient' 'libnfs'
+'libsamplerate' 'libshout' 'libsoxr' 'libvorbis' 'systemd-libs'
+'libupnp' 'mpg123' 'openal' 'smbclient' 'sqlite' 'twolame' 'wavpack'
+'wildmidi' 'yajl' 'zziplib')
+makedepends=('boost' 'meson' 'python-sphinx')

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

2019-08-06 Thread Gaëtan Bisson via arch-commits
Date: Tuesday, August 6, 2019 @ 18:41:26
  Author: bisson
Revision: 359261

upstream update

Modified:
  mpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 18:07:20 UTC (rev 359260)
+++ PKGBUILD2019-08-06 18:41:26 UTC (rev 359261)
@@ -5,7 +5,7 @@
 # Contributor: Ben 
 
 pkgname=mpd
-pkgver=0.21.12
+pkgver=0.21.13
 pkgrel=1
 pkgdesc='Flexible, powerful, server-side application for playing music'
 url='https://www.musicpd.org/'
@@ -24,7 +24,7 @@
 'tmpfiles.d'
 'sysusers.d'
 'conf')
-sha256sums=('bb8a7341236a76c667980c261bc37ef4e22298ed850ab0a571448388d175a5bb'
+sha256sums=('95b70b268406bde15bda4464ef768f7e773417a8c776d42a678c5a5070855eea'
 'SKIP'
 '2faa85c12449a5b3ca422ff1c1fa06d057c7e262a74bfa6298c914a92d6f2e7a'
 '0b74c6e5db08daab3091dc15a6b0c75210ba2f9e98fa074f6cfd605a461056b6'


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

2019-08-06 Thread Christian Hesse via arch-commits
Date: Tuesday, August 6, 2019 @ 18:11:36
  Author: eworm
Revision: 497939

archrelease: copy trunk to community-x86_64

Added:
  libiodbc/repos/community-x86_64/PKGBUILD
(from rev 497938, libiodbc/trunk/PKGBUILD)
Deleted:
  libiodbc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 18:11:28 UTC (rev 497938)
+++ PKGBUILD2019-08-06 18:11:36 UTC (rev 497939)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-# Contributor: Sergej Pupykin 
-
-pkgname=libiodbc
-pkgver=3.52.12
-pkgrel=2
-pkgdesc='Independent Open DataBase Connectivity for Linux'
-arch=('x86_64')
-url='http://www.iodbc.org/dataspace/iodbc/wiki/iODBC/'
-license=('LGPL')
-makedepends=('chrpath')
-source=("https://downloads.sourceforge.net/iodbc/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('51c5ff3a7d9a54202486cb77a3514e0e379a135beefcd5d12b96d1901f9dfb62')
-
-build() {
-   cd ${pkgname}-${pkgver}
-
-   ./configure --prefix=/usr \
-   --disable-static \
-   --includedir=/usr/include/libiodbc \
-   --disable-gui \
-   --disable-libodbc
-   make
-}
-
-package() {
-   cd ${pkgname}-${pkgver}
-
-   make DESTDIR=${pkgdir} install
-
-   chrpath -d ${pkgdir}/usr/bin/iodbctest{,w}
-   rm -rf ${pkgdir}/usr/share/libiodbc/
-}

Copied: libiodbc/repos/community-x86_64/PKGBUILD (from rev 497938, 
libiodbc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 18:11:36 UTC (rev 497939)
@@ -0,0 +1,37 @@
+# Maintainer: Christian Hesse 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+# Contributor: Sergej Pupykin 
+
+pkgname=libiodbc
+pkgver=3.52.13
+pkgrel=1
+pkgdesc='Independent Open DataBase Connectivity for Linux'
+arch=('x86_64')
+url='http://www.iodbc.org/dataspace/doc/iodbc/wiki/iodbcWiki/'
+license=('LGPL')
+depends=('bash')
+makedepends=('chrpath')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/openlink/iODBC/archive/v${pkgver}.tar.gz;)
+sha256sums=('4bf67fc6d4d237a4db19b292b5dd255ee09a0b2daa4e4058cf3a918bc5102135')
+
+build() {
+   cd iODBC-${pkgver}
+
+   ./autogen.sh
+   ./configure --prefix=/usr \
+   --disable-static \
+   --includedir=/usr/include/libiodbc \
+   --disable-gui \
+   --disable-libodbc
+   make
+}
+
+package() {
+   cd iODBC-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   chrpath -d ${pkgdir}/usr/bin/iodbctest{,w}
+   rm -rf ${pkgdir}/usr/share/libiodbc/
+}


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

2019-08-06 Thread Christian Hesse via arch-commits
Date: Tuesday, August 6, 2019 @ 18:11:28
  Author: eworm
Revision: 497938

upgpkg: libiodbc 3.52.13-1

new upstream release

Modified:
  libiodbc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 18:04:45 UTC (rev 497937)
+++ PKGBUILD2019-08-06 18:11:28 UTC (rev 497938)
@@ -4,19 +4,21 @@
 # Contributor: Sergej Pupykin 
 
 pkgname=libiodbc
-pkgver=3.52.12
-pkgrel=2
+pkgver=3.52.13
+pkgrel=1
 pkgdesc='Independent Open DataBase Connectivity for Linux'
 arch=('x86_64')
-url='http://www.iodbc.org/dataspace/iodbc/wiki/iODBC/'
+url='http://www.iodbc.org/dataspace/doc/iodbc/wiki/iodbcWiki/'
 license=('LGPL')
+depends=('bash')
 makedepends=('chrpath')
-source=("https://downloads.sourceforge.net/iodbc/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('51c5ff3a7d9a54202486cb77a3514e0e379a135beefcd5d12b96d1901f9dfb62')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/openlink/iODBC/archive/v${pkgver}.tar.gz;)
+sha256sums=('4bf67fc6d4d237a4db19b292b5dd255ee09a0b2daa4e4058cf3a918bc5102135')
 
 build() {
-   cd ${pkgname}-${pkgver}
+   cd iODBC-${pkgver}
 
+   ./autogen.sh
./configure --prefix=/usr \
--disable-static \
--includedir=/usr/include/libiodbc \
@@ -26,7 +28,7 @@
 }
 
 package() {
-   cd ${pkgname}-${pkgver}
+   cd iODBC-${pkgver}
 
make DESTDIR=${pkgdir} install
 


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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 18:07:20
  Author: anthraxx
Revision: 359260

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/60-linux.hook
(from rev 359259, linux-hardened/trunk/60-linux.hook)
  linux-hardened/repos/extra-x86_64/90-linux.hook
(from rev 359259, linux-hardened/trunk/90-linux.hook)
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 359259, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config.x86_64
(from rev 359259, linux-hardened/trunk/config.x86_64)
  linux-hardened/repos/extra-x86_64/linux.install
(from rev 359259, linux-hardened/trunk/linux.install)
  linux-hardened/repos/extra-x86_64/linux.preset
(from rev 359259, linux-hardened/trunk/linux.preset)
Deleted:
  linux-hardened/repos/extra-x86_64/60-linux.hook
  linux-hardened/repos/extra-x86_64/90-linux.hook
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config.x86_64
  linux-hardened/repos/extra-x86_64/linux.install
  linux-hardened/repos/extra-x86_64/linux.preset

---+
 60-linux.hook |   24 
 90-linux.hook |   22 
 PKGBUILD  |  510 -
 config.x86_64 |20780 
 linux.install |   26 
 linux.preset  |   28 
 6 files changed, 10695 insertions(+), 10695 deletions(-)

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


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

2019-08-06 Thread Levente Polyak via arch-commits
Date: Tuesday, August 6, 2019 @ 18:07:13
  Author: anthraxx
Revision: 359259

upgpkg: linux-hardened 5.2.6.a-1

Modified:
  linux-hardened/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 14:44:55 UTC (rev 359258)
+++ PKGBUILD2019-08-06 18:07:13 UTC (rev 359259)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-_pkgver=5.2.5
+_pkgver=5.2.6
 _hardenedver=a
 _srcname=linux-${_pkgver}
 pkgver=${_pkgver}.${_hardenedver}
@@ -26,9 +26,9 @@
 linux.preset   # standard config files for mkinitcpio ramdisk
 )
 replaces=('linux-grsec')
-sha256sums=('c645402843f90a69426975f8923923dfc6edebb5d1bc0092560ffb7135d3cd96'
+sha256sums=('be105afb7394dce98953bcea79c2ce02345587eee4638fce9a5f5a1e7e7b1ff2'
 'SKIP'
-'a8d19561776c445212c3ec6b9550570f2097e32cfa553ef2280220937f3246b5'
+'e1fe4e79b5047745fc2a0b908739ce46a674da12875e002245de7b89f2a444de'
 'SKIP'
 '685188f59ab529893fe540ace20ca6e8832c799ad799811306cf039fd09d5bd3'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 18:04:45
  Author: felixonmars
Revision: 497937

archrelease: copy trunk to community-staging-x86_64

Added:
  xmonad-utils/repos/community-staging-x86_64/
  xmonad-utils/repos/community-staging-x86_64/PKGBUILD
(from rev 497936, xmonad-utils/trunk/PKGBUILD)

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

Copied: xmonad-utils/repos/community-staging-x86_64/PKGBUILD (from rev 497936, 
xmonad-utils/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-06 18:04:45 UTC (rev 497937)
@@ -0,0 +1,35 @@
+# Maintainer: Levente Polyak 
+# Contributor: Leif Warner 
+
+pkgname=xmonad-utils
+pkgver=0.1.3.3
+pkgrel=25
+pkgdesc='Small collection of X utilities'
+url='https://hackage.haskell.org/package/xmonad-utils'
+arch=('x86_64')
+license=('BSD')
+depends=('ghc-libs' 'gmp' 'libffi' 'libxrandr' 'haskell-x11' 'haskell-random' 
'haskell-unix')
+makedepends=('ghc')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('45a5db08e2e8fce4a11f929107c29d5073b897cbe83af0ea24ee2e691b72e2f8')
+sha512sums=('f969a0b75107266ec5f74edc06075a1ede72857311d8e0494bf5b567d18e0a9d6e5b046dbb2a34783c2eafc18be9576b86aa78415306974718031a7dd652418c')
+
+build() {
+  cd ${pkgname}-${pkgver}
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  rm "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 18:04:35
  Author: felixonmars
Revision: 497936

upgpkg: xmonad-utils 0.1.3.3-25

rebuild with dlist 0.8.0.7

Modified:
  xmonad-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 18:03:44 UTC (rev 497935)
+++ PKGBUILD2019-08-06 18:04:35 UTC (rev 497936)
@@ -3,7 +3,7 @@
 
 pkgname=xmonad-utils
 pkgver=0.1.3.3
-pkgrel=24
+pkgrel=25
 pkgdesc='Small collection of X utilities'
 url='https://hackage.haskell.org/package/xmonad-utils'
 arch=('x86_64')


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 18:03:44
  Author: felixonmars
Revision: 497935

archrelease: copy trunk to community-staging-x86_64

Added:
  xmonad-contrib/repos/community-staging-x86_64/
  xmonad-contrib/repos/community-staging-x86_64/PKGBUILD
(from rev 497934, xmonad-contrib/trunk/PKGBUILD)

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

Copied: xmonad-contrib/repos/community-staging-x86_64/PKGBUILD (from rev 
497934, xmonad-contrib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-06 18:03:44 UTC (rev 497935)
@@ -0,0 +1,42 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributor: Sergej Pupykin 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: orbisvicis 
+
+pkgname=xmonad-contrib
+pkgver=0.15
+pkgrel=17
+pkgdesc='Add-ons for xmonad'
+url='https://xmonad.org/'
+arch=('x86_64')
+license=('BSD')
+depends=('ghc-libs' 'xmonad' 'sh' 'haskell-x11' 'haskell-x11-xft' 
'haskell-utf8-string' 'haskell-random'
+ 'haskell-old-time')
+makedepends=('ghc')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/xmonad/xmonad-contrib/archive/v${pkgver}.tar.gz)
+sha512sums=('3690ede8744f688e67417aff63ab840eb7fb3c20ea7c6b13a8ccc5233ad34dd131ce5758b25af2bcf6a791ea7f4767f1147d86f291a4e251434ba8db03631dd7')
+
+prepare() {
+  sed -i -e '/semigroups/d' -e 's/utf8-string,/utf8-string/' 
${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  runhaskell Setup.lhs configure -O --enable-shared 
--enable-executable-dynamic --disable-library-vanilla \
+ --prefix=/usr -fuse_xft --libsubdir=\$compiler/site-local/\$pkgid 
\
+ --docdir=/usr/share/doc/${pkgname}
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -Dm 744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup.lhs copy --destdir="${pkgdir}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 18:03:30
  Author: felixonmars
Revision: 497934

upgpkg: xmonad-contrib 0.15-17

rebuild with dlist 0.8.0.7

Modified:
  xmonad-contrib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 18:00:42 UTC (rev 497933)
+++ PKGBUILD2019-08-06 18:03:30 UTC (rev 497934)
@@ -6,7 +6,7 @@
 
 pkgname=xmonad-contrib
 pkgver=0.15
-pkgrel=16
+pkgrel=17
 pkgdesc='Add-ons for xmonad'
 url='https://xmonad.org/'
 arch=('x86_64')


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 18:00:42
  Author: felixonmars
Revision: 497933

archrelease: copy trunk to community-staging-x86_64

Added:
  xmonad/repos/community-staging-x86_64/
  xmonad/repos/community-staging-x86_64/PKGBUILD
(from rev 497932, xmonad/trunk/PKGBUILD)
  xmonad/repos/community-staging-x86_64/dynamic-compilation.patch
(from rev 497932, xmonad/trunk/dynamic-compilation.patch)
  xmonad/repos/community-staging-x86_64/xmonad.svg
(from rev 497932, xmonad/trunk/xmonad.svg)

---+
 PKGBUILD  |   62 +++
 dynamic-compilation.patch |   11 ++
 xmonad.svg|   77 
 3 files changed, 150 insertions(+)

Copied: xmonad/repos/community-staging-x86_64/PKGBUILD (from rev 497932, 
xmonad/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-06 18:00:42 UTC (rev 497933)
@@ -0,0 +1,62 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributor: Sergej Pupykin 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: shild 
+
+pkgname=xmonad
+pkgver=0.15
+pkgrel=17
+pkgdesc='Lightweight X11 tiled window manager written in Haskell'
+url='https://xmonad.org/'
+arch=('x86_64')
+license=('BSD')
+depends=('ghc' 'haskell-x11' 'sh' 'haskell-utf8-string' 
'haskell-extensible-exceptions'
+ 'haskell-data-default' 'haskell-setlocale')
+makedepends=('gendesk')
+optdepends=('xorg-xmessage: for displaying visual error messages')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/xmonad/xmonad/archive/v${pkgver}.tar.gz
+dynamic-compilation.patch
+xmonad.svg)
+sha512sums=('07bf61a1355548679d264e62423dfe6c4ee886aff28ac748588aa7f4f9a4f1bf2afabb1104451fa56f5a3989d79b6044f479d2804e416940e02f52f18b443996'
+
'abc598ebc4b55917186cd4d549fc970f53905f820d394ada9a092c08d8833050ad18b23e2f4fd7f281487da2db5b0ca058600e995ac97b18d3be4c62071562d6'
+
'31f0ceb724a9931aeda75ab706c8908b5d8341af4df50ab1d749814baacb748ad3622601cd99ac03bf936b698fcd854b23d1541e1772306e3337a13a79b110b6')
+
+prepare() {
+  gendesk --pkgname "${pkgname}" --pkgdesc "${pkgdesc}"
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i "${srcdir}/dynamic-compilation.patch"
+  sed -i -e '/semigroups/d' -e 's/< 1.10,/< 1.10/' ${pkgname}.cabal
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="${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 ${pkgname}-${pkgver}
+
+  install -Dm 744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -Dm 744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+
+  runhaskell Setup.lhs copy --destdir="${pkgdir}"
+
+  # Requires pandoc, regex-posix, Pretty and cabal
+  #runhaskell util/GenerateManpage.hs
+
+  install -Dm 644 man/xmonad.1 -t "${pkgdir}/usr/share/man/man1"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/xmonad"
+  install -Dm 644 "$srcdir/xmonad.svg" -t "${pkgdir}/usr/share/pixmaps"
+  install -Dm 644 "$srcdir/xmonad.desktop" -t "${pkgdir}/usr/share/xsessions"
+}
+
+# vim: ts=2 sw=2 et:

Copied: xmonad/repos/community-staging-x86_64/dynamic-compilation.patch (from 
rev 497932, xmonad/trunk/dynamic-compilation.patch)
===
--- community-staging-x86_64/dynamic-compilation.patch  
(rev 0)
+++ community-staging-x86_64/dynamic-compilation.patch  2019-08-06 18:00:42 UTC 
(rev 497933)
@@ -0,0 +1,11 @@
+diff -ura xmonad-0.13.orig/src/XMonad/Core.hs xmonad-0.13/src/XMonad/Core.hs
+--- xmonad-0.13.orig/src/XMonad/Core.hs2017-06-23 17:13:06.154600231 
+0300
 xmonad-0.13/src/XMonad/Core.hs 2017-06-23 17:13:51.021867441 +0300
+@@ -626,6 +626,7 @@
+   , "-ilib"
+   , "-fforce-recomp"
+   , "-main-is", "main"
++  , "-dynamic"
+   , "-v0"
+   , "-o", bin
+   ] (Just dir) Nothing Nothing Nothing (Just 
errHandle)

Copied: xmonad/repos/community-staging-x86_64/xmonad.svg (from rev 497932, 
xmonad/trunk/xmonad.svg)
===
--- community-staging-x86_64/xmonad.svg (rev 0)
+++ community-staging-x86_64/xmonad.svg 2019-08-06 

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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 18:00:27
  Author: felixonmars
Revision: 497932

upgpkg: xmonad 0.15-17

rebuild with dlist 0.8.0.7

Modified:
  xmonad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:59:38 UTC (rev 497931)
+++ PKGBUILD2019-08-06 18:00:27 UTC (rev 497932)
@@ -6,7 +6,7 @@
 
 pkgname=xmonad
 pkgver=0.15
-pkgrel=16
+pkgrel=17
 pkgdesc='Lightweight X11 tiled window manager written in Haskell'
 url='https://xmonad.org/'
 arch=('x86_64')


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:59:28
  Author: felixonmars
Revision: 497930

upgpkg: xmobar 0.29.5-39

rebuild with dlist 0.8.0.7

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:57:58 UTC (rev 497929)
+++ PKGBUILD2019-08-06 17:59:28 UTC (rev 497930)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.29.5
-pkgrel=38
+pkgrel=39
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:59:38
  Author: felixonmars
Revision: 497931

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 497930, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-06 17:59:38 UTC (rev 497931)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.29.5
+pkgrel=39
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('BSD')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-stm' 'haskell-parsec' 
'haskell-parsec-numbers'
+ 'haskell-mtl' 'haskell-regex-base' 'haskell-regex-compat'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-iwlib'
+ 'wireless_tools' 'haskell-text' 'haskell-async' 
'haskell-extensible-exceptions')
+makedepends=('ghc')
+source=(https://github.com/jaor/xmobar/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('bd264f740301b6e1b468f9e7c6ecc02971825238415ba5148c36f180cf40310410c8aaa1f018f237a1b600b167e482178c5e8fc4f104b5c8dc465e0fb7a31d52')
+
+prepare() {
+  cd xmobar-$pkgver
+  sed -i -e 's/==.*0.3/== 0.4/' -e 's/< *4.12/<5/' -e 's/< *2.5/<3/' 
xmobar.cabal
+}
+
+build() {
+  cd xmobar-${pkgver}
+  runhaskell setup configure -O \
+--enable-shared \
+--prefix=/usr \
+--enable-executable-dynamic \
+--disable-library-vanilla \
+--flags="with_utf8 with_xft with_iwlib with_xpm with_inotify with_mpd 
with_dbus with_mpris"
+  runhaskell setup build
+}
+
+package() {
+  cd xmobar-${pkgver}
+  runhaskell setup copy --destdir="${pkgdir}"
+  install -Dm 644 license "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:57:58
  Author: felixonmars
Revision: 497929

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:57:48
  Author: felixonmars
Revision: 497928

upgpkg: tamarin-prover 1.4.1-126

rebuild with dlist 0.8.0.7

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:56:01 UTC (rev 497927)
+++ PKGBUILD2019-08-06 17:57:48 UTC (rev 497928)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.1
-pkgrel=125
+pkgrel=126
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="https://tamarin-prover.github.io;
 license=("GPL")


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:56:01
  Author: felixonmars
Revision: 497927

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: stylish-haskell/repos/community-staging-x86_64/PKGBUILD (from rev 
497926, stylish-haskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-06 17:56:01 UTC (rev 497927)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stylish-haskell
+pkgver=0.9.2.1
+pkgrel=51
+pkgdesc="Haskell code prettifier"
+url="https://github.com/jaspervdj/stylish-haskell;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-file-embed' 
'haskell-optparse-applicative'
+ 'haskell-src-exts' 'haskell-strict' 'haskell-syb' 'haskell-yaml')
+makedepends=('ghc' 'haskell-hunit' 'haskell-test-framework' 
'haskell-test-framework-hunit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('580353475fbd400bae4d7e7e4177ce3799b657601f29ad8158959ea8a40f875a9575b8b02a1a36f4e9c364ab5e266408ef2b3a004a09db6286e139e67c954d6d')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/semigroups/d' -e 's/< *1.21/<2/' $pkgname.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-old_base
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:55:51
  Author: felixonmars
Revision: 497926

upgpkg: stylish-haskell 0.9.2.1-51

rebuild with dlist 0.8.0.7

Modified:
  stylish-haskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:54:23 UTC (rev 497925)
+++ PKGBUILD2019-08-06 17:55:51 UTC (rev 497926)
@@ -3,7 +3,7 @@
 
 pkgname=stylish-haskell
 pkgver=0.9.2.1
-pkgrel=50
+pkgrel=51
 pkgdesc="Haskell code prettifier"
 url="https://github.com/jaspervdj/stylish-haskell;
 license=("BSD")


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:54:23
  Author: felixonmars
Revision: 497925

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   83 
 stack.install |4 ++
 2 files changed, 87 insertions(+)

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

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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:54:11
  Author: felixonmars
Revision: 497924

upgpkg: stack 2.1.3-6

rebuild with dlist 0.8.0.7

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:50:26 UTC (rev 497923)
+++ PKGBUILD2019-08-06 17:54:11 UTC (rev 497924)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.1.3
-pkgrel=5
+pkgrel=6
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2019-08-06 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, August 6, 2019 @ 17:50:26
  Author: jlichtblau
Revision: 497923

archrelease: copy trunk to community-x86_64

Added:
  homebank/repos/community-x86_64/PKGBUILD
(from rev 497922, homebank/trunk/PKGBUILD)
  homebank/repos/community-x86_64/homebank.changelog
(from rev 497922, homebank/trunk/homebank.changelog)
Deleted:
  homebank/repos/community-x86_64/PKGBUILD
  homebank/repos/community-x86_64/homebank.changelog

+
 PKGBUILD   |   58 ++---
 homebank.changelog |  217 +--
 2 files changed, 139 insertions(+), 136 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 17:50:11 UTC (rev 497922)
+++ PKGBUILD2019-08-06 17:50:26 UTC (rev 497923)
@@ -1,29 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: William Rea 
-
-pkgname=homebank
-pkgver=5.2.6
-pkgrel=1
-pkgdesc="Free, easy, personal accounting for everyone"
-arch=('x86_64')
-url="http://homebank.free.fr/;
-license=('GPL')
-depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'libofx'
- 'librsvg' 'perl-xml-parser' 'shared-mime-info' 'libsoup')
-makedepends=('intltool')
-changelog=$pkgname.changelog
-source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
-sha256sums=('9a14cbf7029080f208d76b27a2d8066964426685ddc86fd1abed30bd428c9881')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: homebank/repos/community-x86_64/PKGBUILD (from rev 497922, 
homebank/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 17:50:26 UTC (rev 497923)
@@ -0,0 +1,29 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: William Rea 
+
+pkgname=homebank
+pkgver=5.2.7
+pkgrel=1
+pkgdesc="Free, easy, personal accounting for everyone"
+arch=('x86_64')
+url="http://homebank.free.fr/;
+license=('GPL')
+depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'libofx'
+ 'librsvg' 'perl-xml-parser' 'shared-mime-info' 'libsoup')
+makedepends=('intltool')
+changelog=$pkgname.changelog
+source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
+sha256sums=('8eedbe4246477935bd3882c1a628d7fd6036f6467be998c2558bdf4b39b0eb5f')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: homebank.changelog
===
--- homebank.changelog  2019-08-06 17:50:11 UTC (rev 497922)
+++ homebank.changelog  2019-08-06 17:50:26 UTC (rev 497923)
@@ -1,107 +0,0 @@
-2019-05-25 Jaroslav Lichtblau 
-   * homebank 5.2.6-1
-
-2019-05-19 Jaroslav Lichtblau 
-   * homebank 5.2.5-1
-
-2019-04-24 Jaroslav Lichtblau 
-   * homebank 5.2.4-1
-
-2019-03-19 Jaroslav Lichtblau 
-   * homebank 5.2.3-1
-
-2018-10-07 Jaroslav Lichtblau 
-   * homebank 5.2.2-1
-
-2018-09-29 Jaroslav Lichtblau 
-   * homebank 5.2.1-1
-
-2018-09-13 Jaroslav Lichtblau 
-   * homebank 5.2-1
-
-2018-04-02 Jaroslav Lichtblau 
-   * homebank 5.1.8-1
-
-2018-01-07 Jaroslav Lichtblau 
-   * homebank 5.1.7-1
-
-2017-09-16 Jaroslav Lichtblau 
-   * homebank 5.1.6-1
-
-2017-05-11 Jaroslav Lichtblau 
-   * homebank 5.1.5-1
-
-2017-02-16 Jaroslav Lichtblau 
-   * homebank 5.1.4-1
-
-2017-01-23 Jaroslav Lichtblau 
-   * homebank 5.1.3-1
-
-2016-12-08 Jaroslav Lichtblau 
-   * homebank 5.1.2-1
-
-2016-11-06 Jaroslav Lichtblau 
-   * homebank 5.1.1-1
-
-2016-10-17 Jaroslav Lichtblau 
-   * homebank 5.1-1
-
-2016-07-25 Jaroslav Lichtblau 
-   * homebank 5.0.9-1
-
-2016-05-22 Jaroslav Lichtblau 
-   * homebank 5.0.8-1
-
-2016-05-09 Jaroslav Lichtblau 
-   * homebank 5.0.7-1
-
-2016-04-29 Jaroslav Lichtblau 
-   * homebank 5.0.6-2 pacman hooks rebuild
-
-2015-11-01 Jaroslav Lichtblau 
-   * homebank 5.0.6-1
-
-2015-09-26 Jaroslav Lichtblau 
-   * homebank 5.0.5-1
-
-2015-06-15 Jaroslav Lichtblau 
-   * homebank 5.0.3-1
-
-2015-05-14 Jaroslav Lichtblau 
-   * homebank 5.0.2-1
-
-2015-04-18 Jaroslav Lichtblau 
-   * homebank 5.0.1-1
-
-2015-02-08 Jaroslav Lichtblau 
-   * homebank 5.0.0-1
-
-2014-08-10 Jaroslav Lichtblau 
-   * homebank 4.6.3-1
-
-2014-07-29 Jaroslav Lichtblau 
-   * homebank 4.6.2-1
-
-2014-06-28 Jaroslav Lichtblau 
-   * homebank 4.6.1-1
-
-2014-03-02 Jaroslav Lichtblau 
-   * homebank 4.5.6-1
-
-2014-02-04 Jaroslav Lichtblau 
-   * homebank 4.5.5-1
-
-2013-10-05 Jaroslav Lichtblau 
-   * homebank 4.5.4-1
-
-2013-09-28 Jaroslav Lichtblau 
-   * homebank 4.5.3-1
-
-2013-09-02 Jaroslav Lichtblau 
-   * homebank 4.5.2-1
-
-2013-08-08 Jaroslav Lichtblau 
-   * 

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

2019-08-06 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, August 6, 2019 @ 17:49:19
  Author: jlichtblau
Revision: 497921

archrelease: copy trunk to community-x86_64

Added:
  vifm/repos/community-x86_64/PKGBUILD
(from rev 497920, vifm/trunk/PKGBUILD)
  vifm/repos/community-x86_64/vifm.changelog
(from rev 497920, vifm/trunk/vifm.changelog)
Deleted:
  vifm/repos/community-x86_64/PKGBUILD
  vifm/repos/community-x86_64/vifm.changelog

+
 PKGBUILD   |   56 ++---
 vifm.changelog |  141 ---
 2 files changed, 100 insertions(+), 97 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 17:49:02 UTC (rev 497920)
+++ PKGBUILD2019-08-06 17:49:19 UTC (rev 497921)
@@ -1,28 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=vifm
-pkgver=0.10
-pkgrel=1
-pkgdesc="A file manager with curses interface, which provides Vi[m]-like 
environment"
-arch=('x86_64')
-url="https://vifm.info/;
-license=('GPL')
-depends=('ncurses' 'desktop-file-utils')
-changelog=$pkgname.changelog
-source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2{,.asc})
-validpgpkeys=('22349CDBE5227D2108A5667799DC5E4DB05F6BE2') # xaizek 

-sha256sums=('e05a699f58279f69467d75d8cd3d6c8d2f62806c467fd558eda45ae9590768b8'
-'SKIP')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: vifm/repos/community-x86_64/PKGBUILD (from rev 497920, 
vifm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 17:49:19 UTC (rev 497921)
@@ -0,0 +1,28 @@
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=vifm
+pkgver=0.10.1
+pkgrel=1
+pkgdesc="A file manager with curses interface, which provides Vi[m]-like 
environment"
+arch=('x86_64')
+url="https://vifm.info/;
+license=('GPL')
+depends=('ncurses' 'desktop-file-utils')
+changelog=$pkgname.changelog
+source=(https://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2{,.asc})
+validpgpkeys=('22349CDBE5227D2108A5667799DC5E4DB05F6BE2') # xaizek 

+sha256sums=('99006f56db05e1bdfb7983e8d5c31c9ac93bf2ac9e0409a577c8ca660fecd03b'
+'SKIP')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: vifm.changelog
===
--- vifm.changelog  2019-08-06 17:49:02 UTC (rev 497920)
+++ vifm.changelog  2019-08-06 17:49:19 UTC (rev 497921)
@@ -1,69 +0,0 @@
-2018-11-12 Jaroslav Lichtblau 
-   * vifm 0.10-1
-
-2018-02-07 Jaroslav Lichtblau 
-   * vifm 0.9.1-1
-
-2017-06-24 Jaroslav Lichtblau 
-   * vifm 0.9-1
-
-2016-09-21 Jaroslav Lichtblau 
-   * vifm 0.8.2-2 FS#50799 fix
-
-2016-07-19 Jaroslav Lichtblau 
-   * vifm 0.8.2-1
-
-2016-05-01 Jaroslav Lichtblau 
-   * vifm 0.8.1.a-1 FS#49159 fix
-
-2016-04-30 Jaroslav Lichtblau 
-   * vifm 0.8.1a-1
-
-2016-01-19 Jaroslav Lichtblau 
-   * vifm 0.8.1-1
-
-2015-07-10 Jaroslav Lichtblau 
-   * vifm 0.8-1
-   * .install file added
-
-2014-10-28 Jaroslav Lichtblau 
-   * vifm 0.7.8-1
-
-2014-05-18 Jaroslav Lichtblau 
-   * vifm 0.7.7-1
-
-2013-11-11 Jaroslav Lichtblau 
-   * vifm 0.7.6-1
-
-2013-05-18 Jaroslav Lichtblau 
-   * vifm 0.7.5-1
-
-2013-01-30 Jaroslav Lichtblau 
-   * vifm 0.7.4b-1
-
-2012-10-20 Jaroslav Lichtblau 
-   * vifm 0.7.4a-1
-
-2012-07-07 Jaroslav Lichtblau 
-   * vifm 0.7.3a-1
-
-2012-06-04 Jaroslav Lichtblau 
-   * vifm 0.7.3-1
-
-2012-02-25 Jaroslav Lichtblau 
-   * vifm 0.7.2-1
-
-2011-11-28 Jaroslav Lichtblau 
-   * vifm 0.7.1-1
-
-2011-10-09 Jaroslav Lichtblau 
-   * vifm 0.7.0-1
-
-2011-08-20 Jaroslav Lichtblau 
-   * vifm 0.6.3-1
-
-2011-07-19 Jaroslav Lichtblau 
-   * vifm 0.6.2-1
-
-2010-02-15 Jaroslav Lichtblau 
-   * Moved to [community] 0.5-2 (212 votes in AUR)

Copied: vifm/repos/community-x86_64/vifm.changelog (from rev 497920, 
vifm/trunk/vifm.changelog)
===
--- vifm.changelog  (rev 0)
+++ vifm.changelog  2019-08-06 17:49:19 UTC (rev 497921)
@@ -0,0 +1,72 @@
+2019-08-06 Jaroslav Lichtblau 
+   * vifm 0.10.1-1
+
+2018-11-12 Jaroslav Lichtblau 
+   * vifm 0.10-1
+
+2018-02-07 Jaroslav Lichtblau 
+   * vifm 0.9.1-1
+
+2017-06-24 Jaroslav Lichtblau 
+   * vifm 0.9-1
+
+2016-09-21 Jaroslav Lichtblau 
+   * vifm 0.8.2-2 FS#50799 fix
+
+2016-07-19 Jaroslav Lichtblau 
+   * vifm 0.8.2-1
+
+2016-05-01 Jaroslav Lichtblau 
+   * vifm 0.8.1.a-1 FS#49159 fix
+
+2016-04-30 Jaroslav Lichtblau 
+   * vifm 0.8.1a-1

[arch-commits] Commit in homebank/trunk (PKGBUILD homebank.changelog)

2019-08-06 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, August 6, 2019 @ 17:50:11
  Author: jlichtblau
Revision: 497922

upgpkg: homebank 5.2.7-1 - new upstream release

Modified:
  homebank/trunk/PKGBUILD
  homebank/trunk/homebank.changelog

+
 PKGBUILD   |4 ++--
 homebank.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:49:19 UTC (rev 497921)
+++ PKGBUILD2019-08-06 17:50:11 UTC (rev 497922)
@@ -2,7 +2,7 @@
 # Contributor: William Rea 
 
 pkgname=homebank
-pkgver=5.2.6
+pkgver=5.2.7
 pkgrel=1
 pkgdesc="Free, easy, personal accounting for everyone"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('intltool')
 changelog=$pkgname.changelog
 source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
-sha256sums=('9a14cbf7029080f208d76b27a2d8066964426685ddc86fd1abed30bd428c9881')
+sha256sums=('8eedbe4246477935bd3882c1a628d7fd6036f6467be998c2558bdf4b39b0eb5f')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver

Modified: homebank.changelog
===
--- homebank.changelog  2019-08-06 17:49:19 UTC (rev 497921)
+++ homebank.changelog  2019-08-06 17:50:11 UTC (rev 497922)
@@ -1,3 +1,6 @@
+2019-08-06 Jaroslav Lichtblau 
+   * homebank 5.2.7-1
+
 2019-05-25 Jaroslav Lichtblau 
* homebank 5.2.6-1
 


[arch-commits] Commit in vifm/trunk (PKGBUILD vifm.changelog)

2019-08-06 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, August 6, 2019 @ 17:49:02
  Author: jlichtblau
Revision: 497920

upgpkg: vifm 0.10.1-1 - new upstream release

Modified:
  vifm/trunk/PKGBUILD
  vifm/trunk/vifm.changelog

+
 PKGBUILD   |6 +++---
 vifm.changelog |3 +++
 2 files changed, 6 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:47:55 UTC (rev 497919)
+++ PKGBUILD2019-08-06 17:49:02 UTC (rev 497920)
@@ -1,7 +1,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=vifm
-pkgver=0.10
+pkgver=0.10.1
 pkgrel=1
 pkgdesc="A file manager with curses interface, which provides Vi[m]-like 
environment"
 arch=('x86_64')
@@ -9,9 +9,9 @@
 license=('GPL')
 depends=('ncurses' 'desktop-file-utils')
 changelog=$pkgname.changelog
-source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2{,.asc})
+source=(https://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2{,.asc})
 validpgpkeys=('22349CDBE5227D2108A5667799DC5E4DB05F6BE2') # xaizek 

-sha256sums=('e05a699f58279f69467d75d8cd3d6c8d2f62806c467fd558eda45ae9590768b8'
+sha256sums=('99006f56db05e1bdfb7983e8d5c31c9ac93bf2ac9e0409a577c8ca660fecd03b'
 'SKIP')
 
 build() {

Modified: vifm.changelog
===
--- vifm.changelog  2019-08-06 17:47:55 UTC (rev 497919)
+++ vifm.changelog  2019-08-06 17:49:02 UTC (rev 497920)
@@ -1,3 +1,6 @@
+2019-08-06 Jaroslav Lichtblau 
+   * vifm 0.10.1-1
+
 2018-11-12 Jaroslav Lichtblau 
* vifm 0.10-1
 


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:47:55
  Author: felixonmars
Revision: 497919

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 497918, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-06 17:47:55 UTC (rev 497919)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.7.0
+pkgrel=5
+pkgdesc="Shell script analysis tool"
+url="http://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=('46ef486dff09bd51bdc5f053b1dda9e3f2943c66bbf6788824ddf8fcf3b69b7a3a9c00bf98bca0dee9d57ee6df833ca4088252dbf773815248be0fa667f35215')
+
+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
+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
+
+pandoc -s -t man shellcheck.1.md -o shellcheck.1
+}
+
+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 shellcheck/trunk (PKGBUILD)

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:47:45
  Author: felixonmars
Revision: 497918

upgpkg: shellcheck 0.7.0-5

rebuild with dlist 0.8.0.7

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:44:19 UTC (rev 497917)
+++ PKGBUILD2019-08-06 17:47:45 UTC (rev 497918)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.7.0
-pkgrel=4
+pkgrel=5
 pkgdesc="Shell script analysis tool"
 url="http://www.shellcheck.net;
 license=("GPL")


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:44:19
  Author: felixonmars
Revision: 497917

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:44:09
  Author: felixonmars
Revision: 497916

upgpkg: postgrest 6.0.0-3

rebuild with dlist 0.8.0.7

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:40:08 UTC (rev 497915)
+++ PKGBUILD2019-08-06 17:44:09 UTC (rev 497916)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=6.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:40:08
  Author: felixonmars
Revision: 497915

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
497914, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-06 17:40:08 UTC (rev 497915)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.4.1
+pkgrel=71
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-data-accessor' 
'haskell-data-accessor-template'
+ 'haskell-data-accessor-transformers' 'haskell-gitrev' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz;)
+sha512sums=('25cee0e9626e67d46769fff47da67fc616c1ce6c181e3c6e3f82b9dd1db1fc2bb3fe264da0e6c8d6082f8ea483530f88e917598ac9daaa2f6b97bbccca203254')
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+   -f-enable_flaky_tests
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:39:57
  Author: felixonmars
Revision: 497914

upgpkg: pandoc-crossref 0.3.4.1-71

rebuild with dlist 0.8.0.7

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:38:30 UTC (rev 497913)
+++ PKGBUILD2019-08-06 17:39:57 UTC (rev 497914)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.4.1
-pkgrel=70
+pkgrel=71
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:38:27
  Author: felixonmars
Revision: 497912

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
497911, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-06 17:38:27 UTC (rev 497912)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.5.2
+pkgrel=67
+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-cryptohash'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' '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=('715324fa19b85e8f39e33b4d5082a04f40fc667737b41117da68a6a0eedad288a551929fa2eea636dd421d4d416996125ff9d83752c7daaf64ecc191e9790469')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/< *2.13/<3/' -e 's/< *3.3/<4/' $_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
+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 umockdev/trunk (PKGBUILD)

2019-08-06 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, August 6, 2019 @ 17:38:15
  Author: jlichtblau
Revision: 497910

upgpkg: umockdev 0.13.1-1 - new upstream release

Modified:
  umockdev/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:35:59 UTC (rev 497909)
+++ PKGBUILD2019-08-06 17:38:15 UTC (rev 497910)
@@ -3,7 +3,7 @@
 # Contributor: Xiao-Long Chen 
 
 pkgname=umockdev
-pkgver=0.12.1
+pkgver=0.13.1
 pkgrel=1
 pkgdesc="Record/mock hardware devices for bug reports and regression tests"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('systemd' 'libgudev')
 makedepends=('gobject-introspection' 'gtk-doc' 'vala')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/martinpitt/$pkgname/archive/$pkgver.tar.gz)
-sha256sums=('d1cadb0cfd90bcfde8e47f198bdc6890e706120a8a10434635cf70b6369213d5')
+sha256sums=('ecec504a6fe8e646e6d44909e89b2ae56c39faf2f8bfc20d8d3a9c306556d0f8')
 
 build() {
   cd "${srcdir}"/${pkgname}-${pkgver}


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

2019-08-06 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, August 6, 2019 @ 17:38:30
  Author: jlichtblau
Revision: 497913

archrelease: copy trunk to community-x86_64

Added:
  umockdev/repos/community-x86_64/PKGBUILD
(from rev 497911, umockdev/trunk/PKGBUILD)
Deleted:
  umockdev/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 17:38:27 UTC (rev 497912)
+++ PKGBUILD2019-08-06 17:38:30 UTC (rev 497913)
@@ -1,28 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Marcin (CTRL) Wieczorek 
-# Contributor: Xiao-Long Chen 
-
-pkgname=umockdev
-pkgver=0.12.1
-pkgrel=1
-pkgdesc="Record/mock hardware devices for bug reports and regression tests"
-arch=('x86_64')
-url="https://github.com/martinpitt/umockdev/;
-license=('LGPL')
-depends=('systemd' 'libgudev')
-makedepends=('gobject-introspection' 'gtk-doc' 'vala')
-source=($pkgname-$pkgver.tar.gz::https://github.com/martinpitt/$pkgname/archive/$pkgver.tar.gz)
-sha256sums=('d1cadb0cfd90bcfde8e47f198bdc6890e706120a8a10434635cf70b6369213d5')
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-
-  ./autogen.sh --prefix=/usr --enable-gtk-doc --enable-introspection
-  make
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: umockdev/repos/community-x86_64/PKGBUILD (from rev 497911, 
umockdev/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 17:38:30 UTC (rev 497913)
@@ -0,0 +1,28 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Marcin (CTRL) Wieczorek 
+# Contributor: Xiao-Long Chen 
+
+pkgname=umockdev
+pkgver=0.13.1
+pkgrel=1
+pkgdesc="Record/mock hardware devices for bug reports and regression tests"
+arch=('x86_64')
+url="https://github.com/martinpitt/umockdev/;
+license=('LGPL')
+depends=('systemd' 'libgudev')
+makedepends=('gobject-introspection' 'gtk-doc' 'vala')
+source=($pkgname-$pkgver.tar.gz::https://github.com/martinpitt/$pkgname/archive/$pkgver.tar.gz)
+sha256sums=('ecec504a6fe8e646e6d44909e89b2ae56c39faf2f8bfc20d8d3a9c306556d0f8')
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+
+  ./autogen.sh --prefix=/usr --enable-gtk-doc --enable-introspection
+  make
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+}


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:38:17
  Author: felixonmars
Revision: 497911

upgpkg: haskell-hakyll 4.12.5.2-67

rebuild with dlist 0.8.0.7

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:38:15 UTC (rev 497910)
+++ PKGBUILD2019-08-06 17:38:17 UTC (rev 497911)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.5.2
-pkgrel=66
+pkgrel=67
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll;
 license=("BSD")


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:35:59
  Author: felixonmars
Revision: 497909

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
497908, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-06 17:35:59 UTC (rev 497909)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.16.2
+pkgrel=89
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-base-compat' 'haskell-data-default' 'haskell-hs-bibutils' 
'haskell-libyaml'
+ 'haskell-network' 'haskell-old-locale' 'pandoc' 
'haskell-pandoc-types' 'haskell-rfc5051'
+ 'haskell-safe' 'haskell-setenv' 'haskell-split' 'haskell-syb' 
'haskell-tagsoup'
+ 'haskell-temporary' 'haskell-text-icu' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-xml-conduit' 'haskell-yaml')
+conflicts=('haskell-pandoc-citeproc')
+replaces=('haskell-pandoc-citeproc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz;)
+sha512sums=('90c3fabe3e1478f43b0157580deb691e5be8d3064144cbf4d67ab8f15bfd99c51b3e811b47bbe4fefc76c4efe660007ab05a782e5a5df01cd42965fe22e5c664')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+# TODO: find a better solution
+sed -i 
"s|(\"HOME\",\".\")|(\"HOME\",\".\"),(\"LD_LIBRARY_PATH\",\"$PWD/dist/build\"),(\"pandoc_citeproc_datadir\",\"$PWD\")|"
 tests/test-pandoc-citeproc.hs
+}
+
+build() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+# https://github.com/jgm/pandoc-citeproc/issues/342
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/$pkgname.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/$pkgname.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/$pkgname/LICENSE"
+}


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:35:49
  Author: felixonmars
Revision: 497908

upgpkg: pandoc-citeproc 0.16.2-89

rebuild with dlist 0.8.0.7

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:32:13 UTC (rev 497907)
+++ PKGBUILD2019-08-06 17:35:49 UTC (rev 497908)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.16.2
-pkgrel=88
+pkgrel=89
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:32:02
  Author: felixonmars
Revision: 497906

upgpkg: pandoc 2.7.3-22

rebuild with dlist 0.8.0.7

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:29:04 UTC (rev 497905)
+++ PKGBUILD2019-08-06 17:32:02 UTC (rev 497906)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.7.3
-pkgrel=21
+pkgrel=22
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:32:13
  Author: felixonmars
Revision: 497907

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 497906, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-06 17:32:13 UTC (rev 497907)
@@ -0,0 +1,65 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.7.3
+pkgrel=22
+pkgdesc='Conversion between markup formats'
+url='https://pandoc.org'
+license=('GPL')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-juicypixels' 'haskell-sha' 
'haskell-aeson'
+ 'haskell-aeson-pretty' 'haskell-attoparsec' 'haskell-base-compat' 
'haskell-base64-bytestring'
+ 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-case-insensitive' 'haskell-cmark-gfm'
+ 'haskell-data-default' 'haskell-doctemplates' 'haskell-exceptions' 
'haskell-glob'
+ 'haskell-haddock-library' 'haskell-ipynb' 'haskell-skylighting' 
'haskell-hslua'
+ 'haskell-hslua-module-system' 'haskell-hslua-module-text' 
'haskell-http-client'
+ 'haskell-syb' 'haskell-hsyaml' 'haskell-http-client-tls' 
'haskell-http-types'
+ 'haskell-safe' 'haskell-split' 'haskell-texmath' 'haskell-network' 
'haskell-pandoc-types'
+ 'haskell-random' 'haskell-scientific' 'haskell-tagsoup' 
'haskell-temporary'
+ 'haskell-network-uri' 'haskell-unicode-transforms' 
'haskell-unordered-containers'
+ 'haskell-zip-archive' 'haskell-vector' 'haskell-xml' 'haskell-zlib')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-lua'
+ 'haskell-tasty-quickcheck' 'haskell-tasty-golden' 
'haskell-quickcheck'
+ 'haskell-executable-path')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('7db610ed1f5bad7ae91b9c89b210500c0e2f8660982cf424080ea8a603ca1891187bbf6e4a48144b48716fd0131d204e953175a82668be44c39898041bac9740')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-trypandoc -f-embed_data_files -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+}


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

2019-08-06 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, August 6, 2019 @ 17:29:04
  Author: jlichtblau
Revision: 497905

archrelease: copy trunk to community-any

Added:
  youtube-dl/repos/community-any/PKGBUILD
(from rev 497904, youtube-dl/trunk/PKGBUILD)
Deleted:
  youtube-dl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 17:28:49 UTC (rev 497904)
+++ PKGBUILD2019-08-06 17:29:04 UTC (rev 497905)
@@ -1,35 +0,0 @@
-# Maintainer: Eric Bélanger 
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=youtube-dl
-pkgver=2019.07.02
-pkgrel=1
-pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
-arch=('any')
-url="https://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support'
-'atomicparsley: for embedding thumbnails into m4a files'
-'python-pycryptodome: for hlsnative downloader')
-source=(https://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('39beaff8e739e4e78616d65f6d4043f04e291678938fa9459a7b88e7444d20b2'
-'SKIP')
-validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
-  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
- "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
-  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 497904, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 17:29:04 UTC (rev 497905)
@@ -0,0 +1,35 @@
+# Maintainer: Eric Bélanger 
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=youtube-dl
+pkgver=2019.08.02
+pkgrel=1
+pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
+arch=('any')
+url="https://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support'
+'atomicparsley: for embedding thumbnails into m4a files'
+'python-pycryptodome: for hlsnative downloader')
+source=(https://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('573c37add3e6107bf0c3c8ce43443bb788957d7bfb5e736cee6b32e3b2342b80'
+'SKIP')
+validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
+  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
+ "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
+  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2019-08-06 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, August 6, 2019 @ 17:28:49
  Author: jlichtblau
Revision: 497904

upgpkg: youtube-dl 2019.08.02-1 - new upstream release

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:26:36 UTC (rev 497903)
+++ PKGBUILD2019-08-06 17:28:49 UTC (rev 497904)
@@ -2,7 +2,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=youtube-dl
-pkgver=2019.07.02
+pkgver=2019.08.02
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -14,7 +14,7 @@
 'atomicparsley: for embedding thumbnails into m4a files'
 'python-pycryptodome: for hlsnative downloader')
 
source=(https://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('39beaff8e739e4e78616d65f6d4043f04e291678938fa9459a7b88e7444d20b2'
+sha256sums=('573c37add3e6107bf0c3c8ce43443bb788957d7bfb5e736cee6b32e3b2342b80'
 'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
   'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.


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

2019-08-06 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, August 6, 2019 @ 17:26:36
  Author: jlichtblau
Revision: 497903

archrelease: copy trunk to community-x86_64

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

-+
 PKGBUILD|  186 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 122 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 17:26:23 UTC (rev 497902)
+++ PKGBUILD2019-08-06 17:26:36 UTC (rev 497903)
@@ -1,93 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=1.2.0
-pkgrel=1
-arch=('x86_64')
-url="https://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-# options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('0339877effdcf3bf8aa7d4d1e50b878992792e4752ff778f27788bf71eccecd0'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.sysusers" \
-

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

2019-08-06 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, August 6, 2019 @ 17:26:23
  Author: jlichtblau
Revision: 497902

upgpkg: syncthing 1.2.1-1 - new upstream release

Modified:
  syncthing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:20:30 UTC (rev 497901)
+++ PKGBUILD2019-08-06 17:26:23 UTC (rev 497902)
@@ -5,7 +5,7 @@
 # Contributor: korjjj 
 
 pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=1.2.0
+pkgver=1.2.1
 pkgrel=1
 arch=('x86_64')
 url="https://syncthing.net/;
@@ -18,7 +18,7 @@
 syncthing-relaysrv.tmpfiles
 syncthing-relaysrv.service)
 validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('0339877effdcf3bf8aa7d4d1e50b878992792e4752ff778f27788bf71eccecd0'
+sha256sums=('313bd59ddc2562e833fc4caa8d90360a06d5ff02976c0a4d5d42393e6f8bceac'
 'SKIP'
 '6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
 'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:20:30
  Author: felixonmars
Revision: 497901

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: idris/repos/community-staging-x86_64/PKGBUILD (from rev 497900, 
idris/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-06 17:20:30 UTC (rev 497901)
@@ -0,0 +1,60 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=1.3.2
+pkgrel=4
+pkgdesc="Functional Programming Language with Dependent Types"
+url="https://www.idris-lang.org/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-base64-bytestring' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cheapskate' 'haskell-code-page' 
'haskell-fingertree'
+ 'haskell-fsnotify' 'haskell-ieee754' 'haskell-libffi' 
'haskell-megaparsec'
+ 'haskell-network' 'haskell-optparse-applicative' 
'haskell-parser-combinators'
+ 'haskell-regex-tdfa' 'haskell-safe' 'haskell-split' 
'haskell-terminal-size'
+ 'haskell-uniplate' 'haskell-unordered-containers' 
'haskell-utf8-string' 'haskell-vector'
+ 'haskell-vector-binary-instances' 'haskell-zip-archive')
+makedepends=('ghc' 'haskell-tagged' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-rerun'
+ 'nodejs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/idris-lang/Idris-dev/archive/v$pkgver.tar.gz;)
+sha512sums=('0cd2ecb38ae1d535a38f6f4fbe39ce6d5d4ff496b97214fb24968e9c5b726c824dc79528d00e89d800563b20d4c8b2d47f0c6613433d1380802a2bd10d0816f3')
+
+prepare() {
+cd Idris-dev-$pkgver
+
+sed -i '1ioverride IDRIS := env LD_PRELOAD=$(shell ls 
../../dist/build/libHSidris-*-ghc*.so) $(IDRIS)' \
+libs/*/Makefile
+sed -i 's/< *0.9/<1/' idris.cabal
+}
+
+build() {
+cd Idris-dev-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fFFI -fGMP -f-release -f-freestanding -f-CI -f-execonly
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd Idris-dev-$pkgver
+# TODO: figure out the tests
+PATH="$PWD/dist/build:$PATH" LD_LIBRARY_PATH="$PWD/dist/build" runhaskell 
Setup test || warning "Tests failed"
+}
+
+package() {
+cd Idris-dev-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-06 Thread Felix Yan via arch-commits
Date: Tuesday, August 6, 2019 @ 17:20:20
  Author: felixonmars
Revision: 497900

upgpkg: idris 1.3.2-4

rebuild with dlist 0.8.0.7

Modified:
  idris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 17:18:55 UTC (rev 497899)
+++ PKGBUILD2019-08-06 17:20:20 UTC (rev 497900)
@@ -3,7 +3,7 @@
 
 pkgname=idris
 pkgver=1.3.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Functional Programming Language with Dependent Types"
 url="https://www.idris-lang.org/;
 license=("BSD")


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

2019-08-06 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, August 6, 2019 @ 17:18:55
  Author: jlichtblau
Revision: 497899

archrelease: copy trunk to community-x86_64

Added:
  hugo/repos/community-x86_64/PKGBUILD
(from rev 497898, hugo/trunk/PKGBUILD)
Deleted:
  hugo/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 17:18:43 UTC (rev 497898)
+++ PKGBUILD2019-08-06 17:18:55 UTC (rev 497899)
@@ -1,30 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: fordprefect
-# Contributor: Jonathon Fernyhough 
-# Contributor: Brenton Horne
-
-pkgname=hugo
-pkgver=0.55.6
-pkgrel=1
-pkgdesc="Fast and Flexible Static Site Generator in Go"
-arch=('x86_64')
-url="https://gohugo.io/;
-license=('Apache')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-optdepends=('pygmentize: syntax-highlight code snippets')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha256sums=('2b585e1919e2643e5bb4226eb64d7cd523bbf85be266f43bf3a132fa924949e4')
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  go build -tags extended
-  ./hugo gen man
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
-}

Copied: hugo/repos/community-x86_64/PKGBUILD (from rev 497898, 
hugo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-06 17:18:55 UTC (rev 497899)
@@ -0,0 +1,30 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: fordprefect
+# Contributor: Jonathon Fernyhough 
+# Contributor: Brenton Horne
+
+pkgname=hugo
+pkgver=0.56.3
+pkgrel=1
+pkgdesc="Fast and Flexible Static Site Generator in Go"
+arch=('x86_64')
+url="https://gohugo.io/;
+license=('Apache')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+optdepends=('pygmentize: syntax-highlight code snippets')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
+sha256sums=('975981a12c1e3dfa279066be7d01738c5e54d7cebb75a07a8f3ae3973aedcba6')
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  go build -tags extended
+  ./hugo gen man
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
+}


  1   2   3   4   5   >