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

2019-07-11 Thread Eli Schwartz via arch-commits
Date: Friday, July 12, 2019 @ 04:37:03
  Author: eschwartz
Revision: 488939

archrelease: copy trunk to community-x86_64

Added:
  calibre/repos/community-x86_64/PKGBUILD
(from rev 488938, calibre/trunk/PKGBUILD)
Deleted:
  calibre/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  209 -
 1 file changed, 99 insertions(+), 110 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-12 04:36:47 UTC (rev 488938)
+++ PKGBUILD2019-07-12 04:37:03 UTC (rev 488939)
@@ -1,110 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Eli Schwartz 
-# Contributor: Daniel Wallace 
-# Contributor: Giovanni Scafora 
-# Contributor: Petrov Roman 
-# Contributor: Andrea Fagiani 
-# Contributor: Larry Hajali 
-
-pkgname=calibre
-pkgver=3.44.0
-pkgrel=3
-pkgdesc="Ebook management application"
-arch=('x86_64')
-url="https://calibre-ebook.com/;
-license=('GPL3')
-_py_deps=('apsw' 'beautifulsoup4' 'cssselect' 'css-parser' 'dateutil' 'dbus' 
'dnspython' 'dukpy'
-  'feedparser' 'html2text' 'html5-parser' 'lxml' 'markdown' 
'mechanize' 'msgpack'
-  'netifaces' 'unrardll' 'pillow' 'psutil' 'pygments' 'pyqt5' 'regex')
-depends=('chmlib' 'icu' 'jxrlib' 'libmtp' 'libusbx' 'libwmf' 'mathjax' 'mtdev' 
'optipng'
- 'podofo' "${_py_deps[@]/#/python2-}" 'qt5-svg' 'qt5-webkit' 'udisks2')
-makedepends=('qt5-x11extras' 'rapydscript-ng' 'sip' 'xdg-utils')
-checkdepends=('xorg-server-xvfb')
-optdepends=('ipython2: to use calibre-debug'
-'poppler: required for converting pdf to html')
-source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
-"https://calibre-ebook.com/signatures/${pkgname}-${pkgver}.tar.xz.sig;
-
"https://github.com/kovidgoyal/calibre/commit/0a5dc07da1cb0f9409803b4df1a92e497e3c0e95.patch;
-
"https://github.com/kovidgoyal/calibre/commit/8088902fa886af20e8a4dfc8d07daa38c918eb4a.patch;)
-sha256sums=('f15354b013cbf4090e1eeefdc150402dac589f51395f9c82424d2e8cec62a38d'
-'SKIP'
-'728509a902267b8fd628884e1040a54f7a6fb03fc2dcbcf2ff7e54be6eae7920'
-'6aa88aac68a5804a2c85e81b054c6ec3abab60853cfc801f2eef2ec3567435fa')
-b2sums=('7eb1412aa5de6ba2f48ea13e922d7ace0f4f475832ebe122db967c71df05b6bbb45092bdd53ddfe35d7a0c2af566ed83dde9aac64200d41ea2adc4cb1886'
-'SKIP'
-
'fc647f48cc0dfc85028babb1fe0b659820e9f34001611f84eeddd0938465991e3e2e4afb9d256e887585d2e1109091fb03a4248fa2a3efdcf8b04735810d7448'
-
'b5f92ca6022e4a3b0dcca807dc386dba7ab81322a6ac85da1045d5837bd46ee2d9268b218bec99cfb4fdd62b2f4933ef56df9799e9eb4e869be4993341bf9dcc')
-validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
-
-prepare(){
-  cd "${pkgname}-${pkgver}"
-
-  # fix build with qt 5.13
-  patch -p1 -i ../0a5dc07da1cb0f9409803b4df1a92e497e3c0e95.patch
-  # workaround column sort regression with qt 5.13, see FS#63063
-  patch -p1 -i ../8088902fa886af20e8a4dfc8d07daa38c918eb4a.patch
-
-  # Desktop integration (e.g. enforce arch defaults)
-  sed -e "/import config_dir/,/os.rmdir(config_dir)/d" \
-  -e "s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/" \
-  -e "s/^Name=calibre/Name=Calibre/g" \
-  -i  src/calibre/linux.py
-
-  # cherry-picked bits of python2-backports.functools_lru_cache
-  # needed for frozen builds + beautifulsoup4
-  # see 
https://github.com/kovidgoyal/calibre/commit/b177f0a1096b4fdabd8772dd9edc2a69e683#commitcomment-33169700
-  rm -r src/backports
-
-  cd resources
-
-  # Remove unneeded files
-  rm ${pkgname}-portable.* mozilla-ca-certs.pem
-
-  # tarball cache from calibre 4.x
-  rm editor.js viewer.{js,html}
-
-  # use system mathjax
-  rm -r mathjax
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  LANG='en_US.UTF-8' python2 setup.py build
-  LANG='en_US.UTF-8' python2 setup.py gui
-  LANG='en_US.UTF-8' python2 setup.py mathjax --path-to-mathjax 
/usr/share/mathjax --system-mathjax
-  LANG='en_US.UTF-8' python2 setup.py rapydscript
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-
-  # without xvfb-run this fails with much "Control socket failed to recv(), 
resetting"
-  # ERROR: test_websocket_perf (calibre.srv.tests.web_sockets.WebSocketTest)
-
-  LANG='en_US.UTF-8' xvfb-run python2 setup.py test
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-
-  # If this directory doesn't exist, zsh completion won't install.
-  install -d "${pkgdir}/usr/share/zsh/site-functions"
-
-  LANG='en_US.UTF-8' python2 setup.py install \
---staging-root="${pkgdir}/usr" \
---prefix=/usr
-
-  cp -a man-pages/ "${pkgdir}/usr/share/man"
-
-  # not needed at runtime
-  rm -r "${pkgdir}"/usr/share/calibre/rapydscript/
-
-  # Compiling bytecode FS#33392
-  # This is kind of ugly but removes traces of the build root.
-  while read -rd '' _file; do
-_destdir="$(dirname "${_file#${pkgdir}}")"
-python2 -m compileall -d 

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

2019-07-11 Thread Eli Schwartz via arch-commits
Date: Friday, July 12, 2019 @ 04:36:47
  Author: eschwartz
Revision: 488938

upgpkg: calibre 3.45.0-1

upstream release

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-12 03:40:37 UTC (rev 488937)
+++ PKGBUILD2019-07-12 04:36:47 UTC (rev 488938)
@@ -7,8 +7,8 @@
 # Contributor: Larry Hajali 
 
 pkgname=calibre
-pkgver=3.44.0
-pkgrel=3
+pkgver=3.45.0
+pkgrel=1
 pkgdesc="Ebook management application"
 arch=('x86_64')
 url="https://calibre-ebook.com/;
@@ -23,27 +23,16 @@
 optdepends=('ipython2: to use calibre-debug'
 'poppler: required for converting pdf to html')
 source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
-"https://calibre-ebook.com/signatures/${pkgname}-${pkgver}.tar.xz.sig;
-
"https://github.com/kovidgoyal/calibre/commit/0a5dc07da1cb0f9409803b4df1a92e497e3c0e95.patch;
-
"https://github.com/kovidgoyal/calibre/commit/8088902fa886af20e8a4dfc8d07daa38c918eb4a.patch;)
-sha256sums=('f15354b013cbf4090e1eeefdc150402dac589f51395f9c82424d2e8cec62a38d'
-'SKIP'
-'728509a902267b8fd628884e1040a54f7a6fb03fc2dcbcf2ff7e54be6eae7920'
-'6aa88aac68a5804a2c85e81b054c6ec3abab60853cfc801f2eef2ec3567435fa')
-b2sums=('7eb1412aa5de6ba2f48ea13e922d7ace0f4f475832ebe122db967c71df05b6bbb45092bdd53ddfe35d7a0c2af566ed83dde9aac64200d41ea2adc4cb1886'
-'SKIP'
-
'fc647f48cc0dfc85028babb1fe0b659820e9f34001611f84eeddd0938465991e3e2e4afb9d256e887585d2e1109091fb03a4248fa2a3efdcf8b04735810d7448'
-
'b5f92ca6022e4a3b0dcca807dc386dba7ab81322a6ac85da1045d5837bd46ee2d9268b218bec99cfb4fdd62b2f4933ef56df9799e9eb4e869be4993341bf9dcc')
+"https://calibre-ebook.com/signatures/${pkgname}-${pkgver}.tar.xz.sig;)
+sha256sums=('5c6c2960433e2c881fa8071d570907371db698ed5d09d450066e36daafb3cbc8'
+'SKIP')
+b2sums=('b7666d1607228606f338d14bdfec79868ce7823ff36a7e7a3e1895fceedc42b2ed7ece0b12a20f43433cbb437735bd27bd2f023f15eeab8455a58eead09d2de6'
+'SKIP')
 validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
 
 prepare(){
   cd "${pkgname}-${pkgver}"
 
-  # fix build with qt 5.13
-  patch -p1 -i ../0a5dc07da1cb0f9409803b4df1a92e497e3c0e95.patch
-  # workaround column sort regression with qt 5.13, see FS#63063
-  patch -p1 -i ../8088902fa886af20e8a4dfc8d07daa38c918eb4a.patch
-
   # Desktop integration (e.g. enforce arch defaults)
   sed -e "/import config_dir/,/os.rmdir(config_dir)/d" \
   -e "s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/" \


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

2019-07-11 Thread Eli Schwartz via arch-commits
Date: Friday, July 12, 2019 @ 03:40:37
  Author: eschwartz
Revision: 488937

archrelease: copy trunk to community-x86_64

Added:
  hub/repos/community-x86_64/PKGBUILD
(from rev 488936, hub/trunk/PKGBUILD)
Deleted:
  hub/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-12 03:40:21 UTC (rev 488936)
+++ PKGBUILD2019-07-12 03:40:37 UTC (rev 488937)
@@ -1,44 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Maintainer: Eli Schwartz 
-# Contributor: Daniel Wallace 
-# Contributor: Alfredo Palhares 
-
-pkgname=hub
-pkgver=2.12.1
-pkgrel=1
-
-pkgdesc="cli interface for Github"
-url="https://hub.github.com;
-arch=('x86_64')
-license=('MIT')
-
-depends=('git')
-makedepends=('go-pie')
-
-source=("hub-$pkgver.tar.gz::https://github.com/github/hub/archive/v$pkgver.tar.gz;)
-sha256sums=('315114e46bbf583e23341e171c8e1a5efdbe96c04868ff0b343cf367f65f67a0')
-b2sums=('0f7958876ab41cb61e890cc5398e5fbe30a6457262933f46ac152ccb531b6944e0be454b3086584516dd35db6ecc8e247fbc049b1927185cda4d9cdc8cb54518')
-
-build() {
-  cd "$srcdir"/hub-$pkgver
-
-  make
-  make man-pages
-}
-
-check() {
-  cd "$srcdir"/hub-$pkgver
-
-  make test
-}
-
-package() {
-  cd "$srcdir"/hub-$pkgver
-
-  make PREFIX="$pkgdir"/usr install
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 etc/hub.bash_completion.sh 
"$pkgdir"/usr/share/bash-completion/completions/hub
-  install -Dm644 etc/hub.zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_hub
-  install -Dm644 etc/hub.fish_completion 
"$pkgdir"/usr/share/fish/vendor_completions.d/hub.fish
-}

Copied: hub/repos/community-x86_64/PKGBUILD (from rev 488936, 
hub/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-12 03:40:37 UTC (rev 488937)
@@ -0,0 +1,44 @@
+# Maintainer: Johannes Löthberg 
+# Maintainer: Eli Schwartz 
+# Contributor: Daniel Wallace 
+# Contributor: Alfredo Palhares 
+
+pkgname=hub
+pkgver=2.12.2
+pkgrel=1
+
+pkgdesc="cli interface for Github"
+url="https://hub.github.com;
+arch=('x86_64')
+license=('MIT')
+
+depends=('git')
+makedepends=('go-pie')
+
+source=("hub-$pkgver.tar.gz::https://github.com/github/hub/archive/v$pkgver.tar.gz;)
+sha256sums=('3db0719e41731c57b8765b7f486aa91cee57bb7d39d5553d480d87a4ac6c2ee6')
+b2sums=('2ed5456935dd746d6641b138cd35f66bde6080d9cf91f11f644a59df5ce2ca09eea53819cf052298c0b35afcae9809f361d474b66a0db8b81fa8250a02de')
+
+build() {
+  cd "$srcdir"/hub-$pkgver
+
+  make
+  make man-pages
+}
+
+check() {
+  cd "$srcdir"/hub-$pkgver
+
+  make test
+}
+
+package() {
+  cd "$srcdir"/hub-$pkgver
+
+  make PREFIX="$pkgdir"/usr install
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 etc/hub.bash_completion.sh 
"$pkgdir"/usr/share/bash-completion/completions/hub
+  install -Dm644 etc/hub.zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_hub
+  install -Dm644 etc/hub.fish_completion 
"$pkgdir"/usr/share/fish/vendor_completions.d/hub.fish
+}


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

2019-07-11 Thread Eli Schwartz via arch-commits
Date: Friday, July 12, 2019 @ 03:40:21
  Author: eschwartz
Revision: 488936

upgpkg: hub 2.12.2-1

upstream release

Modified:
  hub/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 20:26:57 UTC (rev 488935)
+++ PKGBUILD2019-07-12 03:40:21 UTC (rev 488936)
@@ -4,7 +4,7 @@
 # Contributor: Alfredo Palhares 
 
 pkgname=hub
-pkgver=2.12.1
+pkgver=2.12.2
 pkgrel=1
 
 pkgdesc="cli interface for Github"
@@ -16,8 +16,8 @@
 makedepends=('go-pie')
 
 
source=("hub-$pkgver.tar.gz::https://github.com/github/hub/archive/v$pkgver.tar.gz;)
-sha256sums=('315114e46bbf583e23341e171c8e1a5efdbe96c04868ff0b343cf367f65f67a0')
-b2sums=('0f7958876ab41cb61e890cc5398e5fbe30a6457262933f46ac152ccb531b6944e0be454b3086584516dd35db6ecc8e247fbc049b1927185cda4d9cdc8cb54518')
+sha256sums=('3db0719e41731c57b8765b7f486aa91cee57bb7d39d5553d480d87a4ac6c2ee6')
+b2sums=('2ed5456935dd746d6641b138cd35f66bde6080d9cf91f11f644a59df5ce2ca09eea53819cf052298c0b35afcae9809f361d474b66a0db8b81fa8250a02de')
 
 build() {
   cd "$srcdir"/hub-$pkgver


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

2019-07-11 Thread Antonio Rojas via arch-commits
Date: Thursday, July 11, 2019 @ 20:26:57
  Author: arojas
Revision: 488935

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 20:26:30 UTC (rev 488934)
+++ PKGBUILD2019-07-11 20:26:57 UTC (rev 488935)
@@ -1,26 +0,0 @@
-# Maintainer: Alexander F Rødseth 
-
-pkgname=vim-jellybeans
-_name=jellybeans.vim
-pkgver=1.6
-pkgrel=2
-pkgdesc='Colorful, dark color scheme, inspired by ir_black and twilight'
-arch=('any')
-url="https://github.com/nanotech/$_name;
-license=('MIT')
-groups=('vim-plugins')
-depends=('vim')
-source=("$pkgname-$pkgver.zip::https://github.com/nanotech/$_name/archive/v$pkgver.zip;)
-sha256sums=('51cf6fab89ed5566a684717276daf069e18df416c72e354c237b9d7fc7960ed2')
-
-prepare() {
-  head -41 "$_name-$pkgver/colors/$_name" | tail -21 | cut -b2- > LICENSE
-}
-
-package() {
-  install -Dm644 "$_name-$pkgver/colors/$_name" \
-"$pkgdir/usr/share/vim/vimfiles/colors/$_name"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: vim-jellybeans/repos/community-any/PKGBUILD (from rev 488934, 
vim-jellybeans/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-11 20:26:57 UTC (rev 488935)
@@ -0,0 +1,26 @@
+# Maintainer: Alexander F Rødseth 
+
+pkgname=vim-jellybeans
+_name=jellybeans.vim
+pkgver=1.7
+pkgrel=1
+pkgdesc='Colorful, dark color scheme, inspired by ir_black and twilight'
+arch=('any')
+url="https://github.com/nanotech/$_name;
+license=('MIT')
+groups=('vim-plugins')
+depends=('vim')
+source=("$pkgname-$pkgver.zip::https://github.com/nanotech/$_name/archive/v$pkgver.zip;)
+sha256sums=('5ef05f4ce4d72de427b69e7ced9799db77421c6b3dfa8db86dc6f40bc61d00e5')
+
+prepare() {
+  head -41 "$_name-$pkgver/colors/$_name" | tail -21 | cut -b2- > LICENSE
+}
+
+package() {
+  install -Dm644 "$_name-$pkgver/colors/$_name" \
+"$pkgdir/usr/share/vim/vimfiles/colors/$_name"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-07-11 Thread Antonio Rojas via arch-commits
Date: Thursday, July 11, 2019 @ 20:26:30
  Author: arojas
Revision: 488934

Update to 1.7

Modified:
  vim-jellybeans/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 19:59:43 UTC (rev 488933)
+++ PKGBUILD2019-07-11 20:26:30 UTC (rev 488934)
@@ -2,8 +2,8 @@
 
 pkgname=vim-jellybeans
 _name=jellybeans.vim
-pkgver=1.6
-pkgrel=2
+pkgver=1.7
+pkgrel=1
 pkgdesc='Colorful, dark color scheme, inspired by ir_black and twilight'
 arch=('any')
 url="https://github.com/nanotech/$_name;
@@ -11,7 +11,7 @@
 groups=('vim-plugins')
 depends=('vim')
 
source=("$pkgname-$pkgver.zip::https://github.com/nanotech/$_name/archive/v$pkgver.zip;)
-sha256sums=('51cf6fab89ed5566a684717276daf069e18df416c72e354c237b9d7fc7960ed2')
+sha256sums=('5ef05f4ce4d72de427b69e7ced9799db77421c6b3dfa8db86dc6f40bc61d00e5')
 
 prepare() {
   head -41 "$_name-$pkgver/colors/$_name" | tail -21 | cut -b2- > LICENSE


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

2019-07-11 Thread Jan Steffens via arch-commits
Date: Thursday, July 11, 2019 @ 19:59:43
  Author: heftig
Revision: 488933

archrelease: copy trunk to community-x86_64

Added:
  gnome-software/repos/community-x86_64/PKGBUILD
(from rev 488932, gnome-software/trunk/PKGBUILD)
Deleted:
  gnome-software/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 18:28:13 UTC (rev 488932)
+++ PKGBUILD2019-07-11 19:59:43 UTC (rev 488933)
@@ -1,68 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Yosef Or Boczko 
-
-pkgbase=gnome-software
-pkgname=(gnome-software gnome-software-packagekit-plugin)
-pkgver=3.32.3
-pkgrel=2
-pkgdesc="GNOME Software Tools"
-url="https://wiki.gnome.org/Apps/Software/;
-arch=(x86_64)
-license=(GPL2)
-makedepends=(appstream-glib gnome-desktop libpackagekit-glib flatpak fwupd 
ostree
- docbook-xsl git gobject-introspection gspell gtk-doc meson 
valgrind
- gnome-online-accounts libxmlb)
-_commit=9de385ffd6047187f94fcc019f7aa8ab5d6f6365  # tags/3.32.3^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-software.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/^GNOME_SOFTWARE_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgbase
-}
-
-build() {
-  arch-meson $pkgbase build
-  ninja -C build
-}
-
-check() {
-  # build container troubles
-  meson test -C build --print-errorlogs || :
-}
-
-_pick() {
-  local p="$1" f d; shift
-  for f; do
-d="$srcdir/$p/${f#$pkgdir/}"
-mkdir -p "$(dirname "$d")"
-mv "$f" "$d"
-rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
-  done
-}
-
-package_gnome-software() {
-  groups=('gnome')
-  depends=(libxmlb gnome-desktop gsettings-desktop-schemas gspell 
libpackagekit-glib
-   gnome-online-accounts appstream-glib)
-  optdepends=('flatpak: Flatpak support plugin'
-  'fwupd: fwupd support plugin'
-  'ostree: OSTree support plugin')
-
-  DESTDIR="$pkgdir" meson install -C build
-
-### Split gnome-software-packagekit-plugin
-  _pick packagekit-plugin 
"$pkgdir"/usr/lib/gs-plugins-*/libgs_plugin_packagekit*.so
-  _pick packagekit-plugin 
"$pkgdir"/usr/lib/gs-plugins-*/libgs_plugin_systemd-updates.so
-}
-
-package_gnome-software-packagekit-plugin() {
-  pkgdesc="PackageKit support plugin for GNOME Software"
-  depends=(archlinux-appstream-data gnome-software packagekit)
-  mv packagekit-plugin/* "$pkgdir"
-}

Copied: gnome-software/repos/community-x86_64/PKGBUILD (from rev 488932, 
gnome-software/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-11 19:59:43 UTC (rev 488933)
@@ -0,0 +1,68 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Yosef Or Boczko 
+
+pkgbase=gnome-software
+pkgname=(gnome-software gnome-software-packagekit-plugin)
+pkgver=3.32.4
+pkgrel=1
+pkgdesc="GNOME Software Tools"
+url="https://wiki.gnome.org/Apps/Software/;
+arch=(x86_64)
+license=(GPL2)
+makedepends=(appstream-glib gnome-desktop libpackagekit-glib flatpak fwupd 
ostree
+ docbook-xsl git gobject-introspection gspell gtk-doc meson 
valgrind
+ gnome-online-accounts libxmlb)
+_commit=243367ee6f552eb6210c622772fb254e195bc7d5  # tags/3.32.4^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-software.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/^GNOME_SOFTWARE_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+}
+
+build() {
+  arch-meson $pkgbase build
+  ninja -C build
+}
+
+check() {
+  # build container troubles
+  meson test -C build --print-errorlogs || :
+}
+
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
+
+package_gnome-software() {
+  groups=('gnome')
+  depends=(libxmlb gnome-desktop gsettings-desktop-schemas gspell 
libpackagekit-glib
+   gnome-online-accounts appstream-glib)
+  optdepends=('flatpak: Flatpak support plugin'
+  'fwupd: fwupd support plugin'
+  'ostree: OSTree support plugin')
+
+  DESTDIR="$pkgdir" meson install -C build
+
+### Split gnome-software-packagekit-plugin
+  _pick packagekit-plugin 
"$pkgdir"/usr/lib/gs-plugins-*/libgs_plugin_packagekit*.so
+  _pick packagekit-plugin 
"$pkgdir"/usr/lib/gs-plugins-*/libgs_plugin_systemd-updates.so
+}
+
+package_gnome-software-packagekit-plugin() {
+  pkgdesc="PackageKit support plugin for GNOME Software"
+  depends=(archlinux-appstream-data gnome-software packagekit)
+  mv packagekit-plugin/* "$pkgdir"
+}


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

2019-07-11 Thread Jan Steffens via arch-commits
Date: Thursday, July 11, 2019 @ 18:28:13
  Author: heftig
Revision: 488932

3.32.4-1

Modified:
  gnome-software/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 17:39:27 UTC (rev 488931)
+++ PKGBUILD2019-07-11 18:28:13 UTC (rev 488932)
@@ -4,8 +4,8 @@
 
 pkgbase=gnome-software
 pkgname=(gnome-software gnome-software-packagekit-plugin)
-pkgver=3.32.3
-pkgrel=2
+pkgver=3.32.4
+pkgrel=1
 pkgdesc="GNOME Software Tools"
 url="https://wiki.gnome.org/Apps/Software/;
 arch=(x86_64)
@@ -13,7 +13,7 @@
 makedepends=(appstream-glib gnome-desktop libpackagekit-glib flatpak fwupd 
ostree
  docbook-xsl git gobject-introspection gspell gtk-doc meson 
valgrind
  gnome-online-accounts libxmlb)
-_commit=9de385ffd6047187f94fcc019f7aa8ab5d6f6365  # tags/3.32.3^0
+_commit=243367ee6f552eb6210c622772fb254e195bc7d5  # tags/3.32.4^0
 
source=("git+https://gitlab.gnome.org/GNOME/gnome-software.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2019-07-11 Thread Antonio Rojas via arch-commits
Date: Thursday, July 11, 2019 @ 17:53:18
  Author: arojas
Revision: 357767

archrelease: copy trunk to testing-x86_64

Added:
  pyside2/repos/testing-x86_64/PKGBUILD
(from rev 357766, pyside2/trunk/PKGBUILD)
Deleted:
  pyside2/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 17:52:55 UTC (rev 357766)
+++ PKGBUILD2019-07-11 17:53:18 UTC (rev 357767)
@@ -1,54 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=pyside2
-_qtver=5.13.0
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=(x86_64)
-url='https://www.qt.io'
-license=(LGPL)
-pkgdesc='Enables the use of Qt5 APIs in Python applications'
-depends=(python-shiboken2 qt5-base)
-makedepends=(shiboken2 cmake
- qt5-multimedia qt5-tools qt5-sensors qt5-charts qt5-webengine 
qt5-datavis3d
- qt5-websockets qt5-speech qt5-3d qt5-svg qt5-script qt5-scxml 
qt5-x11extras qt5-remoteobjects)
-optdepends=('qt5-svg: QtSvg bindings'
-'qt5-script: QtScript bindings'
-'qt5-speech: QtTextToSpeech bindings'
-'qt5-websockets: QtWebSockets bindings'
-'qt5-webengine: QtWebEngine bindings'
-'qt5-datavis3d: QtDataVisualization bindings'
-'qt5-scxml: QtScxml bindings'
-'qt5-sensors: QtSensors bindings'
-'qt5-3d: Qt3D bindings'
-'qt5-x11extras: QtX11Extras bindings'
-'qt5-charts: QtCharts bindings'
-'qt5-tools: QtHelp bindings'
-'qt5-remoteobjects: QtRemoteObjects bindings')
-groups=(qt qt5)
-conflicts=(python-pyside2)
-provides=(python-pyside2)
-replaces=(python-pyside2)
-_pkgfqn=pyside-setup-everywhere-src-${_qtver}
-source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz;)
-sha256sums=('8e47e778a6c8ee86e9bc7dbf56371cf607e9f3c1a03a7d6df9e34f8dba555782')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${_pkgfqn}/sources/pyside2 \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_TESTS=OFF \
--DPYTHON_EXECUTABLE=/usr/bin/python
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: pyside2/repos/testing-x86_64/PKGBUILD (from rev 357766, 
pyside2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-11 17:53:18 UTC (rev 357767)
@@ -0,0 +1,59 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=pyside2
+_qtver=5.13.0
+pkgver=${_qtver/-/}
+pkgrel=2
+arch=(x86_64)
+url='https://www.qt.io'
+license=(LGPL)
+pkgdesc='Enables the use of Qt5 APIs in Python applications'
+depends=(python-shiboken2 qt5-base)
+makedepends=(shiboken2 cmake
+ qt5-multimedia qt5-tools qt5-sensors qt5-charts qt5-webengine 
qt5-datavis3d
+ qt5-websockets qt5-speech qt5-3d qt5-svg qt5-script qt5-scxml 
qt5-x11extras qt5-remoteobjects)
+optdepends=('qt5-svg: QtSvg bindings'
+'qt5-script: QtScript bindings'
+'qt5-speech: QtTextToSpeech bindings'
+'qt5-websockets: QtWebSockets bindings'
+'qt5-webengine: QtWebEngine bindings'
+'qt5-datavis3d: QtDataVisualization bindings'
+'qt5-scxml: QtScxml bindings'
+'qt5-sensors: QtSensors bindings'
+'qt5-3d: Qt3D bindings'
+'qt5-x11extras: QtX11Extras bindings'
+'qt5-charts: QtCharts bindings'
+'qt5-tools: QtHelp bindings'
+'qt5-remoteobjects: QtRemoteObjects bindings')
+groups=(qt qt5)
+conflicts=(python-pyside2)
+provides=(python-pyside2)
+replaces=(python-pyside2)
+_pkgfqn=pyside-setup-everywhere-src-${_qtver}
+source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz;
+ 
qcoreapplication-crash.patch::"https://code.qt.io/cgit/pyside/pyside-setup.git/patch/?id=80a6f91c;)
+sha256sums=('8e47e778a6c8ee86e9bc7dbf56371cf607e9f3c1a03a7d6df9e34f8dba555782'
+'7d36bfc604f4759f593e8d599e04e9ef713b35b3e0c373c12868b32913564303')
+
+prepare() {
+  mkdir -p build
+
+  cd $_pkgfqn
+  patch -Rp1 -i ../qcoreapplication-crash.patch # Revert commit that makes 
QCoreApplication import crash
+}
+
+build() {
+  cd build
+  cmake ../${_pkgfqn}/sources/pyside2 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTS=OFF \
+-DPYTHON_EXECUTABLE=/usr/bin/python
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="$pkgdir" install
+}


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

2019-07-11 Thread Antonio Rojas via arch-commits
Date: Thursday, July 11, 2019 @ 17:52:55
  Author: arojas
Revision: 357766

Revert commit that crashes QCoreApplication

Modified:
  pyside2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 17:45:16 UTC (rev 357765)
+++ PKGBUILD2019-07-11 17:52:55 UTC (rev 357766)
@@ -4,7 +4,7 @@
 pkgname=pyside2
 _qtver=5.13.0
 pkgver=${_qtver/-/}
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url='https://www.qt.io'
 license=(LGPL)
@@ -31,11 +31,16 @@
 provides=(python-pyside2)
 replaces=(python-pyside2)
 _pkgfqn=pyside-setup-everywhere-src-${_qtver}
-source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz;)
-sha256sums=('8e47e778a6c8ee86e9bc7dbf56371cf607e9f3c1a03a7d6df9e34f8dba555782')
+source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz;
+ 
qcoreapplication-crash.patch::"https://code.qt.io/cgit/pyside/pyside-setup.git/patch/?id=80a6f91c;)
+sha256sums=('8e47e778a6c8ee86e9bc7dbf56371cf607e9f3c1a03a7d6df9e34f8dba555782'
+'7d36bfc604f4759f593e8d599e04e9ef713b35b3e0c373c12868b32913564303')
 
 prepare() {
   mkdir -p build
+
+  cd $_pkgfqn
+  patch -Rp1 -i ../qcoreapplication-crash.patch # Revert commit that makes 
QCoreApplication import crash
 }
 
 build() {


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

2019-07-11 Thread Antonio Rojas via arch-commits
Date: Thursday, July 11, 2019 @ 17:45:16
  Author: arojas
Revision: 357765

archrelease: copy trunk to testing-x86_64

Added:
  shiboken2/repos/testing-x86_64/PKGBUILD
(from rev 357764, shiboken2/trunk/PKGBUILD)
Deleted:
  shiboken2/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 17:44:54 UTC (rev 357764)
+++ PKGBUILD2019-07-11 17:45:16 UTC (rev 357765)
@@ -1,53 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgbase=shiboken2
-pkgname=(shiboken2 python-shiboken2)
-_qtver=5.13.0
-_clangver=8.0.0
-pkgver=${_qtver/-/}
-pkgrel=2
-arch=(x86_64)
-url='https://www.qt.io'
-license=(GPL2 LGPL)
-pkgdesc='Generates bindings for C++ libraries using CPython source code'
-makedepends=(clang llvm cmake libxslt qt5-xmlpatterns python-sphinx)
-_pkgfqn=pyside-setup-everywhere-src-${_qtver}
-source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz;
- 
qcoreapplication-crash.patch::"https://code.qt.io/cgit/pyside/pyside-setup.git/patch/?id=5376a134;)
-sha256sums=('8e47e778a6c8ee86e9bc7dbf56371cf607e9f3c1a03a7d6df9e34f8dba555782'
-'d315c773f19e341b3c7faa3faf61fef70375c711e1beed395c4aded9d12fd94f')
-
-prepare() {
-  mkdir -p build
-
-  cd $_pkgfqn
-  patch -p1 -i ../qcoreapplication-crash.patch # Fix crash with importing 
QCoreApplication
-}
-
-build() {
-  cd build
-  cmake ../${_pkgfqn}/sources/shiboken2 \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_TESTS=OFF \
--DUSE_PYTHON_VERSION=3
-  make
-}
-
-package_shiboken2() {
-  depends=(clang=$_clangver llvm libxslt qt5-xmlpatterns)
-
-  cd build
-  make DESTDIR="$pkgdir" install
-# Provided in python-shiboken2
-  rm -r "$pkgdir"/usr/lib/{python*,libshiboken*}
-}
-
-package_python-shiboken2() {
-  depends=(python)
-
-  cd build
-  make DESTDIR="$pkgdir" install
-# Provided in shiboken2
-  rm -r "$pkgdir"/usr/{bin,include,lib/{cmake,pkgconfig},share}
-}

Copied: shiboken2/repos/testing-x86_64/PKGBUILD (from rev 357764, 
shiboken2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-11 17:45:16 UTC (rev 357765)
@@ -0,0 +1,53 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgbase=shiboken2
+pkgname=(shiboken2 python-shiboken2)
+_qtver=5.13.0
+_clangver=8.0.0
+pkgver=${_qtver/-/}
+pkgrel=3
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL2 LGPL)
+pkgdesc='Generates bindings for C++ libraries using CPython source code'
+makedepends=(clang llvm cmake libxslt qt5-xmlpatterns python-sphinx)
+_pkgfqn=pyside-setup-everywhere-src-${_qtver}
+source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz;
+ 
qcoreapplication-crash.patch::"https://code.qt.io/cgit/pyside/pyside-setup.git/patch/?id=80a6f91c;)
+sha256sums=('8e47e778a6c8ee86e9bc7dbf56371cf607e9f3c1a03a7d6df9e34f8dba555782'
+'7d36bfc604f4759f593e8d599e04e9ef713b35b3e0c373c12868b32913564303')
+
+prepare() {
+  mkdir -p build
+
+  cd $_pkgfqn
+  patch -Rp1 -i ../qcoreapplication-crash.patch # Revert commit that makes 
QCoreApplication import crash
+}
+
+build() {
+  cd build
+  cmake ../${_pkgfqn}/sources/shiboken2 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTS=OFF \
+-DUSE_PYTHON_VERSION=3
+  make
+}
+
+package_shiboken2() {
+  depends=(clang=$_clangver llvm libxslt qt5-xmlpatterns)
+
+  cd build
+  make DESTDIR="$pkgdir" install
+# Provided in python-shiboken2
+  rm -r "$pkgdir"/usr/lib/{python*,libshiboken*}
+}
+
+package_python-shiboken2() {
+  depends=(python)
+
+  cd build
+  make DESTDIR="$pkgdir" install
+# Provided in shiboken2
+  rm -r "$pkgdir"/usr/{bin,include,lib/{cmake,pkgconfig},share}
+}


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

2019-07-11 Thread Antonio Rojas via arch-commits
Date: Thursday, July 11, 2019 @ 17:44:54
  Author: arojas
Revision: 357764

Revert commit that crashes QCoreApplication

Modified:
  shiboken2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 17:39:09 UTC (rev 357763)
+++ PKGBUILD2019-07-11 17:44:54 UTC (rev 357764)
@@ -6,7 +6,7 @@
 _qtver=5.13.0
 _clangver=8.0.0
 pkgver=${_qtver/-/}
-pkgrel=2
+pkgrel=3
 arch=(x86_64)
 url='https://www.qt.io'
 license=(GPL2 LGPL)
@@ -14,15 +14,15 @@
 makedepends=(clang llvm cmake libxslt qt5-xmlpatterns python-sphinx)
 _pkgfqn=pyside-setup-everywhere-src-${_qtver}
 
source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz;
- 
qcoreapplication-crash.patch::"https://code.qt.io/cgit/pyside/pyside-setup.git/patch/?id=5376a134;)
+ 
qcoreapplication-crash.patch::"https://code.qt.io/cgit/pyside/pyside-setup.git/patch/?id=80a6f91c;)
 sha256sums=('8e47e778a6c8ee86e9bc7dbf56371cf607e9f3c1a03a7d6df9e34f8dba555782'
-'d315c773f19e341b3c7faa3faf61fef70375c711e1beed395c4aded9d12fd94f')
+'7d36bfc604f4759f593e8d599e04e9ef713b35b3e0c373c12868b32913564303')
 
 prepare() {
   mkdir -p build
 
   cd $_pkgfqn
-  patch -p1 -i ../qcoreapplication-crash.patch # Fix crash with importing 
QCoreApplication
+  patch -Rp1 -i ../qcoreapplication-crash.patch # Revert commit that makes 
QCoreApplication import crash
 }
 
 build() {


[arch-commits] Commit in (apparmor)

2019-07-11 Thread David Runge via arch-commits
Date: Thursday, July 11, 2019 @ 17:39:27
  Author: dvzrv
Revision: 488931

community2extra: Moving apparmor from community to extra

Deleted:
  apparmor/


[arch-commits] Commit in (4 files)

2019-07-11 Thread David Runge via arch-commits
Date: Thursday, July 11, 2019 @ 17:39:05
  Author: dvzrv
Revision: 357762

community2extra: Moving apparmor from community to extra

Added:
  apparmor/
  apparmor/repos/
  apparmor/trunk/
  apparmor/trunk/PKGBUILD

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

Added: apparmor/trunk/PKGBUILD
===
--- apparmor/trunk/PKGBUILD (rev 0)
+++ apparmor/trunk/PKGBUILD 2019-07-11 17:39:05 UTC (rev 357762)
@@ -0,0 +1,113 @@
+# Maintainer: David Runge 
+pkgname=apparmor
+pkgver=2.13.3
+pkgrel=2
+pkgdesc="Mandatory Access Control (MAC) using Linux Security Module (LSM)"
+arch=('x86_64')
+url="https://gitlab.com/apparmor/apparmor;
+license=('GPL2' 'LGPL2.1')
+depends=('audit' 'pam' 'python')
+makedepends=('apache' 'ruby' 'swig')
+checkdepends=('dejagnu' 'perl-locale-gettext' 'python-pyflakes')
+optdepends=('perl: perl bindings'
+'ruby: ruby bindings')
+provides=('libapparmor.so')
+backup=('etc/apparmor/easyprof.conf'
+'etc/apparmor/logprof.conf'
+'etc/apparmor/notify.conf'
+'etc/apparmor/parser.conf'
+'etc/apparmor/subdomain.conf'
+'etc/apparmor/severity.db')
+source=("https://launchpad.net/${pkgname}/${pkgver%.[0-9]}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz"{,.asc})
+sha512sums=('137b2bf026ec655b662e9c264d7d48d878db474a3f1cc5a38bfd7df2f85b682bddb77b091ab5595178231a0a262c9ae9cdd61409461cd889bdee156906ef1141'
+'SKIP')
+# AppArmor Development Team (AppArmor signing key) 
+validpgpkeys=('3ECDCBA5FB34D254961CC53F6689E64E3D3664BB')
+_core_perl="/usr/bin/core_perl"
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # fix PYTHONPATH and add LD_LIBRARY_PATH for aa-logprof based check:
+  # https://gitlab.com/apparmor/apparmor/issues/39
+  local _py3_ver=$(python --version | cut -d " " -f2)
+  local 
path="${PWD}/libraries/libapparmor/swig/python/build/lib.linux-${CARCH}-${_py3_ver%"."*}/LibAppArmor"
+  local libs="${PWD}/libraries/libapparmor/src/.libs"
+  sed -e "/PYTHONPATH/ s|utils\ |utils:$path\ LD_LIBRARY_PATH=$libs\ |" \
+  -i profiles/Makefile
+  # fix hardcoded install paths: https://gitlab.com/apparmor/apparmor/issues/38
+  sed -e 's|/usr/sbin|/usr/bin|g' \
+  -e 's|/sbin|/usr/bin|g' \
+  -i parser/Makefile
+  (
+cd libraries/libapparmor/
+autoreconf -vfi
+  )
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  # export required perl executable locations
+  export MAKEFLAGS+=" POD2MAN=${_core_perl}/pod2man"
+  export MAKEFLAGS+=" POD2HTML=${_core_perl}/pod2html"
+  export MAKEFLAGS+=" PODCHECKER=${_core_perl}/podchecker"
+  export MAKEFLAGS+=" PROVE=${_core_perl}/prove"
+  (
+cd "libraries/libapparmor/"
+./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--with-perl \
+--with-python \
+--with-ruby
+make
+  )
+  make -C binutils
+  make -C parser
+  make -C profiles
+  make -C utils
+  make -C changehat/pam_apparmor
+  make -C changehat/mod_apparmor
+  make -C utils/vim
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make -C libraries/libapparmor check
+  make -C binutils check
+  make -C parser check
+  # only running check-parser, as check-logprof (included in check) fails:
+  # https://gitlab.com/apparmor/apparmor/issues/36
+  make -C profiles check-parser
+  make -C utils check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make -C libraries/libapparmor DESTDIR="${pkgdir}" install
+  make -C changehat/pam_apparmor DESTDIR="${pkgdir}/usr" install
+  make -C changehat/mod_apparmor DESTDIR="${pkgdir}" install
+  make -C binutils DESTDIR="${pkgdir}" install
+  make -C parser DESTDIR="${pkgdir}" \
+ APPARMOR_BIN_PREFIX="${pkgdir}/usr/lib/apparmor" \
+ install install-systemd
+  make -C profiles DESTDIR="${pkgdir}" install
+  make -C utils DESTDIR="${pkgdir}" \
+BINDIR="${pkgdir}/usr/bin" \
+VIM_INSTALL_PATH="${pkgdir}/usr/share/vim/vimfiles/syntax" \
+install
+  # strip perl library: https://gitlab.com/apparmor/apparmor/issues/34
+  find "${pkgdir}/usr/lib/perl5/" \
+-type f -iname "*.so" \
+-exec strip --strip-unneeded {} \;
+  # removing empty core_perl directory:
+  # https://gitlab.com/apparmor/apparmor/issues/40
+  rm -rv "${pkgdir}"/usr/lib/perl5/*/core_perl
+  # move ruby bindings to vendor_ruby:
+  # https://gitlab.com/apparmor/apparmor/issues/35
+  mv -v "${pkgdir}/usr/lib/ruby/site_ruby/" \
+"${pkgdir}/usr/lib/ruby/vendor_ruby/"
+  # adding files below /etc/apparmor.d to backup array
+  cd "${pkgdir}"
+  # tricking extract_function_variable() in makepkg into not detecting the
+  # backup array modification and adding remaining configuration files
+  [[ /usr/bin/true ]] && backup=( ${backup[@]} $(find "etc/${pkgname}.d/" 
-type f) )
+}


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

2019-07-11 Thread David Runge via arch-commits
Date: Thursday, July 11, 2019 @ 17:39:09
  Author: dvzrv
Revision: 357763

archrelease: copy trunk to extra-x86_64

Added:
  apparmor/repos/extra-x86_64/
  apparmor/repos/extra-x86_64/PKGBUILD
(from rev 357762, apparmor/trunk/PKGBUILD)

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

Copied: apparmor/repos/extra-x86_64/PKGBUILD (from rev 357762, 
apparmor/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2019-07-11 17:39:09 UTC (rev 357763)
@@ -0,0 +1,113 @@
+# Maintainer: David Runge 
+pkgname=apparmor
+pkgver=2.13.3
+pkgrel=2
+pkgdesc="Mandatory Access Control (MAC) using Linux Security Module (LSM)"
+arch=('x86_64')
+url="https://gitlab.com/apparmor/apparmor;
+license=('GPL2' 'LGPL2.1')
+depends=('audit' 'pam' 'python')
+makedepends=('apache' 'ruby' 'swig')
+checkdepends=('dejagnu' 'perl-locale-gettext' 'python-pyflakes')
+optdepends=('perl: perl bindings'
+'ruby: ruby bindings')
+provides=('libapparmor.so')
+backup=('etc/apparmor/easyprof.conf'
+'etc/apparmor/logprof.conf'
+'etc/apparmor/notify.conf'
+'etc/apparmor/parser.conf'
+'etc/apparmor/subdomain.conf'
+'etc/apparmor/severity.db')
+source=("https://launchpad.net/${pkgname}/${pkgver%.[0-9]}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz"{,.asc})
+sha512sums=('137b2bf026ec655b662e9c264d7d48d878db474a3f1cc5a38bfd7df2f85b682bddb77b091ab5595178231a0a262c9ae9cdd61409461cd889bdee156906ef1141'
+'SKIP')
+# AppArmor Development Team (AppArmor signing key) 
+validpgpkeys=('3ECDCBA5FB34D254961CC53F6689E64E3D3664BB')
+_core_perl="/usr/bin/core_perl"
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # fix PYTHONPATH and add LD_LIBRARY_PATH for aa-logprof based check:
+  # https://gitlab.com/apparmor/apparmor/issues/39
+  local _py3_ver=$(python --version | cut -d " " -f2)
+  local 
path="${PWD}/libraries/libapparmor/swig/python/build/lib.linux-${CARCH}-${_py3_ver%"."*}/LibAppArmor"
+  local libs="${PWD}/libraries/libapparmor/src/.libs"
+  sed -e "/PYTHONPATH/ s|utils\ |utils:$path\ LD_LIBRARY_PATH=$libs\ |" \
+  -i profiles/Makefile
+  # fix hardcoded install paths: https://gitlab.com/apparmor/apparmor/issues/38
+  sed -e 's|/usr/sbin|/usr/bin|g' \
+  -e 's|/sbin|/usr/bin|g' \
+  -i parser/Makefile
+  (
+cd libraries/libapparmor/
+autoreconf -vfi
+  )
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  # export required perl executable locations
+  export MAKEFLAGS+=" POD2MAN=${_core_perl}/pod2man"
+  export MAKEFLAGS+=" POD2HTML=${_core_perl}/pod2html"
+  export MAKEFLAGS+=" PODCHECKER=${_core_perl}/podchecker"
+  export MAKEFLAGS+=" PROVE=${_core_perl}/prove"
+  (
+cd "libraries/libapparmor/"
+./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--with-perl \
+--with-python \
+--with-ruby
+make
+  )
+  make -C binutils
+  make -C parser
+  make -C profiles
+  make -C utils
+  make -C changehat/pam_apparmor
+  make -C changehat/mod_apparmor
+  make -C utils/vim
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make -C libraries/libapparmor check
+  make -C binutils check
+  make -C parser check
+  # only running check-parser, as check-logprof (included in check) fails:
+  # https://gitlab.com/apparmor/apparmor/issues/36
+  make -C profiles check-parser
+  make -C utils check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make -C libraries/libapparmor DESTDIR="${pkgdir}" install
+  make -C changehat/pam_apparmor DESTDIR="${pkgdir}/usr" install
+  make -C changehat/mod_apparmor DESTDIR="${pkgdir}" install
+  make -C binutils DESTDIR="${pkgdir}" install
+  make -C parser DESTDIR="${pkgdir}" \
+ APPARMOR_BIN_PREFIX="${pkgdir}/usr/lib/apparmor" \
+ install install-systemd
+  make -C profiles DESTDIR="${pkgdir}" install
+  make -C utils DESTDIR="${pkgdir}" \
+BINDIR="${pkgdir}/usr/bin" \
+VIM_INSTALL_PATH="${pkgdir}/usr/share/vim/vimfiles/syntax" \
+install
+  # strip perl library: https://gitlab.com/apparmor/apparmor/issues/34
+  find "${pkgdir}/usr/lib/perl5/" \
+-type f -iname "*.so" \
+-exec strip --strip-unneeded {} \;
+  # removing empty core_perl directory:
+  # https://gitlab.com/apparmor/apparmor/issues/40
+  rm -rv "${pkgdir}"/usr/lib/perl5/*/core_perl
+  # move ruby bindings to vendor_ruby:
+  # https://gitlab.com/apparmor/apparmor/issues/35
+  mv -v "${pkgdir}/usr/lib/ruby/site_ruby/" \
+"${pkgdir}/usr/lib/ruby/vendor_ruby/"
+  # adding files below /etc/apparmor.d to backup array
+  cd "${pkgdir}"
+  # tricking extract_function_variable() in makepkg into not detecting the
+  # backup array modification and adding remaining configuration files
+  [[ /usr/bin/true ]] && backup=( ${backup[@]} $(find 

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

2019-07-11 Thread Santiago Torres-Arias via arch-commits
Date: Thursday, July 11, 2019 @ 17:08:31
  Author: sangy
Revision: 488929

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 17:07:48 UTC (rev 488928)
+++ PKGBUILD2019-07-11 17:08:31 UTC (rev 488929)
@@ -1,27 +0,0 @@
-# Maintainer : Santiago Torres-Arias 
-# Contributor: smmalis37
-
-pkgname='python-aiorpcx'
-pkgver=0.18.0
-pkgrel=2
-pkgdesc="A generic asyncio library implementation of RPC suitable for an 
application that is a client, server or both."
-url="https://github.com/kyuupichan/aiorpcX/;
-arch=('any')
-license=('MIT')
-depends=('python>=3.6' 'python-attrs')
-makedepends=('python-setuptools' 'python-websockets')
-source=("https://github.com/kyuupichan/aiorpcX/archive/${pkgver}.tar.gz;)
-sha256sums=('099f1f789e5eec3e87443323d747b8bff3238b7bf71d6a7596f02d1f0b328851')
-
-
-build() {
-  cd "${srcdir}/aiorpcX-${pkgver}"
-  python setup.py build
-}
-
-package() {
-  cd "${srcdir}/aiorpcX-${pkgver}"
-  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-  install -D -m644 LICENCE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-

Copied: python-aiorpcx/repos/community-any/PKGBUILD (from rev 488928, 
python-aiorpcx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-11 17:08:31 UTC (rev 488929)
@@ -0,0 +1,27 @@
+# Maintainer : Santiago Torres-Arias 
+# Contributor: smmalis37
+
+pkgname='python-aiorpcx'
+pkgver=0.18.3
+pkgrel=1
+pkgdesc="A generic asyncio library implementation of RPC suitable for an 
application that is a client, server or both."
+url="https://github.com/kyuupichan/aiorpcX/;
+arch=('any')
+license=('MIT')
+depends=('python>=3.6' 'python-attrs')
+makedepends=('python-setuptools' 'python-websockets')
+source=("https://github.com/kyuupichan/aiorpcX/archive/${pkgver}.tar.gz;)
+sha256sums=('3d0f31ad9d2369bdf8a86106eccc0fef9245b917e750df68497cde8cc19a6192')
+
+
+build() {
+  cd "${srcdir}/aiorpcX-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${srcdir}/aiorpcX-${pkgver}"
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+  install -D -m644 LICENCE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+


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

2019-07-11 Thread Santiago Torres-Arias via arch-commits
Date: Thursday, July 11, 2019 @ 17:07:48
  Author: sangy
Revision: 488928

upgpkg: python-aiorpcx 0.18.3-1

Modified:
  python-aiorpcx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 17:07:14 UTC (rev 488927)
+++ PKGBUILD2019-07-11 17:07:48 UTC (rev 488928)
@@ -2,8 +2,8 @@
 # Contributor: smmalis37
 
 pkgname='python-aiorpcx'
-pkgver=0.18.0
-pkgrel=2
+pkgver=0.18.3
+pkgrel=1
 pkgdesc="A generic asyncio library implementation of RPC suitable for an 
application that is a client, server or both."
 url="https://github.com/kyuupichan/aiorpcX/;
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('python>=3.6' 'python-attrs')
 makedepends=('python-setuptools' 'python-websockets')
 source=("https://github.com/kyuupichan/aiorpcX/archive/${pkgver}.tar.gz;)
-sha256sums=('099f1f789e5eec3e87443323d747b8bff3238b7bf71d6a7596f02d1f0b328851')
+sha256sums=('3d0f31ad9d2369bdf8a86106eccc0fef9245b917e750df68497cde8cc19a6192')
 
 
 build() {


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

2019-07-11 Thread Santiago Torres-Arias via arch-commits
Date: Thursday, July 11, 2019 @ 17:07:14
  Author: sangy
Revision: 488927

archrelease: copy trunk to community-any

Added:
  
electrum/repos/community-any/0001-prevent-requirements.txt-from-being-installed-to-usr.patch
(from rev 488926, 
electrum/trunk/0001-prevent-requirements.txt-from-being-installed-to-usr.patch)
  electrum/repos/community-any/PKGBUILD
(from rev 488926, electrum/trunk/PKGBUILD)
Deleted:
  
electrum/repos/community-any/0001-prevent-requirements.txt-from-being-installed-to-usr.patch
  electrum/repos/community-any/PKGBUILD

-+
 0001-prevent-requirements.txt-from-being-installed-to-usr.patch |   78 
 PKGBUILD|   94 
+-
 2 files changed, 86 insertions(+), 86 deletions(-)

Deleted: 0001-prevent-requirements.txt-from-being-installed-to-usr.patch
===
--- 0001-prevent-requirements.txt-from-being-installed-to-usr.patch 
2019-07-11 17:06:25 UTC (rev 488926)
+++ 0001-prevent-requirements.txt-from-being-installed-to-usr.patch 
2019-07-11 17:07:14 UTC (rev 488927)
@@ -1,39 +0,0 @@
-From e72947c8fd50575d69cb005a52f99aeef66f4186 Mon Sep 17 00:00:00 2001
-From: Marcel O'Neil 
-Date: Wed, 7 Mar 2018 15:15:54 -0500
-Subject: [PATCH] prevent requirements.txt from being installed to /usr
-

- MANIFEST.in | 2 ++
- setup.py| 2 +-
- 2 files changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/MANIFEST.in b/MANIFEST.in
-index 4fa5491a..b7355bd9 100644
 a/MANIFEST.in
-+++ b/MANIFEST.in
-@@ -4,6 +4,8 @@ include electrum.conf.sample
- include electrum.desktop
- include *.py
- include electrum
-+include contrib/requirements/requirements.txt
-+include contrib/requirements/requirements-hw.txt
- recursive-include lib *.py
- recursive-include gui *.py
- recursive-include plugins *.py
-diff --git a/setup.py b/setup.py
-index 63581a61..030993b5 100755
 a/setup.py
-+++ b/setup.py
-@@ -20,7 +20,7 @@ version = imp.load_source('version', 'lib/version.py')
- if sys.version_info[:3] < (3, 4, 0):
- sys.exit("Error: Electrum requires Python version >= 3.4.0...")
- 
--data_files = ['contrib/requirements/' + r for r in ['requirements.txt', 
'requirements-hw.txt']]
-+data_files = []
- 
- if platform.system() in ['Linux', 'FreeBSD', 'DragonFly']:
- parser = argparse.ArgumentParser()
--- 
-2.16.2
-

Copied: 
electrum/repos/community-any/0001-prevent-requirements.txt-from-being-installed-to-usr.patch
 (from rev 488926, 
electrum/trunk/0001-prevent-requirements.txt-from-being-installed-to-usr.patch)
===
--- 0001-prevent-requirements.txt-from-being-installed-to-usr.patch 
(rev 0)
+++ 0001-prevent-requirements.txt-from-being-installed-to-usr.patch 
2019-07-11 17:07:14 UTC (rev 488927)
@@ -0,0 +1,39 @@
+From e72947c8fd50575d69cb005a52f99aeef66f4186 Mon Sep 17 00:00:00 2001
+From: Marcel O'Neil 
+Date: Wed, 7 Mar 2018 15:15:54 -0500
+Subject: [PATCH] prevent requirements.txt from being installed to /usr
+
+---
+ MANIFEST.in | 2 ++
+ setup.py| 2 +-
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/MANIFEST.in b/MANIFEST.in
+index 4fa5491a..b7355bd9 100644
+--- a/MANIFEST.in
 b/MANIFEST.in
+@@ -4,6 +4,8 @@ include electrum.conf.sample
+ include electrum.desktop
+ include *.py
+ include electrum
++include contrib/requirements/requirements.txt
++include contrib/requirements/requirements-hw.txt
+ recursive-include lib *.py
+ recursive-include gui *.py
+ recursive-include plugins *.py
+diff --git a/setup.py b/setup.py
+index 63581a61..030993b5 100755
+--- a/setup.py
 b/setup.py
+@@ -20,7 +20,7 @@ version = imp.load_source('version', 'lib/version.py')
+ if sys.version_info[:3] < (3, 4, 0):
+ sys.exit("Error: Electrum requires Python version >= 3.4.0...")
+ 
+-data_files = ['contrib/requirements/' + r for r in ['requirements.txt', 
'requirements-hw.txt']]
++data_files = []
+ 
+ if platform.system() in ['Linux', 'FreeBSD', 'DragonFly']:
+ parser = argparse.ArgumentParser()
+-- 
+2.16.2
+

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 17:06:25 UTC (rev 488926)
+++ PKGBUILD2019-07-11 17:07:14 UTC (rev 488927)
@@ -1,47 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Co-Maintainer: Santiago Torres-Arias 
-# Contributor: Timothy Redaelli 
-# Contributor: Andy Weidenbaum 
-
-pkgname=electrum
-pkgver=3.3.7
-pkgrel=1
-pkgdesc="Lightweight Bitcoin wallet"
-arch=('any')
-makedepends=('python-setuptools')
-depends=('python-pyaes' 'python-ecdsa' 'python-pbkdf2' 'python-requests' 
'python-qrcode'
- 'python-protobuf' 'python-dnspython' 'python-jsonrpclib-pelix' 
'python-pysocks'
- 'python-pyqt5' 'python-pycryptodomex' 'python-websocket-client' 
'python-certifi'
- 'python-aiorpcx' 'python-aiohttp' 

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

2019-07-11 Thread Santiago Torres-Arias via arch-commits
Date: Thursday, July 11, 2019 @ 17:06:25
  Author: sangy
Revision: 488926

upgpkg: electrum 3.3.8-1

Modified:
  electrum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 16:48:24 UTC (rev 488925)
+++ PKGBUILD2019-07-11 17:06:25 UTC (rev 488926)
@@ -4,7 +4,7 @@
 # Contributor: Andy Weidenbaum 
 
 pkgname=electrum
-pkgver=3.3.7
+pkgver=3.3.8
 pkgrel=1
 pkgdesc="Lightweight Bitcoin wallet"
 arch=('any')
@@ -25,7 +25,7 @@
 url="https://electrum.org;
 license=('MIT')
 
source=("https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz"{,.asc})
-sha512sums=('be3392b8b251e9eb855b99c2ceaa0d51f1ed135da32e43ca047576289242e10993bc0a6fba71cf8bddb7e7887bcabfe16a4af888488694aa0f0ee7155616693b'
+sha512sums=('5f756da4d2df59c69997925c69f651011def07bfbdbc582f492ecc19386eee7d79b9951732a792e6041da902d776052d6590cbd2d7004bc93c8406bcf9093fe6'
 'SKIP')
 validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
 


[arch-commits] Commit in gnupg/trunk (PKGBUILD self-sigs-only.patch)

2019-07-11 Thread Gaëtan Bisson via arch-commits
Date: Thursday, July 11, 2019 @ 16:55:22
  Author: bisson
Revision: 357760

revert import-self-sigs-only, breaks WOT, see FS#63147

Added:
  gnupg/trunk/self-sigs-only.patch
Modified:
  gnupg/trunk/PKGBUILD

--+
 PKGBUILD |9 +--
 self-sigs-only.patch |   56 +
 2 files changed, 62 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 16:18:45 UTC (rev 357759)
+++ PKGBUILD2019-07-11 16:55:22 UTC (rev 357760)
@@ -5,7 +5,7 @@
 
 pkgname=gnupg
 pkgver=2.2.17
-pkgrel=1
+pkgrel=2
 pkgdesc='Complete and free implementation of the OpenPGP standard'
 url='https://www.gnupg.org/'
 license=('GPL')
@@ -21,9 +21,11 @@
   '46CC730865BB5C78EBABADCF04376F3EE0856959'
   '031EC2536E580D8EA286A9F22071B08A33BD3F06'
   '5B80C5754298F0CB55D8ED6ABCEF7E294B092E28')
-source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
+'self-sigs-only.patch')
 sha256sums=('afa262868e39b651a2db4c071fba90415154243e83a830ca00516f9a807fd514'
-'SKIP')
+'SKIP'
+'0130c43321c16f53ab2290833007212f8a26b1b73bd4edc2b2b1c9db2b2d0218')
 
 install=install
 
@@ -30,6 +32,7 @@
 prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+   patch -R -p1 -i ../self-sigs-only.patch
 }
 
 build() {

Added: self-sigs-only.patch
===
--- self-sigs-only.patch(rev 0)
+++ self-sigs-only.patch2019-07-11 16:55:22 UTC (rev 357760)
@@ -0,0 +1,56 @@
+From: Werner Koch 
+Date: Thu, 4 Jul 2019 13:45:39 + (+0200)
+Subject: gpg: Add "self-sigs-only" and "import-clean" to the keyserver options.
+X-Git-Url: 
http://git.gnupg.org/cgi-bin/gitweb.cgi?p=gnupg.git;a=commitdiff_plain;h=23c978640812d123eaffd4108744bdfcf48f7c93
+
+gpg: Add "self-sigs-only" and "import-clean" to the keyserver options.
+
+* g10/gpg.c (main): Change default.
+--
+
+Due to the DoS attack on the keyeservers we do not anymore default to
+import key signatures.  That makes the keyserver unsuable for getting
+keys for the WoT but it still allows to retriev keys - even if that
+takes long to download the large keyblocks.
+
+To revert to the old behavior add
+
+  keyserver-optiions  no-self-sigs-only,no-import-clean
+
+to gpg.conf.
+
+GnuPG-bug-id: 4607
+Signed-off-by: Werner Koch 
+---
+
+diff --git a/doc/gpg.texi b/doc/gpg.texi
+index 8feab8218..9513a4e0f 100644
+--- a/doc/gpg.texi
 b/doc/gpg.texi
+@@ -1917,6 +1917,11 @@ are available for all keyserver types, some common 
options are:
+ 
+ @end table
+ 
++The default list of options is: "self-sigs-only, import-clean,
++repair-keys, repair-pks-subkey-bug, export-attributes,
++honor-pka-record".
++
++
+ @item --completes-needed @var{n}
+ @opindex compliant-needed
+ Number of completely trusted users to introduce a new
+diff --git a/g10/gpg.c b/g10/gpg.c
+index 66e47dde5..0bbe72394 100644
+--- a/g10/gpg.c
 b/g10/gpg.c
+@@ -2424,7 +2424,9 @@ main (int argc, char **argv)
+ opt.import_options = IMPORT_REPAIR_KEYS;
+ opt.export_options = EXPORT_ATTRIBUTES;
+ opt.keyserver_options.import_options = (IMPORT_REPAIR_KEYS
+-  | IMPORT_REPAIR_PKS_SUBKEY_BUG);
++  | IMPORT_REPAIR_PKS_SUBKEY_BUG
++| IMPORT_SELF_SIGS_ONLY
++| IMPORT_CLEAN);
+ opt.keyserver_options.export_options = EXPORT_ATTRIBUTES;
+ opt.keyserver_options.options = KEYSERVER_HONOR_PKA_RECORD;
+ opt.verify_options = (LIST_SHOW_UID_VALIDITY


[arch-commits] Commit in gnupg/repos/testing-x86_64 (5 files)

2019-07-11 Thread Gaëtan Bisson via arch-commits
Date: Thursday, July 11, 2019 @ 16:55:33
  Author: bisson
Revision: 357761

archrelease: copy trunk to testing-x86_64

Added:
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 357760, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 357760, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/self-sigs-only.patch
(from rev 357760, gnupg/trunk/self-sigs-only.patch)
Deleted:
  gnupg/repos/testing-x86_64/PKGBUILD
  gnupg/repos/testing-x86_64/install

--+
 PKGBUILD |  129 +
 install  |   62 +++
 self-sigs-only.patch |   56 +
 3 files changed, 153 insertions(+), 94 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 16:55:22 UTC (rev 357760)
+++ PKGBUILD2019-07-11 16:55:33 UTC (rev 357761)
@@ -1,63 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Tobias Powalowski 
-# Contributor: Andreas Radke 
-# Contributor: Judd Vinet 
-
-pkgname=gnupg
-pkgver=2.2.17
-pkgrel=1
-pkgdesc='Complete and free implementation of the OpenPGP standard'
-url='https://www.gnupg.org/'
-license=('GPL')
-arch=('x86_64')
-checkdepends=('openssh')
-makedepends=('libldap' 'libusb-compat' 'pcsclite')
-depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
- 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
-optdepends=('libldap: gpg2keys_ldap'
-'libusb-compat: scdaemon'
-'pcsclite: scdaemon')
-validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
-  '46CC730865BB5C78EBABADCF04376F3EE0856959'
-  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
-  '5B80C5754298F0CB55D8ED6ABCEF7E294B092E28')
-source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha256sums=('afa262868e39b651a2db4c071fba90415154243e83a830ca00516f9a807fd514'
-'SKIP')
-
-install=install
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --sbindir=/usr/bin \
-   --libexecdir=/usr/lib/gnupg \
-   --enable-maintainer-mode \
-   --enable-symcryptrun \
-
-   make
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make check
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   ln -s gpg "${pkgdir}"/usr/bin/gpg2
-   ln -s gpgv "${pkgdir}"/usr/bin/gpgv2
-
-   cd doc/examples/systemd-user
-   for i in *.*; do
-   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
-   done
-}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 357760, 
gnupg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-11 16:55:33 UTC (rev 357761)
@@ -0,0 +1,66 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.2.17
+pkgrel=2
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='https://www.gnupg.org/'
+license=('GPL')
+arch=('x86_64')
+checkdepends=('openssh')
+makedepends=('libldap' 'libusb-compat' 'pcsclite')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon'
+'pcsclite: scdaemon')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  '5B80C5754298F0CB55D8ED6ABCEF7E294B092E28')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
+'self-sigs-only.patch')
+sha256sums=('afa262868e39b651a2db4c071fba90415154243e83a830ca00516f9a807fd514'
+'SKIP'
+'0130c43321c16f53ab2290833007212f8a26b1b73bd4edc2b2b1c9db2b2d0218')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+   patch -R -p1 -i ../self-sigs-only.patch
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd 

[arch-commits] Commit in ttf-ubuntu-font-family/repos/community-any (4 files)

2019-07-11 Thread Jan Steffens via arch-commits
Date: Thursday, July 11, 2019 @ 16:48:20
  Author: heftig
Revision: 488923

archrelease: copy trunk to community-any

Added:
  ttf-ubuntu-font-family/repos/community-any/81-ubuntu.conf
(from rev 488922, ttf-ubuntu-font-family/trunk/81-ubuntu.conf)
  ttf-ubuntu-font-family/repos/community-any/PKGBUILD
(from rev 488922, ttf-ubuntu-font-family/trunk/PKGBUILD)
Deleted:
  ttf-ubuntu-font-family/repos/community-any/81-ubuntu.conf
  ttf-ubuntu-font-family/repos/community-any/PKGBUILD

+
 81-ubuntu.conf |   66 +++
 PKGBUILD   |   48 +++-
 2 files changed, 89 insertions(+), 25 deletions(-)

Deleted: 81-ubuntu.conf
===
(Binary files differ)

Copied: ttf-ubuntu-font-family/repos/community-any/81-ubuntu.conf (from rev 
488922, ttf-ubuntu-font-family/trunk/81-ubuntu.conf)
===
--- 81-ubuntu.conf  (rev 0)
+++ 81-ubuntu.conf  2019-07-11 16:48:20 UTC (rev 488923)
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+   
+   Ubuntu Light
+   
+   
+   Ubuntu
+   
+   
+   Light
+   
+
+
+
+   
+   Ubuntu Light Italic
+   
+   
+   Ubuntu
+   
+   
+   Light Italic
+   
+
+
+
+   
+   Ubuntu Medium
+   
+   
+   Ubuntu
+   
+   
+   Medium
+   
+   
+   demibold
+   
+
+
+
+   
+   Ubuntu Medium Italic
+   
+   
+   Ubuntu
+   
+   
+   Medium Italic
+   
+   
+   demibold
+   
+
+
+

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 16:46:28 UTC (rev 488922)
+++ PKGBUILD2019-07-11 16:48:20 UTC (rev 488923)
@@ -1,25 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=ttf-ubuntu-font-family
-pkgver=0.83
-pkgrel=4
-pkgdesc="Ubuntu font family"
-arch=('any')
-url="http://font.ubuntu.com/;
-license=('custom:Ubuntu Font Licence 1.0')
-depends=('fontconfig' 'xorg-font-utils')
-provides=('ttf-font')
-backup=(etc/fonts/conf.avail/81-ubuntu.conf)
-source=(https://assets.ubuntu.com/v1/fad7939b-ubuntu-font-family-$pkgver.zip
-81-ubuntu.conf)
-sha256sums=('456d7d42797febd0d7d4cf1b782a2e03680bb4a5ee43cc9d06bda172bac05b42'
-'16e29b1b8d13edddb588e4470f6da4c15870a9a27dd25eb4553c2c575d6dc14e')
-
-package() {
-   cd "$srcdir"/ubuntu-font-family-$pkgver
-   install -dm755 "$pkgdir"/usr/share/fonts/TTF "$pkgdir"/etc/fonts/conf.d
-   install -m644 Ubuntu{,Mono}-*.ttf "$pkgdir"/usr/share/fonts/TTF/
-   install -Dm644 LICENCE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENCE
-   install -Dm644 "$srcdir"/81-ubuntu.conf 
"$pkgdir"/etc/fonts/conf.avail/81-ubuntu.conf
-   ln -s ../conf.avail/81-ubuntu.conf 
"$pkgdir"/etc/fonts/conf.d/81-ubuntu.conf
-}

Copied: ttf-ubuntu-font-family/repos/community-any/PKGBUILD (from rev 488922, 
ttf-ubuntu-font-family/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-11 16:48:20 UTC (rev 488923)
@@ -0,0 +1,23 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=ttf-ubuntu-font-family
+pkgver=0.83
+pkgrel=5
+pkgdesc="Ubuntu font family"
+arch=('any')
+url="https://design.ubuntu.com/font/;
+license=('custom:Ubuntu Font Licence 1.0')
+backup=(etc/fonts/conf.avail/81-ubuntu.conf)
+source=(https://assets.ubuntu.com/v1/fad7939b-ubuntu-font-family-$pkgver.zip
+81-ubuntu.conf)
+sha256sums=('456d7d42797febd0d7d4cf1b782a2e03680bb4a5ee43cc9d06bda172bac05b42'
+'16e29b1b8d13edddb588e4470f6da4c15870a9a27dd25eb4553c2c575d6dc14e')
+
+package() {
+   cd ubuntu-font-family-$pkgver
+   install -dm755 "$pkgdir"/etc/fonts/conf.d
+   install -Dm644 -t "$pkgdir"/usr/share/fonts/ubuntu *.ttf
+   install -Dm644 LICENCE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENCE
+   install -Dm644 "$srcdir"/81-ubuntu.conf 
"$pkgdir"/etc/fonts/conf.avail/81-ubuntu.conf
+   ln -s ../conf.avail/81-ubuntu.conf 
"$pkgdir"/etc/fonts/conf.d/81-ubuntu.conf
+}


[arch-commits] Commit in ttf-droid/repos/community-any (10 files)

2019-07-11 Thread Jan Steffens via arch-commits
Date: Thursday, July 11, 2019 @ 16:48:24
  Author: heftig
Revision: 488925

archrelease: copy trunk to community-any

Added:
  ttf-droid/repos/community-any/60-droid-sans-mono.conf
(from rev 488922, ttf-droid/trunk/60-droid-sans-mono.conf)
  ttf-droid/repos/community-any/65-droid-kufi.conf
(from rev 488922, ttf-droid/trunk/65-droid-kufi.conf)
  ttf-droid/repos/community-any/65-droid-sans.conf
(from rev 488922, ttf-droid/trunk/65-droid-sans.conf)
  ttf-droid/repos/community-any/65-droid-serif.conf
(from rev 488922, ttf-droid/trunk/65-droid-serif.conf)
  ttf-droid/repos/community-any/PKGBUILD
(from rev 488923, ttf-droid/trunk/PKGBUILD)
Deleted:
  ttf-droid/repos/community-any/PKGBUILD
  ttf-droid/repos/community-any/kufi-fontconfig.conf
  ttf-droid/repos/community-any/sans-fontconfig.conf
  ttf-droid/repos/community-any/sans-mono-fontconfig.conf
  ttf-droid/repos/community-any/serif-fontconfig.conf

-+
 60-droid-sans-mono.conf |   16 ++
 65-droid-kufi.conf  |   16 ++
 65-droid-sans.conf  |  310 ++
 65-droid-serif.conf |   64 +
 PKGBUILD|   64 -
 5 files changed, 435 insertions(+), 35 deletions(-)

Copied: ttf-droid/repos/community-any/60-droid-sans-mono.conf (from rev 488922, 
ttf-droid/trunk/60-droid-sans-mono.conf)
===
--- 60-droid-sans-mono.conf (rev 0)
+++ 60-droid-sans-mono.conf 2019-07-11 16:48:24 UTC (rev 488925)
@@ -0,0 +1,16 @@
+
+
+
+  
+monospace
+
+  Droid Sans Mono
+
+  
+  
+Droid Sans Mono
+
+  monospace
+
+  
+

Copied: ttf-droid/repos/community-any/65-droid-kufi.conf (from rev 488922, 
ttf-droid/trunk/65-droid-kufi.conf)
===
--- 65-droid-kufi.conf  (rev 0)
+++ 65-droid-kufi.conf  2019-07-11 16:48:24 UTC (rev 488925)
@@ -0,0 +1,16 @@
+
+
+
+  
+fantasy
+
+  Droid Arabic Kufi
+
+  
+  
+Droid Arabic Kufi
+
+  Droid Sans
+
+  
+

Copied: ttf-droid/repos/community-any/65-droid-sans.conf (from rev 488922, 
ttf-droid/trunk/65-droid-sans.conf)
===
--- 65-droid-sans.conf  (rev 0)
+++ 65-droid-sans.conf  2019-07-11 16:48:24 UTC (rev 488925)
@@ -0,0 +1,310 @@
+
+
+
+  
+
+  Droid Sans
+
+
+  12
+
+  
+  
+
+  Droid Sans Hebrew
+
+
+  Droid Sans
+
+
+  Droid Sans
+
+
+  11
+
+  
+  
+
+  Droid Sans Hebrew Bold
+
+
+  Droid Sans
+
+
+  Droid Sans Bold
+
+
+  11
+
+  
+  
+
+  Droid Sans Armenian
+
+
+  Droid Sans
+
+
+  Droid Sans
+
+
+  10
+
+  
+  
+
+  Droid Sans Georgian
+
+
+  Droid Sans
+
+
+  Droid Sans
+
+
+  9
+
+  
+  
+
+  Droid Sans Ethiopic
+
+
+  Droid Sans
+
+
+  Droid Sans
+
+
+  8
+
+  
+  
+
+  Droid Sans Ethiopic Bold
+
+
+  Droid Sans
+
+
+  Droid Sans Bold
+
+
+  8
+
+  
+  
+
+  Droid Sans Arabic
+
+
+  Droid Sans
+
+
+  Droid Sans
+
+
+  7
+
+  
+  
+
+  Droid Sans Devanagari
+
+
+  Droid Sans
+
+
+  Droid Sans
+
+
+  6
+
+  
+  
+
+  Droid Sans Tamil
+
+
+  Droid Sans
+
+
+  Droid Sans
+
+
+  5
+
+  
+  
+
+  Droid Sans Tamil Bold
+
+
+  Droid Sans
+
+
+  Droid Sans Bold
+
+
+  5
+
+  
+  
+
+  Droid Sans Thai
+
+
+  Droid Sans
+
+
+  Droid Sans
+
+
+  4
+
+  
+  
+
+  zh-cn
+
+
+  zh-sg
+
+
+  zh-hk
+
+
+  zh-tw
+
+
+  zh
+
+
+  Droid Sans Japanese
+
+
+  Droid Sans
+
+
+  Droid Sans
+
+
+  3
+
+  
+  
+
+  Droid Sans Fallback
+
+
+  Droid Sans
+
+
+  Droid Sans
+
+
+  2
+
+  
+  
+
+  zh-cn
+
+
+  zh-sg
+
+
+  zh-hk
+
+
+  zh-tw
+
+
+  zh
+
+
+  Droid Sans Japanese
+
+
+  Droid Sans
+
+
+  Droid Sans
+
+
+  1
+
+  
+  
+Droid Sans Arabic
+
+  Droid Sans
+
+  
+  
+Droid Sans Armenian
+
+  Droid Sans
+
+  
+  
+Droid Sans Devanagari
+
+  Droid Sans
+
+  
+  
+Droid Sans Ethiopic
+
+  Droid Sans
+
+  
+  
+Droid Sans Fallback
+
+  Droid Sans
+
+  
+  
+Droid Sans Georgian
+
+  Droid Sans
+
+  
+  
+Droid Sans Hebrew
+ 

[arch-commits] Commit in ttf-liberation/repos/community-any (5 files)

2019-07-11 Thread Jan Steffens via arch-commits
Date: Thursday, July 11, 2019 @ 16:48:23
  Author: heftig
Revision: 488924

archrelease: copy trunk to community-any

Added:
  ttf-liberation/repos/community-any/PKGBUILD
(from rev 488922, ttf-liberation/trunk/PKGBUILD)
Deleted:
  ttf-liberation/repos/community-any/30-0-liberation-mono.conf
  ttf-liberation/repos/community-any/30-0-liberation-sans.conf
  ttf-liberation/repos/community-any/30-0-liberation-serif.conf
  ttf-liberation/repos/community-any/PKGBUILD

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

Deleted: 30-0-liberation-mono.conf
===
(Binary files differ)

Deleted: 30-0-liberation-sans.conf
===
(Binary files differ)

Deleted: 30-0-liberation-serif.conf
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 16:48:20 UTC (rev 488923)
+++ PKGBUILD2019-07-11 16:48:23 UTC (rev 488924)
@@ -1,49 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Maintainer: Daniel M. Capella 
-# Contributor: Ronald van Haren 
-# Contributor: Roman Kyrylych 
-# Contributor: Andreas Zwinkau
-# Contributor: rabyte 
-# Contributor: Stefan Husmann < stefan-husm...@t-online.de>
-
-pkgname=ttf-liberation
-pkgver=2.00.5
-pkgrel=1
-pkgdesc='Red Hats Liberation fonts'
-arch=('any')
-license=('custom:OFL')
-url=https://github.com/liberationfonts/liberation-fonts
-depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
-makedepends=('fontforge' 'python-fonttools')
-provides=('ttf-font')
-source=("$url/archive/$pkgver/liberation-fonts-$pkgver.tar.gz"
-'30-0-liberation-mono.conf'
-'30-0-liberation-sans.conf'
-'30-0-liberation-serif.conf')
-sha512sums=('4c7848bf6907d200f2d827141d30187e397361e667cea76cd3f5d790c95ebb4f2a76439904f57525bf649990f7003da3eda91e2c661db48c5f0f74c7ddd2007d'
-
'bb6ae42be2fc5981cae30482702e9543f393db5ce084d2bfc4cfcdb07e61ad78a4d0757d689028d9e89123bfb82acd3129f0e6596e9a3d42546f4c2ce001248e'
-
'8814f2fa087b6f36ad40418d0de6cee00b6f6654439a3a84b0ea09921d22c8e4ae1ae8c4897ddd40808bb9d76f2d0288b8ede05f94fbead80e4974ab9ba6e70a'
-
'c243a16b2f7db18119b7e2161e3c4f6cbdd2965645a6a766b086196fa24d35b4426fc9ac789cea815d5061ef7aa5c1dd909840957bf06d0a065fb35bafa7be68')
-
-build() {
-  cd liberation-fonts-$pkgver
-  make
-}
-
-package() {
-  cd liberation-fonts-$pkgver
-
-  install -Dm644 -t "$pkgdir/usr/share/fonts/TTF" \
-liberation-fonts-ttf-$pkgver/*.ttf
-
-  # install fontconfig files
-  install -Dm644 ../30-0-liberation-mono.conf \
-"$pkgdir/etc/fonts/conf.avail/30-$pkgname-mono.conf"
-  install -Dm644 ../30-0-liberation-sans.conf \
-"$pkgdir/etc/fonts/conf.avail/30-$pkgname-sans.conf"
-  install -Dm644 ../30-0-liberation-serif.conf \
-"$pkgdir/etc/fonts/conf.avail/30-$pkgname-serif.conf"
-
-  # install license
-  install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
-}

Copied: ttf-liberation/repos/community-any/PKGBUILD (from rev 488922, 
ttf-liberation/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-11 16:48:23 UTC (rev 488924)
@@ -0,0 +1,34 @@
+# Maintainer: Lukas Fleischer 
+# Maintainer: Daniel M. Capella 
+# Contributor: Ronald van Haren 
+# Contributor: Roman Kyrylych 
+# Contributor: Andreas Zwinkau
+# Contributor: rabyte 
+# Contributor: Stefan Husmann < stefan-husm...@t-online.de>
+
+pkgname=ttf-liberation
+pkgver=2.00.5
+pkgrel=2
+pkgdesc='Red Hats Liberation fonts'
+arch=('any')
+license=('custom:OFL')
+url=https://github.com/liberationfonts/liberation-fonts
+makedepends=('fontforge' 'python-fonttools')
+provides=('ttf-font')
+source=("$url/archive/$pkgver/liberation-fonts-$pkgver.tar.gz")
+sha512sums=('4c7848bf6907d200f2d827141d30187e397361e667cea76cd3f5d790c95ebb4f2a76439904f57525bf649990f7003da3eda91e2c661db48c5f0f74c7ddd2007d')
+
+build() {
+  cd liberation-fonts-$pkgver
+  make
+}
+
+package() {
+  cd liberation-fonts-$pkgver
+
+  install -Dm644 -t "$pkgdir/usr/share/fonts/${pkgname#ttf-}" \
+liberation-fonts-ttf-$pkgver/*.ttf
+
+  # install license
+  install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}


[arch-commits] Commit in ttf-ubuntu-font-family/trunk (81-ubuntu.conf PKGBUILD)

2019-07-11 Thread Jan Steffens via arch-commits
Date: Thursday, July 11, 2019 @ 16:46:28
  Author: heftig
Revision: 488922

0.83-5: Remove unneeded depends and bad provides

Modified:
  ttf-ubuntu-font-family/trunk/81-ubuntu.conf   (properties)
  ttf-ubuntu-font-family/trunk/PKGBUILD

+
 81-ubuntu.conf |2 +-
 PKGBUILD   |   12 +---
 2 files changed, 6 insertions(+), 8 deletions(-)

Index: ttf-ubuntu-font-family/trunk/81-ubuntu.conf
===
--- 81-ubuntu.conf  2019-07-11 16:35:38 UTC (rev 488921)
+++ 81-ubuntu.conf  2019-07-11 16:46:28 UTC (rev 488922)

Property changes on: ttf-ubuntu-font-family/trunk/81-ubuntu.conf
___
Modified: svn:mime-type
## -1 +1 ##
-application/xml
\ No newline at end of property
+text/xml
\ No newline at end of property
Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 16:35:38 UTC (rev 488921)
+++ PKGBUILD2019-07-11 16:46:28 UTC (rev 488922)
@@ -2,13 +2,11 @@
 
 pkgname=ttf-ubuntu-font-family
 pkgver=0.83
-pkgrel=4
+pkgrel=5
 pkgdesc="Ubuntu font family"
 arch=('any')
-url="http://font.ubuntu.com/;
+url="https://design.ubuntu.com/font/;
 license=('custom:Ubuntu Font Licence 1.0')
-depends=('fontconfig' 'xorg-font-utils')
-provides=('ttf-font')
 backup=(etc/fonts/conf.avail/81-ubuntu.conf)
 source=(https://assets.ubuntu.com/v1/fad7939b-ubuntu-font-family-$pkgver.zip
 81-ubuntu.conf)
@@ -16,9 +14,9 @@
 '16e29b1b8d13edddb588e4470f6da4c15870a9a27dd25eb4553c2c575d6dc14e')
 
 package() {
-   cd "$srcdir"/ubuntu-font-family-$pkgver
-   install -dm755 "$pkgdir"/usr/share/fonts/TTF "$pkgdir"/etc/fonts/conf.d
-   install -m644 Ubuntu{,Mono}-*.ttf "$pkgdir"/usr/share/fonts/TTF/
+   cd ubuntu-font-family-$pkgver
+   install -dm755 "$pkgdir"/etc/fonts/conf.d
+   install -Dm644 -t "$pkgdir"/usr/share/fonts/ubuntu *.ttf
install -Dm644 LICENCE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENCE
install -Dm644 "$srcdir"/81-ubuntu.conf 
"$pkgdir"/etc/fonts/conf.avail/81-ubuntu.conf
ln -s ../conf.avail/81-ubuntu.conf 
"$pkgdir"/etc/fonts/conf.d/81-ubuntu.conf


[arch-commits] Commit in ttf-droid/trunk (4 files)

2019-07-11 Thread Jan Steffens via arch-commits
Date: Thursday, July 11, 2019 @ 16:35:38
  Author: heftig
Revision: 488921

svn propset mime types

Modified:
  ttf-droid/trunk/60-droid-sans-mono.conf   (properties)
  ttf-droid/trunk/65-droid-kufi.conf(properties)
  ttf-droid/trunk/65-droid-sans.conf(properties)
  ttf-droid/trunk/65-droid-serif.conf   (properties)

Index: ttf-droid/trunk/60-droid-sans-mono.conf
===
--- ttf-droid/trunk/60-droid-sans-mono.conf 2019-07-11 16:34:54 UTC (rev 
488920)
+++ ttf-droid/trunk/60-droid-sans-mono.conf 2019-07-11 16:35:38 UTC (rev 
488921)

Property changes on: ttf-droid/trunk/60-droid-sans-mono.conf
___
Modified: svn:mime-type
## -1 +1 ##
-application/xml
\ No newline at end of property
+text/xml
\ No newline at end of property
Index: ttf-droid/trunk/65-droid-kufi.conf
===
--- ttf-droid/trunk/65-droid-kufi.conf  2019-07-11 16:34:54 UTC (rev 488920)
+++ ttf-droid/trunk/65-droid-kufi.conf  2019-07-11 16:35:38 UTC (rev 488921)

Property changes on: ttf-droid/trunk/65-droid-kufi.conf
___
Modified: svn:mime-type
## -1 +1 ##
-application/xml
\ No newline at end of property
+text/xml
\ No newline at end of property
Index: ttf-droid/trunk/65-droid-sans.conf
===
--- ttf-droid/trunk/65-droid-sans.conf  2019-07-11 16:34:54 UTC (rev 488920)
+++ ttf-droid/trunk/65-droid-sans.conf  2019-07-11 16:35:38 UTC (rev 488921)

Property changes on: ttf-droid/trunk/65-droid-sans.conf
___
Modified: svn:mime-type
## -1 +1 ##
-application/xml
\ No newline at end of property
+text/xml
\ No newline at end of property
Index: ttf-droid/trunk/65-droid-serif.conf
===
--- ttf-droid/trunk/65-droid-serif.conf 2019-07-11 16:34:54 UTC (rev 488920)
+++ ttf-droid/trunk/65-droid-serif.conf 2019-07-11 16:35:38 UTC (rev 488921)

Property changes on: ttf-droid/trunk/65-droid-serif.conf
___
Modified: svn:mime-type
## -1 +1 ##
-application/xml
\ No newline at end of property
+text/xml
\ No newline at end of property


[arch-commits] Commit in ttf-droid/trunk (9 files)

2019-07-11 Thread Jan Steffens via arch-commits
Date: Thursday, July 11, 2019 @ 16:34:54
  Author: heftig
Revision: 488920

20121017-7: Enable config by default (required by ttf-font) and remove unneeded 
depends

Added:
  ttf-droid/trunk/60-droid-sans-mono.conf
(from rev 488919, ttf-droid/trunk/sans-mono-fontconfig.conf)
  ttf-droid/trunk/65-droid-kufi.conf
(from rev 488919, ttf-droid/trunk/kufi-fontconfig.conf)
  ttf-droid/trunk/65-droid-sans.conf
(from rev 488919, ttf-droid/trunk/sans-fontconfig.conf)
  ttf-droid/trunk/65-droid-serif.conf
(from rev 488919, ttf-droid/trunk/serif-fontconfig.conf)
Modified:
  ttf-droid/trunk/PKGBUILD
Deleted:
  ttf-droid/trunk/kufi-fontconfig.conf
  ttf-droid/trunk/sans-fontconfig.conf
  ttf-droid/trunk/sans-mono-fontconfig.conf
  ttf-droid/trunk/serif-fontconfig.conf

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

Copied: ttf-droid/trunk/60-droid-sans-mono.conf (from rev 488919, 
ttf-droid/trunk/sans-mono-fontconfig.conf)
===
(Binary files differ)

Copied: ttf-droid/trunk/65-droid-kufi.conf (from rev 488919, 
ttf-droid/trunk/kufi-fontconfig.conf)
===
(Binary files differ)

Copied: ttf-droid/trunk/65-droid-sans.conf (from rev 488919, 
ttf-droid/trunk/sans-fontconfig.conf)
===
(Binary files differ)

Copied: ttf-droid/trunk/65-droid-serif.conf (from rev 488919, 
ttf-droid/trunk/serif-fontconfig.conf)
===
(Binary files differ)

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 16:32:02 UTC (rev 488919)
+++ PKGBUILD2019-07-11 16:34:54 UTC (rev 488920)
@@ -3,33 +3,27 @@
 
 pkgname=ttf-droid
 pkgver=20121017
-pkgrel=6
+pkgrel=7
 pkgdesc="General-purpose fonts released by Google as part of Android"
 arch=('any')
 license=('Apache')
 url='https://www.droidfonts.com/'
-depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
 provides=('ttf-font')
-source=('https://sources.archlinux.org/other/community/ttf-droid/ttf-droid-20121017.tar.xz'
 'serif-fontconfig.conf' 'sans-fontconfig.conf' 'sans-mono-fontconfig.conf' 
'kufi-fontconfig.conf' )
-md5sums=('0fa20eb63d7d05b23be955777bb52a5d'
- '7db18cf9df70ee41fbab444c80117ec6'
- '61f59063f84bd1331a91e21ebf86d43d'
- '7d7787d92e7b5089558a6d68c99813e3'
- '954a340fc7cb2846826a97d2b752501d')
+source=("https://sources.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.xz;
+60-droid-sans-mono.conf 65-droid-sans.conf 65-droid-serif.conf 
65-droid-kufi.conf)
+sha256sums=('f068efec9e8201fe0d1be75b1a4751c98d14dc44267b2237f549403b2a8069e3'
+'42da7d1ac6d7055971c8b1bb98a83e893fbed621534b04247a5f6ed89ca14d44'
+'93a0dc8e3258be4fafa68df120add114018bb723af7c0d61b60c6d908fcd87b2'
+'311c79e55fc58e83f066377393e59865518dcbe09b51e5fe3459b69fbac3b6af'
+'fc208932ae52bc678415b66b2fa958d24d6100f2d9609d5564c611b3c53b38c7')
 
-package()
-{
-# Install fonts
-cd $srcdir/google-droid-fonts-$pkgver
-install -d $pkgdir/usr/share/fonts/TTF/ 
-install -m644 *.ttf $pkgdir/usr/share/fonts/TTF/ 
+package() {
+  # Install fonts
+  install -Dt "$pkgdir/usr/share/fonts/${pkgname#ttf-}" -m644 
google-droid-fonts-$pkgver/*.ttf
 
-# Install fontconfig
-cd $srcdir
-install -d $pkgdir/etc/fonts/conf.avail/
-install -m644 sans-fontconfig.conf 
$pkgdir/etc/fonts/conf.avail/65-$pkgname-sans-fontconfig.conf
-install -m644 sans-mono-fontconfig.conf 
$pkgdir/etc/fonts/conf.avail/60-$pkgname-sans-mono-fontconfig.conf
-install -m644 serif-fontconfig.conf 
$pkgdir/etc/fonts/conf.avail/65-$pkgname-serif-fontconfig.conf
-install -m644 kufi-fontconfig.conf 
$pkgdir/etc/fonts/conf.avail/65-$pkgname-kufi-fontconfig.conf
+  # Install fontconfig
+  install -Dt "$pkgdir/etc/fonts/conf.avail" -m644 *.conf
+  mkdir "$pkgdir/etc/fonts/conf.d"
+  ln -srt "$pkgdir/etc/fonts/conf.d" "$pkgdir"/etc/fonts/conf.avail/*
 }
 

Deleted: kufi-fontconfig.conf
===
(Binary files differ)

Deleted: sans-fontconfig.conf
===
(Binary files differ)

Deleted: sans-mono-fontconfig.conf
===
(Binary files differ)

Deleted: serif-fontconfig.conf
===
(Binary files differ)


[arch-commits] Commit in ttf-liberation/trunk (4 files)

2019-07-11 Thread Jan Steffens via arch-commits
Date: Thursday, July 11, 2019 @ 16:32:02
  Author: heftig
Revision: 488919

Remove unneeded depends, config already covered by 30-metric-aliases.conf

Modified:
  ttf-liberation/trunk/PKGBUILD
Deleted:
  ttf-liberation/trunk/30-0-liberation-mono.conf
  ttf-liberation/trunk/30-0-liberation-sans.conf
  ttf-liberation/trunk/30-0-liberation-serif.conf

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

Deleted: 30-0-liberation-mono.conf
===
(Binary files differ)

Deleted: 30-0-liberation-sans.conf
===
(Binary files differ)

Deleted: 30-0-liberation-serif.conf
===
(Binary files differ)

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 15:29:02 UTC (rev 488918)
+++ PKGBUILD2019-07-11 16:32:02 UTC (rev 488919)
@@ -8,22 +8,15 @@
 
 pkgname=ttf-liberation
 pkgver=2.00.5
-pkgrel=1
+pkgrel=2
 pkgdesc='Red Hats Liberation fonts'
 arch=('any')
 license=('custom:OFL')
 url=https://github.com/liberationfonts/liberation-fonts
-depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
 makedepends=('fontforge' 'python-fonttools')
 provides=('ttf-font')
-source=("$url/archive/$pkgver/liberation-fonts-$pkgver.tar.gz"
-'30-0-liberation-mono.conf'
-'30-0-liberation-sans.conf'
-'30-0-liberation-serif.conf')
-sha512sums=('4c7848bf6907d200f2d827141d30187e397361e667cea76cd3f5d790c95ebb4f2a76439904f57525bf649990f7003da3eda91e2c661db48c5f0f74c7ddd2007d'
-
'bb6ae42be2fc5981cae30482702e9543f393db5ce084d2bfc4cfcdb07e61ad78a4d0757d689028d9e89123bfb82acd3129f0e6596e9a3d42546f4c2ce001248e'
-
'8814f2fa087b6f36ad40418d0de6cee00b6f6654439a3a84b0ea09921d22c8e4ae1ae8c4897ddd40808bb9d76f2d0288b8ede05f94fbead80e4974ab9ba6e70a'
-
'c243a16b2f7db18119b7e2161e3c4f6cbdd2965645a6a766b086196fa24d35b4426fc9ac789cea815d5061ef7aa5c1dd909840957bf06d0a065fb35bafa7be68')
+source=("$url/archive/$pkgver/liberation-fonts-$pkgver.tar.gz")
+sha512sums=('4c7848bf6907d200f2d827141d30187e397361e667cea76cd3f5d790c95ebb4f2a76439904f57525bf649990f7003da3eda91e2c661db48c5f0f74c7ddd2007d')
 
 build() {
   cd liberation-fonts-$pkgver
@@ -33,17 +26,9 @@
 package() {
   cd liberation-fonts-$pkgver
 
-  install -Dm644 -t "$pkgdir/usr/share/fonts/TTF" \
+  install -Dm644 -t "$pkgdir/usr/share/fonts/${pkgname#ttf-}" \
 liberation-fonts-ttf-$pkgver/*.ttf
 
-  # install fontconfig files
-  install -Dm644 ../30-0-liberation-mono.conf \
-"$pkgdir/etc/fonts/conf.avail/30-$pkgname-mono.conf"
-  install -Dm644 ../30-0-liberation-sans.conf \
-"$pkgdir/etc/fonts/conf.avail/30-$pkgname-sans.conf"
-  install -Dm644 ../30-0-liberation-serif.conf \
-"$pkgdir/etc/fonts/conf.avail/30-$pkgname-serif.conf"
-
   # install license
   install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
 }


[arch-commits] Commit in ttf-caladea/repos/extra-any (3 files)

2019-07-11 Thread Jan Steffens via arch-commits
Date: Thursday, July 11, 2019 @ 16:18:45
  Author: heftig
Revision: 357759

archrelease: copy trunk to extra-any

Added:
  ttf-caladea/repos/extra-any/62-google-crosextra-caladea.conf
(from rev 357758, ttf-caladea/trunk/62-google-crosextra-caladea.conf)
  ttf-caladea/repos/extra-any/PKGBUILD
(from rev 357758, ttf-caladea/trunk/PKGBUILD)
Deleted:
  ttf-caladea/repos/extra-any/PKGBUILD

--+
 62-google-crosextra-caladea.conf |   16 
 PKGBUILD |   49 -
 2 files changed, 43 insertions(+), 22 deletions(-)

Copied: ttf-caladea/repos/extra-any/62-google-crosextra-caladea.conf (from rev 
357758, ttf-caladea/trunk/62-google-crosextra-caladea.conf)
===
--- 62-google-crosextra-caladea.conf(rev 0)
+++ 62-google-crosextra-caladea.conf2019-07-11 16:18:45 UTC (rev 357759)
@@ -0,0 +1,16 @@
+
+
+
+
+  serif
+
+  Caladea
+
+
+
+  Caladea
+
+  serif
+
+
+

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 16:18:41 UTC (rev 357758)
+++ PKGBUILD2019-07-11 16:18:45 UTC (rev 357759)
@@ -1,22 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Kewl 
-# Contributor: Justin Settle 
-
-pkgname=ttf-caladea
-pkgver=20130214
-pkgrel=1
-pkgdesc="Google's Caladea font"
-arch=(any)
-license=(Apache)
-url='https://code.google.com/p/chromium/issues/detail?id=280557'
-depends=(fontconfig xorg-fonts-encodings xorg-font-utils)
-provides=(ttf-font)
-source=("http://commondatastorage.googleapis.com/chromeos-localmirror/distfiles/crosextrafonts-$pkgver.tar.gz;)
-md5sums=('368f114c078f94214a308a74c7e991bc')
-
-package() {
-  cd crosextrafonts-$pkgver
-
-  install -d "$pkgdir"/usr/share/fonts/TTF/
-  install -m644 *.ttf "$pkgdir"/usr/share/fonts/TTF/
-}

Copied: ttf-caladea/repos/extra-any/PKGBUILD (from rev 357758, 
ttf-caladea/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-11 16:18:45 UTC (rev 357759)
@@ -0,0 +1,27 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Kewl 
+# Contributor: Justin Settle 
+
+pkgname=ttf-caladea
+pkgver=20130214
+pkgrel=2
+pkgdesc="Google's Caladea font"
+arch=(any)
+license=(Apache)
+url='https://code.google.com/p/chromium/issues/detail?id=168879'
+provides=(google-crosextra-caladea-fonts)
+source=("https://commondatastorage.googleapis.com/chromeos-localmirror/distfiles/crosextrafonts-$pkgver.tar.gz;
+62-google-crosextra-caladea.conf)
+sha256sums=('c48d1c2fd613c9c06c959c34da7b8388059e2408d2bb19845dc3ed35f76e4d09'
+'cd61569289d7a188636df05addd3a744808de38b3d492b3e87c7a060bce4a2e6')
+
+package() {
+  cd crosextrafonts-$pkgver
+
+  install -Dt "$pkgdir/usr/share/fonts/${pkgname#ttf-}" -m644 *.ttf
+
+  install -Dt "$pkgdir/etc/fonts/conf.avail" -m644 ../*.conf
+
+  mkdir "$pkgdir/etc/fonts/conf.d"
+  ln -srt "$pkgdir/etc/fonts/conf.d" "$pkgdir"/etc/fonts/conf.avail/*
+}


[arch-commits] Commit in ttf-carlito/repos/extra-any (5 files)

2019-07-11 Thread Jan Steffens via arch-commits
Date: Thursday, July 11, 2019 @ 16:18:41
  Author: heftig
Revision: 357758

archrelease: copy trunk to extra-any

Added:
  ttf-carlito/repos/extra-any/62-google-crosextra-carlito.conf
(from rev 357757, ttf-carlito/trunk/62-google-crosextra-carlito.conf)
  ttf-carlito/repos/extra-any/PKGBUILD
(from rev 357757, ttf-carlito/trunk/PKGBUILD)
Deleted:
  ttf-carlito/repos/extra-any/30-0-google-crosextra-carlito-fontconfig.conf
  ttf-carlito/repos/extra-any/62-google-crosextra-carlito-fontconfig.conf
  ttf-carlito/repos/extra-any/PKGBUILD

---+
 30-0-google-crosextra-carlito-fontconfig.conf |   17 --
 62-google-crosextra-carlito-fontconfig.conf   |   16 --
 62-google-crosextra-carlito.conf  |   16 ++
 PKGBUILD  |   63 +++-
 4 files changed, 45 insertions(+), 67 deletions(-)

Deleted: 30-0-google-crosextra-carlito-fontconfig.conf
===
--- 30-0-google-crosextra-carlito-fontconfig.conf   2019-07-11 16:18:19 UTC 
(rev 357757)
+++ 30-0-google-crosextra-carlito-fontconfig.conf   2019-07-11 16:18:41 UTC 
(rev 357758)
@@ -1,17 +0,0 @@
-
-
-
- 
-
-  Calibri
-
-  Carlito
-
-
-
-  Carlito
-
-  Calibri
-
-
-

Deleted: 62-google-crosextra-carlito-fontconfig.conf
===
--- 62-google-crosextra-carlito-fontconfig.conf 2019-07-11 16:18:19 UTC (rev 
357757)
+++ 62-google-crosextra-carlito-fontconfig.conf 2019-07-11 16:18:41 UTC (rev 
357758)
@@ -1,16 +0,0 @@
-
-
-
-
-  sans-serif
-
-  Carlito
-
-
-
-  Carlito
-
-  sans-serif
-
-
-

Copied: ttf-carlito/repos/extra-any/62-google-crosextra-carlito.conf (from rev 
357757, ttf-carlito/trunk/62-google-crosextra-carlito.conf)
===
--- 62-google-crosextra-carlito.conf(rev 0)
+++ 62-google-crosextra-carlito.conf2019-07-11 16:18:41 UTC (rev 357758)
@@ -0,0 +1,16 @@
+
+
+
+
+  sans-serif
+
+  Carlito
+
+
+
+  Carlito
+
+  sans-serif
+
+
+

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 16:18:19 UTC (rev 357757)
+++ PKGBUILD2019-07-11 16:18:41 UTC (rev 357758)
@@ -1,34 +0,0 @@
-# Maintainer: AndyRTR 
-# Contributor: Kewl 
-# Contributor: Justin Settle 
-
-pkgname=ttf-carlito
-pkgver=20130920
-pkgrel=3
-pkgdesc='Googles Carlito font'
-arch=('any')
-license=('custom:OFL')
-url='https://code.google.com/p/chromium/issues/detail?id=280557'
-depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
-provides=('google-crosextra-carlito-fonts')
-source=("https://gsdview.appspot.com/chromeos-localmirror/distfiles/crosextrafonts-${pkgname#ttf-}-${pkgver}.tar.gz;
-30-0-google-crosextra-carlito-fontconfig.conf
-62-google-crosextra-carlito-fontconfig.conf)
-sha256sums=('4bd12b6cbc321c1cf16da76e2c585c925ce956a08067ae6f6c64eff6ccfdaf5a'
-'e13cc8ac68125ade2a99a2672dd1e53956dca93e0aaa3df833cbbf4fd15dc791'
-'31a74cd8044c8c8644f1555c06f406559f2e14334dd671a608145431a4299bd3')
-
-package() {
-  cd "crosextrafonts-${pkgname#ttf-}-${pkgver}"
-
-  install -d "${pkgdir}/usr/share/fonts/${pkgname}/"
-  install -m644 *.ttf "${pkgdir}/usr/share/fonts/${pkgname}/"
-
-  install -Dm644 ../30-0-google-crosextra-carlito-fontconfig.conf 
"$pkgdir/etc/fonts/conf.avail/30-0-google-crosextra-carlito-fontconfig.conf"
-  install -Dm644 ../62-google-crosextra-carlito-fontconfig.conf 
"$pkgdir/etc/fonts/conf.avail/62-google-crosextra-carlito-fontconfig.conf"
-
-  mkdir "$pkgdir/etc/fonts/conf.d"
-  ln -srt "$pkgdir/etc/fonts/conf.d" "$pkgdir"/etc/fonts/conf.avail/*
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: ttf-carlito/repos/extra-any/PKGBUILD (from rev 357757, 
ttf-carlito/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-11 16:18:41 UTC (rev 357758)
@@ -0,0 +1,29 @@
+# Maintainer: AndyRTR 
+# Contributor: Kewl 
+# Contributor: Justin Settle 
+
+pkgname=ttf-carlito
+pkgver=20130920
+pkgrel=4
+pkgdesc="Google's Carlito font"
+arch=(any)
+license=(custom:OFL)
+url='https://code.google.com/p/chromium/issues/detail?id=280557'
+provides=(google-crosextra-carlito-fonts)
+source=("https://commondatastorage.googleapis.com/chromeos-localmirror/distfiles/crosextrafonts-carlito-$pkgver.tar.gz;
+62-google-crosextra-carlito.conf)

[arch-commits] Commit in ttf-carlito/trunk (4 files)

2019-07-11 Thread Jan Steffens via arch-commits
Date: Thursday, July 11, 2019 @ 16:18:18
  Author: heftig
Revision: 357756

20130920-4: Fix config, match ttf-caladea

Added:
  ttf-carlito/trunk/62-google-crosextra-carlito.conf
(from rev 357755, 
ttf-carlito/trunk/62-google-crosextra-carlito-fontconfig.conf)
Modified:
  ttf-carlito/trunk/PKGBUILD
Deleted:
  ttf-carlito/trunk/30-0-google-crosextra-carlito-fontconfig.conf
  ttf-carlito/trunk/62-google-crosextra-carlito-fontconfig.conf

---+
 30-0-google-crosextra-carlito-fontconfig.conf |   17 ---
 62-google-crosextra-carlito-fontconfig.conf   |   16 --
 62-google-crosextra-carlito.conf  |   16 ++
 PKGBUILD  |   27 +---
 4 files changed, 27 insertions(+), 49 deletions(-)

Deleted: 30-0-google-crosextra-carlito-fontconfig.conf
===
--- 30-0-google-crosextra-carlito-fontconfig.conf   2019-07-11 15:17:46 UTC 
(rev 357755)
+++ 30-0-google-crosextra-carlito-fontconfig.conf   2019-07-11 16:18:18 UTC 
(rev 357756)
@@ -1,17 +0,0 @@
-
-
-
- 
-
-  Calibri
-
-  Carlito
-
-
-
-  Carlito
-
-  Calibri
-
-
-

Deleted: 62-google-crosextra-carlito-fontconfig.conf
===
--- 62-google-crosextra-carlito-fontconfig.conf 2019-07-11 15:17:46 UTC (rev 
357755)
+++ 62-google-crosextra-carlito-fontconfig.conf 2019-07-11 16:18:18 UTC (rev 
357756)
@@ -1,16 +0,0 @@
-
-
-
-
-  sans-serif
-
-  Carlito
-
-
-
-  Carlito
-
-  sans-serif
-
-
-

Copied: ttf-carlito/trunk/62-google-crosextra-carlito.conf (from rev 357755, 
ttf-carlito/trunk/62-google-crosextra-carlito-fontconfig.conf)
===
--- 62-google-crosextra-carlito.conf(rev 0)
+++ 62-google-crosextra-carlito.conf2019-07-11 16:18:18 UTC (rev 357756)
@@ -0,0 +1,16 @@
+
+
+
+
+  sans-serif
+
+  Carlito
+
+
+
+  Carlito
+
+  sans-serif
+
+
+

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 15:17:46 UTC (rev 357755)
+++ PKGBUILD2019-07-11 16:18:18 UTC (rev 357756)
@@ -4,31 +4,26 @@
 
 pkgname=ttf-carlito
 pkgver=20130920
-pkgrel=3
-pkgdesc='Googles Carlito font'
-arch=('any')
-license=('custom:OFL')
+pkgrel=4
+pkgdesc="Google's Carlito font"
+arch=(any)
+license=(custom:OFL)
 url='https://code.google.com/p/chromium/issues/detail?id=280557'
-depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
-provides=('google-crosextra-carlito-fonts')
-source=("https://gsdview.appspot.com/chromeos-localmirror/distfiles/crosextrafonts-${pkgname#ttf-}-${pkgver}.tar.gz;
-30-0-google-crosextra-carlito-fontconfig.conf
-62-google-crosextra-carlito-fontconfig.conf)
+provides=(google-crosextra-carlito-fonts)
+source=("https://commondatastorage.googleapis.com/chromeos-localmirror/distfiles/crosextrafonts-carlito-$pkgver.tar.gz;
+62-google-crosextra-carlito.conf)
 sha256sums=('4bd12b6cbc321c1cf16da76e2c585c925ce956a08067ae6f6c64eff6ccfdaf5a'
-'e13cc8ac68125ade2a99a2672dd1e53956dca93e0aaa3df833cbbf4fd15dc791'
 '31a74cd8044c8c8644f1555c06f406559f2e14334dd671a608145431a4299bd3')
 
 package() {
-  cd "crosextrafonts-${pkgname#ttf-}-${pkgver}"
+  cd crosextrafonts-carlito-$pkgver
 
-  install -d "${pkgdir}/usr/share/fonts/${pkgname}/"
-  install -m644 *.ttf "${pkgdir}/usr/share/fonts/${pkgname}/"
+  install -Dt "$pkgdir/usr/share/fonts/${pkgname#ttf-}" -m644 *.ttf
 
-  install -Dm644 ../30-0-google-crosextra-carlito-fontconfig.conf 
"$pkgdir/etc/fonts/conf.avail/30-0-google-crosextra-carlito-fontconfig.conf"
-  install -Dm644 ../62-google-crosextra-carlito-fontconfig.conf 
"$pkgdir/etc/fonts/conf.avail/62-google-crosextra-carlito-fontconfig.conf"
+  install -Dt "$pkgdir/etc/fonts/conf.avail" -m644 ../*.conf
 
   mkdir "$pkgdir/etc/fonts/conf.d"
   ln -srt "$pkgdir/etc/fonts/conf.d" "$pkgdir"/etc/fonts/conf.avail/*
 
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE
 }


[arch-commits] Commit in ttf-caladea/trunk (62-google-crosextra-caladea.conf PKGBUILD)

2019-07-11 Thread Jan Steffens via arch-commits
Date: Thursday, July 11, 2019 @ 16:18:19
  Author: heftig
Revision: 357757

20130214-2: Add config, match ttf-carlito

Added:
  ttf-caladea/trunk/62-google-crosextra-caladea.conf
Modified:
  ttf-caladea/trunk/PKGBUILD

--+
 62-google-crosextra-caladea.conf |   16 
 PKGBUILD |   21 +
 2 files changed, 29 insertions(+), 8 deletions(-)

Added: 62-google-crosextra-caladea.conf
===
--- 62-google-crosextra-caladea.conf(rev 0)
+++ 62-google-crosextra-caladea.conf2019-07-11 16:18:19 UTC (rev 357757)
@@ -0,0 +1,16 @@
+
+
+
+
+  serif
+
+  Caladea
+
+
+
+  Caladea
+
+  serif
+
+
+

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 16:18:18 UTC (rev 357756)
+++ PKGBUILD2019-07-11 16:18:19 UTC (rev 357757)
@@ -4,19 +4,24 @@
 
 pkgname=ttf-caladea
 pkgver=20130214
-pkgrel=1
+pkgrel=2
 pkgdesc="Google's Caladea font"
 arch=(any)
 license=(Apache)
-url='https://code.google.com/p/chromium/issues/detail?id=280557'
-depends=(fontconfig xorg-fonts-encodings xorg-font-utils)
-provides=(ttf-font)
-source=("https://commondatastorage.googleapis.com/chromeos-localmirror/distfiles/crosextrafonts-$pkgver.tar.gz;)
-md5sums=('368f114c078f94214a308a74c7e991bc')
+url='https://code.google.com/p/chromium/issues/detail?id=168879'
+provides=(google-crosextra-caladea-fonts)
+source=("https://commondatastorage.googleapis.com/chromeos-localmirror/distfiles/crosextrafonts-$pkgver.tar.gz;
+62-google-crosextra-caladea.conf)
+sha256sums=('c48d1c2fd613c9c06c959c34da7b8388059e2408d2bb19845dc3ed35f76e4d09'
+'cd61569289d7a188636df05addd3a744808de38b3d492b3e87c7a060bce4a2e6')
 
 package() {
   cd crosextrafonts-$pkgver
 
-  install -d "$pkgdir"/usr/share/fonts/TTF/
-  install -m644 *.ttf "$pkgdir"/usr/share/fonts/TTF/
+  install -Dt "$pkgdir/usr/share/fonts/${pkgname#ttf-}" -m644 *.ttf
+
+  install -Dt "$pkgdir/etc/fonts/conf.avail" -m644 ../*.conf
+
+  mkdir "$pkgdir/etc/fonts/conf.d"
+  ln -srt "$pkgdir/etc/fonts/conf.d" "$pkgdir"/etc/fonts/conf.avail/*
 }


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

2019-07-11 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, July 11, 2019 @ 15:29:02
  Author: svenstaro
Revision: 488918

archrelease: copy trunk to community-x86_64

Added:
  emscripten/repos/community-x86_64/PKGBUILD
(from rev 488917, emscripten/trunk/PKGBUILD)
  emscripten/repos/community-x86_64/emscripten.install
(from rev 488917, emscripten/trunk/emscripten.install)
  emscripten/repos/community-x86_64/emscripten.sh
(from rev 488917, emscripten/trunk/emscripten.sh)
Deleted:
  emscripten/repos/community-x86_64/PKGBUILD
  emscripten/repos/community-x86_64/emscripten.install
  emscripten/repos/community-x86_64/emscripten.sh

+
 PKGBUILD   |  144 +--
 emscripten.install |   26 -
 emscripten.sh  |4 -
 3 files changed, 87 insertions(+), 87 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 15:28:48 UTC (rev 488917)
+++ PKGBUILD2019-07-11 15:29:02 UTC (rev 488918)
@@ -1,72 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-# Contributor: Stefan Husmann 
-# Contributor: Vlad Kolotvin 
-
-pkgname=emscripten
-pkgver=1.38.37
-pkgrel=1
-pkgdesc="LLVM-based project that compiles C and C++ into highly-optimizable 
JavaScript for the web"
-arch=('x86_64')
-url="http://emscripten.org;
-license=('custom')
-depends=(nodejs python binaryen)
-makedepends=(cmake libxml2 git ninja)
-optdepends=('java-environment: for using clojure'
-'ruby: for using websockify addon'
-'cmake: for emcc --show-ports')
-install=emscripten.install
-source=(emscripten-$pkgver.tar.gz::"https://github.com/kripken/emscripten/archive/$pkgver.tar.gz;
-git+https://github.com/llvm/llvm-project.git#commit=58dbe47
-"emscripten.sh")
-sha512sums=('9d97d6685466a02c275feb1f84adcc8fd60128ceb3b2021546a2acbdd69cb3dfac1a4d4bd1e1ad2df702a33692ad486f2f95b22cce8a073fc480150ef3dbfcf2'
-'SKIP'
-
'fbe9b95b8d18e7d0c6ec5fded6f11b72fbe4ddd0391e5704b281ba79c479f3563e82423b790ddf3f0554a23d659193ca898a81fe3db509f16c30c7188b790e4d')
-
-prepare() {
-  cd "$srcdir"/emscripten-$pkgver
-
-  sed -i 's|EMSCRIPTEN_ROOT.*|EMSCRIPTEN_ROOT = "/usr/lib/emscripten"|g' 
tools/settings_template_readonly.py
-  sed -i 's|LLVM_ROOT.*|LLVM_ROOT = "/usr/lib/emscripten-llvm"|g' 
tools/settings_template_readonly.py
-
-  mkdir "$srcdir"/llvm-project/llvm/build
-}
-
-build() {
-  cd "$srcdir"/llvm-project/llvm/build
-
-  # Inspired from 
https://github.com/WebAssembly/waterfall/blob/58e343a47ea02cb6daf19eefbdf626b23c24980c/src/build.py#L790
-  cmake .. \
--GNinja \
--DPYTHON_EXECUTABLE=/usr/bin/python \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=YES \
--DLLVM_TARGETS_TO_BUILD="X86;WebAssembly" \
--DLLVM_BUILD_RUNTIME=OFF \
--DLLVM_TOOL_LTO_BUILD=ON \
--DLLVM_INSTALL_TOOLCHAIN_ONLY=ON \
--DLLVM_INCLUDE_EXAMPLES=OFF \
--DLLVM_INCLUDE_TESTS=OFF \
--DLLVM_ENABLE_PROJECTS="lld;clang" \
--DCLANG_INCLUDE_TESTS=OFF
-  ninja
-}
-
-package() {
-  # Install LLVM stuff according to 
https://github.com/emscripten-core/emscripten/blob/incoming/docs/process.md
-  install -d "$pkgdir"/usr/lib
-  cp -r "$srcdir"/llvm-project/llvm/build/bin "$pkgdir"/usr/lib/emscripten-llvm
-
-  # Install emscripten
-  cd "$srcdir"/emscripten-$pkgver
-  install -d "$pkgdir"/usr/lib/emscripten
-  cp -rup em* cmake site src system third_party tools 
"$pkgdir"/usr/lib/emscripten
-
-  # Remove clutter
-  rm "$pkgdir"/usr/lib/emscripten/*.bat
-
-  install -d "$pkgdir"/usr/share/doc
-  ln -s /usr/lib/emscripten/site/source/docs "$pkgdir"/usr/share/doc/$pkgname
-  install -Dm755 "$srcdir"/emscripten.sh "$pkgdir"/etc/profile.d/emscripten.sh
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: emscripten/repos/community-x86_64/PKGBUILD (from rev 488917, 
emscripten/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-11 15:29:02 UTC (rev 488918)
@@ -0,0 +1,72 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: Stefan Husmann 
+# Contributor: Vlad Kolotvin 
+
+pkgname=emscripten
+pkgver=1.38.38
+pkgrel=1
+pkgdesc="LLVM-based project that compiles C and C++ into highly-optimizable 
JavaScript for the web"
+arch=('x86_64')
+url="http://emscripten.org;
+license=('custom')
+depends=(nodejs python binaryen)
+makedepends=(cmake libxml2 git ninja)
+optdepends=('java-environment: for using clojure'
+'ruby: for using websockify addon'
+'cmake: for emcc --show-ports')
+install=emscripten.install
+source=(emscripten-$pkgver.tar.gz::"https://github.com/kripken/emscripten/archive/$pkgver.tar.gz;
+git+https://github.com/llvm/llvm-project.git#commit=58dbe47
+"emscripten.sh")

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

2019-07-11 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, July 11, 2019 @ 15:28:48
  Author: svenstaro
Revision: 488917

upgpkg: emscripten 1.38.38-1

Modified:
  emscripten/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 14:50:38 UTC (rev 488916)
+++ PKGBUILD2019-07-11 15:28:48 UTC (rev 488917)
@@ -4,7 +4,7 @@
 # Contributor: Vlad Kolotvin 
 
 pkgname=emscripten
-pkgver=1.38.37
+pkgver=1.38.38
 pkgrel=1
 pkgdesc="LLVM-based project that compiles C and C++ into highly-optimizable 
JavaScript for the web"
 arch=('x86_64')
@@ -19,7 +19,7 @@
 
source=(emscripten-$pkgver.tar.gz::"https://github.com/kripken/emscripten/archive/$pkgver.tar.gz;
 git+https://github.com/llvm/llvm-project.git#commit=58dbe47
 "emscripten.sh")
-sha512sums=('9d97d6685466a02c275feb1f84adcc8fd60128ceb3b2021546a2acbdd69cb3dfac1a4d4bd1e1ad2df702a33692ad486f2f95b22cce8a073fc480150ef3dbfcf2'
+sha512sums=('83bc808b461cacb8499a2e2482ac2e65dad7916994451710cf1de9e47b3dc1ab273895bd63c5b9e7a9694e6e1d296c5b4956101723b96360ebae7bb93ea4caab'
 'SKIP'
 
'fbe9b95b8d18e7d0c6ec5fded6f11b72fbe4ddd0391e5704b281ba79c479f3563e82423b790ddf3f0554a23d659193ca898a81fe3db509f16c30c7188b790e4d')
 


[arch-commits] Commit in gnu-free-fonts/repos/extra-any (3 files)

2019-07-11 Thread Jan Steffens via arch-commits
Date: Thursday, July 11, 2019 @ 15:16:38
  Author: heftig
Revision: 357754

archrelease: copy trunk to extra-any

Added:
  gnu-free-fonts/repos/extra-any/PKGBUILD
(from rev 357753, gnu-free-fonts/trunk/PKGBUILD)
Deleted:
  gnu-free-fonts/repos/extra-any/69-gnu-free-fonts.conf
  gnu-free-fonts/repos/extra-any/PKGBUILD

+
 69-gnu-free-fonts.conf |   28 --
 PKGBUILD   |   50 ++-
 2 files changed, 24 insertions(+), 54 deletions(-)

Deleted: 69-gnu-free-fonts.conf
===
--- 69-gnu-free-fonts.conf  2019-07-11 15:15:52 UTC (rev 357753)
+++ 69-gnu-free-fonts.conf  2019-07-11 15:16:38 UTC (rev 357754)
@@ -1,28 +0,0 @@
-
-
-
-  
-monospace
-FreeMono
-  
-  
-sans-serif
-FreeSans
-  
-  
-serif
-FreeSerif
-  
-  
-FreeMono
-monospace
-  
-  
-FreeSans
-sans-serif
-  
-  
-FreeSerif
-serif
-  
-

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 15:15:52 UTC (rev 357753)
+++ PKGBUILD2019-07-11 15:16:38 UTC (rev 357754)
@@ -1,26 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnu-free-fonts
-pkgver=20120503
-pkgrel=5
-pkgdesc="A free family of scalable outline fonts"
-url="https://www.gnu.org/software/freefont/;
-arch=(any)
-license=(GPL3)
-source=(https://ftp.gnu.org/gnu/freefont/freefont-otf-${pkgver}.tar.gz{,.sig}
-69-gnu-free-fonts.conf)
-sha256sums=('3a6c51868c71b006c33c4bcde63d90927e6fcca8f51c965b8ad62d021614a860'
-'SKIP'
-'9bd436771b20e03d8ede3b2558dec63c5f48d2dfe797f9e7d7455188e850a415')
-validpgpkeys=('A0156C139D2DAA3B352E42CD506361DBA36FDD52')
-
-package() {
-  install -d "$pkgdir/usr/share/fonts/${pkgname%-fonts}"
-  install -t "$pkgdir/usr/share/fonts/${pkgname%-fonts}" -m644 
freefont-$pkgver/*.otf
-  install -Dm644 69-gnu-free-fonts.conf 
"$pkgdir/etc/fonts/conf.avail/69-gnu-free-fonts.conf"
-
-  mkdir "$pkgdir/etc/fonts/conf.d"
-  ln -srt "$pkgdir/etc/fonts/conf.d" "$pkgdir"/etc/fonts/conf.avail/*
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnu-free-fonts/repos/extra-any/PKGBUILD (from rev 357753, 
gnu-free-fonts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-11 15:16:38 UTC (rev 357754)
@@ -0,0 +1,24 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Gaetan Bisson 
+# Contributor: Andrea Scarpino 
+# Contributor: Giovanni Scafora 
+
+pkgname=gnu-free-fonts
+pkgver=20120503
+pkgrel=6
+pkgdesc="A free family of scalable outline fonts"
+url="https://www.gnu.org/software/freefont/;
+license=(GPL3)
+arch=(any)
+provides=(ttf-font)
+replaces=('ttf-freefont<=20120503-5')
+source=(https://ftp.gnu.org/gnu/freefont/freefont-otf-${pkgver}.tar.gz{,.sig})
+sha256sums=('3a6c51868c71b006c33c4bcde63d90927e6fcca8f51c965b8ad62d021614a860'
+'SKIP')
+validpgpkeys=('A0156C139D2DAA3B352E42CD506361DBA36FDD52')
+
+package() {
+  install -Dt "$pkgdir/usr/share/fonts/${pkgname%-fonts}" -m644 
freefont-$pkgver/*.otf
+}
+
+# vim:set sw=2 et:


[arch-commits] Commit in gnu-free-fonts/trunk (69-gnu-free-fonts.conf PKGBUILD)

2019-07-11 Thread Jan Steffens via arch-commits
Date: Thursday, July 11, 2019 @ 15:15:52
  Author: heftig
Revision: 357753

20120503-6: Replace ttf-freefont; Remove unneeded config: 
30-metric-aliases.conf is enough

Modified:
  gnu-free-fonts/trunk/PKGBUILD
Deleted:
  gnu-free-fonts/trunk/69-gnu-free-fonts.conf

+
 69-gnu-free-fonts.conf |   28 
 PKGBUILD   |   24 +++-
 2 files changed, 11 insertions(+), 41 deletions(-)

Deleted: 69-gnu-free-fonts.conf
===
--- 69-gnu-free-fonts.conf  2019-07-11 14:51:53 UTC (rev 357752)
+++ 69-gnu-free-fonts.conf  2019-07-11 15:15:52 UTC (rev 357753)
@@ -1,28 +0,0 @@
-
-
-
-  
-monospace
-FreeMono
-  
-  
-sans-serif
-FreeSans
-  
-  
-serif
-FreeSerif
-  
-  
-FreeMono
-monospace
-  
-  
-FreeSans
-sans-serif
-  
-  
-FreeSerif
-serif
-  
-

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 14:51:53 UTC (rev 357752)
+++ PKGBUILD2019-07-11 15:15:52 UTC (rev 357753)
@@ -1,26 +1,24 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Gaetan Bisson 
+# Contributor: Andrea Scarpino 
+# Contributor: Giovanni Scafora 
 
 pkgname=gnu-free-fonts
 pkgver=20120503
-pkgrel=5
+pkgrel=6
 pkgdesc="A free family of scalable outline fonts"
 url="https://www.gnu.org/software/freefont/;
+license=(GPL3)
 arch=(any)
-license=(GPL3)
-source=(https://ftp.gnu.org/gnu/freefont/freefont-otf-${pkgver}.tar.gz{,.sig}
-69-gnu-free-fonts.conf)
+provides=(ttf-font)
+replaces=('ttf-freefont<=20120503-5')
+source=(https://ftp.gnu.org/gnu/freefont/freefont-otf-${pkgver}.tar.gz{,.sig})
 sha256sums=('3a6c51868c71b006c33c4bcde63d90927e6fcca8f51c965b8ad62d021614a860'
-'SKIP'
-'9bd436771b20e03d8ede3b2558dec63c5f48d2dfe797f9e7d7455188e850a415')
+'SKIP')
 validpgpkeys=('A0156C139D2DAA3B352E42CD506361DBA36FDD52')
 
 package() {
-  install -d "$pkgdir/usr/share/fonts/${pkgname%-fonts}"
-  install -t "$pkgdir/usr/share/fonts/${pkgname%-fonts}" -m644 
freefont-$pkgver/*.otf
-  install -Dm644 69-gnu-free-fonts.conf 
"$pkgdir/etc/fonts/conf.avail/69-gnu-free-fonts.conf"
-
-  mkdir "$pkgdir/etc/fonts/conf.d"
-  ln -srt "$pkgdir/etc/fonts/conf.d" "$pkgdir"/etc/fonts/conf.avail/*
+  install -Dt "$pkgdir/usr/share/fonts/${pkgname%-fonts}" -m644 
freefont-$pkgver/*.otf
 }
 
-# vim:set ts=2 sw=2 et:
+# vim:set sw=2 et:


[arch-commits] Commit in grub/trunk (PKGBUILD grub.default)

2019-07-11 Thread Christian Hesse via arch-commits
Date: Thursday, July 11, 2019 @ 14:51:53
  Author: eworm
Revision: 357752

revert change that disables audit

Modified:
  grub/trunk/PKGBUILD
  grub/trunk/grub.default

--+
 PKGBUILD |2 +-
 grub.default |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:04:34 UTC (rev 357751)
+++ PKGBUILD2019-07-11 14:51:53 UTC (rev 357752)
@@ -73,7 +73,7 @@
 'SKIP'
 '171415ab075d1ac806f36c454feeb060f870416f24279b70104bba94bd6076d4'
 'a5198267ceb04dceb6d2ea7800281a42b3f91fd02da55d2cc9ea20d47273ca29'
-'fd2e5f5453f3e44a2cb640c796b85cd70da8359c703f94cd531d457ede8c77fa')
+'b8fe532668cb12c34d2a26221298f2459fac7c5578a14476a2af8c20aed5c101')
 
 _backports=(
 )

Modified: grub.default
===
--- grub.default2019-07-11 13:04:34 UTC (rev 357751)
+++ grub.default2019-07-11 14:51:53 UTC (rev 357752)
@@ -3,7 +3,7 @@
 GRUB_DEFAULT=0
 GRUB_TIMEOUT=5
 GRUB_DISTRIBUTOR="Arch"
-GRUB_CMDLINE_LINUX_DEFAULT="audit=0 loglevel=3 quiet"
+GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet"
 GRUB_CMDLINE_LINUX=""
 
 # Preload both GPT and MBR modules so that they are not missed


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

2019-07-11 Thread Daniel M. Capella via arch-commits
Date: Thursday, July 11, 2019 @ 14:50:20
  Author: polyzen
Revision: 488915

upgpkg: firefox-tridactyl 1.16.2-1

Modified:
  firefox-tridactyl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 14:28:59 UTC (rev 488914)
+++ PKGBUILD2019-07-11 14:50:20 UTC (rev 488915)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=firefox-tridactyl
-pkgver=1.16.1
+pkgver=1.16.2
 pkgrel=1
 pkgdesc="Replace Firefox's control mechanism with one modelled on Vim"
 url=https://github.com/cmcaine/tridactyl
@@ -10,7 +10,7 @@
 groups=('firefox-addons')
 
source=("https://addons.cdn.mozilla.net/user-media/addons/873070/tridactyl-$pkgver-an+fx.xpi;)
 noextract=("${source##*/}")
-sha256sums=('0b502c4016b427b6b269e3b49f88a760c1e7059a99d6c994bc140f1cf6da3387')
+sha256sums=('5aadd08d0c557ae38d37a82534110585fa81e20c5068cfd09cd49be008cd6365')
 
 package() {
   install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/tridactyl@cmcaine.co.uk.xpi


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

2019-07-11 Thread Daniel M. Capella via arch-commits
Date: Thursday, July 11, 2019 @ 14:50:38
  Author: polyzen
Revision: 488916

archrelease: copy trunk to community-any

Added:
  firefox-tridactyl/repos/community-any/PKGBUILD
(from rev 488915, firefox-tridactyl/trunk/PKGBUILD)
Deleted:
  firefox-tridactyl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 14:50:20 UTC (rev 488915)
+++ PKGBUILD2019-07-11 14:50:38 UTC (rev 488916)
@@ -1,19 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=firefox-tridactyl
-pkgver=1.16.1
-pkgrel=1
-pkgdesc="Replace Firefox's control mechanism with one modelled on Vim"
-url=https://github.com/cmcaine/tridactyl
-arch=('any')
-license=('Apache')
-groups=('firefox-addons')
-source=("https://addons.cdn.mozilla.net/user-media/addons/873070/tridactyl-$pkgver-an+fx.xpi;)
-noextract=("${source##*/}")
-sha256sums=('0b502c4016b427b6b269e3b49f88a760c1e7059a99d6c994bc140f1cf6da3387')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/tridactyl@cmcaine.co.uk.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-tridactyl/repos/community-any/PKGBUILD (from rev 488915, 
firefox-tridactyl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-11 14:50:38 UTC (rev 488916)
@@ -0,0 +1,19 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=firefox-tridactyl
+pkgver=1.16.2
+pkgrel=1
+pkgdesc="Replace Firefox's control mechanism with one modelled on Vim"
+url=https://github.com/cmcaine/tridactyl
+arch=('any')
+license=('Apache')
+groups=('firefox-addons')
+source=("https://addons.cdn.mozilla.net/user-media/addons/873070/tridactyl-$pkgver-an+fx.xpi;)
+noextract=("${source##*/}")
+sha256sums=('5aadd08d0c557ae38d37a82534110585fa81e20c5068cfd09cd49be008cd6365')
+
+package() {
+  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/tridactyl@cmcaine.co.uk.xpi
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 14:28:59
  Author: felixonmars
Revision: 488914

archrelease: copy trunk to community-x86_64

Added:
  python-pycuda/repos/community-x86_64/LICENSE
(from rev 488913, python-pycuda/trunk/LICENSE)
  python-pycuda/repos/community-x86_64/PKGBUILD
(from rev 488913, python-pycuda/trunk/PKGBUILD)
Deleted:
  python-pycuda/repos/community-x86_64/LICENSE
  python-pycuda/repos/community-x86_64/PKGBUILD

--+
 LICENSE  |   14 ++---
 PKGBUILD |  152 ++---
 2 files changed, 83 insertions(+), 83 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2019-07-11 14:28:43 UTC (rev 488913)
+++ LICENSE 2019-07-11 14:28:59 UTC (rev 488914)
@@ -1,7 +0,0 @@
-Copyright (c) 2009,10 Andreas Klöckner and Contributors.
-
-Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the “Software”), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.

Copied: python-pycuda/repos/community-x86_64/LICENSE (from rev 488913, 
python-pycuda/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2019-07-11 14:28:59 UTC (rev 488914)
@@ -0,0 +1,7 @@
+Copyright (c) 2009,10 Andreas Klöckner and Contributors.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the “Software”), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 14:28:43 UTC (rev 488913)
+++ PKGBUILD2019-07-11 14:28:59 UTC (rev 488914)
@@ -1,76 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Stéphane Gaudreault 
-
-pkgbase=python-pycuda
-pkgname=('python-pycuda' 'python2-pycuda' 'pycuda-headers')
-pkgver=2019.1
-pkgrel=1
-pkgdesc="Python wrapper for Nvidia CUDA"
-arch=('x86_64')
-url="http://mathema.tician.de/software/pycuda;
-license=('MIT' 'Apache')
-source=("https://pypi.io/packages/source/p/pycuda/pycuda-${pkgver}.tar.gz;
-LICENSE)
-makedepends=('ctags' 'python2-setuptools' 'python-setuptools' 'python2-numpy' 
'python-numpy' 'mesa' 'cuda' 'boost' 'nvidia-utils')
-sha512sums=('12847eedad5423137aed7f4e942ef03e96ec2558bda089277db1ee96edb84065cf38af5acd7e429aecb9e706d4337e346d586bd48be577c57511016541bf0e49'
-
'ee0bef251b8b2c25cd5821932d506183655c04285ae7d01d12f86557812c5068568e9f38e9f6bffe28de870ec662ebe0ee9cce2b444883caaf66b4c877494130')
-
-build() {
-   cd "${srcdir}"
-
-   _arch=''
-   [[ "$CARCH" = "x86_64" ]] && _arch='64'
-
-   cp -a pycuda-${pkgver}{,-python2}
-
-   cd "${srcdir}"/pycuda-${pkgver}
-   python3 ./configure.py \
-  --cuda-root=/opt/cuda \
-  --cuda-inc-dir=/opt/cuda/include \
-  --cudadrv-lib-dir=/opt/cuda/lib${_arch} \
-  --cudart-lib-dir=/opt/cuda/lib${_arch} \
-  --no-use-shipped-boost \
-  --boost-python-libname=boost_python3
-   make
-
-   cd "${srcdir}"/pycuda-${pkgver}-python2
-   python2 ./configure.py \
-  --cuda-root=/opt/cuda \
-  

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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 14:28:43
  Author: felixonmars
Revision: 488913

upgpkg: python-pycuda 2019.1.1-1

Modified:
  python-pycuda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 14:22:52 UTC (rev 488912)
+++ PKGBUILD2019-07-11 14:28:43 UTC (rev 488913)
@@ -3,7 +3,7 @@
 
 pkgbase=python-pycuda
 pkgname=('python-pycuda' 'python2-pycuda' 'pycuda-headers')
-pkgver=2019.1
+pkgver=2019.1.1
 pkgrel=1
 pkgdesc="Python wrapper for Nvidia CUDA"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 source=("https://pypi.io/packages/source/p/pycuda/pycuda-${pkgver}.tar.gz;
 LICENSE)
 makedepends=('ctags' 'python2-setuptools' 'python-setuptools' 'python2-numpy' 
'python-numpy' 'mesa' 'cuda' 'boost' 'nvidia-utils')
-sha512sums=('12847eedad5423137aed7f4e942ef03e96ec2558bda089277db1ee96edb84065cf38af5acd7e429aecb9e706d4337e346d586bd48be577c57511016541bf0e49'
+sha512sums=('5ba587f7e4c6c72aa0874130f16249d4a0d112e0fe0040e15932066b489615e415df94d5e17dd7673a4e80309ee83ece6ed6e6211b6f1bf703756050140bf7e7'
 
'ee0bef251b8b2c25cd5821932d506183655c04285ae7d01d12f86557812c5068568e9f38e9f6bffe28de870ec662ebe0ee9cce2b444883caaf66b4c877494130')
 
 build() {


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 14:16:24
  Author: felixonmars
Revision: 488859

upgpkg: xmobar 0.29.5-28

rebuild with auto-update 0.1.6

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 14:15:16 UTC (rev 488858)
+++ PKGBUILD2019-07-11 14:16:24 UTC (rev 488859)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.29.5
-pkgrel=27
+pkgrel=28
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 14:16:33
  Author: felixonmars
Revision: 488860

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 488859, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 14:16:33 UTC (rev 488860)
@@ -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=28
+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-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 14:15:16
  Author: felixonmars
Revision: 488858

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 488857, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
488857, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 14:15:16 UTC (rev 488858)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.4.1
+pkgrel=109
+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-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 14:15:07
  Author: felixonmars
Revision: 488857

upgpkg: tamarin-prover 1.4.1-109

rebuild with auto-update 0.1.6

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 14:13:35 UTC (rev 488856)
+++ PKGBUILD2019-07-11 14:15:07 UTC (rev 488857)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.1
-pkgrel=108
+pkgrel=109
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="https://tamarin-prover.github.io;
 license=("GPL")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 14:13:24
  Author: felixonmars
Revision: 488855

upgpkg: stack 1.9.3.1-80

rebuild with auto-update 0.1.6

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 14:07:14 UTC (rev 488854)
+++ PKGBUILD2019-07-11 14:13:24 UTC (rev 488855)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=1.9.3.1
-pkgrel=79
+pkgrel=80
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 14:13:35
  Author: felixonmars
Revision: 488856

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   75 
 stack.install |4 ++
 2 files changed, 79 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 488855, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 14:13:35 UTC (rev 488856)
@@ -0,0 +1,75 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.9.3.1
+pkgrel=80
+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-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-hpack' 'haskell-hpc' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-monad-logger' 
'haskell-mono-traversable'
+ 'haskell-mustache' 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-simple' 
'haskell-path' 'haskell-path-io'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-primitive' 'haskell-project-template' 
'haskell-regex-applicative-text'
+ 'haskell-resourcet' 'haskell-retry' 'haskell-rio' 'haskell-split' 
'haskell-store'
+ 'haskell-store-core' 'haskell-streaming-commons' 'haskell-tar' 
'haskell-temporary'
+ 'haskell-text-metrics' 'haskell-th-reify-many' 'haskell-tls' 
'haskell-typed-process'
+ 'haskell-unicode-transforms' 'haskell-unix-compat' 'haskell-unliftio'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml' 
'haskell-zip-archive'
+ 'haskell-zlib' 'haskell-bindings-uname')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'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;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  hpack
+  sed -i -e '/semigroups/d' -e 's/< *0.8/<1/' $pkgname.cabal
+}
+
+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 "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}

Copied: stack/repos/community-staging-x86_64/stack.install (from rev 488855, 
stack/trunk/stack.install)
===
--- community-staging-x86_64/stack.install  (rev 0)
+++ community-staging-x86_64/stack.install  2019-07-11 14:13:35 UTC (rev 
488856)
@@ -0,0 +1,4 @@

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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 14:07:14
  Author: felixonmars
Revision: 488854

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 488853, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 14:07:14 UTC (rev 488854)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.6.0
+pkgrel=145
+pkgdesc="Shell script analysis tool"
+url="http://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-quickcheck' 'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;)
+sha512sums=('4e9575985fe914cb35444995212ac1afaa40b004dbbc86b5987bf8b65e20b14a0102c9c601dc061d604129a8e978021f22a11d682545cb7f07ec974495cfa387')
+
+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-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 14:07:05
  Author: felixonmars
Revision: 488853

upgpkg: shellcheck 0.6.0-145

rebuild with auto-update 0.1.6

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 14:04:09 UTC (rev 488852)
+++ PKGBUILD2019-07-11 14:07:05 UTC (rev 488853)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.6.0
-pkgrel=144
+pkgrel=145
 pkgdesc="Shell script analysis tool"
 url="http://www.shellcheck.net;
 license=("GPL")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 14:04:09
  Author: felixonmars
Revision: 488852

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 488851, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 14:04:09 UTC (rev 488852)
@@ -0,0 +1,70 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=5.2.0
+pkgrel=115
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-auto-update' 'haskell-hasql' 'haskell-hasql-pool' 
'haskell-protolude'
+ 'haskell-warp' 'haskell-base64-bytestring' 'haskell-retry' 
'haskell-aeson'
+ 'haskell-ansi-wl-pprint' 'haskell-case-insensitive' 'haskell-cassava'
+ 'haskell-configurator-ng' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-either' 'haskell-gitrev' 'haskell-hasql-transaction' 
'haskell-heredoc'
+ 'haskell-http' 'haskell-http-types' 
'haskell-insert-ordered-containers'
+ 'haskell-interpolatedstring-perl6' 'haskell-jose' 'haskell-lens' 
'haskell-lens-aeson'
+ 'haskell-network-uri' 'haskell-optparse-applicative' 
'haskell-ranged-sets'
+ '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-cookie')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-hjsonschema')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;)
+sha512sums=('7c2bba89457dd8b3d681ccc032482055144b5ee17336b2e90dda6bbed6c229f36cf521cf66aafd7923ca6c147a1f2bb26567a3109079dae65d726e85f85b32ed')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e 's/==/>=/' -e 's/< *4.10/<5/' -e 's/== 0.3.0/>= 0.3.0/' 
$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: it shouldn't take this long to finish
+# POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test
+
+# 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-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 14:04:00
  Author: felixonmars
Revision: 488851

upgpkg: postgrest 5.2.0-115

rebuild with auto-update 0.1.6

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 14:00:58 UTC (rev 488850)
+++ PKGBUILD2019-07-11 14:04:00 UTC (rev 488851)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=5.2.0
-pkgrel=114
+pkgrel=115
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 14:00:49
  Author: felixonmars
Revision: 488849

upgpkg: pandoc-crossref 0.3.4.1-57

rebuild with auto-update 0.1.6

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:59:31 UTC (rev 488848)
+++ PKGBUILD2019-07-11 14:00:49 UTC (rev 488849)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.4.1
-pkgrel=56
+pkgrel=57
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 14:00:58
  Author: felixonmars
Revision: 488850

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 488849, pandoc-crossref/trunk/PKGBUILD)

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
488849, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 14:00:58 UTC (rev 488850)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.4.1
+pkgrel=57
+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 python-etesync/trunk (PKGBUILD)

2019-07-11 Thread David Runge via arch-commits
Date: Thursday, July 11, 2019 @ 13:59:25
  Author: dvzrv
Revision: 488846

upgpkg: python-etesync 0.9.0-1

Upgrading to 0.9.0. Rendering tests more verbose and adding python-pytz to 
depends.

Modified:
  python-etesync/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:59:19 UTC (rev 488845)
+++ PKGBUILD2019-07-11 13:59:25 UTC (rev 488846)
@@ -2,7 +2,7 @@
 
 _name=etesync
 pkgname=python-etesync
-pkgver=0.8.3
+pkgver=0.9.0
 pkgrel=1
 pkgdesc="Python API to interact with an EteSync server."
 arch=('any')
@@ -9,14 +9,14 @@
 url="https://pypi.python.org/pypi/etesync/;
 license=('LGPL')
 depends=('python-appdirs' 'python-asn1crypto' 'python-cffi' 'python-coverage'
-'python-cryptography' 'python-furl' 'python-idna' 'python-orderedmultidict'
-'python-packaging' 'python-peewee' 'python-py' 'python-pyasn1'
-'python-pycparser' 'python-pyparsing' 'python-dateutil' 'python-requests'
-'python-scrypt' 'python-six' 'python-vobject')
+'python-cryptography' 'python-dateutil' 'python-furl' 'python-idna'
+'python-orderedmultidict' 'python-packaging' 'python-peewee' 'python-py'
+'python-pyasn1' 'python-pycparser' 'python-pyparsing' 'python-requests'
+'python-scrypt' 'python-six' 'python-pytz' 'python-vobject')
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('6132a63352bb40d34e48bdd2cfb146e165c852820b7556289e9b4176cfa44195493e9221997c4df5aaa530fbe6c4544046981de9504e9d2a4794a4584eba71ea')
+sha512sums=('90a1896162b1dbaff3d684f7b1bc40072e4d6cdc9073fd2cc056f6166b4d17cf2c5e10ea57e97a9905fb08cfa3623cfd59bc3ef0fcbad83654b646840dba')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
@@ -31,7 +31,7 @@
   cd "${pkgname}-${pkgver}"
   # only run relevant tests:
   # https://github.com/etesync/pyetesync/issues/5
-  pytest tests/{test_collections.py,test_crypto.py}
+  pytest -vvv tests/{test_collections.py,test_crypto.py}
 }
 
 package() {


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:59:19
  Author: felixonmars
Revision: 488845

upgpkg: haskell-hakyll 4.12.5.2-51

rebuild with auto-update 0.1.6

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:57:35 UTC (rev 488844)
+++ PKGBUILD2019-07-11 13:59:19 UTC (rev 488845)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.5.2
-pkgrel=50
+pkgrel=51
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll;
 license=("BSD")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:59:28
  Author: felixonmars
Revision: 488847

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
488845, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:59:28 UTC (rev 488847)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.5.2
+pkgrel=51
+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 's/< *2.13/<3/' $_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 python-etesync/repos/community-any (PKGBUILD PKGBUILD)

2019-07-11 Thread David Runge via arch-commits
Date: Thursday, July 11, 2019 @ 13:59:31
  Author: dvzrv
Revision: 488848

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 13:59:28 UTC (rev 488847)
+++ PKGBUILD2019-07-11 13:59:31 UTC (rev 488848)
@@ -1,46 +0,0 @@
-# Maintainer: David Runge 
-
-_name=etesync
-pkgname=python-etesync
-pkgver=0.8.3
-pkgrel=1
-pkgdesc="Python API to interact with an EteSync server."
-arch=('any')
-url="https://pypi.python.org/pypi/etesync/;
-license=('LGPL')
-depends=('python-appdirs' 'python-asn1crypto' 'python-cffi' 'python-coverage'
-'python-cryptography' 'python-furl' 'python-idna' 'python-orderedmultidict'
-'python-packaging' 'python-peewee' 'python-py' 'python-pyasn1'
-'python-pycparser' 'python-pyparsing' 'python-dateutil' 'python-requests'
-'python-scrypt' 'python-six' 'python-vobject')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('6132a63352bb40d34e48bdd2cfb146e165c852820b7556289e9b4176cfa44195493e9221997c4df5aaa530fbe6c4544046981de9504e9d2a4794a4584eba71ea')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py build
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  # only run relevant tests:
-  # https://github.com/etesync/pyetesync/issues/5
-  pytest tests/{test_collections.py,test_crypto.py}
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
-  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
--vDm 644 {DESCRIPTION.rst,README.md}
-}
-

Copied: python-etesync/repos/community-any/PKGBUILD (from rev 488847, 
python-etesync/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-11 13:59:31 UTC (rev 488848)
@@ -0,0 +1,46 @@
+# Maintainer: David Runge 
+
+_name=etesync
+pkgname=python-etesync
+pkgver=0.9.0
+pkgrel=1
+pkgdesc="Python API to interact with an EteSync server."
+arch=('any')
+url="https://pypi.python.org/pypi/etesync/;
+license=('LGPL')
+depends=('python-appdirs' 'python-asn1crypto' 'python-cffi' 'python-coverage'
+'python-cryptography' 'python-dateutil' 'python-furl' 'python-idna'
+'python-orderedmultidict' 'python-packaging' 'python-peewee' 'python-py'
+'python-pyasn1' 'python-pycparser' 'python-pyparsing' 'python-requests'
+'python-scrypt' 'python-six' 'python-pytz' 'python-vobject')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('90a1896162b1dbaff3d684f7b1bc40072e4d6cdc9073fd2cc056f6166b4d17cf2c5e10ea57e97a9905fb08cfa3623cfd59bc3ef0fcbad83654b646840dba')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  # only run relevant tests:
+  # https://github.com/etesync/pyetesync/issues/5
+  pytest -vvv tests/{test_collections.py,test_crypto.py}
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm 644 {DESCRIPTION.rst,README.md}
+}
+


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:57:26
  Author: felixonmars
Revision: 488843

upgpkg: pandoc-citeproc 0.16.2-75

rebuild with auto-update 0.1.6

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:54:35 UTC (rev 488842)
+++ PKGBUILD2019-07-11 13:57:26 UTC (rev 488843)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.16.2
-pkgrel=74
+pkgrel=75
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:57:35
  Author: felixonmars
Revision: 488844

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 488843, pandoc-citeproc/trunk/PKGBUILD)

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
488843, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:57:35 UTC (rev 488844)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.16.2
+pkgrel=75
+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/repos (2 files)

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:54:35
  Author: felixonmars
Revision: 488842

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 488841, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:54:35 UTC (rev 488842)
@@ -0,0 +1,65 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.7.3
+pkgrel=8
+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 pandoc/trunk (PKGBUILD)

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:54:26
  Author: felixonmars
Revision: 488841

upgpkg: pandoc 2.7.3-8

rebuild with auto-update 0.1.6

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:43:18 UTC (rev 488840)
+++ PKGBUILD2019-07-11 13:54:26 UTC (rev 488841)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.7.3
-pkgrel=7
+pkgrel=8
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:43:09
  Author: felixonmars
Revision: 488839

upgpkg: idris 1.3.1-96

rebuild with auto-update 0.1.6

Modified:
  idris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:28:03 UTC (rev 488838)
+++ PKGBUILD2019-07-11 13:43:09 UTC (rev 488839)
@@ -3,7 +3,7 @@
 
 pkgname=idris
 pkgver=1.3.1
-pkgrel=95
+pkgrel=96
 pkgdesc="Functional Programming Language with Dependent Types"
 url="https://www.idris-lang.org/;
 license=("BSD")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:43:18
  Author: felixonmars
Revision: 488840

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: idris/repos/community-staging-x86_64/PKGBUILD (from rev 488839, 
idris/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:43:18 UTC (rev 488840)
@@ -0,0 +1,61 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=1.3.1
+pkgrel=96
+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-megaparsec6'
+ 'haskell-network' 'haskell-optparse-applicative' '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=('555c7fdfad7e4f69b1aa4f6237cf4432831cd74e33342bd802ff3bc763118178b742b386035f8c071820b5e2bc71c5372c4acb356835155677046d360b722746')
+
+prepare() {
+cd Idris-dev-$pkgver
+
+sed -i '1ioverride IDRIS := env LD_PRELOAD=$(shell ls 
../../dist/build/libHSidris-*-ghc*.so) $(IDRIS)' \
+libs/*/Makefile
+sed -i -e 's/< *1.4/<2/' -e 's/< *0.6/<1/' -e 's/< *0.2/<1/' -e 's/< 
*0.4/<1/' -e 's/< *2.8/<4/' -e 's/< *0.9/<1/' idris.cabal
+sed -i '1i{-# language NoMonadFailDesugaring #-}' 
src/Idris/Core/CaseTree.hs src/Idris/Parser/Stack.hs src/Idris/Elab/Term.hs
+}
+
+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 hoogle/trunk (PKGBUILD)

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:27:53
  Author: felixonmars
Revision: 488837

upgpkg: hoogle 5.0.17.9-30

rebuild with auto-update 0.1.6

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:26:22 UTC (rev 488836)
+++ PKGBUILD2019-07-11 13:27:53 UTC (rev 488837)
@@ -3,7 +3,7 @@
 
 pkgname=hoogle
 pkgver=5.0.17.9
-pkgrel=29
+pkgrel=30
 pkgdesc="Haskell API Search"
 url="https://www.haskell.org/hoogle/;
 license=("BSD")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:28:03
  Author: felixonmars
Revision: 488838

archrelease: copy trunk to community-staging-x86_64

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

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

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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:26:22
  Author: felixonmars
Revision: 488836

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 488835, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:26:22 UTC (rev 488836)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.14.1
+pkgrel=92
+pkgdesc="Web interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 
'haskell-clientsession'
+ 'haskell-cmdargs' 'haskell-conduit' 'haskell-data-default' 
'haskell-decimal'
+ 'haskell-hjsmin' 'haskell-http-conduit' 'haskell-http-client' 
'haskell-http-types'
+ 'haskell-conduit-extra' 'haskell-safe' 'haskell-shakespeare' 
'haskell-wai'
+ 'haskell-wai-extra' 'haskell-wai-handler-launch' 'haskell-warp' 
'haskell-yesod'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static' 
'haskell-json'
+ 'haskell-megaparsec')
+makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('3eb50a27e96b8e4590719c41fe00dbf7add431a8bbc300f1d2614c09dbae5eaa2eb43ac96c597c441a2f43bf4096fe8c450bb3bdb601cc2a06fd840768b45786')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/semigroups/d' $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}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+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 "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:26:13
  Author: felixonmars
Revision: 488835

upgpkg: hledger-web 1.14.1-92

rebuild with auto-update 0.1.6

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:24:44 UTC (rev 488834)
+++ PKGBUILD2019-07-11 13:26:13 UTC (rev 488835)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.14.1
-pkgrel=91
+pkgrel=92
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:24:35
  Author: felixonmars
Revision: 488833

upgpkg: hledger-api 1.14-87

rebuild with auto-update 0.1.6

Modified:
  hledger-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:23:28 UTC (rev 488832)
+++ PKGBUILD2019-07-11 13:24:35 UTC (rev 488833)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-api
 pkgver=1.14
-pkgrel=86
+pkgrel=87
 pkgdesc="Web API server for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:24:44
  Author: felixonmars
Revision: 488834

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger-api/repos/community-staging-x86_64/PKGBUILD (from rev 488833, 
hledger-api/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:24:44 UTC (rev 488834)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-api
+pkgver=1.14
+pkgrel=87
+pkgdesc="Web API server for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-data-default'
+ 'haskell-decimal' 'haskell-docopt' 'haskell-either' 
'haskell-microlens'
+ 'haskell-microlens-platform' 'haskell-safe' 'haskell-servant-server'
+ 'haskell-servant-swagger' 'haskell-swagger2' 'haskell-wai' 
'haskell-wai-extra'
+ 'haskell-warp')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('551ad15b39adbcd1c3548bb75acd83193f6a99d8bab15cdc7ef34aa022dfd4d19b14c105ae88e4fdef93eca5ace7791e7b19d3eff532ada7079b4e071bd4ab69')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:23:15
  Author: felixonmars
Revision: 488831

upgpkg: git-annex 7.20190615-18

rebuild with auto-update 0.1.6

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:17:15 UTC (rev 488830)
+++ PKGBUILD2019-07-11 13:23:15 UTC (rev 488831)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=7.20190615
-pkgrel=17
+pkgrel=18
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/;
 license=("AGPL3")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:23:28
  Author: felixonmars
Revision: 488832

archrelease: copy trunk to community-staging-x86_64

Added:
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 488831, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-x86_64/socks-0.6.patch
(from rev 488831, git-annex/trunk/socks-0.6.patch)

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 488831, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:23:28 UTC (rev 488832)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=7.20190615
+pkgrel=18
+pkgdesc="Manage files with git, without checking their contents into git"
+url="https://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 
'haskell-aws'
+ 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-concurrent-output' 
'haskell-connection' 'haskell-conduit'
+ 'haskell-crypto-api' 'haskell-cryptonite' 'haskell-data-default' 
'haskell-dav'
+ 'haskell-dbus' 'haskell-disk-free-space' 'haskell-dlist' 
'haskell-edit-distance'
+ 'haskell-exceptions' 'haskell-fdo-notify' 'haskell-feed' 
'haskell-hinotify'
+ 'haskell-hslogger' 'haskell-http-client' 'haskell-http-client-tls' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-ifelse' 'haskell-magic' 
'haskell-memory' 'haskell-microlens'
+ 'haskell-monad-control' 'haskell-monad-logger' 'haskell-mountpoints' 
'haskell-network'
+ 'haskell-network-info' 'haskell-network-multicast' 
'haskell-network-uri'
+ 'haskell-old-locale' 'haskell-optparse-applicative' 
'haskell-path-pieces'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-quickcheck' 'haskell-random' 'haskell-regex-tdfa' 
'haskell-resourcet'
+ 'haskell-safesemaphore' 'haskell-sandi' 'haskell-securemem' 
'haskell-shakespeare'
+ 'haskell-socks' 'haskell-split' 'haskell-stm-chans' 'haskell-tagsoup' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun' 'haskell-torrent'
+ 'haskell-unix-compat' 'haskell-unordered-containers' 
'haskell-utf8-string' 'haskell-uuid'
+ 'haskell-vector' 'haskell-wai' 'haskell-wai-extra' 'haskell-warp' 
'haskell-warp-tls'
+ 'haskell-yesod' 'haskell-yesod-core' 'haskell-yesod-form' 
'haskell-yesod-static')
+makedepends=('chrpath' 'ghc')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;
+socks-0.6.patch)
+sha512sums=('SKIP'
+
'572cfde516ac8efd7c7b7b734d7de2276e7fa4143d8ed66de101d987a81ac71b911161454979f5a6b3d89f0080423f5086eb73aa02e9ebfdde63f0167bcac608')
+
+prepare() {
+  cd git-annex
+  patch -p1 -i ../socks-0.6.patch
+}
+
+build() {
+  cd git-annex
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/$pkgname" \
+-ftorrentparser -fproduction -fpairing -fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime -f-networkbsd
+  runhaskell Setup build
+}
+
+package() {
+  cd git-annex
+  runhaskell Setup copy --destdir="$pkgdir"
+  make GHC="ghc -dynamic" BUILDER=true DESTDIR="$pkgdir" install-desktop 
install-completions
+
+  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}

Copied: git-annex/repos/community-staging-x86_64/socks-0.6.patch (from rev 
488831, git-annex/trunk/socks-0.6.patch)
===
--- community-staging-x86_64/socks-0.6.patch(rev 0)
+++ community-staging-x86_64/socks-0.6.patch2019-07-11 13:23:28 UTC (rev 
488832)
@@ -0,0 +1,13 @@
+diff --git a/Utility/Tor.hs b/Utility/Tor.hs
+index 427fb100bc..0ee904ca2a 100644
+--- a/Utility/Tor.hs
 b/Utility/Tor.hs
+@@ -37,7 +37,7 @@ connectHiddenService (OnionAddress address) port = do
+   return s
+   where
+   torsocksport = 9050
+-  torsockconf = defaultSocksConf "127.0.0.1" torsocksport
++  torsockconf = defaultSocksConf $ SockAddrInet torsocksport $ 
tupleToHostAddress (127, 0, 0, 1)
+   socksdomain = SocksAddrDomainName (BU8.fromString address)
+   socksaddr = SocksAddress socksdomain (fromIntegral port)
+ 


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:17:15
  Author: felixonmars
Revision: 488830

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-static/repos/community-staging-x86_64/
  haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD
(from rev 488829, haskell-yesod-static/trunk/PKGBUILD)

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

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
488829, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:17:15 UTC (rev 488830)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.6.0.1
+pkgrel=151
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base64-bytestring'
+ 'haskell-blaze-builder' 'haskell-conduit' 'haskell-cryptonite'
+ 'haskell-cryptonite-conduit' 'haskell-css-text' 'haskell-data-default'
+ 'haskell-file-embed' 'haskell-hashable' 'haskell-hjsmin' 
'haskell-http-types'
+ 'haskell-memory' 'haskell-mime-types' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-yesod-core')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 'haskell-wai-extra' 
'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('2e1e4873248d435a9d58f3075b6c06cde2edcdd520f700dc7f0427039c236d28787f62a643a8cf57b74d85a885625474a5662b91a56c25e8f4d1737be525bc2f')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:17:05
  Author: felixonmars
Revision: 488829

upgpkg: haskell-yesod-static 1.6.0.1-151

rebuild with auto-update 0.1.6

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:15:38 UTC (rev 488828)
+++ PKGBUILD2019-07-11 13:17:05 UTC (rev 488829)
@@ -4,7 +4,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.6.0.1
-pkgrel=150
+pkgrel=151
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:15:38
  Author: felixonmars
Revision: 488828

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-test/repos/community-staging-x86_64/
  haskell-yesod-test/repos/community-staging-x86_64/PKGBUILD
(from rev 488827, haskell-yesod-test/trunk/PKGBUILD)

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

Copied: haskell-yesod-test/repos/community-staging-x86_64/PKGBUILD (from rev 
488827, haskell-yesod-test/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:15:38 UTC (rev 488828)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=yesod-test
+pkgname=haskell-yesod-test
+pkgver=1.6.6.1
+pkgrel=45
+pkgdesc="Integration testing for WAI/Yesod Applications"
+url="https://www.yesodweb.com;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hunit' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-blaze-html' 'haskell-case-insensitive' 'haskell-conduit'
+ 'haskell-cookie' 'haskell-hspec-core' 'haskell-html-conduit' 
'haskell-http-types'
+ 'haskell-network' 'haskell-pretty-show' 'haskell-wai'
+ 'haskell-wai-extra' 'haskell-xml-conduit' 'haskell-xml-types' 
'haskell-yesod-core')
+makedepends=('ghc' 'haskell-yesod-form' 'haskell-hspec' 'haskell-unliftio')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('833ae785c82ec2cbc34c386fb7678e20cdb905c3eaee2698532e8f09167fac92b5af84b25557f548406184852156e4e22f9f12a86c9a3306cbb23145a4af1cba')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:15:25
  Author: felixonmars
Revision: 488827

upgpkg: haskell-yesod-test 1.6.6.1-45

rebuild with auto-update 0.1.6

Modified:
  haskell-yesod-test/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:15:08 UTC (rev 488826)
+++ PKGBUILD2019-07-11 13:15:25 UTC (rev 488827)
@@ -3,7 +3,7 @@
 _hkgname=yesod-test
 pkgname=haskell-yesod-test
 pkgver=1.6.6.1
-pkgrel=44
+pkgrel=45
 pkgdesc="Integration testing for WAI/Yesod Applications"
 url="https://www.yesodweb.com;
 license=('MIT')


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:15:08
  Author: felixonmars
Revision: 488826

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2019-07-11 13:14:52 UTC (rev 488825)
+++ 30-win32-aliases.conf   2019-07-11 13:15:08 UTC (rev 488826)
@@ -1,20 +0,0 @@
-
-
-
-  
-MS Shell Dlg
-Microsoft Sans Serif
-sans-serif
-  
-  
-MS Shell Dlg 2
-Tahoma
-sans-serif
-  
-
-  
-MS Sans Serif
-Microsoft Sans Serif
-sans-serif
-  
-

Copied: wine/repos/multilib-x86_64/30-win32-aliases.conf (from rev 488825, 
wine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2019-07-11 13:15:08 UTC (rev 488826)
@@ -0,0 +1,20 @@
+
+
+
+  
+MS Shell Dlg
+Microsoft Sans Serif
+sans-serif
+  
+  
+MS Shell Dlg 2
+Tahoma
+sans-serif
+  
+
+  
+MS Sans Serif
+Microsoft Sans Serif
+sans-serif
+  
+

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

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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:14:52
  Author: felixonmars
Revision: 488825

upgpkg: wine 4.12.1-1

Modified:
  wine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:14:20 UTC (rev 488824)
+++ PKGBUILD2019-07-11 13:14:52 UTC (rev 488825)
@@ -4,7 +4,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine
-pkgver=4.12
+pkgver=4.12.1
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
@@ -12,7 +12,7 @@
 
source=(https://dl.winehq.org/wine/source/4.x/$pkgname-$_pkgbasever.tar.xz{,.sign}
 30-win32-aliases.conf
 wine-binfmt.conf)
-sha512sums=('01f330b3bb795a4bfdd440c4bb349b94db8456bd88c828e92f73752feaca86adce0c9e47e989195d65d3a97b822805df2274d4a790b5cb86e3bc2819ce987f4d'
+sha512sums=('5d226aa4f24c59949c88d377d8f3d38839179e473b7e5bbf029af8142dfa23fd046ca919b63c8c8fc7e1a46077a860d3dab9d2e040f0367c85c8d386707222c1'
 'SKIP'
 
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
 
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:14:20
  Author: felixonmars
Revision: 488824

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-auth/repos/community-staging-x86_64/
  haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD
(from rev 488823, haskell-yesod-auth/trunk/PKGBUILD)

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

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
488823, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:14:20 UTC (rev 488824)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.6.7
+pkgrel=18
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-authenticate' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-email-validate' 'haskell-file-embed' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-network-uri' 'haskell-nonce' 'haskell-persistent' 
'haskell-random' 'haskell-safe'
+ 'haskell-shakespeare' 'haskell-unliftio' 'haskell-unliftio-core'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-yesod-core' 
'haskell-yesod-form'
+ 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('fa1b681b40f815dd027538c39300ac70298717af6b7ee5ff0185ff61c2104f7d16462f7e1edb414787f3b49d4b16af3adda4c42c1ee2433bb270208775b614ed')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:14:09
  Author: felixonmars
Revision: 488823

upgpkg: haskell-yesod-auth 1.6.7-18

rebuild with auto-update 0.1.6

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:13:53 UTC (rev 488822)
+++ PKGBUILD2019-07-11 13:14:09 UTC (rev 488823)
@@ -4,7 +4,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.6.7
-pkgrel=17
+pkgrel=18
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:13:36
  Author: felixonmars
Revision: 488821

upgpkg: wine-staging 4.12.1-1

Modified:
  wine-staging/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:12:58 UTC (rev 488820)
+++ PKGBUILD2019-07-11 13:13:36 UTC (rev 488821)
@@ -5,7 +5,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine-staging
-pkgver=4.11
+pkgver=4.12.1
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
@@ -14,9 +14,9 @@
 
"wine-staging-v$_pkgbasever.tar.gz::https://github.com/wine-staging/wine-staging/archive/v$_pkgbasever.tar.gz;
 30-win32-aliases.conf
 wine-binfmt.conf)
-sha512sums=('df4e636959f6044f92aca16dce9cb392fd6c513ccc5a19585d3de8cd7fe0a9d21b05fcfa538172f94721d0356d9ec1470b7da810fcfa70d3aae9054a48d4700b'
+sha512sums=('5d226aa4f24c59949c88d377d8f3d38839179e473b7e5bbf029af8142dfa23fd046ca919b63c8c8fc7e1a46077a860d3dab9d2e040f0367c85c8d386707222c1'
 'SKIP'
-
'384866aa5b2636804825ceb36b999bc1d5dd4d4693cef1b3004d9c8252dea393a02c65227d9e7b665021f19fd087025349ad720f4bbf0f061887ba5abcb74b24'
+
'804e99567632326f5ea55fd86c4ed236da3b3636b0aaf5dbf4427694b0786326bd048fbb119b37fc66d4072dacec9ac354b804ad372cad69cbf086360eaedc38'
 
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
 
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')
 validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:13:53
  Author: felixonmars
Revision: 488822

archrelease: copy trunk to multilib-x86_64

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

--+
 PKGBUILD |  380 ++---
 wine-binfmt.conf |4 
 wine.install |   14 -
 3 files changed, 199 insertions(+), 199 deletions(-)

Deleted: 30-win32-aliases.conf
===
(Binary files differ)

Copied: wine-staging/repos/multilib-x86_64/30-win32-aliases.conf (from rev 
488821, wine-staging/trunk/30-win32-aliases.conf)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 13:13:36 UTC (rev 488821)
+++ PKGBUILD2019-07-11 13:13:53 UTC (rev 488822)
@@ -1,190 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging
-pkgver=4.11
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(https://dl.winehq.org/wine/source/4.x/wine-$_pkgbasever.tar.xz{,.sign}
-
"wine-staging-v$_pkgbasever.tar.gz::https://github.com/wine-staging/wine-staging/archive/v$_pkgbasever.tar.gz;
-30-win32-aliases.conf
-wine-binfmt.conf)
-sha512sums=('df4e636959f6044f92aca16dce9cb392fd6c513ccc5a19585d3de8cd7fe0a9d21b05fcfa538172f94721d0356d9ec1470b7da810fcfa70d3aae9054a48d4700b'
-'SKIP'
-
'384866aa5b2636804825ceb36b999bc1d5dd4d4693cef1b3004d9c8252dea393a02c65227d9e7b665021f19fd087025349ad720f4bbf0f061887ba5abcb74b24'
-
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
-
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7
-  DA23579A74D4AD9AF9D3F945CEFAC8EAAF17519D)
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch"
-url="http://www.wine-staging.com;
-arch=(x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-depends=(
-  attr lib32-attr
-  fontconfig   lib32-fontconfig
-  lcms2lib32-lcms2
-  libxml2  lib32-libxml2
-  libxcursor   lib32-libxcursor
-  libxrandrlib32-libxrandr
-  libxdamage   lib32-libxdamage
-  libxilib32-libxi
-  gettext  lib32-gettext
-  freetype2lib32-freetype2
-  glu  lib32-glu
-  libsmlib32-libsm
-  gcc-libs lib32-gcc-libs
-  libpcap  lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  libpulse  lib32-libpulse
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  sdl2  lib32-sdl2
-  vkd3d lib32-vkd3d
-  sane
-  libgphoto2
-  gsm
-  ffmpeg
-  samba
-  opencl-headers
-)
-
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  alsa-lib  lib32-alsa-lib
-  

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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:12:58
  Author: felixonmars
Revision: 488820

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod/repos/community-staging-x86_64/PKGBUILD (from rev 488819, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:12:58 UTC (rev 488820)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.6.0
+pkgrel=299
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-blaze-html' 'haskell-blaze-markup'
+ 'haskell-data-default-class' 'haskell-fast-logger' 
'haskell-monad-logger'
+ 'haskell-resourcet' 'haskell-shakespeare' 'haskell-streaming-commons'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-wai-extra' 
'haskell-wai-logger'
+ 'haskell-warp' 'haskell-yaml' 'haskell-yesod-core' 
'haskell-yesod-form'
+ 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('36caa5ee5c27a2355aff9e5dc210100661670717e251bb42bac48c02cd6979c38ae7b5fda1dd2e264aefb7b5b3808f7ccc9e511fd38b6de7090e16c7a91e1b15')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_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 \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:12:49
  Author: felixonmars
Revision: 488819

upgpkg: haskell-yesod 1.6.0-299

rebuild with auto-update 0.1.6

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:12:00 UTC (rev 488818)
+++ PKGBUILD2019-07-11 13:12:49 UTC (rev 488819)
@@ -4,7 +4,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.6.0
-pkgrel=298
+pkgrel=299
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:12:00
  Author: felixonmars
Revision: 488818

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-form/repos/community-staging-x86_64/
  haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD
(from rev 488817, haskell-yesod-form/trunk/PKGBUILD)

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

Copied: haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD (from rev 
488817, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:12:00 UTC (rev 488818)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.6.5
+pkgrel=16
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-byteable' 'haskell-data-default' 
'haskell-email-validate'
+ 'haskell-network-uri' 'haskell-persistent' 'haskell-resourcet' 
'haskell-shakespeare'
+ 'haskell-wai' 'haskell-xss-sanitize' 'haskell-yesod-core' 
'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('d38e52931a2d129dfdb05e2bf2a7ff284f966112c9d95e5a56750392d00018d429d0381e1c312c4bbfb12dbdd4764d110f26ccb993aabdd9a9567e1a5e742d9c')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_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 \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:11:51
  Author: felixonmars
Revision: 488817

upgpkg: haskell-yesod-form 1.6.5-16

rebuild with auto-update 0.1.6

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:10:43 UTC (rev 488816)
+++ PKGBUILD2019-07-11 13:11:51 UTC (rev 488817)
@@ -4,7 +4,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.6.5
-pkgrel=15
+pkgrel=16
 pkgdesc="Form handling support for Yesod Web Framework"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:10:43
  Author: felixonmars
Revision: 488816

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-persistent/repos/community-staging-x86_64/
  haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD
(from rev 488815, haskell-yesod-persistent/trunk/PKGBUILD)

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

Copied: haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD (from 
rev 488815, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:10:43 UTC (rev 488816)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.6.0.2
+pkgrel=52
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+makedepends=('ghc' 'haskell-hspec' 'haskell-wai-extra' 
'haskell-persistent-sqlite')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('8014d1bcb5101bfad61911377e4122b07f41b4e98bd20c8f7a205d151caa73dbe4b1cc526f1f3d4bb2323920b290f080c77649e0f368ca017cd50389a7f7120c')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:10:34
  Author: felixonmars
Revision: 488815

upgpkg: haskell-yesod-persistent 1.6.0.2-52

rebuild with auto-update 0.1.6

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:09:47 UTC (rev 488814)
+++ PKGBUILD2019-07-11 13:10:34 UTC (rev 488815)
@@ -4,7 +4,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.6.0.2
-pkgrel=51
+pkgrel=52
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:09:37
  Author: felixonmars
Revision: 488813

upgpkg: haskell-yesod-default 1.2.0-551

rebuild with auto-update 0.1.6

Modified:
  haskell-yesod-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:08:56 UTC (rev 488812)
+++ PKGBUILD2019-07-11 13:09:37 UTC (rev 488813)
@@ -4,7 +4,7 @@
 _hkgname=yesod-default
 pkgname=haskell-yesod-default
 pkgver=1.2.0
-pkgrel=550
+pkgrel=551
 pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:09:47
  Author: felixonmars
Revision: 488814

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-default/repos/community-staging-x86_64/
  haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD
(from rev 488813, haskell-yesod-default/trunk/PKGBUILD)

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

Copied: haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD (from rev 
488813, haskell-yesod-default/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:09:47 UTC (rev 488814)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-default
+pkgname=haskell-yesod-default
+pkgver=1.2.0
+pkgrel=551
+pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-yesod-core")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f39ae1953a95c1919a9dd214d93bf81078b1dcbbac737dc9bb7339dbad9dda96')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:08:47
  Author: felixonmars
Revision: 488811

upgpkg: haskell-yesod-core 1.6.14-53

rebuild with auto-update 0.1.6

Modified:
  haskell-yesod-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:08:10 UTC (rev 488810)
+++ PKGBUILD2019-07-11 13:08:47 UTC (rev 488811)
@@ -4,7 +4,7 @@
 _hkgname=yesod-core
 pkgname=haskell-yesod-core
 pkgver=1.6.14
-pkgrel=52
+pkgrel=53
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:08:56
  Author: felixonmars
Revision: 488812

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-core/repos/community-staging-x86_64/
  haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD
(from rev 488811, haskell-yesod-core/trunk/PKGBUILD)

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

Copied: haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD (from rev 
488811, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:08:56 UTC (rev 488812)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.6.14
+pkgrel=53
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-auto-update' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 'haskell-cereal'
+ 'haskell-clientsession' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cookie'
+ 'haskell-fast-logger' 'haskell-http-types' 'haskell-memory'
+ 'haskell-monad-logger' 'haskell-old-locale' 'haskell-path-pieces' 
'haskell-primitive'
+ 'haskell-random' 'haskell-resourcet' 'haskell-rio' 
'haskell-shakespeare'
+ 'haskell-unix-compat' 'haskell-unliftio' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-wai' 'haskell-wai-extra' 'haskell-wai-logger' 'haskell-warp' 
'haskell-word8')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('663527c0075cfea7bd8176e9d4cb59b70adfddd6b76811ae8c36d15d0cc3b2e3ee8f23df77a1c0bd8b1c7f5c704cf0c49c2e14e8751e730a3637ea1bcf8cc5a1')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_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 \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:08:10
  Author: felixonmars
Revision: 488810

archrelease: copy trunk to community-x86_64

Added:
  libbloom/repos/community-x86_64/PKGBUILD
(from rev 488809, libbloom/trunk/PKGBUILD)
Deleted:
  libbloom/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-11 13:07:58 UTC (rev 488809)
+++ PKGBUILD2019-07-11 13:08:10 UTC (rev 488810)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=libbloom
-pkgver=1.6
-pkgrel=1
-pkgdesc="A simple and small bloom filter implementation in plain C"
-arch=('x86_64')
-url="https://github.com/jvirkki/libbloom;
-license=('BSD')
-depends=('glibc')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/jvirkki/libbloom/archive/v$pkgver.tar.gz;)
-sha512sums=('3dd4343d68def05800dd6ffc5a05b05d0702a8c0c9f0a397f105d4389c88a7bffa419734aeb4fa4e1a2c418b12a8192fa27ddcbaeee72906450d64cbfd64db15')
-
-build() {
-  cd libbloom-$pkgver
-  make MM=" "
-}
-
-check() {
-  cd libbloom-$pkgver
-  make MM=" " test
-}
-
-package() {
-  cd libbloom-$pkgver
-  install -Dm644 bloom.h "$pkgdir"/usr/include/bloom.h
-  install -Dm755 build/libbloom.so.$pkgver 
"$pkgdir"/usr/lib/libbloom.so.$pkgver
-  ln -s libbloom.so.$pkgver "$pkgdir"/usr/lib/libbloom.so
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: libbloom/repos/community-x86_64/PKGBUILD (from rev 488809, 
libbloom/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-11 13:08:10 UTC (rev 488810)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=libbloom
+pkgver=1.6
+pkgrel=2
+pkgdesc="A simple and small bloom filter implementation in plain C"
+arch=('x86_64')
+url="https://github.com/jvirkki/libbloom;
+license=('BSD')
+depends=('glibc')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/jvirkki/libbloom/archive/v$pkgver.tar.gz;)
+sha512sums=('3dd4343d68def05800dd6ffc5a05b05d0702a8c0c9f0a397f105d4389c88a7bffa419734aeb4fa4e1a2c418b12a8192fa27ddcbaeee72906450d64cbfd64db15')
+
+build() {
+  cd libbloom-$pkgver
+  make MM=" "
+}
+
+check() {
+  cd libbloom-$pkgver
+  make MM=" " test
+}
+
+package() {
+  cd libbloom-$pkgver
+  install -Dm644 bloom.h "$pkgdir"/usr/include/bloom.h
+  install -Dm755 build/libbloom.so.$pkgver 
"$pkgdir"/usr/lib/libbloom.so.$pkgver
+  ln -s libbloom.so.$pkgver "$pkgdir"/usr/lib/libbloom.so
+  ln -s libbloom.so.$pkgver "$pkgdir"/usr/lib/libbloom.so.1
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:07:58
  Author: felixonmars
Revision: 488809

upgpkg: libbloom 1.6-2

Modified:
  libbloom/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:07:35 UTC (rev 488808)
+++ PKGBUILD2019-07-11 13:07:58 UTC (rev 488809)
@@ -2,7 +2,7 @@
 
 pkgname=libbloom
 pkgver=1.6
-pkgrel=1
+pkgrel=2
 pkgdesc="A simple and small bloom filter implementation in plain C"
 arch=('x86_64')
 url="https://github.com/jvirkki/libbloom;
@@ -26,6 +26,7 @@
   install -Dm644 bloom.h "$pkgdir"/usr/include/bloom.h
   install -Dm755 build/libbloom.so.$pkgver 
"$pkgdir"/usr/lib/libbloom.so.$pkgver
   ln -s libbloom.so.$pkgver "$pkgdir"/usr/lib/libbloom.so
+  ln -s libbloom.so.$pkgver "$pkgdir"/usr/lib/libbloom.so.1
 
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:07:25
  Author: felixonmars
Revision: 488807

upgpkg: haskell-aws 0.21.1-65

rebuild with auto-update 0.1.6

Modified:
  haskell-aws/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:05:13 UTC (rev 488806)
+++ PKGBUILD2019-07-11 13:07:25 UTC (rev 488807)
@@ -4,7 +4,7 @@
 _hkgname=aws
 pkgname=haskell-aws
 pkgver=0.21.1
-pkgrel=64
+pkgrel=65
 pkgdesc="Amazon Web Services (AWS) for Haskell"
 url="https://github.com/aristidb/aws;
 license=("BSD")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:07:35
  Author: felixonmars
Revision: 488808

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 488807, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:07:35 UTC (rev 488808)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.21.1
+pkgrel=65
+pkgdesc="Amazon Web Services (AWS) for Haskell"
+url="https://github.com/aristidb/aws;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 'haskell-byteable'
+ 'haskell-case-insensitive' 'haskell-cereal' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-data-default' 'haskell-exceptions' 
'haskell-http-conduit'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-lifted-base' 
'haskell-memory'
+ 'haskell-monad-control' 'haskell-network' 'haskell-old-locale' 
'haskell-resourcet'
+ 'haskell-safe' 'haskell-scientific' 'haskell-tagged' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-vector' 'haskell-xml-conduit')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-errors' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-quickcheck-instances' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-transformers-base')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ab22fd2113b579404c218abbef42ebc04e3b5d90c4a1ecc4ad36aa720c8071c07d8b49bd2441bc07d1383122cfdd5e95a04fad6929adedb66e5d5b684eed2f37')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *0.6/<1/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-examples
+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
+runhaskell Setup test || warning "Requires AWS credentials to test"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:05:04
  Author: felixonmars
Revision: 488805

upgpkg: haskell-authenticate 1.3.4-311

rebuild with auto-update 0.1.6

Modified:
  haskell-authenticate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:04:22 UTC (rev 488804)
+++ PKGBUILD2019-07-11 13:05:04 UTC (rev 488805)
@@ -4,7 +4,7 @@
 _hkgname=authenticate
 pkgname=haskell-authenticate
 pkgver=1.3.4
-pkgrel=310
+pkgrel=311
 pkgdesc="Authentication methods for Haskell web applications."
 url="https://github.com/yesodweb/authenticate;
 license=("MIT")


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:05:13
  Author: felixonmars
Revision: 488806

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-authenticate/repos/community-staging-x86_64/PKGBUILD (from rev 
488805, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:05:13 UTC (rev 488806)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.4
+pkgrel=311
+pkgdesc="Authentication methods for Haskell web applications."
+url="https://github.com/yesodweb/authenticate;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-case-insensitive' 'haskell-conduit' 'haskell-http-conduit' 
'haskell-http-types'
+ 'haskell-network-uri' 'haskell-resourcet' 'haskell-tagstream-conduit'
+ 'haskell-unordered-containers' 'haskell-xml-conduit')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a6e5a9f4c20ca2bb980958c0cc6273492a6488a3f7c1954170bb8b40e46a4c2f7b607c961506e11ddc5421289c907148c1bc70b855bd16664bc1153ef7865571')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:04:13
  Author: felixonmars
Revision: 488803

upgpkg: haskell-http-conduit 2.3.7.1-36

rebuild with auto-update 0.1.6

Modified:
  haskell-http-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 13:03:16 UTC (rev 488802)
+++ PKGBUILD2019-07-11 13:04:13 UTC (rev 488803)
@@ -4,7 +4,7 @@
 _hkgname=http-conduit
 pkgname=haskell-http-conduit
 pkgver=2.3.7.1
-pkgrel=35
+pkgrel=36
 pkgdesc="HTTP client package with conduit interface and HTTPS support"
 url="https://www.yesodweb.com/book/http-conduit;
 license=("BSD")


[arch-commits] Commit in opengl-man-pages/trunk (PKGBUILD)

2019-07-11 Thread Andreas Radke via arch-commits
Date: Thursday, July 11, 2019 @ 13:04:34
  Author: andyrtr
Revision: 357751

upgpkg: opengl-man-pages 20190711-1

-I

Modified:
  opengl-man-pages/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-11 12:26:40 UTC (rev 357750)
+++ PKGBUILD2019-07-11 13:04:34 UTC (rev 357751)
@@ -1,8 +1,8 @@
 # Maintainer: AndyRTR 
 
 pkgname=opengl-man-pages
-pkgver=20180321
-_commit=3e3580afb5d0634e71582c0d691f6cc756d31a5d
+pkgver=20190711
+_commit=8acb9c72a30d36a6f7e89b9b2de0635c50773cdb
 pkgrel=1
 pkgdesc="OpenGL Man Pages"
 arch=('any')


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

2019-07-11 Thread Felix Yan via arch-commits
Date: Thursday, July 11, 2019 @ 13:04:22
  Author: felixonmars
Revision: 488804

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-http-conduit/repos/community-staging-x86_64/
  haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD
(from rev 488803, haskell-http-conduit/trunk/PKGBUILD)

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

Copied: haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
488803, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-11 13:04:22 UTC (rev 488804)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.3.7.1
+pkgrel=36
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="https://www.yesodweb.com/book/http-conduit;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-resourcet'
+ 'haskell-unliftio-core')
+makedepends=('ghc' 'haskell-blaze-builder' 'haskell-case-insensitive' 
'haskell-connection'
+ 'haskell-cookie' 'haskell-data-default-class' 'haskell-hunit' 
'haskell-hspec'
+ 'haskell-lifted-base' 'haskell-network' 
'haskell-streaming-commons' 'haskell-temporary'
+ 'haskell-unliftio' 'haskell-utf8-string' 'haskell-wai' 
'haskell-wai-conduit'
+ 'haskell-warp' 'haskell-warp-tls')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('39308e85a9b8c292930803b0b0bb00d4fb58e64e3a8273a30fee4f6016fe18ae9cbd75ece5b67ff88237d87c0b895896b9d715eaa45d396f3baf1deb2b8388ba')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


  1   2   3   4   5   >