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

2017-09-24 Thread Sébastien Luttringer
Date: Monday, September 25, 2017 @ 06:36:30
  Author: seblu
Revision: 260525

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |  148 ++---
 grafana.install  |   44 +++
 grafana.service  |   30 +-
 grafana.sysusers |2 
 grafana.tmpfiles |6 +-
 5 files changed, 115 insertions(+), 115 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-25 06:01:34 UTC (rev 260524)
+++ PKGBUILD2017-09-25 06:36:30 UTC (rev 260525)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Carsten Feuls 
-# Contributor: Gilles Hamel 
-
-pkgname=grafana
-pkgver=4.5.2
-pkgrel=1
-pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
-url='http://grafana.org'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc' 'freetype2' 'fontconfig')
-makedepends=('git' 'go' 'npm' 'grunt-cli' 'python2')
-backup=("etc/grafana.ini")
-source=("git+https://github.com/grafana/grafana.git#tag=v$pkgver";
-"grafana.service"
-"grafana.sysusers"
-"grafana.tmpfiles"
-   )
-install=$pkgname.install
-md5sums=('SKIP'
- '2f1d73689923ecee92a102a65b91003a'
- 'e991d8cdf91c1e25652cdbc51fc726c5'
- 'b9b576d1959fc063b3399892e201488c')
-
-prepare() {
-  cd $pkgname
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  :
-}
-
-build() {
-  msg2 'GOPATH setup'
-  export GOPATH="$srcdir/gopath"
-  export PATH+=":$GOPATH/bin"
-  mkdir -p "$GOPATH/src/github.com/grafana/"
-  ln -fsrT "$srcdir/grafana/" "$GOPATH/src/github.com/grafana/grafana"
-  cd "$GOPATH/src/github.com/grafana/grafana"
-
-  msg2 'building the backend'
-  go run build.go setup build
-
-  msg2 'building the frontend'
-  export NPM_CONFIG_PREFIX="$srcdir/npm"
-  export PATH+=":$NPM_CONFIG_PREFIX/bin"
-  npm install -g yarn
-  yarn install --pure-lockfile --no-progress
-  npm run build release
-}
-
-package() {
-  install -Dm644 grafana.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/grafana.conf"
-  install -Dm644 grafana.sysusers "$pkgdir/usr/lib/sysusers.d/grafana.conf"
-  install -Dm644 grafana.service 
"$pkgdir/usr/lib/systemd/system/grafana.service"
-  cd $pkgname
-  install -Dsm755 bin/grafana-server "$pkgdir/usr/bin/grafana-server"
-  install -Dsm755 bin/grafana-cli "$pkgdir/usr/bin/grafana-cli"
-  install -Dm640 -o207 -g207 conf/sample.ini "$pkgdir/etc/$pkgname.ini"
-  install -Dm644 conf/defaults.ini 
"$pkgdir/usr/share/$pkgname/conf/defaults.ini"
-  install -dm755 "$pkgdir/usr/share/grafana/"
-  cp -r vendor "$pkgdir/usr/share/grafana/"
-  cp -r public_gen "$pkgdir/usr/share/grafana/public"
-  ln -s ../../../var/lib/grafana "$pkgdir/usr/share/grafana/data"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: grafana/repos/community-x86_64/PKGBUILD (from rev 260524, 
grafana/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-25 06:36:30 UTC (rev 260525)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer
+# Contributor: Carsten Feuls 
+# Contributor: Gilles Hamel 
+
+pkgname=grafana
+pkgver=4.5.2
+pkgrel=1
+pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
+url='http://grafana.org'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc' 'freetype2' 'fontconfig')
+makedepends=('git' 'go' 'npm' 'grunt-cli' 'python2')
+backup=("etc/grafana.ini")
+source=("git+https://github.com/grafana/grafana.git#tag=v$pkgver";
+"grafana.service"
+"grafana.sysusers"
+"grafana.tmpfiles"
+   )
+install=$pkgname.install
+md5sums=('SKIP'
+ '2f1d73689923ecee92a102a65b91003a'
+ 'e991d8cdf91c1e25652cdbc51fc726c5'
+ 'b9b576d1959fc063b3399892e201488c')
+
+prepare() {
+  cd $pkgname
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename

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

2017-09-24 Thread Sébastien Luttringer
Date: Monday, September 25, 2017 @ 06:01:34
  Author: seblu
Revision: 260524

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |  148 ++---
 grafana.install  |   44 +++
 grafana.service  |   30 +-
 grafana.sysusers |2 
 grafana.tmpfiles |6 +-
 5 files changed, 115 insertions(+), 115 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-25 05:09:42 UTC (rev 260523)
+++ PKGBUILD2017-09-25 06:01:34 UTC (rev 260524)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Carsten Feuls 
-# Contributor: Gilles Hamel 
-
-pkgname=grafana
-pkgver=4.5.2
-pkgrel=1
-pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
-url='http://grafana.org'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc' 'freetype2' 'fontconfig')
-makedepends=('git' 'go' 'npm' 'grunt-cli' 'python2')
-backup=("etc/grafana.ini")
-source=("git+https://github.com/grafana/grafana.git#tag=v$pkgver";
-"grafana.service"
-"grafana.sysusers"
-"grafana.tmpfiles"
-   )
-install=$pkgname.install
-md5sums=('SKIP'
- '2f1d73689923ecee92a102a65b91003a'
- 'e991d8cdf91c1e25652cdbc51fc726c5'
- 'b9b576d1959fc063b3399892e201488c')
-
-prepare() {
-  cd $pkgname
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  :
-}
-
-build() {
-  msg2 'GOPATH setup'
-  export GOPATH="$srcdir/gopath"
-  export PATH+=":$GOPATH/bin"
-  mkdir -p "$GOPATH/src/github.com/grafana/"
-  ln -fsrT "$srcdir/grafana/" "$GOPATH/src/github.com/grafana/grafana"
-  cd "$GOPATH/src/github.com/grafana/grafana"
-
-  msg2 'building the backend'
-  go run build.go setup build
-
-  msg2 'building the frontend'
-  export NPM_CONFIG_PREFIX="$srcdir/npm"
-  export PATH+=":$NPM_CONFIG_PREFIX/bin"
-  npm install -g yarn
-  yarn install --pure-lockfile --no-progress
-  npm run build release
-}
-
-package() {
-  install -Dm644 grafana.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/grafana.conf"
-  install -Dm644 grafana.sysusers "$pkgdir/usr/lib/sysusers.d/grafana.conf"
-  install -Dm644 grafana.service 
"$pkgdir/usr/lib/systemd/system/grafana.service"
-  cd $pkgname
-  install -Dsm755 bin/grafana-server "$pkgdir/usr/bin/grafana-server"
-  install -Dsm755 bin/grafana-cli "$pkgdir/usr/bin/grafana-cli"
-  install -Dm640 -o207 -g207 conf/sample.ini "$pkgdir/etc/$pkgname.ini"
-  install -Dm644 conf/defaults.ini 
"$pkgdir/usr/share/$pkgname/conf/defaults.ini"
-  install -dm755 "$pkgdir/usr/share/grafana/"
-  cp -r vendor "$pkgdir/usr/share/grafana/"
-  cp -r public_gen "$pkgdir/usr/share/grafana/public"
-  ln -s ../../../var/lib/grafana "$pkgdir/usr/share/grafana/data"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: grafana/repos/community-x86_64/PKGBUILD (from rev 260523, 
grafana/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-25 06:01:34 UTC (rev 260524)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer
+# Contributor: Carsten Feuls 
+# Contributor: Gilles Hamel 
+
+pkgname=grafana
+pkgver=4.5.2
+pkgrel=1
+pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
+url='http://grafana.org'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc' 'freetype2' 'fontconfig')
+makedepends=('git' 'go' 'npm' 'grunt-cli' 'python2')
+backup=("etc/grafana.ini")
+source=("git+https://github.com/grafana/grafana.git#tag=v$pkgver";
+"grafana.service"
+"grafana.sysusers"
+"grafana.tmpfiles"
+   )
+install=$pkgname.install
+md5sums=('SKIP'
+ '2f1d73689923ecee92a102a65b91003a'
+ 'e991d8cdf91c1e25652cdbc51fc726c5'
+ 'b9b576d1959fc063b3399892e201488c')
+
+prepare() {
+  cd $pkgname
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename

[arch-commits] Commit in ipset/repos (6 files)

2017-09-24 Thread Sébastien Luttringer
Date: Monday, September 25, 2017 @ 05:13:11
  Author: seblu
Revision: 306212

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  ipset/repos/extra-i686/PKGBUILD
(from rev 306211, ipset/trunk/PKGBUILD)
  ipset/repos/extra-i686/ipset.service
(from rev 306211, ipset/trunk/ipset.service)
  ipset/repos/extra-x86_64/PKGBUILD
(from rev 306211, ipset/trunk/PKGBUILD)
  ipset/repos/extra-x86_64/ipset.service
(from rev 306211, ipset/trunk/ipset.service)
Deleted:
  ipset/repos/extra-x86_64/PKGBUILD
  ipset/repos/extra-x86_64/ipset.service

+
 /PKGBUILD  |   59 +++
 /ipset.service |   14 ++
 extra-i686/PKGBUILD|   59 +++
 extra-i686/ipset.service   |   14 ++
 extra-x86_64/PKGBUILD  |   59 ---
 extra-x86_64/ipset.service |   14 --
 6 files changed, 146 insertions(+), 73 deletions(-)

Copied: ipset/repos/extra-i686/PKGBUILD (from rev 306211, ipset/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-09-25 05:13:11 UTC (rev 306212)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=ipset
+pkgver=6.34
+pkgrel=1
+pkgdesc='Administration tool for IP sets'
+arch=('i686' 'x86_64')
+url='http://ipset.netfilter.org/'
+license=('GPL2')
+depends=('glibc' 'libmnl')
+backup=("etc/$pkgname.conf")
+source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2";
+"$pkgname.service")
+md5sums=('51bd03f976a1501fd45e1d71a1e2e6bf'
+ 'e20fe62881993078591f1bb8b2fa22bb')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -i "$srcdir/${filename##*/}"
+fi
+  done
+  :
+  # needed because we patch configure.ac (TO BE REMOVED)
+  ./autogen.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sbindir=/usr/bin --with-kmod=no
+  make
+}
+
+check() {
+  $pkgname-$pkgver/src/ipset version
+}
+
+package() {
+  pushd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  # install doc
+  install -dm755 "$pkgdir/usr/share/doc/$pkgname"
+  install -m644 README UPGRADE ChangeLog "$pkgdir/usr/share/doc/$pkgname"
+  # install pkgconfig file
+  install -Dm644 lib/libipset.pc "$pkgdir/usr/lib/pkgconfig/libipset.pc"
+  popd
+  # systemd
+  install -Dm 644 $pkgname.service \
+"$pkgdir/usr/lib/systemd/system/$pkgname.service"
+  # default config file
+  install -Dm 644 /dev/null "$pkgdir/etc/$pkgname.conf"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: ipset/repos/extra-i686/ipset.service (from rev 306211, 
ipset/trunk/ipset.service)
===
--- extra-i686/ipset.service(rev 0)
+++ extra-i686/ipset.service2017-09-25 05:13:11 UTC (rev 306212)
@@ -0,0 +1,14 @@
+[Unit]
+Description=Loading IP Sets
+Before=network-pre.target iptables.service ip6tables.service
+Wants=network-pre.target
+
+[Service]
+Type=oneshot
+RemainAfterExit=yes
+ExecStart=/usr/bin/ipset -f /etc/ipset.conf restore
+ExecReload=/usr/bin/ipset -f /etc/ipset.conf restore
+ExecStop=/usr/bin/ipset destroy
+
+[Install]
+WantedBy=multi-user.target

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-09-25 05:01:01 UTC (rev 306211)
+++ extra-x86_64/PKGBUILD   2017-09-25 05:13:11 UTC (rev 306212)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgname=ipset
-pkgver=6.34
-pkgrel=1
-pkgdesc='Administration tool for IP sets'
-arch=('i686' 'x86_64')
-url='http://ipset.netfilter.org/'
-license=('GPL2')
-depends=('glibc' 'libmnl')
-backup=("etc/$pkgname.conf")
-source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2";
-"$pkgname.service")
-md5sums=('51bd03f976a1501fd45e1d71a1e2e6bf'
- 'e20fe62881993078591f1bb8b2fa22bb')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  :
-  # needed because we patch configure.ac (TO BE REMOVED)
-  ./autogen.sh
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sbindir=/usr/bin --with-kmod=no
-  make
-}
-
-check() {
-  $pkgname-$pkgver/src/ipset version
-}
-
-package() {
-  pushd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  # install doc
-  install -dm755 "$pkgdir/usr/share/doc/$pkgname"
-  install -m644 README UPGRADE ChangeLog "$pkgdir/usr/share/doc/$pkg

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

2017-09-24 Thread Sébastien Luttringer
Date: Monday, September 25, 2017 @ 05:09:42
  Author: seblu
Revision: 260523

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |  148 ++---
 grafana.install  |   44 +++
 grafana.service  |   30 +-
 grafana.sysusers |2 
 grafana.tmpfiles |6 +-
 5 files changed, 115 insertions(+), 115 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-25 04:45:02 UTC (rev 260522)
+++ PKGBUILD2017-09-25 05:09:42 UTC (rev 260523)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Carsten Feuls 
-# Contributor: Gilles Hamel 
-
-pkgname=grafana
-pkgver=4.5.2
-pkgrel=1
-pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
-url='http://grafana.org'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc' 'freetype2' 'fontconfig')
-makedepends=('git' 'go' 'npm' 'grunt-cli' 'python2')
-backup=("etc/grafana.ini")
-source=("git+https://github.com/grafana/grafana.git#tag=v$pkgver";
-"grafana.service"
-"grafana.sysusers"
-"grafana.tmpfiles"
-   )
-install=$pkgname.install
-md5sums=('SKIP'
- '2f1d73689923ecee92a102a65b91003a'
- 'e991d8cdf91c1e25652cdbc51fc726c5'
- 'b9b576d1959fc063b3399892e201488c')
-
-prepare() {
-  cd $pkgname
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  :
-}
-
-build() {
-  msg2 'GOPATH setup'
-  export GOPATH="$srcdir/gopath"
-  export PATH+=":$GOPATH/bin"
-  mkdir -p "$GOPATH/src/github.com/grafana/"
-  ln -fsrT "$srcdir/grafana/" "$GOPATH/src/github.com/grafana/grafana"
-  cd "$GOPATH/src/github.com/grafana/grafana"
-
-  msg2 'building the backend'
-  go run build.go setup build
-
-  msg2 'building the frontend'
-  export NPM_CONFIG_PREFIX="$srcdir/npm"
-  export PATH+=":$NPM_CONFIG_PREFIX/bin"
-  npm install -g yarn
-  yarn install --pure-lockfile --no-progress
-  npm run build release
-}
-
-package() {
-  install -Dm644 grafana.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/grafana.conf"
-  install -Dm644 grafana.sysusers "$pkgdir/usr/lib/sysusers.d/grafana.conf"
-  install -Dm644 grafana.service 
"$pkgdir/usr/lib/systemd/system/grafana.service"
-  cd $pkgname
-  install -Dsm755 bin/grafana-server "$pkgdir/usr/bin/grafana-server"
-  install -Dsm755 bin/grafana-cli "$pkgdir/usr/bin/grafana-cli"
-  install -Dm640 -o207 -g207 conf/sample.ini "$pkgdir/etc/$pkgname.ini"
-  install -Dm644 conf/defaults.ini 
"$pkgdir/usr/share/$pkgname/conf/defaults.ini"
-  install -dm755 "$pkgdir/usr/share/grafana/"
-  cp -r vendor "$pkgdir/usr/share/grafana/"
-  cp -r public_gen "$pkgdir/usr/share/grafana/public"
-  ln -s ../../../var/lib/grafana "$pkgdir/usr/share/grafana/data"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: grafana/repos/community-x86_64/PKGBUILD (from rev 260522, 
grafana/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-25 05:09:42 UTC (rev 260523)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer
+# Contributor: Carsten Feuls 
+# Contributor: Gilles Hamel 
+
+pkgname=grafana
+pkgver=4.5.2
+pkgrel=1
+pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
+url='http://grafana.org'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc' 'freetype2' 'fontconfig')
+makedepends=('git' 'go' 'npm' 'grunt-cli' 'python2')
+backup=("etc/grafana.ini")
+source=("git+https://github.com/grafana/grafana.git#tag=v$pkgver";
+"grafana.service"
+"grafana.sysusers"
+"grafana.tmpfiles"
+   )
+install=$pkgname.install
+md5sums=('SKIP'
+ '2f1d73689923ecee92a102a65b91003a'
+ 'e991d8cdf91c1e25652cdbc51fc726c5'
+ 'b9b576d1959fc063b3399892e201488c')
+
+prepare() {
+  cd $pkgname
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename

[arch-commits] Commit in ipset/repos (6 files)

2017-09-24 Thread Sébastien Luttringer
Date: Monday, September 25, 2017 @ 05:01:01
  Author: seblu
Revision: 306211

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  ipset/repos/extra-x86_64/PKGBUILD
(from rev 306210, ipset/trunk/PKGBUILD)
  ipset/repos/extra-x86_64/ipset.service
(from rev 306210, ipset/trunk/ipset.service)
Deleted:
  ipset/repos/extra-i686/PKGBUILD
  ipset/repos/extra-i686/ipset.service
  ipset/repos/extra-x86_64/PKGBUILD
  ipset/repos/extra-x86_64/ipset.service

+
 /PKGBUILD  |   59 +++
 /ipset.service |   14 ++
 extra-i686/PKGBUILD|   59 ---
 extra-i686/ipset.service   |   14 --
 extra-x86_64/PKGBUILD  |   59 ---
 extra-x86_64/ipset.service |   14 --
 6 files changed, 73 insertions(+), 146 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-25 04:55:54 UTC (rev 306210)
+++ extra-i686/PKGBUILD 2017-09-25 05:01:01 UTC (rev 306211)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgname=ipset
-pkgver=6.33
-pkgrel=1
-pkgdesc='Administration tool for IP sets'
-arch=('i686' 'x86_64')
-url='http://ipset.netfilter.org/'
-license=('GPL2')
-depends=('glibc' 'libmnl')
-backup=("etc/$pkgname.conf")
-source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2";
-"$pkgname.service")
-md5sums=('852d05822b2124d9240f4cdb34c0a36e'
- 'e20fe62881993078591f1bb8b2fa22bb')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  :
-  # needed because we patch configure.ac (TO BE REMOVED)
-  ./autogen.sh
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sbindir=/usr/bin --with-kmod=no
-  make
-}
-
-check() {
-  $pkgname-$pkgver/src/ipset version
-}
-
-package() {
-  pushd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  # install doc
-  install -dm755 "$pkgdir/usr/share/doc/$pkgname"
-  install -m644 README UPGRADE ChangeLog "$pkgdir/usr/share/doc/$pkgname"
-  # install pkgconfig file
-  install -Dm644 lib/libipset.pc "$pkgdir/usr/lib/pkgconfig/libipset.pc"
-  popd
-  # systemd
-  install -Dm 644 $pkgname.service \
-"$pkgdir/usr/lib/systemd/system/$pkgname.service"
-  # default config file
-  install -Dm 644 /dev/null "$pkgdir/etc/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 et:

Deleted: extra-i686/ipset.service
===
--- extra-i686/ipset.service2017-09-25 04:55:54 UTC (rev 306210)
+++ extra-i686/ipset.service2017-09-25 05:01:01 UTC (rev 306211)
@@ -1,14 +0,0 @@
-[Unit]
-Description=Loading IP Sets
-Before=network-pre.target iptables.service ip6tables.service
-Wants=network-pre.target
-
-[Service]
-Type=oneshot
-RemainAfterExit=yes
-ExecStart=/usr/bin/ipset -f /etc/ipset.conf restore
-ExecReload=/usr/bin/ipset -f /etc/ipset.conf restore
-ExecStop=/usr/bin/ipset destroy
-
-[Install]
-WantedBy=multi-user.target

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-09-25 04:55:54 UTC (rev 306210)
+++ extra-x86_64/PKGBUILD   2017-09-25 05:01:01 UTC (rev 306211)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgname=ipset
-pkgver=6.33
-pkgrel=1
-pkgdesc='Administration tool for IP sets'
-arch=('i686' 'x86_64')
-url='http://ipset.netfilter.org/'
-license=('GPL2')
-depends=('glibc' 'libmnl')
-backup=("etc/$pkgname.conf")
-source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2";
-"$pkgname.service")
-md5sums=('852d05822b2124d9240f4cdb34c0a36e'
- 'e20fe62881993078591f1bb8b2fa22bb')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  :
-  # needed because we patch configure.ac (TO BE REMOVED)
-  ./autogen.sh
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sbindir=/usr/bin --with-kmod=no
-  make
-}
-
-check() {
-  $pkgname-$pkgver/src/ipset version
-}
-
-package() {
-  pushd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  # install doc
-  install -dm755 "$pkgdir/usr/share/doc/$pkgname"
-  install -m644 README UPGRADE ChangeLog "$pkgdir/usr/share/doc/$pkgname"
-  # install pkgconfig file
-  install -Dm644 lib/libipset.pc "$pkgdir/usr/lib/pkgconfig/libipset.pc"
-  popd
-  # systemd
-  install -Dm 644 $pkgname.service \
-"$pkgdir/usr/lib/sy

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

2017-09-24 Thread Sébastien Luttringer
Date: Monday, September 25, 2017 @ 04:55:54
  Author: seblu
Revision: 306210

upgpkg: ipset 6.34-1

Modified:
  ipset/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 04:42:56 UTC (rev 306209)
+++ PKGBUILD2017-09-25 04:55:54 UTC (rev 306210)
@@ -2,7 +2,7 @@
 # Maintainer: Sébastien Luttringer
 
 pkgname=ipset
-pkgver=6.33
+pkgver=6.34
 pkgrel=1
 pkgdesc='Administration tool for IP sets'
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 backup=("etc/$pkgname.conf")
 source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2";
 "$pkgname.service")
-md5sums=('852d05822b2124d9240f4cdb34c0a36e'
+md5sums=('51bd03f976a1501fd45e1d71a1e2e6bf'
  'e20fe62881993078591f1bb8b2fa22bb')
 
 prepare() {


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

2017-09-24 Thread Sébastien Luttringer
Date: Monday, September 25, 2017 @ 04:42:56
  Author: seblu
Revision: 306209

db-move: moved devtools from [testing] to [extra] (any)

Added:
  devtools/repos/extra-any/PKGBUILD
(from rev 306208, devtools/repos/testing-any/PKGBUILD)
Deleted:
  
devtools/repos/extra-any/0001-makechrootpkg-Delete-chroot-subvols-recursively-when.patch
  
devtools/repos/extra-any/0002-Sync-makepkg.conf-files-with-pacman-5.0.2-2.patch
  devtools/repos/extra-any/PKGBUILD
  devtools/repos/testing-any/

---+
 /PKGBUILD |   
35 +++
 extra-any/0001-makechrootpkg-Delete-chroot-subvols-recursively-when.patch |   
27 -
 extra-any/0002-Sync-makepkg.conf-files-with-pacman-5.0.2-2.patch  |   
47 --
 extra-any/PKGBUILD|   
33 ---
 4 files changed, 35 insertions(+), 107 deletions(-)

Deleted: 
extra-any/0001-makechrootpkg-Delete-chroot-subvols-recursively-when.patch
===
--- extra-any/0001-makechrootpkg-Delete-chroot-subvols-recursively-when.patch   
2017-09-25 04:42:47 UTC (rev 306208)
+++ extra-any/0001-makechrootpkg-Delete-chroot-subvols-recursively-when.patch   
2017-09-25 04:42:56 UTC (rev 306209)
@@ -1,27 +0,0 @@
-From a1f8ac9c70494009554c08c1036351cb2b374828 Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Sun, 9 Apr 2017 02:36:01 +0200
-Subject: [PATCH] makechrootpkg: Delete chroot subvols recursively when using
- -T
-
-I overlooked this one. Fixes FS#53513.

- makechrootpkg.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/makechrootpkg.in b/makechrootpkg.in
-index f6764cb..20a1f50 100644
 a/makechrootpkg.in
-+++ b/makechrootpkg.in
-@@ -143,7 +143,7 @@ delete_chroot() {
- 
-   stat_busy "Removing chroot copy [%s]" "$copy"
-   if is_btrfs "$chrootdir" && ! mountpoint -q "$copydir"; then
--  btrfs subvolume delete "$copydir" >/dev/null ||
-+  subvolume_delete_recursive "$copydir" ||
-   die "Unable to delete subvolume %s" "$copydir"
-   else
-   # avoid change of filesystem in case of an umount failure
--- 
-2.12.2
-

Deleted: extra-any/0002-Sync-makepkg.conf-files-with-pacman-5.0.2-2.patch
===
--- extra-any/0002-Sync-makepkg.conf-files-with-pacman-5.0.2-2.patch
2017-09-25 04:42:47 UTC (rev 306208)
+++ extra-any/0002-Sync-makepkg.conf-files-with-pacman-5.0.2-2.patch
2017-09-25 04:42:56 UTC (rev 306209)
@@ -1,47 +0,0 @@
-From c9b1fc08b5f63c9f6bb1a992431c661129ab2db1 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Bart=C5=82omiej=20Piotrowski?= 
-Date: Tue, 4 Jul 2017 12:04:51 +0200
-Subject: [PATCH] Sync makepkg.conf files with pacman 5.0.2-2
-

- makepkg-i686.conf   | 6 +++---
- makepkg-x86_64.conf | 6 +++---
- 2 files changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/makepkg-i686.conf b/makepkg-i686.conf
-index c565795..e57988f 100644
 a/makepkg-i686.conf
-+++ b/makepkg-i686.conf
-@@ -37,9 +37,9 @@ CHOST="i686-pc-linux-gnu"
- # -march (or -mcpu) builds exclusively for an architecture
- # -mtune optimizes for an architecture, but builds for whole processor family
- CPPFLAGS="-D_FORTIFY_SOURCE=2"
--CFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong"
--CXXFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong"
--LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
-+CFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong 
-fno-plt"
-+CXXFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong 
-fno-plt"
-+LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
- #-- Make Flags: change this for DistCC/SMP systems
- #MAKEFLAGS="-j2"
- #-- Debugging flags
-diff --git a/makepkg-x86_64.conf b/makepkg-x86_64.conf
-index 058da9b..7aa192e 100644
 a/makepkg-x86_64.conf
-+++ b/makepkg-x86_64.conf
-@@ -37,9 +37,9 @@ CHOST="x86_64-pc-linux-gnu"
- # -march (or -mcpu) builds exclusively for an architecture
- # -mtune optimizes for an architecture, but builds for whole processor family
- CPPFLAGS="-D_FORTIFY_SOURCE=2"
--CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong"
--CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong"
--LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
-+CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong 
-fno-plt"
-+CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong 
-fno-plt"
-+LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
- #-- Make Flags: change this for DistCC/SMP systems
- #MAKEFLAGS="-j2"
- #-- Debugging flags
--- 
-2.13.2
-

Deleted: extra-any/PKGBUILD
===
--- extra-any/PKGBUILD  2017-09-25 04:42:47 U

[arch-commits] Commit in systemd/repos (54 files)

2017-09-24 Thread Sébastien Luttringer
Date: Monday, September 25, 2017 @ 04:42:47
  Author: seblu
Revision: 306208

db-move: moved systemd from [testing] to [core] (i686, x86_64)

Added:
  systemd/repos/core-i686/PKGBUILD
(from rev 306207, systemd/repos/testing-i686/PKGBUILD)
  systemd/repos/core-i686/arch.conf
(from rev 306207, systemd/repos/testing-i686/arch.conf)
  systemd/repos/core-i686/initcpio-hook-udev
(from rev 306207, systemd/repos/testing-i686/initcpio-hook-udev)
  systemd/repos/core-i686/initcpio-install-systemd
(from rev 306207, systemd/repos/testing-i686/initcpio-install-systemd)
  systemd/repos/core-i686/initcpio-install-udev
(from rev 306207, systemd/repos/testing-i686/initcpio-install-udev)
  systemd/repos/core-i686/loader.conf
(from rev 306207, systemd/repos/testing-i686/loader.conf)
  systemd/repos/core-i686/splash-arch.bmp
(from rev 306207, systemd/repos/testing-i686/splash-arch.bmp)
  systemd/repos/core-i686/systemd-hwdb.hook
(from rev 306207, systemd/repos/testing-i686/systemd-hwdb.hook)
  systemd/repos/core-i686/systemd-sysusers.hook
(from rev 306207, systemd/repos/testing-i686/systemd-sysusers.hook)
  systemd/repos/core-i686/systemd-tmpfiles.hook
(from rev 306207, systemd/repos/testing-i686/systemd-tmpfiles.hook)
  systemd/repos/core-i686/systemd-update.hook
(from rev 306207, systemd/repos/testing-i686/systemd-update.hook)
  systemd/repos/core-i686/systemd-user.pam
(from rev 306207, systemd/repos/testing-i686/systemd-user.pam)
  systemd/repos/core-i686/systemd.install
(from rev 306207, systemd/repos/testing-i686/systemd.install)
  systemd/repos/core-x86_64/PKGBUILD
(from rev 306207, systemd/repos/testing-x86_64/PKGBUILD)
  systemd/repos/core-x86_64/arch.conf
(from rev 306207, systemd/repos/testing-x86_64/arch.conf)
  systemd/repos/core-x86_64/initcpio-hook-udev
(from rev 306207, systemd/repos/testing-x86_64/initcpio-hook-udev)
  systemd/repos/core-x86_64/initcpio-install-systemd
(from rev 306207, systemd/repos/testing-x86_64/initcpio-install-systemd)
  systemd/repos/core-x86_64/initcpio-install-udev
(from rev 306207, systemd/repos/testing-x86_64/initcpio-install-udev)
  systemd/repos/core-x86_64/loader.conf
(from rev 306207, systemd/repos/testing-x86_64/loader.conf)
  systemd/repos/core-x86_64/splash-arch.bmp
(from rev 306207, systemd/repos/testing-x86_64/splash-arch.bmp)
  systemd/repos/core-x86_64/systemd-hwdb.hook
(from rev 306207, systemd/repos/testing-x86_64/systemd-hwdb.hook)
  systemd/repos/core-x86_64/systemd-sysusers.hook
(from rev 306207, systemd/repos/testing-x86_64/systemd-sysusers.hook)
  systemd/repos/core-x86_64/systemd-tmpfiles.hook
(from rev 306207, systemd/repos/testing-x86_64/systemd-tmpfiles.hook)
  systemd/repos/core-x86_64/systemd-update.hook
(from rev 306207, systemd/repos/testing-x86_64/systemd-update.hook)
  systemd/repos/core-x86_64/systemd-user.pam
(from rev 306207, systemd/repos/testing-x86_64/systemd-user.pam)
  systemd/repos/core-x86_64/systemd.install
(from rev 306207, systemd/repos/testing-x86_64/systemd.install)
Deleted:
  systemd/repos/core-i686/PKGBUILD
  systemd/repos/core-i686/arch.conf
  systemd/repos/core-i686/initcpio-hook-udev
  systemd/repos/core-i686/initcpio-install-systemd
  systemd/repos/core-i686/initcpio-install-udev
  systemd/repos/core-i686/loader.conf
  systemd/repos/core-i686/splash-arch.bmp
  systemd/repos/core-i686/systemd-hwdb.hook
  systemd/repos/core-i686/systemd-sysusers.hook
  systemd/repos/core-i686/systemd-tmpfiles.hook
  systemd/repos/core-i686/systemd-update.hook
  systemd/repos/core-i686/systemd-user.pam
  systemd/repos/core-i686/systemd.install
  systemd/repos/core-x86_64/PKGBUILD
  systemd/repos/core-x86_64/arch.conf
  systemd/repos/core-x86_64/initcpio-hook-udev
  systemd/repos/core-x86_64/initcpio-install-systemd
  systemd/repos/core-x86_64/initcpio-install-udev
  systemd/repos/core-x86_64/loader.conf
  systemd/repos/core-x86_64/splash-arch.bmp
  systemd/repos/core-x86_64/systemd-hwdb.hook
  systemd/repos/core-x86_64/systemd-sysusers.hook
  systemd/repos/core-x86_64/systemd-tmpfiles.hook
  systemd/repos/core-x86_64/systemd-update.hook
  systemd/repos/core-x86_64/systemd-user.pam
  systemd/repos/core-x86_64/systemd.install
  systemd/repos/testing-i686/
  systemd/repos/testing-x86_64/

--+
 /PKGBUILD|  558 +
 /arch.conf   |   14 
 /initcpio-hook-udev  |   44 ++
 /initcpio-install-systemd|  396 +++
 /initcpio-install-udev   |   58 +++
 /loader.conf |2 
 /systemd-hwdb.hook   |   22 +
 /systemd-sysusers.hook   |   22 +
 /systemd-tmpfiles.hook   |   22 +
 /systemd-update.hook |   22 +
 /systemd-user.pam|   10 
 /systemd.install |  198 +++
 core-i6

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

2017-09-24 Thread Sébastien Luttringer
Date: Monday, September 25, 2017 @ 04:35:49
  Author: seblu
Revision: 260516

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |  148 ++---
 grafana.install  |   44 +++
 grafana.service  |   30 +-
 grafana.sysusers |2 
 grafana.tmpfiles |6 +-
 5 files changed, 115 insertions(+), 115 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-25 04:29:19 UTC (rev 260515)
+++ PKGBUILD2017-09-25 04:35:49 UTC (rev 260516)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Carsten Feuls 
-# Contributor: Gilles Hamel 
-
-pkgname=grafana
-pkgver=4.5.2
-pkgrel=1
-pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
-url='http://grafana.org'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc' 'freetype2' 'fontconfig')
-makedepends=('git' 'go' 'npm' 'grunt-cli' 'python2')
-backup=("etc/grafana.ini")
-source=("git+https://github.com/grafana/grafana.git#tag=v$pkgver";
-"grafana.service"
-"grafana.sysusers"
-"grafana.tmpfiles"
-   )
-install=$pkgname.install
-md5sums=('SKIP'
- '2f1d73689923ecee92a102a65b91003a'
- 'e991d8cdf91c1e25652cdbc51fc726c5'
- 'b9b576d1959fc063b3399892e201488c')
-
-prepare() {
-  cd $pkgname
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  :
-}
-
-build() {
-  msg2 'GOPATH setup'
-  export GOPATH="$srcdir/gopath"
-  export PATH+=":$GOPATH/bin"
-  mkdir -p "$GOPATH/src/github.com/grafana/"
-  ln -fsrT "$srcdir/grafana/" "$GOPATH/src/github.com/grafana/grafana"
-  cd "$GOPATH/src/github.com/grafana/grafana"
-
-  msg2 'building the backend'
-  go run build.go setup build
-
-  msg2 'building the frontend'
-  export NPM_CONFIG_PREFIX="$srcdir/npm"
-  export PATH+=":$NPM_CONFIG_PREFIX/bin"
-  npm install -g yarn
-  yarn install --pure-lockfile --no-progress
-  npm run build release
-}
-
-package() {
-  install -Dm644 grafana.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/grafana.conf"
-  install -Dm644 grafana.sysusers "$pkgdir/usr/lib/sysusers.d/grafana.conf"
-  install -Dm644 grafana.service 
"$pkgdir/usr/lib/systemd/system/grafana.service"
-  cd $pkgname
-  install -Dsm755 bin/grafana-server "$pkgdir/usr/bin/grafana-server"
-  install -Dsm755 bin/grafana-cli "$pkgdir/usr/bin/grafana-cli"
-  install -Dm640 -o207 -g207 conf/sample.ini "$pkgdir/etc/$pkgname.ini"
-  install -Dm644 conf/defaults.ini 
"$pkgdir/usr/share/$pkgname/conf/defaults.ini"
-  install -dm755 "$pkgdir/usr/share/grafana/"
-  cp -r vendor "$pkgdir/usr/share/grafana/"
-  cp -r public_gen "$pkgdir/usr/share/grafana/public"
-  ln -s ../../../var/lib/grafana "$pkgdir/usr/share/grafana/data"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: grafana/repos/community-x86_64/PKGBUILD (from rev 260515, 
grafana/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-25 04:35:49 UTC (rev 260516)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer
+# Contributor: Carsten Feuls 
+# Contributor: Gilles Hamel 
+
+pkgname=grafana
+pkgver=4.5.2
+pkgrel=1
+pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
+url='http://grafana.org'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc' 'freetype2' 'fontconfig')
+makedepends=('git' 'go' 'npm' 'grunt-cli' 'python2')
+backup=("etc/grafana.ini")
+source=("git+https://github.com/grafana/grafana.git#tag=v$pkgver";
+"grafana.service"
+"grafana.sysusers"
+"grafana.tmpfiles"
+   )
+install=$pkgname.install
+md5sums=('SKIP'
+ '2f1d73689923ecee92a102a65b91003a'
+ 'e991d8cdf91c1e25652cdbc51fc726c5'
+ 'b9b576d1959fc063b3399892e201488c')
+
+prepare() {
+  cd $pkgname
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename

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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 04:29:19
  Author: felixonmars
Revision: 260515

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   41 
 community-staging-x86_64/PKGBUILD |   41 
 2 files changed, 82 insertions(+)

Copied: pandoc-crossref/repos/community-staging-i686/PKGBUILD (from rev 260514, 
pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 04:29:19 UTC (rev 260515)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.2.6.0
+pkgrel=13
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname}";
+license=("GPL2")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-data-default" "haskell-data-accessor" 
"haskell-data-accessor-template"
+ "haskell-data-accessor-transformers" "haskell-mtl" "pandoc" 
"haskell-pandoc-types"
+ "haskell-roman-numerals" "haskell-syb" "haskell-utility-ht")
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('2af52b5f347b039148d5285b1277a1c3e382bf0f666d353ac593635f1bae3ef692fac7319ed0ca8c9ab33475a2bb28ae5b540d80c637eb39f8f5a22830258fc1')
+
+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}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
260514, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 04:29:19 UTC (rev 260515)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.2.6.0
+pkgrel=13
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname}";
+license=("GPL2")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-data-default" "haskell-data-accessor" 
"haskell-data-accessor-template"
+ "haskell-data-accessor-transformers" "haskell-mtl" "pandoc" 
"haskell-pandoc-types"
+ "haskell-roman-numerals" "haskell-syb" "haskell-utility-ht")
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('2af52b5f347b039148d5285b1277a1c3e382bf0f666d353ac593635f1bae3ef692fac7319ed0ca8c9ab33475a2bb28ae5b540d80c637eb39f8f5a22830258fc1')
+
+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="${pkgdi

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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 04:28:33
  Author: felixonmars
Revision: 260514

upgpkg: pandoc-crossref 0.2.6.0-13

rebuild with pandoc-types,1.17.2

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 04:26:05 UTC (rev 260513)
+++ PKGBUILD2017-09-25 04:28:33 UTC (rev 260514)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.2.6.0
-pkgrel=12
+pkgrel=13
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname}";
 license=("GPL2")


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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 04:26:05
  Author: felixonmars
Revision: 260513

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   54 
 community-staging-x86_64/PKGBUILD |   54 
 2 files changed, 108 insertions(+)

Copied: haskell-hakyll/repos/community-staging-i686/PKGBUILD (from rev 260512, 
haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 04:26:05 UTC (rev 260513)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.8.0
+pkgrel=58
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cryptohash"
+ "haskell-data-default" "haskell-fsnotify" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lrucache" "haskell-mtl" "haskell-network" 
"haskell-network-uri"
+ "haskell-optparse-applicative" "pandoc" "pandoc-citeproc" 
"haskell-parsec"
+ "haskell-random" "haskell-regex-base" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-scientific" "haskell-system-filepath" "haskell-tagsoup" 
"haskell-text"
+ "haskell-time-locale-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-app-static" "haskell-warp" "haskell-yaml")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('933645964113bbdf898366aedd11c6f26035e633b66fb01206258264a3b8857e08ea919f3284b6dfef28c32e6dc2bdd21ee85ed5e1c4c184423dfdc4a487')
+
+prepare() {
+sed -e 's/pandoc-citeproc  >= 0.10.5 && < 0.11,/pandoc-citeproc  
>= 0.10.5,/' \
+-e 's/process  >= 1.0&& < 1.6,/process  >= 
1.0,/' \
+-e 's/time >= 1.4&& < 1.8,/time >= 
1.4,/' \
+-i $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${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 \
+-fcheckexternal -fwatchserver -fpreviewserver
+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}/${_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"
+}

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
260512, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 04:26:05 UTC (rev 260513)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.8.0
+pkgrel=58
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cryptohash"
+ "haskell-data-default" "haskell-fsnotify" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lrucache" "haskell-mtl" "haskell-network" 
"haskell-network-uri"
+ "haskell-optparse-applicative" "pandoc" "pandoc-citeproc" 
"haskell-parsec"
+ "haskell-random" "haskell-regex-base" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-scientific" "haskell-system-filepath" "haskell-tagsoup" 
"haskell-text"
+ "haskell-time-locale-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-wai"
+ "haske

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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 04:25:12
  Author: felixonmars
Revision: 260512

upgpkg: haskell-hakyll 4.9.8.0-58

rebuild with pandoc-types,1.17.2

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 04:20:44 UTC (rev 260511)
+++ PKGBUILD2017-09-25 04:25:12 UTC (rev 260512)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.9.8.0
-pkgrel=57
+pkgrel=58
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll";
 license=("custom:BSD3")


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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 04:20:44
  Author: felixonmars
Revision: 260511

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   45 
 community-staging-x86_64/PKGBUILD |   45 
 2 files changed, 90 insertions(+)

Copied: pandoc-citeproc/repos/community-staging-i686/PKGBUILD (from rev 260510, 
pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 04:20:44 UTC (rev 260511)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.11.1.1
+pkgrel=4
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec" "haskell-data-default"
+ "haskell-hs-bibutils" "haskell-mtl" "haskell-old-locale" "pandoc" 
"haskell-pandoc-types"
+ "haskell-parsec" "haskell-rfc5051" "haskell-setenv" "haskell-split" 
"haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"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=('6a80256a5da439db9cd14668934ae055c8d3cb33529ff3f0621789ea8c6c9183769e21a86d472c218e9cda2050c5bc1f2aaf096911bc454c5d2666f60808c255')
+
+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 \
+-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
+}
+
+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"
+}

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
260510, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 04:20:44 UTC (rev 260511)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.11.1.1
+pkgrel=4
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec" "haskell-data-default"
+ "haskell-hs-bibutils" "haskell-mtl" "haskell-old-locale" "pandoc" 
"haskell-pandoc-types"
+ "haskell-parsec" "haskell-rfc5051" "haskell-setenv" "haskell-split" 
"haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"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=('6a80256a5da439db9cd14668934ae055c8d3cb33529ff3f0621789ea8c6c9183769e21a86d472c218e9cda2050c5bc1f2aaf096911bc454c5d2666f60808c255')
+
+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 --

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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 04:20:06
  Author: felixonmars
Revision: 260510

upgpkg: pandoc-citeproc 0.11.1.1-4

rebuild with pandoc-types,1.17.2

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 04:14:05 UTC (rev 260509)
+++ PKGBUILD2017-09-25 04:20:06 UTC (rev 260510)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.11.1.1
-pkgrel=3
+pkgrel=4
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname";
 license=("custom:BSD3")


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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 04:14:05
  Author: felixonmars
Revision: 260509

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  pandoc/repos/community-staging-i686/
  pandoc/repos/community-staging-i686/PKGBUILD
(from rev 260508, pandoc/trunk/PKGBUILD)
  pandoc/repos/community-staging-i686/ghc-8.2.1.patch
(from rev 260508, pandoc/trunk/ghc-8.2.1.patch)
  pandoc/repos/community-staging-x86_64/
  pandoc/repos/community-staging-x86_64/PKGBUILD
(from rev 260508, pandoc/trunk/PKGBUILD)
  pandoc/repos/community-staging-x86_64/ghc-8.2.1.patch
(from rev 260508, pandoc/trunk/ghc-8.2.1.patch)

--+
 community-staging-i686/PKGBUILD  |   62 ++
 community-staging-i686/ghc-8.2.1.patch   |   81 +
 community-staging-x86_64/PKGBUILD|   62 ++
 community-staging-x86_64/ghc-8.2.1.patch |   81 +
 4 files changed, 286 insertions(+)

Copied: pandoc/repos/community-staging-i686/PKGBUILD (from rev 260508, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 04:14:05 UTC (rev 260509)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=1.19.2.1
+pkgrel=115
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-http" "haskell-juicypixels" "haskell-sha" 
"haskell-aeson"
+ "haskell-base64-bytestring" "haskell-blaze-html" 
"haskell-blaze-markup" "haskell-cmark"
+ "haskell-data-default" "haskell-doctemplates" "haskell-mtl" 
"haskell-extensible-exceptions"
+ "haskell-filemanip" "haskell-haddock-library" "haskell-skylighting" 
"haskell-hslua"
+ "haskell-http-client" "haskell-syb" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-text" "haskell-texmath" "haskell-network" "haskell-old-time"
+ "haskell-pandoc-types" "haskell-parsec" "haskell-random" 
"haskell-scientific"
+ "haskell-tagsoup" "haskell-temporary" "haskell-network-uri" 
"haskell-unordered-containers"
+ "haskell-zip-archive" "haskell-vector" "haskell-xml" "haskell-yaml" 
"haskell-zlib")
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";
+ghc-8.2.1.patch)
+sha256sums=('08692f3d77bf95bb9ba3407f7af26de7c23134e7efcdafad0bdaf9050e2c7801'
+'2d28962550964540ad543833b38fee8ae8d247d2b8ec08fcef9b9879bf967846')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+patch -p1 -i ../ghc-8.2.1.patch
+sed -e 's/syb >= 0.1 && < 0.7,/syb >= 0.1,/' \
+-e 's/aeson >= 0.7.* && < 1.2,/aeson >= 0.7,/' \
+-e 's/process >= 1 && < 1.5,/process >= 1,/' \
+-e 's/time >= 1.5 && < 1.7/time >= 1.5/' \
+-e '/Build-Depends: pandoc,/a \ texmath,' \
+-i $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/${pkgbase}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-old-locale -fnetwork-uri -fhttps -f-trypandoc 
-f-embed_data_files -f-weigh-pandoc
+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}/${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"
+}

Copied: pandoc/repos/community-staging-i686/ghc-8.2.1.patch (from rev 260508, 
pandoc/trunk/ghc-8.2.1.patch)
===
--- community-staging-i686/ghc-8.2.1.patch  (rev 0)
+++ community-staging-i686/ghc-8.2.1.patch  2017-09-25 04:14:05 UTC (rev 
260509)
@@ -0,0 +1,81 @@
+From 10d91c147968d2e4d63b99b5b0342624827f416f Mon Sep 17 00:00:00 2001
+From: John MacFarlane 
+Date: Sun, 26 Mar 2017 17:22:00 +0200
+Subject: [PATCH] Use file-embed instead of hsb2hs to embed data files.
+
+I think template haskell is robust enou

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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 04:13:25
  Author: felixonmars
Revision: 260508

upgpkg: pandoc 1.19.2.1-115

rebuild with pandoc-types,1.17.2

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 04:02:54 UTC (rev 260507)
+++ PKGBUILD2017-09-25 04:13:25 UTC (rev 260508)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc
 pkgver=1.19.2.1
-pkgrel=114
+pkgrel=115
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org";
 license=("GPL")


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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 04:02:54
  Author: felixonmars
Revision: 260507

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-texmath/repos/community-staging-i686/
  haskell-texmath/repos/community-staging-i686/PKGBUILD
(from rev 260506, haskell-texmath/trunk/PKGBUILD)
  haskell-texmath/repos/community-staging-x86_64/
  haskell-texmath/repos/community-staging-x86_64/PKGBUILD
(from rev 260506, haskell-texmath/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   41 
 community-staging-x86_64/PKGBUILD |   41 
 2 files changed, 82 insertions(+)

Copied: haskell-texmath/repos/community-staging-i686/PKGBUILD (from rev 260506, 
haskell-texmath/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 04:02:54 UTC (rev 260507)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=texmath
+pkgname=haskell-texmath
+pkgver=0.9.4.2
+pkgrel=3
+pkgdesc="Conversion between formats used to represent mathematics."
+url="https://github.com/jgm/texmath";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-mtl" "haskell-network-uri" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-syb" "haskell-xml")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('fef8e9a6caf842a111a00a873c0126c0864b8251301e55bf67d7b705050fec1219a1b386232477a3bc54a3504b5c0e0b5206450115e0e01619c388761de8bcbd')
+
+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 -f-executable
+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"
+}

Copied: haskell-texmath/repos/community-staging-x86_64/PKGBUILD (from rev 
260506, haskell-texmath/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 04:02:54 UTC (rev 260507)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=texmath
+pkgname=haskell-texmath
+pkgver=0.9.4.2
+pkgrel=3
+pkgdesc="Conversion between formats used to represent mathematics."
+url="https://github.com/jgm/texmath";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-mtl" "haskell-network-uri" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-syb" "haskell-xml")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('fef8e9a6caf842a111a00a873c0126c0864b8251301e55bf67d7b705050fec1219a1b386232477a3bc54a3504b5c0e0b5206450115e0e01619c388761de8bcbd')
+
+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 -f-executable
+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-texmath/trunk (PKGBUILD)

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 04:02:14
  Author: felixonmars
Revision: 260506

upgpkg: haskell-texmath 0.9.4.2-3

rebuild with pandoc-types,1.17.2

Modified:
  haskell-texmath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 04:01:04 UTC (rev 260505)
+++ PKGBUILD2017-09-25 04:02:14 UTC (rev 260506)
@@ -5,7 +5,7 @@
 _hkgname=texmath
 pkgname=haskell-texmath
 pkgver=0.9.4.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Conversion between formats used to represent mathematics."
 url="https://github.com/jgm/texmath";
 license=("GPL")


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

2017-09-24 Thread Sébastien Luttringer
Date: Monday, September 25, 2017 @ 04:01:04
  Author: seblu
Revision: 260505

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |  148 ++---
 grafana.install  |   44 +++
 grafana.service  |   30 +-
 grafana.sysusers |2 
 grafana.tmpfiles |6 +-
 5 files changed, 115 insertions(+), 115 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-25 03:55:33 UTC (rev 260504)
+++ PKGBUILD2017-09-25 04:01:04 UTC (rev 260505)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Carsten Feuls 
-# Contributor: Gilles Hamel 
-
-pkgname=grafana
-pkgver=4.5.2
-pkgrel=1
-pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
-url='http://grafana.org'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc' 'freetype2' 'fontconfig')
-makedepends=('git' 'go' 'npm' 'grunt-cli' 'python2')
-backup=("etc/grafana.ini")
-source=("git+https://github.com/grafana/grafana.git#tag=v$pkgver";
-"grafana.service"
-"grafana.sysusers"
-"grafana.tmpfiles"
-   )
-install=$pkgname.install
-md5sums=('SKIP'
- '2f1d73689923ecee92a102a65b91003a'
- 'e991d8cdf91c1e25652cdbc51fc726c5'
- 'b9b576d1959fc063b3399892e201488c')
-
-prepare() {
-  cd $pkgname
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  :
-}
-
-build() {
-  msg2 'GOPATH setup'
-  export GOPATH="$srcdir/gopath"
-  export PATH+=":$GOPATH/bin"
-  mkdir -p "$GOPATH/src/github.com/grafana/"
-  ln -fsrT "$srcdir/grafana/" "$GOPATH/src/github.com/grafana/grafana"
-  cd "$GOPATH/src/github.com/grafana/grafana"
-
-  msg2 'building the backend'
-  go run build.go setup build
-
-  msg2 'building the frontend'
-  export NPM_CONFIG_PREFIX="$srcdir/npm"
-  export PATH+=":$NPM_CONFIG_PREFIX/bin"
-  npm install -g yarn
-  yarn install --pure-lockfile --no-progress
-  npm run build release
-}
-
-package() {
-  install -Dm644 grafana.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/grafana.conf"
-  install -Dm644 grafana.sysusers "$pkgdir/usr/lib/sysusers.d/grafana.conf"
-  install -Dm644 grafana.service 
"$pkgdir/usr/lib/systemd/system/grafana.service"
-  cd $pkgname
-  install -Dsm755 bin/grafana-server "$pkgdir/usr/bin/grafana-server"
-  install -Dsm755 bin/grafana-cli "$pkgdir/usr/bin/grafana-cli"
-  install -Dm640 -o207 -g207 conf/sample.ini "$pkgdir/etc/$pkgname.ini"
-  install -Dm644 conf/defaults.ini 
"$pkgdir/usr/share/$pkgname/conf/defaults.ini"
-  install -dm755 "$pkgdir/usr/share/grafana/"
-  cp -r vendor "$pkgdir/usr/share/grafana/"
-  cp -r public_gen "$pkgdir/usr/share/grafana/public"
-  ln -s ../../../var/lib/grafana "$pkgdir/usr/share/grafana/data"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: grafana/repos/community-x86_64/PKGBUILD (from rev 260504, 
grafana/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-25 04:01:04 UTC (rev 260505)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer
+# Contributor: Carsten Feuls 
+# Contributor: Gilles Hamel 
+
+pkgname=grafana
+pkgver=4.5.2
+pkgrel=1
+pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
+url='http://grafana.org'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc' 'freetype2' 'fontconfig')
+makedepends=('git' 'go' 'npm' 'grunt-cli' 'python2')
+backup=("etc/grafana.ini")
+source=("git+https://github.com/grafana/grafana.git#tag=v$pkgver";
+"grafana.service"
+"grafana.sysusers"
+"grafana.tmpfiles"
+   )
+install=$pkgname.install
+md5sums=('SKIP'
+ '2f1d73689923ecee92a102a65b91003a'
+ 'e991d8cdf91c1e25652cdbc51fc726c5'
+ 'b9b576d1959fc063b3399892e201488c')
+
+prepare() {
+  cd $pkgname
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename

[arch-commits] Commit in haskell-pandoc-types/repos (4 files)

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 03:55:33
  Author: felixonmars
Revision: 260504

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-pandoc-types/repos/community-staging-i686/
  haskell-pandoc-types/repos/community-staging-i686/PKGBUILD
(from rev 260503, haskell-pandoc-types/trunk/PKGBUILD)
  haskell-pandoc-types/repos/community-staging-x86_64/
  haskell-pandoc-types/repos/community-staging-x86_64/PKGBUILD
(from rev 260503, haskell-pandoc-types/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   39 
 community-staging-x86_64/PKGBUILD |   39 
 2 files changed, 78 insertions(+)

Copied: haskell-pandoc-types/repos/community-staging-i686/PKGBUILD (from rev 
260503, haskell-pandoc-types/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 03:55:33 UTC (rev 260504)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pandoc-types
+pkgname=haskell-pandoc-types
+pkgver=1.17.2
+pkgrel=1
+pkgdesc="Types for representing a structured document"
+url="http://johnmacfarlane.net/pandoc";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-quickcheck" "haskell-syb")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('49c1a4f6cdb1be825d77ef84d39358f6899744ee28ae1bef6c178125332afadaca87e8082f3a0fc5c3da249f017b943cce90b6bf1bad19bac0dac4674bab5716')
+
+build() {
+cd "${srcdir}/${_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 "${srcdir}/${_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"
+}

Copied: haskell-pandoc-types/repos/community-staging-x86_64/PKGBUILD (from rev 
260503, haskell-pandoc-types/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 03:55:33 UTC (rev 260504)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pandoc-types
+pkgname=haskell-pandoc-types
+pkgver=1.17.2
+pkgrel=1
+pkgdesc="Types for representing a structured document"
+url="http://johnmacfarlane.net/pandoc";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-quickcheck" "haskell-syb")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('49c1a4f6cdb1be825d77ef84d39358f6899744ee28ae1bef6c178125332afadaca87e8082f3a0fc5c3da249f017b943cce90b6bf1bad19bac0dac4674bab5716')
+
+build() {
+cd "${srcdir}/${_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 "${srcdir}/${_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-pandoc-types/trunk (PKGBUILD)

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 03:54:47
  Author: felixonmars
Revision: 260503

upgpkg: haskell-pandoc-types 1.17.2-1

rebuild with pandoc-types,1.17.2

Modified:
  haskell-pandoc-types/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 01:58:15 UTC (rev 260502)
+++ PKGBUILD2017-09-25 03:54:47 UTC (rev 260503)
@@ -4,8 +4,8 @@
 
 _hkgname=pandoc-types
 pkgname=haskell-pandoc-types
-pkgver=1.17.1
-pkgrel=3
+pkgver=1.17.2
+pkgrel=1
 pkgdesc="Types for representing a structured document"
 url="http://johnmacfarlane.net/pandoc";
 license=("custom:BSD3")
@@ -13,7 +13,7 @@
 depends=('ghc-libs' "haskell-aeson" "haskell-quickcheck" "haskell-syb")
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
-sha512sums=('60490c4beaf790bc579230e160f6664399b2e9c038e9530ee6295b5146f6f9786ad60e58f5ab1c85bf5adc08e0c417ec0a3153f8324ce84a84e6db76377380d0')
+sha512sums=('49c1a4f6cdb1be825d77ef84d39358f6899744ee28ae1bef6c178125332afadaca87e8082f3a0fc5c3da249f017b943cce90b6bf1bad19bac0dac4674bab5716')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:57:07
  Author: felixonmars
Revision: 260488

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-i686/
  tamarin-prover/repos/community-staging-i686/PKGBUILD
(from rev 260487, tamarin-prover/trunk/PKGBUILD)
  tamarin-prover/repos/community-staging-i686/binary-orphans-0.1.8.0.patch
(from rev 260487, tamarin-prover/trunk/binary-orphans-0.1.8.0.patch)
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 260487, tamarin-prover/trunk/PKGBUILD)
  tamarin-prover/repos/community-staging-x86_64/binary-orphans-0.1.8.0.patch
(from rev 260487, tamarin-prover/trunk/binary-orphans-0.1.8.0.patch)

---+
 community-staging-i686/PKGBUILD   |   54 
 community-staging-i686/binary-orphans-0.1.8.0.patch   |   16 
 community-staging-x86_64/PKGBUILD |   54 
 community-staging-x86_64/binary-orphans-0.1.8.0.patch |   16 
 4 files changed, 140 insertions(+)

Copied: tamarin-prover/repos/community-staging-i686/PKGBUILD (from rev 260487, 
tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 01:57:07 UTC (rev 260488)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.2.2
+pkgrel=21
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="http://tamarin-prover.github.io";
+license=("GPL")
+arch=('i686' '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-mtl" "haskell-resourcet" "haskell-safe"
+ "haskell-shakespeare" "haskell-text" "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";
+binary-orphans-0.1.8.0.patch)
+sha256sums=('f9b2d3acc01b89f71d2b246a6b3010ebab71e4fe309b3be8a8eac213422b43de'
+'d2f700f4d5b0a3aaf239139bc4abba85acdc2ab86ae3ff7fe345b95679998011')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+patch -p1 -i ../binary-orphans-0.1.8.0.patch
+}
+
+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/filetype.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
+}

Copied: 
tamarin-prover/repos/community-staging-i686/binary-orphans-0.1.8.0.patch (from 
rev 260487, tamarin-prover/trunk/binary-orphans-0.1.8.0.patch)
===
--- community-staging-i686/binary-orphans-0.1.8.0.patch 
(rev 0)
+++ community-staging-i686/binary-orphans-0.1.8.0.patch 2017-09-25 01:57:07 UTC 
(rev 260488)
@@ -0,0 +1,16 @@
+diff --git a/src/Web/Types.hs b/src/Web/Types.hs
+index 8efe669..95e75f3 100644
+--- a/src/Web/Types.hs
 b/src/Web/Types.hs
+@@ -79,11 +79,6 @@ import   Yesod.Static
+ import   Theory
+ 
+ 
+--- | Derived Instances to fix things
+-instance Bin.Binary ZonedTime where
+-  get = liftM2 ZonedTime Bin.get Bin.get
+-  put (ZonedTime d tod) = Bin.put d >> Bin.put tod
+-
+ --
+ -- Types
+ --

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
260487, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 01:57:07 UTC (rev 260488)

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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:56:35
  Author: felixonmars
Revision: 260487

upgpkg: tamarin-prover 1.2.2-21

rebuild with cmdargs,0.10.18

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 01:53:18 UTC (rev 260486)
+++ PKGBUILD2017-09-25 01:56:35 UTC (rev 260487)
@@ -4,7 +4,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.2.2
-pkgrel=20
+pkgrel=21
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="http://tamarin-prover.github.io";
 license=("GPL")


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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:53:18
  Author: felixonmars
Revision: 260486

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-x86_64/PKGBUILD |   44 
 2 files changed, 88 insertions(+)

Copied: hoogle/repos/community-staging-i686/PKGBUILD (from rev 260485, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 01:53:18 UTC (rev 260486)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.13
+pkgrel=21
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-quickcheck" "haskell-aeson" "haskell-cmdargs" 
"haskell-conduit"
+ "haskell-conduit-extra" "haskell-connection" "haskell-extra" 
"haskell-src-exts"
+ "haskell-http-conduit" "haskell-http-types" "haskell-js-flot" 
"haskell-js-jquery"
+ "haskell-mmap" "haskell-network" "haskell-network-uri" 
"haskell-old-locale"
+ "haskell-process-extras" "haskell-resourcet" "haskell-tar" 
"haskell-text"
+ "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=('9b5925b39b19000f312a700bf46a157efd028d2f2748ac03efe1b703659a40535dd7259dfa212d534e20358c00143df59b8e6198bfa064847559bec0c64d41b0')
+
+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"
+}

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 260485, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 01:53:18 UTC (rev 260486)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.13
+pkgrel=21
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-quickcheck" "haskell-aeson" "haskell-cmdargs" 
"haskell-conduit"
+ "haskell-conduit-extra" "haskell-connection" "haskell-extra" 
"haskell-src-exts"
+ "haskell-http-conduit" "haskell-http-types" "haskell-js-flot" 
"haskell-js-jquery"
+ "haskell-mmap" "haskell-network" "haskell-network-uri" 
"haskell-old-locale"
+ "haskell-process-extras" "haskell-resourcet" "haskell-tar" 
"haskell-text"
+ "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=('9b5925b39b19000f312a700bf46a157efd028d2f2748ac03efe1b703659a40535dd7259dfa212d534e20358c00143df59b8e6198bfa064847559bec0c64d41b0')
+
+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
+   

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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:52:46
  Author: felixonmars
Revision: 260485

upgpkg: hoogle 5.0.13-21

rebuild with cmdargs,0.10.18

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 01:49:54 UTC (rev 260484)
+++ PKGBUILD2017-09-25 01:52:46 UTC (rev 260485)
@@ -4,7 +4,7 @@
 
 pkgname=hoogle
 pkgver=5.0.13
-pkgrel=20
+pkgrel=21
 pkgdesc="Haskell API Search"
 url="http://www.haskell.org/hoogle/";
 license=("custom:BSD3")


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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:49:54
  Author: felixonmars
Revision: 260484

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  hlint/repos/community-staging-i686/
  hlint/repos/community-staging-i686/PKGBUILD
(from rev 260483, hlint/trunk/PKGBUILD)
  hlint/repos/community-staging-x86_64/
  hlint/repos/community-staging-x86_64/PKGBUILD
(from rev 260483, hlint/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   41 
 community-staging-x86_64/PKGBUILD |   41 
 2 files changed, 82 insertions(+)

Copied: hlint/repos/community-staging-i686/PKGBUILD (from rev 260483, 
hlint/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 01:49:54 UTC (rev 260484)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hlint
+pkgver=2.0.9
+pkgrel=21
+pkgdesc="Source code suggestions"
+url="http://community.haskell.org/~ndm/hlint/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-ansi-terminal" "haskell-cmdargs" "haskell-cpphs" 
"haskell-extra"
+ "haskell-src-exts" "haskell-hscolour" "haskell-uniplate" 
"haskell-refact" "haskell-text"
+ "haskell-unordered-containers" "haskell-vector" "haskell-yaml")
+conflicts=('haskell-hlint')
+replaces=('haskell-hlint')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('f2082eec31b73c2c1b1f7ce246b15178d00c8e6f9840619fc11c545cde4120713c274236c85993e217c17886cd824276cf2738c32aeaf67af9c8b4c147c09cf7')
+
+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 \
+-fgpl -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
+}
+
+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}/COPYING.BSD3"
+}

Copied: hlint/repos/community-staging-x86_64/PKGBUILD (from rev 260483, 
hlint/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 01:49:54 UTC (rev 260484)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hlint
+pkgver=2.0.9
+pkgrel=21
+pkgdesc="Source code suggestions"
+url="http://community.haskell.org/~ndm/hlint/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-ansi-terminal" "haskell-cmdargs" "haskell-cpphs" 
"haskell-extra"
+ "haskell-src-exts" "haskell-hscolour" "haskell-uniplate" 
"haskell-refact" "haskell-text"
+ "haskell-unordered-containers" "haskell-vector" "haskell-yaml")
+conflicts=('haskell-hlint')
+replaces=('haskell-hlint')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('f2082eec31b73c2c1b1f7ce246b15178d00c8e6f9840619fc11c545cde4120713c274236c85993e217c17886cd824276cf2738c32aeaf67af9c8b4c147c09cf7')
+
+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 \
+-fgpl -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
+}
+
+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 "LI

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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:49:20
  Author: felixonmars
Revision: 260483

upgpkg: hlint 2.0.9-21

rebuild with cmdargs,0.10.18

Modified:
  hlint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 01:47:04 UTC (rev 260482)
+++ PKGBUILD2017-09-25 01:49:20 UTC (rev 260483)
@@ -4,7 +4,7 @@
 
 pkgname=hlint
 pkgver=2.0.9
-pkgrel=20
+pkgrel=21
 pkgdesc="Source code suggestions"
 url="http://community.haskell.org/~ndm/hlint/";
 license=("custom:BSD3")


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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:47:04
  Author: felixonmars
Revision: 260482

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   47 
 community-staging-x86_64/PKGBUILD |   47 
 2 files changed, 94 insertions(+)

Copied: hledger-web/repos/community-staging-i686/PKGBUILD (from rev 260481, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 01:47:04 UTC (rev 260482)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.3.2
+pkgrel=2
+pkgdesc="Web interface for the hledger accounting tool"
+url="http://hledger.org";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'hledger' "haskell-hledger-lib" "haskell-base-compat" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-clientsession" "haskell-cmdargs" 
"haskell-data-default"
+ "haskell-hjsmin" "haskell-http-conduit" "haskell-http-client" 
"haskell-hunit"
+ "haskell-conduit-extra" "haskell-safe" "haskell-shakespeare" 
"haskell-text" "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" "haskell-mtl")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('cfba9a6f73d8489416b52eed2a881cf756dfb6d1ae11188baf4149f3a9931ea67d8656b8dc317a628d7add7fcf58aaa0e9edb8e2eef09b391558072473434e8d')
+
+prepare() {
+sed -e 's/megaparsec >=5.0 && < 5.3/megaparsec >=5.0 \&\& < 5.4/' \
+-i ${pkgname}-${pkgver}/${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" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -f-oldtime -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
+}
+
+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"
+}

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 260481, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 01:47:04 UTC (rev 260482)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.3.2
+pkgrel=2
+pkgdesc="Web interface for the hledger accounting tool"
+url="http://hledger.org";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'hledger' "haskell-hledger-lib" "haskell-base-compat" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-clientsession" "haskell-cmdargs" 
"haskell-data-default"
+ "haskell-hjsmin" "haskell-http-conduit" "haskell-http-client" 
"haskell-hunit"
+ "haskell-conduit-extra" "haskell-safe" "haskell-shakespeare" 
"haskell-text" "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" "haskell-mtl")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('cfba9a6f73d8489416b52eed2a881cf756dfb6d1ae11188baf4149f3a9931ea67d8656b8dc317a628d7add7fcf58aaa0e9edb8e2eef09b391558072473434e8d')
+
+prepare() {
+sed -e 's/megaparsec >=5.0 && < 5.3/megaparsec >=5.0 \&\& < 5.4/' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup co

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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:46:32
  Author: felixonmars
Revision: 260481

upgpkg: hledger-web 1.3.2-2

rebuild with cmdargs,0.10.18

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 01:43:47 UTC (rev 260480)
+++ PKGBUILD2017-09-25 01:46:32 UTC (rev 260481)
@@ -4,7 +4,7 @@
 
 pkgname=hledger-web
 pkgver=1.3.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org";
 license=("GPL")


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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:43:15
  Author: felixonmars
Revision: 260479

upgpkg: hledger-ui 1.3.1-9

rebuild with cmdargs,0.10.18

Modified:
  hledger-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 01:41:28 UTC (rev 260478)
+++ PKGBUILD2017-09-25 01:43:15 UTC (rev 260479)
@@ -4,7 +4,7 @@
 
 pkgname=hledger-ui
 pkgver=1.3.1
-pkgrel=8
+pkgrel=9
 pkgdesc="Curses-style user interface for the hledger accounting tool"
 url="http://hledger.org";
 license=("GPL")


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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:43:47
  Author: felixonmars
Revision: 260480

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  hledger-ui/repos/community-staging-i686/
  hledger-ui/repos/community-staging-i686/PKGBUILD
(from rev 260479, hledger-ui/trunk/PKGBUILD)
  hledger-ui/repos/community-staging-x86_64/
  hledger-ui/repos/community-staging-x86_64/PKGBUILD
(from rev 260479, hledger-ui/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   40 
 community-staging-x86_64/PKGBUILD |   40 
 2 files changed, 80 insertions(+)

Copied: hledger-ui/repos/community-staging-i686/PKGBUILD (from rev 260479, 
hledger-ui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 01:43:47 UTC (rev 260480)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-ui
+pkgver=1.3.1
+pkgrel=9
+pkgdesc="Curses-style user interface for the hledger accounting tool"
+url="http://hledger.org";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'hledger' "haskell-hledger-lib" "haskell-ansi-terminal" 
"haskell-async"
+ "haskell-base-compat" "haskell-cmdargs" "haskell-data-default" 
"haskell-fsnotify"
+ "haskell-hunit" "haskell-microlens" "haskell-microlens-platform" 
"haskell-megaparsec"
+ "haskell-pretty-show" "haskell-safe" "haskell-split" "haskell-text" 
"haskell-text-zipper"
+ "haskell-vector" "haskell-brick" "haskell-vty")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('2990e46739d1831a3848cb394133bfb676ee7cc0ef3fbd1271915dfc984a192544bbc3f3a594f820f4cff0a5935d682579979c5b57eeae4e16ec58edeaacf24e')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-e 's/, vty >= 5.5 && < 5.16/, vty >= 5.5/' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+-f-oldtime -fthreaded
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 260479, 
hledger-ui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 01:43:47 UTC (rev 260480)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-ui
+pkgver=1.3.1
+pkgrel=9
+pkgdesc="Curses-style user interface for the hledger accounting tool"
+url="http://hledger.org";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'hledger' "haskell-hledger-lib" "haskell-ansi-terminal" 
"haskell-async"
+ "haskell-base-compat" "haskell-cmdargs" "haskell-data-default" 
"haskell-fsnotify"
+ "haskell-hunit" "haskell-microlens" "haskell-microlens-platform" 
"haskell-megaparsec"
+ "haskell-pretty-show" "haskell-safe" "haskell-split" "haskell-text" 
"haskell-text-zipper"
+ "haskell-vector" "haskell-brick" "haskell-vty")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('2990e46739d1831a3848cb394133bfb676ee7cc0ef3fbd1271915dfc984a192544bbc3f3a594f820f4cff0a5935d682579979c5b57eeae4e16ec58edeaacf24e')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-e 's/, vty >= 5.5 && < 5.16/, vty >= 5.5/' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+-f-oldtime -fthreaded
+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 hledger-api/repos (4 files)

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:41:28
  Author: felixonmars
Revision: 260478

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   36 
 community-staging-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: hledger-api/repos/community-staging-i686/PKGBUILD (from rev 260477, 
hledger-api/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 01:41:28 UTC (rev 260478)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-api
+pkgver=1.3.1
+pkgrel=13
+pkgdesc="Web API server for the hledger accounting tool"
+url="http://hledger.org";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'hledger' "haskell-hledger-lib" "haskell-aeson" 
"haskell-decimal" "haskell-docopt"
+ "haskell-either" "haskell-microlens" "haskell-microlens-platform" 
"haskell-safe"
+ "haskell-servant-server" "haskell-servant-swagger" "haskell-swagger2" 
"haskell-text"
+ "haskell-wai" "haskell-wai-extra" "haskell-warp")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('4425cfa786b6d6b7db9a48c1d816cff313bd1258c83b882aadd2fd53fe9fa3986158a6254761a787dd993528454f04f31aaad53bbed6a347c6f048d96ded0996')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i 's/instance ToSchema Price/instance ToSchema Price where\n  
declareNamedSchema = genericDeclareNamedSchemaUnrestricted 
defaultSchemaOptions/' hledger-api.hs
+}
+
+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"
+}

Copied: hledger-api/repos/community-staging-x86_64/PKGBUILD (from rev 260477, 
hledger-api/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 01:41:28 UTC (rev 260478)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-api
+pkgver=1.3.1
+pkgrel=13
+pkgdesc="Web API server for the hledger accounting tool"
+url="http://hledger.org";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'hledger' "haskell-hledger-lib" "haskell-aeson" 
"haskell-decimal" "haskell-docopt"
+ "haskell-either" "haskell-microlens" "haskell-microlens-platform" 
"haskell-safe"
+ "haskell-servant-server" "haskell-servant-swagger" "haskell-swagger2" 
"haskell-text"
+ "haskell-wai" "haskell-wai-extra" "haskell-warp")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('4425cfa786b6d6b7db9a48c1d816cff313bd1258c83b882aadd2fd53fe9fa3986158a6254761a787dd993528454f04f31aaad53bbed6a347c6f048d96ded0996')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i 's/instance ToSchema Price/instance ToSchema Price where\n  
declareNamedSchema = genericDeclareNamedSchemaUnrestricted 
defaultSchemaOptions/' hledger-api.hs
+}
+
+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 hledger-api/trunk (PKGBUILD)

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:40:38
  Author: felixonmars
Revision: 260477

upgpkg: hledger-api 1.3.1-13

rebuild with cmdargs,0.10.18

Modified:
  hledger-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 01:38:06 UTC (rev 260476)
+++ PKGBUILD2017-09-25 01:40:38 UTC (rev 260477)
@@ -4,7 +4,7 @@
 
 pkgname=hledger-api
 pkgver=1.3.1
-pkgrel=12
+pkgrel=13
 pkgdesc="Web API server for the hledger accounting tool"
 url="http://hledger.org";
 license=("GPL")


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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:38:06
  Author: felixonmars
Revision: 260476

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   47 
 community-staging-x86_64/PKGBUILD |   47 
 2 files changed, 94 insertions(+)

Copied: hledger/repos/community-staging-i686/PKGBUILD (from rev 260475, 
hledger/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 01:38:06 UTC (rev 260476)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger
+pkgver=1.3.1
+pkgrel=7
+pkgdesc="Command-line interface for the hledger accounting tool"
+url="http://hledger.org";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-ansi-terminal" "haskell-base-compat" 
"haskell-file-embed" "haskell-here"
+ "haskell-pretty-show" "haskell-temporary" "haskell-tabular" 
"haskell-hledger-lib"
+ "haskell-unordered-containers" "haskell-cmdargs" "haskell-csv" 
"haskell-data-default"
+ "haskell-hashable" "haskell-hunit" "haskell-mtl" "haskell-old-time" 
"haskell-megaparsec"
+ "haskell-regex-tdfa" "haskell-safe" "haskell-split" "haskell-text" 
"haskell-utf8-string"
+ "haskell-wizards" "haskell-shakespeare")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('71b1e4f75c582ada81487ac8a69a120d7c7d43510692600c833f546839faf4dbb2dc1525736688e421308e80ef5276eb95ce328f51453bb272aed2cd841fc070')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${pkgname}-${pkgver}/${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" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-oldtime -fterminfo -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
+}
+
+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"
+}

Copied: hledger/repos/community-staging-x86_64/PKGBUILD (from rev 260475, 
hledger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 01:38:06 UTC (rev 260476)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger
+pkgver=1.3.1
+pkgrel=7
+pkgdesc="Command-line interface for the hledger accounting tool"
+url="http://hledger.org";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-ansi-terminal" "haskell-base-compat" 
"haskell-file-embed" "haskell-here"
+ "haskell-pretty-show" "haskell-temporary" "haskell-tabular" 
"haskell-hledger-lib"
+ "haskell-unordered-containers" "haskell-cmdargs" "haskell-csv" 
"haskell-data-default"
+ "haskell-hashable" "haskell-hunit" "haskell-mtl" "haskell-old-time" 
"haskell-megaparsec"
+ "haskell-regex-tdfa" "haskell-safe" "haskell-split" "haskell-text" 
"haskell-utf8-string"
+ "haskell-wizards" "haskell-shakespeare")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('71b1e4f75c582ada81487ac8a69a120d7c7d43510692600c833f546839faf4dbb2dc1525736688e421308e80ef5276eb95ce328f51453bb272aed2cd841fc070')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${pkgname}-${pkgver}/${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" \
+--dynlibdir=/usr/lib --libsubdir=\$compile

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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:37:35
  Author: felixonmars
Revision: 260475

upgpkg: hledger 1.3.1-7

rebuild with cmdargs,0.10.18

Modified:
  hledger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 01:35:30 UTC (rev 260474)
+++ PKGBUILD2017-09-25 01:37:35 UTC (rev 260475)
@@ -4,7 +4,7 @@
 
 pkgname=hledger
 pkgver=1.3.1
-pkgrel=6
+pkgrel=7
 pkgdesc="Command-line interface for the hledger accounting tool"
 url="http://hledger.org";
 license=("GPL")


[arch-commits] Commit in haskell-hledger-lib/repos (4 files)

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:35:30
  Author: felixonmars
Revision: 260474

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-hledger-lib/repos/community-staging-i686/
  haskell-hledger-lib/repos/community-staging-i686/PKGBUILD
(from rev 260473, haskell-hledger-lib/trunk/PKGBUILD)
  haskell-hledger-lib/repos/community-staging-x86_64/
  haskell-hledger-lib/repos/community-staging-x86_64/PKGBUILD
(from rev 260473, haskell-hledger-lib/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   50 
 community-staging-x86_64/PKGBUILD |   50 
 2 files changed, 100 insertions(+)

Copied: haskell-hledger-lib/repos/community-staging-i686/PKGBUILD (from rev 
260473, haskell-hledger-lib/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 01:35:30 UTC (rev 260474)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hledger-lib
+pkgname=haskell-hledger-lib
+pkgver=1.3.2
+pkgrel=4
+pkgdesc="Core data types, parsers and functionality for the hledger accounting 
tools"
+url="http://hledger.org";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-base-compat' 
'haskell-blaze-markup'
+ 'haskell-cmdargs' 'haskell-csv' 'haskell-data-default' 
'haskell-decimal'
+ 'haskell-hashtables' 'haskell-megaparsec' 'haskell-mtl' 
'haskell-old-time'
+ 'haskell-pretty-show' 'haskell-regex-tdfa' 'haskell-safe' 
'haskell-split' 'haskell-text'
+ 'haskell-uglymemo' 'haskell-utf8-string' 'haskell-hunit' 
'haskell-parsec'
+ 'haskell-semigroups')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('f03a39f183263a9e2a4f46c148ed8fe8357c5731b6bde385655b0f7f252e4a1422c2ac547d9f8ffd0f046fd12f6195004d8dea3de248c565561bd02a07f005e7')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_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 \
+-f-oldtime
+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}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-hledger-lib/repos/community-staging-x86_64/PKGBUILD (from rev 
260473, haskell-hledger-lib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 01:35:30 UTC (rev 260474)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hledger-lib
+pkgname=haskell-hledger-lib
+pkgver=1.3.2
+pkgrel=4
+pkgdesc="Core data types, parsers and functionality for the hledger accounting 
tools"
+url="http://hledger.org";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-base-compat' 
'haskell-blaze-markup'
+ 'haskell-cmdargs' 'haskell-csv' 'haskell-data-default' 
'haskell-decimal'
+ 'haskell-hashtables' 'haskell-megaparsec' 'haskell-mtl' 
'haskell-old-time'
+ 'haskell-pretty-show' 'haskell-regex-tdfa' 'haskell-safe' 
'haskell-split' 'haskell-text'
+ 'haskell-uglymemo' 'haskell-utf8-string' 'haskell-hunit' 
'haskell-parsec'
+ 'haskell-semigroups')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('f03a39f183263a9e2a4f46c148ed8fe8357c5731b6bde385655b0f7f252e4a1422c2ac547d9f8ffd0f046fd12f6195004d8dea3de248c565561bd02a07f005e7')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+  

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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:34:56
  Author: felixonmars
Revision: 260473

upgpkg: haskell-hledger-lib 1.3.2-4

rebuild with cmdargs,0.10.18

Modified:
  haskell-hledger-lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 01:30:39 UTC (rev 260472)
+++ PKGBUILD2017-09-25 01:34:56 UTC (rev 260473)
@@ -5,7 +5,7 @@
 _hkgname=hledger-lib
 pkgname=haskell-hledger-lib
 pkgver=1.3.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Core data types, parsers and functionality for the hledger accounting 
tools"
 url="http://hledger.org";
 license=("GPL")


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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:30:39
  Author: felixonmars
Revision: 260472

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  cgrep/repos/community-staging-i686/
  cgrep/repos/community-staging-i686/PKGBUILD
(from rev 260471, cgrep/trunk/PKGBUILD)
  cgrep/repos/community-staging-x86_64/
  cgrep/repos/community-staging-x86_64/PKGBUILD
(from rev 260471, cgrep/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   31 +++
 community-staging-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: cgrep/repos/community-staging-i686/PKGBUILD (from rev 260471, 
cgrep/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 01:30:39 UTC (rev 260472)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=cgrep
+pkgver=6.6.17
+pkgrel=19
+pkgdesc="A context-aware grep for source codes"
+url="http://awgn.github.io/cgrep/";
+license=("GPL2")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-ansi-terminal" "haskell-async" "haskell-cmdargs" 
"haskell-dlist"
+ "haskell-either" "haskell-mtl" "haskell-regex-base" 
"haskell-regex-pcre"
+ "haskell-regex-posix" "haskell-safe" "haskell-split" "haskell-stm" 
"haskell-stringsearch"
+ "haskell-unix-compat" "haskell-unicode-show" 
"haskell-unordered-containers"
+ "haskell-utf8-string")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('382649e70a112614ab270fb287cf289572411b33f3d89f72b855bd0aa515ee17d7589f019446b3cdd5024b4cbde4272c955520abe0bcf7f92890f575a937635d')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+}

Copied: cgrep/repos/community-staging-x86_64/PKGBUILD (from rev 260471, 
cgrep/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 01:30:39 UTC (rev 260472)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=cgrep
+pkgver=6.6.17
+pkgrel=19
+pkgdesc="A context-aware grep for source codes"
+url="http://awgn.github.io/cgrep/";
+license=("GPL2")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-ansi-terminal" "haskell-async" "haskell-cmdargs" 
"haskell-dlist"
+ "haskell-either" "haskell-mtl" "haskell-regex-base" 
"haskell-regex-pcre"
+ "haskell-regex-posix" "haskell-safe" "haskell-split" "haskell-stm" 
"haskell-stringsearch"
+ "haskell-unix-compat" "haskell-unicode-show" 
"haskell-unordered-containers"
+ "haskell-utf8-string")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('382649e70a112614ab270fb287cf289572411b33f3d89f72b855bd0aa515ee17d7589f019446b3cdd5024b4cbde4272c955520abe0bcf7f92890f575a937635d')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+}


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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:30:04
  Author: felixonmars
Revision: 260471

upgpkg: cgrep 6.6.17-19

rebuild with cmdargs,0.10.18

Modified:
  cgrep/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 01:28:08 UTC (rev 260470)
+++ PKGBUILD2017-09-25 01:30:04 UTC (rev 260471)
@@ -4,7 +4,7 @@
 
 pkgname=cgrep
 pkgver=6.6.17
-pkgrel=18
+pkgrel=19
 pkgdesc="A context-aware grep for source codes"
 url="http://awgn.github.io/cgrep/";
 license=("GPL2")


[arch-commits] Commit in haskell-tamarin-prover-theory/repos (4 files)

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:28:08
  Author: felixonmars
Revision: 260470

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-tamarin-prover-theory/repos/community-staging-i686/
  haskell-tamarin-prover-theory/repos/community-staging-i686/PKGBUILD
(from rev 260469, haskell-tamarin-prover-theory/trunk/PKGBUILD)
  haskell-tamarin-prover-theory/repos/community-staging-x86_64/
  haskell-tamarin-prover-theory/repos/community-staging-x86_64/PKGBUILD
(from rev 260469, haskell-tamarin-prover-theory/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   41 
 community-staging-x86_64/PKGBUILD |   41 
 2 files changed, 82 insertions(+)

Copied: haskell-tamarin-prover-theory/repos/community-staging-i686/PKGBUILD 
(from rev 260469, haskell-tamarin-prover-theory/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 01:28:08 UTC (rev 260470)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tamarin-prover-theory
+pkgname=haskell-tamarin-prover-theory
+pkgver=1.2.2
+pkgrel=6
+pkgdesc="Security protocol types and constraint solver library for the tamarin 
prover"
+url="http://www.infsec.ethz.ch/research/software/tamarin";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-dlist' 
'haskell-fclabels'
+ 'haskell-mtl' 'haskell-parallel' 'haskell-parsec' 'haskell-safe' 
'haskell-text'
+ 'haskell-uniplate' 'haskell-tamarin-prover-utils' 
'haskell-tamarin-prover-term')
+makedepends=('ghc')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz";)
+sha512sums=('f61fc4f601f5abf865b41c9b3ee3607b20f5e44b2d80f8e5a32986bf7d301b0e50479c4b473e5e478f87388491671b8180a8ee0db0d903b3abd2478e7dc9ce60')
+
+build() {
+cd "${srcdir}/tamarin-prover-${pkgver}/lib/theory"
+
+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
+# haddock failed to generate
+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}/tamarin-prover-${pkgver}/lib/theory"
+
+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"
+}

Copied: haskell-tamarin-prover-theory/repos/community-staging-x86_64/PKGBUILD 
(from rev 260469, haskell-tamarin-prover-theory/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 01:28:08 UTC (rev 260470)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tamarin-prover-theory
+pkgname=haskell-tamarin-prover-theory
+pkgver=1.2.2
+pkgrel=6
+pkgdesc="Security protocol types and constraint solver library for the tamarin 
prover"
+url="http://www.infsec.ethz.ch/research/software/tamarin";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-dlist' 
'haskell-fclabels'
+ 'haskell-mtl' 'haskell-parallel' 'haskell-parsec' 'haskell-safe' 
'haskell-text'
+ 'haskell-uniplate' 'haskell-tamarin-prover-utils' 
'haskell-tamarin-prover-term')
+makedepends=('ghc')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz";)
+sha512sums=('f61fc4f601f5abf865b41c9b3ee3607b20f5e44b2d80f8e5a32986bf7d301b0e50479c4b473e5e478f87388491671b8180a8ee0db0d903b3abd2478e7dc9ce60')
+
+build() {
+cd "${srcdir}/tamarin-prover-${pkgver}/lib/theory"
+
+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
+# haddock failed to generate
+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
+}
+
+pa

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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:27:35
  Author: felixonmars
Revision: 260469

upgpkg: haskell-tamarin-prover-theory 1.2.2-6

rebuild with cmdargs,0.10.18

Modified:
  haskell-tamarin-prover-theory/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 01:21:48 UTC (rev 260468)
+++ PKGBUILD2017-09-25 01:27:35 UTC (rev 260469)
@@ -5,7 +5,7 @@
 _hkgname=tamarin-prover-theory
 pkgname=haskell-tamarin-prover-theory
 pkgver=1.2.2
-pkgrel=5
+pkgrel=6
 pkgdesc="Security protocol types and constraint solver library for the tamarin 
prover"
 url="http://www.infsec.ethz.ch/research/software/tamarin";
 license=("GPL")


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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:21:48
  Author: felixonmars
Revision: 260468

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   54 
 community-staging-x86_64/PKGBUILD |   54 
 2 files changed, 108 insertions(+)

Copied: haskell-hakyll/repos/community-staging-i686/PKGBUILD (from rev 260467, 
haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 01:21:48 UTC (rev 260468)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.8.0
+pkgrel=57
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cryptohash"
+ "haskell-data-default" "haskell-fsnotify" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lrucache" "haskell-mtl" "haskell-network" 
"haskell-network-uri"
+ "haskell-optparse-applicative" "pandoc" "pandoc-citeproc" 
"haskell-parsec"
+ "haskell-random" "haskell-regex-base" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-scientific" "haskell-system-filepath" "haskell-tagsoup" 
"haskell-text"
+ "haskell-time-locale-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-app-static" "haskell-warp" "haskell-yaml")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('933645964113bbdf898366aedd11c6f26035e633b66fb01206258264a3b8857e08ea919f3284b6dfef28c32e6dc2bdd21ee85ed5e1c4c184423dfdc4a487')
+
+prepare() {
+sed -e 's/pandoc-citeproc  >= 0.10.5 && < 0.11,/pandoc-citeproc  
>= 0.10.5,/' \
+-e 's/process  >= 1.0&& < 1.6,/process  >= 
1.0,/' \
+-e 's/time >= 1.4&& < 1.8,/time >= 
1.4,/' \
+-i $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${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 \
+-fcheckexternal -fwatchserver -fpreviewserver
+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}/${_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"
+}

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
260467, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 01:21:48 UTC (rev 260468)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.8.0
+pkgrel=57
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cryptohash"
+ "haskell-data-default" "haskell-fsnotify" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lrucache" "haskell-mtl" "haskell-network" 
"haskell-network-uri"
+ "haskell-optparse-applicative" "pandoc" "pandoc-citeproc" 
"haskell-parsec"
+ "haskell-random" "haskell-regex-base" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-scientific" "haskell-system-filepath" "haskell-tagsoup" 
"haskell-text"
+ "haskell-time-locale-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-wai"
+ "haske

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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:21:14
  Author: felixonmars
Revision: 260467

upgpkg: haskell-hakyll 4.9.8.0-57

rebuild with cmdargs,0.10.18

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 01:17:11 UTC (rev 260466)
+++ PKGBUILD2017-09-25 01:21:14 UTC (rev 260467)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.9.8.0
-pkgrel=56
+pkgrel=57
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll";
 license=("custom:BSD3")


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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:17:11
  Author: felixonmars
Revision: 260466

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   45 
 community-staging-x86_64/PKGBUILD |   45 
 2 files changed, 90 insertions(+)

Copied: pandoc-citeproc/repos/community-staging-i686/PKGBUILD (from rev 260465, 
pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 01:17:11 UTC (rev 260466)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.11.1.1
+pkgrel=3
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec" "haskell-data-default"
+ "haskell-hs-bibutils" "haskell-mtl" "haskell-old-locale" "pandoc" 
"haskell-pandoc-types"
+ "haskell-parsec" "haskell-rfc5051" "haskell-setenv" "haskell-split" 
"haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"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=('6a80256a5da439db9cd14668934ae055c8d3cb33529ff3f0621789ea8c6c9183769e21a86d472c218e9cda2050c5bc1f2aaf096911bc454c5d2666f60808c255')
+
+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 \
+-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
+}
+
+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"
+}

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
260465, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 01:17:11 UTC (rev 260466)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.11.1.1
+pkgrel=3
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec" "haskell-data-default"
+ "haskell-hs-bibutils" "haskell-mtl" "haskell-old-locale" "pandoc" 
"haskell-pandoc-types"
+ "haskell-parsec" "haskell-rfc5051" "haskell-setenv" "haskell-split" 
"haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"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=('6a80256a5da439db9cd14668934ae055c8d3cb33529ff3f0621789ea8c6c9183769e21a86d472c218e9cda2050c5bc1f2aaf096911bc454c5d2666f60808c255')
+
+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 --

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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:16:33
  Author: felixonmars
Revision: 260465

upgpkg: pandoc-citeproc 0.11.1.1-3

rebuild with cmdargs,0.10.18

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 01:12:14 UTC (rev 260464)
+++ PKGBUILD2017-09-25 01:16:33 UTC (rev 260465)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.11.1.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname";
 license=("custom:BSD3")


[arch-commits] Commit in haskell-aeson-pretty/repos (4 files)

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:12:14
  Author: felixonmars
Revision: 260464

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-aeson-pretty/repos/community-staging-i686/
  haskell-aeson-pretty/repos/community-staging-i686/PKGBUILD
(from rev 260463, haskell-aeson-pretty/trunk/PKGBUILD)
  haskell-aeson-pretty/repos/community-staging-x86_64/
  haskell-aeson-pretty/repos/community-staging-x86_64/PKGBUILD
(from rev 260463, haskell-aeson-pretty/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   41 
 community-staging-x86_64/PKGBUILD |   41 
 2 files changed, 82 insertions(+)

Copied: haskell-aeson-pretty/repos/community-staging-i686/PKGBUILD (from rev 
260463, haskell-aeson-pretty/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 01:12:14 UTC (rev 260464)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-pretty
+pkgname=haskell-aeson-pretty
+pkgver=0.8.5
+pkgrel=13
+pkgdesc="JSON pretty-printing library and command-line tool."
+url="http://github.com/informatikr/aeson-pretty";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-attoparsec" "haskell-base-compat" 
"haskell-cmdargs"
+ "haskell-scientific" "haskell-text" "haskell-unordered-containers" 
"haskell-vector")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('b429dad73923f6a7a5892b511af19b766d639c21bab8a2b8d1750a1f972c4f55c5139f37773474d303597cd4d02f168515be7b537f33ea62987e77fd3d701e8a')
+
+build() {
+cd "${srcdir}/${_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 \
+-f-lib-only
+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}/${_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"
+}

Copied: haskell-aeson-pretty/repos/community-staging-x86_64/PKGBUILD (from rev 
260463, haskell-aeson-pretty/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 01:12:14 UTC (rev 260464)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-pretty
+pkgname=haskell-aeson-pretty
+pkgver=0.8.5
+pkgrel=13
+pkgdesc="JSON pretty-printing library and command-line tool."
+url="http://github.com/informatikr/aeson-pretty";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-attoparsec" "haskell-base-compat" 
"haskell-cmdargs"
+ "haskell-scientific" "haskell-text" "haskell-unordered-containers" 
"haskell-vector")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('b429dad73923f6a7a5892b511af19b766d639c21bab8a2b8d1750a1f972c4f55c5139f37773474d303597cd4d02f168515be7b537f33ea62987e77fd3d701e8a')
+
+build() {
+cd "${srcdir}/${_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 \
+-f-lib-only
+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}/${_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/licens

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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:11:38
  Author: felixonmars
Revision: 260463

upgpkg: haskell-aeson-pretty 0.8.5-13

rebuild with cmdargs,0.10.18

Modified:
  haskell-aeson-pretty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 01:10:08 UTC (rev 260462)
+++ PKGBUILD2017-09-25 01:11:38 UTC (rev 260463)
@@ -5,7 +5,7 @@
 _hkgname=aeson-pretty
 pkgname=haskell-aeson-pretty
 pkgver=0.8.5
-pkgrel=12
+pkgrel=13
 pkgdesc="JSON pretty-printing library and command-line tool."
 url="http://github.com/informatikr/aeson-pretty";
 license=("custom:BSD3")


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

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:10:08
  Author: felixonmars
Revision: 260462

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-cmdargs/repos/community-staging-i686/
  haskell-cmdargs/repos/community-staging-i686/PKGBUILD
(from rev 260461, haskell-cmdargs/trunk/PKGBUILD)
  haskell-cmdargs/repos/community-staging-x86_64/
  haskell-cmdargs/repos/community-staging-x86_64/PKGBUILD
(from rev 260461, haskell-cmdargs/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   40 
 community-staging-x86_64/PKGBUILD |   40 
 2 files changed, 80 insertions(+)

Copied: haskell-cmdargs/repos/community-staging-i686/PKGBUILD (from rev 260461, 
haskell-cmdargs/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-25 01:10:08 UTC (rev 260462)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cmdargs
+pkgname=haskell-cmdargs
+pkgver=0.10.18
+pkgrel=1
+pkgdesc="Command line argument processing"
+url="http://community.haskell.org/~ndm/cmdargs/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('5d605d049fd18f8aded1485115ef0b99ef5929f14ea9645ab00b39d5603af310a70a6d07d3e62c404df77bca276ba5bafbd1b3fa3cef4be43814fbda111bfe66')
+
+build() {
+cd "${srcdir}/${_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 \
+-fquotation -f-testprog
+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}/${_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"
+}

Copied: haskell-cmdargs/repos/community-staging-x86_64/PKGBUILD (from rev 
260461, haskell-cmdargs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-25 01:10:08 UTC (rev 260462)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cmdargs
+pkgname=haskell-cmdargs
+pkgver=0.10.18
+pkgrel=1
+pkgdesc="Command line argument processing"
+url="http://community.haskell.org/~ndm/cmdargs/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('5d605d049fd18f8aded1485115ef0b99ef5929f14ea9645ab00b39d5603af310a70a6d07d3e62c404df77bca276ba5bafbd1b3fa3cef4be43814fbda111bfe66')
+
+build() {
+cd "${srcdir}/${_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 \
+-fquotation -f-testprog
+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}/${_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-cmdargs/trunk (PKGBUILD)

2017-09-24 Thread Felix Yan
Date: Monday, September 25, 2017 @ 01:09:25
  Author: felixonmars
Revision: 260461

upgpkg: haskell-cmdargs 0.10.18-1

rebuild with cmdargs,0.10.18

Modified:
  haskell-cmdargs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 00:49:55 UTC (rev 260460)
+++ PKGBUILD2017-09-25 01:09:25 UTC (rev 260461)
@@ -4,8 +4,8 @@
 
 _hkgname=cmdargs
 pkgname=haskell-cmdargs
-pkgver=0.10.17
-pkgrel=4
+pkgver=0.10.18
+pkgrel=1
 pkgdesc="Command line argument processing"
 url="http://community.haskell.org/~ndm/cmdargs/";
 license=("custom:BSD3")
@@ -13,7 +13,7 @@
 depends=('ghc-libs')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
-sha512sums=('39427b921557990953670d220097def73616a1f128c11f6a39408fbf8646b435382a6507a35fb74e441d220494b0b4bc4b73c5e5ea9b15028db612e40d2fddf4')
+sha512sums=('5d605d049fd18f8aded1485115ef0b99ef5929f14ea9645ab00b39d5603af310a70a6d07d3e62c404df77bca276ba5bafbd1b3fa3cef4be43814fbda111bfe66')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2017-09-24 Thread Jan Steffens
Date: Monday, September 25, 2017 @ 00:49:25
  Author: heftig
Revision: 306207

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  openal/repos/extra-i686/PKGBUILD
(from rev 306206, openal/trunk/PKGBUILD)
  openal/repos/extra-x86_64/PKGBUILD
(from rev 306206, openal/trunk/PKGBUILD)
Deleted:
  openal/repos/extra-i686/PKGBUILD
  openal/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 extra-i686/PKGBUILD   |   60 
 extra-x86_64/PKGBUILD |   60 
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-25 00:43:50 UTC (rev 306206)
+++ extra-i686/PKGBUILD 2017-09-25 00:49:25 UTC (rev 306207)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Allan McRae 
-# Contributor: Jason Chu 
-
-pkgbase=openal
-pkgname=(openal openal-examples)
-pkgver=1.18.1
-pkgrel=1
-pkgdesc="Cross-platform 3D audio library, software implementation"
-arch=(i686 x86_64)
-url="https://github.com/kcat/openal-soft";
-license=(LGPL)
-depends=(glibc)
-makedepends=(alsa-lib libpulse fluidsynth portaudio jack qt5-base sdl2 
sdl_sound ffmpeg
- git cmake ninja)
-_commit=bf9c36408af9d45c99bc12b5b7b995aee628bdb6  # tags/openal-soft-1.18.1
-source=("git+https://github.com/kcat/openal-soft#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd openal-soft
-  git describe --tags | sed 's/^openal-soft-//;s/-/+/g'
-}
-
-prepare() {
-  mkdir build examples
-  cd openal-soft
-
-  # https://bugs.archlinux.org/task/54908
-  git cherry-pick -n d4f3490a880f779f460332689a396ade69840f50
-}
-
-build() {
-  cd build
-  cmake ../openal-soft -G Ninja \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_LIBDIR=lib
-  ninja
-}
-
-package_openal() {
-  optdepends=('qt5-base: alsoft-config GUI Configurator'
-  'fluidsynth: MIDI rendering')
-
-  DESTDIR="$pkgdir" ninja -C build install
-  install -Dt "$pkgdir/usr/share/doc/openal" -m644 openal-soft/docs/*
-
-### Split openal-examples
-  mv -v "$pkgdir"/usr/bin/al{ffplay,hrtf,latency,loopback,reverb,stream} 
examples/
-}
-
-package_openal-examples() {
-  pkgdesc+=" (example programs)"
-  depends=("openal=$pkgver-$pkgrel" sdl2 sdl_sound ffmpeg)
-
-  mkdir "$pkgdir/usr"
-  mv -v examples "$pkgdir/usr/bin"
-}

Copied: openal/repos/extra-i686/PKGBUILD (from rev 306206, 
openal/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-09-25 00:49:25 UTC (rev 306207)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+pkgbase=openal
+pkgname=(openal openal-examples)
+pkgver=1.18.2
+pkgrel=1
+pkgdesc="Cross-platform 3D audio library, software implementation"
+arch=(i686 x86_64)
+url="https://github.com/kcat/openal-soft";
+license=(LGPL)
+depends=(glibc)
+makedepends=(alsa-lib libpulse fluidsynth portaudio jack qt5-base sdl2 
sdl_sound ffmpeg
+ git cmake ninja)
+_commit=ce6076091bac3c00cd10803916e8911495580bd0  # tags/openal-soft-1.18.2
+source=("git+https://github.com/kcat/openal-soft#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd openal-soft
+  git describe --tags | sed 's/^openal-soft-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build examples
+  cd openal-soft
+
+  # https://bugs.archlinux.org/task/54908
+  git cherry-pick -n d4f3490a880f779f460332689a396ade69840f50
+}
+
+build() {
+  cd build
+  cmake ../openal-soft -G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_LIBDIR=lib
+  ninja
+}
+
+package_openal() {
+  optdepends=('qt5-base: alsoft-config GUI Configurator'
+  'fluidsynth: MIDI rendering')
+
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dt "$pkgdir/usr/share/doc/openal" -m644 openal-soft/docs/*
+
+### Split openal-examples
+  mv -v "$pkgdir"/usr/bin/al{ffplay,hrtf,latency,loopback,reverb,stream} 
examples/
+}
+
+package_openal-examples() {
+  pkgdesc+=" (example programs)"
+  depends=("openal=$pkgver-$pkgrel" sdl2 sdl_sound ffmpeg)
+
+  mkdir "$pkgdir/usr"
+  mv -v examples "$pkgdir/usr/bin"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-09-25 00:43:50 UTC (rev 306206)
+++ extra-x86_64/PKGBUILD   2017-09-25 00:49:25 UTC (rev 306207)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Allan McRae 
-# Contributor: Jason Chu 
-
-pkgbase=openal
-pkgname=(openal openal-examples)
-pkgver=1.18.1
-pkgrel=1
-pkgdesc="Cross-platform 3D audio library, software implementation"
-arch=(i686 x86_64)
-url="https://github.com/kcat/openal-soft";

[arch-commits] Commit in lib32-openal/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2017-09-24 Thread Jan Steffens
Date: Monday, September 25, 2017 @ 00:49:55
  Author: heftig
Revision: 260460

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-openal/repos/multilib-x86_64/PKGBUILD
(from rev 260459, lib32-openal/trunk/PKGBUILD)
Deleted:
  lib32-openal/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-25 00:43:53 UTC (rev 260459)
+++ PKGBUILD2017-09-25 00:49:55 UTC (rev 260460)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Allan McRae 
-# Contributor: Jason Chu 
-
-pkgname=lib32-openal
-pkgver=1.18.1
-pkgrel=1
-pkgdesc="Cross-platform 3D audio library, software implementation (32-bit)"
-arch=(x86_64)
-url="https://github.com/kcat/openal-soft";
-license=(LGPL)
-depends=(lib32-glibc openal)
-makedepends=(lib32-alsa-lib lib32-libpulse lib32-fluidsynth lib32-portaudio 
lib32-jack
- git cmake ninja gcc-multilib)
-_commit=bf9c36408af9d45c99bc12b5b7b995aee628bdb6  # tags/openal-soft-1.18.1
-source=("git+https://github.com/kcat/openal-soft#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd openal-soft
-  git describe --tags | sed 's/^openal-soft-//;s/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd openal-soft
-
-  # https://bugs.archlinux.org/task/54908
-  git cherry-pick -n d4f3490a880f779f460332689a396ade69840f50
-}
-
-build() {
-  export CC="gcc -m32 -mstackrealign"
-  export CXX="g++ -m32 -mstackrealign"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  cd build
-  cmake ../openal-soft -G Ninja \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_LIBDIR=lib32
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-  rm -rv "$pkgdir"/usr/{include,share,bin}
-}

Copied: lib32-openal/repos/multilib-x86_64/PKGBUILD (from rev 260459, 
lib32-openal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-25 00:49:55 UTC (rev 260460)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+pkgname=lib32-openal
+pkgver=1.18.2
+pkgrel=1
+pkgdesc="Cross-platform 3D audio library, software implementation (32-bit)"
+arch=(x86_64)
+url="https://github.com/kcat/openal-soft";
+license=(LGPL)
+depends=(lib32-glibc openal)
+makedepends=(lib32-alsa-lib lib32-libpulse lib32-fluidsynth lib32-portaudio 
lib32-jack
+ git cmake ninja gcc-multilib)
+_commit=ce6076091bac3c00cd10803916e8911495580bd0  # tags/openal-soft-1.18.2
+source=("git+https://github.com/kcat/openal-soft#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd openal-soft
+  git describe --tags | sed 's/^openal-soft-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd openal-soft
+
+  # https://bugs.archlinux.org/task/54908
+  git cherry-pick -n d4f3490a880f779f460332689a396ade69840f50
+}
+
+build() {
+  export CC="gcc -m32 -mstackrealign"
+  export CXX="g++ -m32 -mstackrealign"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd build
+  cmake ../openal-soft -G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_LIBDIR=lib32
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+  rm -rv "$pkgdir"/usr/{include,share,bin}
+}


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

2017-09-24 Thread Jan Steffens
Date: Monday, September 25, 2017 @ 00:43:50
  Author: heftig
Revision: 306206

1.18.2-1

Modified:
  openal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 20:10:57 UTC (rev 306205)
+++ PKGBUILD2017-09-25 00:43:50 UTC (rev 306206)
@@ -5,7 +5,7 @@
 
 pkgbase=openal
 pkgname=(openal openal-examples)
-pkgver=1.18.1
+pkgver=1.18.2
 pkgrel=1
 pkgdesc="Cross-platform 3D audio library, software implementation"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 depends=(glibc)
 makedepends=(alsa-lib libpulse fluidsynth portaudio jack qt5-base sdl2 
sdl_sound ffmpeg
  git cmake ninja)
-_commit=bf9c36408af9d45c99bc12b5b7b995aee628bdb6  # tags/openal-soft-1.18.1
+_commit=ce6076091bac3c00cd10803916e8911495580bd0  # tags/openal-soft-1.18.2
 source=("git+https://github.com/kcat/openal-soft#commit=$_commit";)
 sha256sums=('SKIP')
 


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

2017-09-24 Thread Jan Steffens
Date: Monday, September 25, 2017 @ 00:43:53
  Author: heftig
Revision: 260459

1.18.2-1

Modified:
  lib32-openal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 23:14:39 UTC (rev 260458)
+++ PKGBUILD2017-09-25 00:43:53 UTC (rev 260459)
@@ -4,7 +4,7 @@
 # Contributor: Jason Chu 
 
 pkgname=lib32-openal
-pkgver=1.18.1
+pkgver=1.18.2
 pkgrel=1
 pkgdesc="Cross-platform 3D audio library, software implementation (32-bit)"
 arch=(x86_64)
@@ -13,7 +13,7 @@
 depends=(lib32-glibc openal)
 makedepends=(lib32-alsa-lib lib32-libpulse lib32-fluidsynth lib32-portaudio 
lib32-jack
  git cmake ninja gcc-multilib)
-_commit=bf9c36408af9d45c99bc12b5b7b995aee628bdb6  # tags/openal-soft-1.18.1
+_commit=ce6076091bac3c00cd10803916e8911495580bd0  # tags/openal-soft-1.18.2
 source=("git+https://github.com/kcat/openal-soft#commit=$_commit";)
 sha256sums=('SKIP')
 


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

2017-09-24 Thread Jan Steffens
Date: Sunday, September 24, 2017 @ 23:14:39
  Author: heftig
Revision: 260458

archrelease: copy trunk to community-x86_64

Added:
  rubinius/repos/community-x86_64/PKGBUILD
(from rev 260457, rubinius/trunk/PKGBUILD)
  rubinius/repos/community-x86_64/dirs.patch
(from rev 260457, rubinius/trunk/dirs.patch)
  rubinius/repos/community-x86_64/gemrc
(from rev 260457, rubinius/trunk/gemrc)
Deleted:
  rubinius/repos/community-x86_64/PKGBUILD
  rubinius/repos/community-x86_64/dirs.patch
  rubinius/repos/community-x86_64/gemrc

+
 PKGBUILD   |  174 +--
 dirs.patch |   42 +++---
 gemrc  |   10 +--
 3 files changed, 113 insertions(+), 113 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-24 23:12:41 UTC (rev 260457)
+++ PKGBUILD2017-09-24 23:14:39 UTC (rev 260458)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgbase=rubinius
-pkgname=(rubinius rubinius-ruby)
-pkgver=3.84
-pkgrel=1
-pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
-arch=(x86_64)
-url="http://rubinius.com";
-license=(custom)
-depends=(libffi openssl-1.0 libyaml)
-makedepends=(llvm ruby clang valgrind)
-options=(!emptydirs)
-source=(http://releases.rubinius.com/${pkgbase}-${pkgver}.tar.bz2
-gemrc dirs.patch)
-sha256sums=('87eeaf24efd64bb06c4409814410a9154287dd889a976b70c474ef88992b279d'
-'4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
-'1bfb4d590d35f01b3ee344cec8f961558f08847b3db54e5f56a4a20a22a898ec')
-
-_common() {
-  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
-  export GEM_HOME="$srcdir/gemdir" LANG="en_US.UTF-8" TMPDIR="$srcdir"
-  cd $pkgbase-$pkgver
-}
-
-prepare() {
-  _common
-
-  patch -Np1 -i ../dirs.patch
-
-  mkdir -p "$GEM_HOME"
-  gem install --no-user-install -N vendor/cache/bundler-*.gem
-
-  "$GEM_HOME/bin/bundle" install --local
-}
-
-build() {
-  _common
-  ./configure --prefix=/usr \
---mandir=/usr/share/man \
---includedir=/usr/include/rubinius \
---appdir=/usr/lib/rubinius \
---gemsdir=/usr/lib/rubinius/gems \
---preserve-prefix \
---without-rpath \
---bin-link bundle --bin-link bundler
-  "$GEM_HOME/bin/bundle" exec rake build
-}
-
-check() {
-  _common
-  rake vm:test || :
-}
-
-package_rubinius() {
-  optdepends=('ruby-docs: Ruby documentation')
-
-  _common
-
-  DESTDIR="$pkgdir" "$GEM_HOME/bin/bundle" exec rake install
-
-  mkdir -p "$pkgdir/usr/share/ri"
-  ln -s 2.4.0 "$pkgdir/usr/share/ri/2.3"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/rubinius/LICENSE"
-
-### Split rubinius-ruby
-  mkdir -p "$srcdir/ruby/usr/bin"
-  for _f in "$pkgdir"/usr/bin/*; do
-[[ $_f == */rbx ]] && continue
-mv $_f "$srcdir/ruby/usr/bin"
-  done
-}
-
-package_rubinius-ruby() {
-  pkgdesc="Ruby compat for Rubinius"
-  depends=("rubinius=$pkgver-$pkgrel")
-  provides=(ruby)
-  conflicts=(ruby)
-  backup=(etc/gemrc)
-
-  mv ruby/* "$pkgdir"
-  install -Dm644 gemrc "$pkgdir/etc/gemrc"
-  install -d "$pkgdir/usr/share/licenses/rubinius-ruby"
-  ln -s ../rubinius/LICENSE "$pkgdir/usr/share/licenses/rubinius-ruby/LICENSE"
-}

Copied: rubinius/repos/community-x86_64/PKGBUILD (from rev 260457, 
rubinius/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-24 23:14:39 UTC (rev 260458)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgbase=rubinius
+pkgname=(rubinius rubinius-ruby)
+pkgver=3.85
+pkgrel=1
+pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
+arch=(x86_64)
+url="http://rubinius.com";
+license=(custom)
+depends=(libffi openssl-1.0 libyaml)
+makedepends=(llvm ruby clang valgrind)
+options=(!emptydirs)
+source=(http://releases.rubinius.com/${pkgbase}-${pkgver}.tar.bz2
+gemrc dirs.patch)
+sha256sums=('18a55be0de6323847f946af43cedcc44277e62124c8140523b34776265a5c6e1'
+'4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
+'1bfb4d590d35f01b3ee344cec8f961558f08847b3db54e5f56a4a20a22a898ec')
+
+_common() {
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+  export GEM_HOME="$srcdir/gemdir" LANG="en_US.UTF-8" TMPDIR="$srcdir"
+  cd $pkgbase-$pkgver
+}
+
+prepare() {
+  _common
+
+  patch -Np1 -i ../dirs.patch
+
+  mkdir -p "$GEM_HOME"
+  gem install --no-user-install -N vendor/cache/bundler-*.gem
+
+  "$GEM_HOME/bin/bundle" install --local
+}
+
+build() {
+  _common
+  ./configure --prefix=/usr \
+--mandir=/usr/share/man \
+--includedir=/usr/include/rubinius \
+--appdir=/usr/lib/rubinius \
+--gemsdir=/usr/lib/rubinius/gems \
+--preserve-prefix \
+--without-rpath \
+--bin-link bundle --bin-link bundler
+  "$GEM_HOME/bin/bundle" exec rake build
+}
+
+check() {
+  _common
+  rake vm:test || :
+}
+
+package_rub

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

2017-09-24 Thread Jan Steffens
Date: Sunday, September 24, 2017 @ 23:12:41
  Author: heftig
Revision: 260457

3.85-1

Modified:
  rubinius/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 22:14:20 UTC (rev 260456)
+++ PKGBUILD2017-09-24 23:12:41 UTC (rev 260457)
@@ -3,7 +3,7 @@
 
 pkgbase=rubinius
 pkgname=(rubinius rubinius-ruby)
-pkgver=3.84
+pkgver=3.85
 pkgrel=1
 pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
 arch=(x86_64)
@@ -14,7 +14,7 @@
 options=(!emptydirs)
 source=(http://releases.rubinius.com/${pkgbase}-${pkgver}.tar.bz2
 gemrc dirs.patch)
-sha256sums=('87eeaf24efd64bb06c4409814410a9154287dd889a976b70c474ef88992b279d'
+sha256sums=('18a55be0de6323847f946af43cedcc44277e62124c8140523b34776265a5c6e1'
 '4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
 '1bfb4d590d35f01b3ee344cec8f961558f08847b3db54e5f56a4a20a22a898ec')
 


[arch-commits] Commit in riot/repos/community-any (6 files)

2017-09-24 Thread Bruno Pagani
Date: Sunday, September 24, 2017 @ 22:14:20
  Author: archange
Revision: 260456

archrelease: copy trunk to community-any

Added:
  riot/repos/community-any/PKGBUILD
(from rev 260455, riot/trunk/PKGBUILD)
  riot/repos/community-any/riot-desktop.sh
(from rev 260455, riot/trunk/riot-desktop.sh)
  riot/repos/community-any/riot.desktop
(from rev 260455, riot/trunk/riot.desktop)
Deleted:
  riot/repos/community-any/PKGBUILD
  riot/repos/community-any/riot-desktop.sh
  riot/repos/community-any/riot.desktop

-+
 PKGBUILD|  154 +++---
 riot-desktop.sh |6 +-
 riot.desktop|   18 +++---
 3 files changed, 89 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-24 22:14:01 UTC (rev 260455)
+++ PKGBUILD2017-09-24 22:14:20 UTC (rev 260456)
@@ -1,77 +0,0 @@
-# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
-# Contributor: Luca Weiss 
-
-pkgbase=riot
-pkgname=('riot-desktop' 'riot-web')
-pkgver=0.12.3
-pkgrel=1
-pkgdesc="A glossy Matrix collaboration client, web and desktop versions."
-arch=('any')
-url="https://riot.im";
-_url="https://github.com/vector-im/riot-web";
-license=('Apache')
-makedepends=('npm' 'git' 'phantomjs')
-source=(${pkgbase}-${pkgver}.tar.gz::"${_url}/archive/v${pkgver}.tar.gz"
-
${pkgbase}-${pkgver}.tar.gz.asc::"${_url}/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc"
-"${pkgbase}.desktop"
-"${pkgbase}-desktop.sh")
-sha256sums=('8c3830dbf3b8daa0a63226fb64e70cbb20b6701020e5718a4dd9c8ad5a856eee'
-'SKIP'
-'043fbaa29be96f52541143e1684fd7ba33585edb215c06d1ed4e59ddc48a9fa7'
-'cb7304188845e3be24966b3a8bca5763f4d1b0055a0afa1a17a60917556caaf0')
-validpgpkeys=('6FEB6F83D48B93547E7DFEDEE019645248E8F4A1') # riot.im (Package 
Signing key) 
-
-prepare() {
-  cd ${pkgbase}-web-${pkgver}
-  sed -i 's@https://riot.im/download/desktop/update/@null@g' 
electron_app/riot.im/config.json
-}
-
-build() {
-  cd ${pkgbase}-web-${pkgver}
-  npm install --cache "${srcdir}/npm-cache"
-  npm run build --cache "${srcdir}/npm-cache"
-}
-
-package_riot-web() {
-  pkgdesc="A glossy Matrix collaboration client for the web."
-  provides=('vector-web')  # @vith
-  replaces=('vector-web')  # @vith
-  cd ${pkgbase}-web-${pkgver}
-
-  install -d "${pkgdir}"/{usr/share/webapps,etc/webapps}/${pkgbase}
-
-  cp -r webapp/* "${pkgdir}"/usr/share/webapps/${pkgbase}/
-  install -Dm644 config.sample.json -t "${pkgdir}"/etc/webapps/${pkgbase}/
-  ln -s /etc/webapps/${pkgbase}/config.json 
"${pkgdir}"/usr/share/webapps/${pkgbase}/
-  echo "${pkgver}" > "${pkgdir}"/usr/share/webapps/${pkgbase}/version
-}
-
-package_riot-desktop() {
-  pkgdesc="A glossy Matrix collaboration client for the desktop."
-  depends=('riot-web' 'electron')
-  backup=("etc/${pkgbase}/config.json")
-  cd ${pkgbase}-web-${pkgver}
-
-  cd electron_app
-  npm install --cache "${srcdir}/npm-cache"
-  cd ..
-
-  install -d 
"${pkgdir}"{/usr/lib/${pkgbase}/electron_app,/etc/webapps/${pkgbase}}
-
-  ln -s /usr/share/webapps/${pkgbase} "${pkgdir}"/usr/lib/${pkgbase}/webapp
-  ln -s /etc/${pkgbase}/config.json 
"${pkgdir}"/etc/webapps/${pkgbase}/config.json
-
-  install -Dm644 package.json -t "${pkgdir}"/usr/lib/${pkgbase}
-  cp -r electron_app/src "${pkgdir}"/usr/lib/${pkgbase}/electron_app/
-  cp -r electron_app/node_modules "${pkgdir}"/usr/lib/${pkgbase}/electron_app/
-  install -Dm644 electron_app/img/riot.png -t 
"${pkgdir}"/usr/lib/${pkgbase}/electron_app/img
-  install -Dm644 electron_app/riot.im/config.json -t "${pkgdir}"/etc/${pkgbase}
-
-  install -Dm644 "${srcdir}"/${pkgbase}.desktop 
"${pkgdir}"/usr/share/applications/${pkgbase}.desktop
-  install -Dm755 "${srcdir}"/${pkgname}.sh "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 src/skins/vector/img/logos/${pkgbase}-logo.svg 
"${pkgdir}"/usr/share/icons/hicolor/scalable/apps/${pkgbase}.svg
-  for i in 16 24 48 64 96 128 256 512; do
-install -Dm644 electron_app/build/icons/${i}x${i}.png 
"${pkgdir}"/usr/share/icons/hicolor/${i}x${i}/apps/${pkgbase}.png
-  done
-}

Copied: riot/repos/community-any/PKGBUILD (from rev 260455, riot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-24 22:14:20 UTC (rev 260456)
@@ -0,0 +1,77 @@
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+# Contributor: Luca Weiss 
+
+pkgbase=riot
+pkgname=('riot-desktop' 'riot-web')
+pkgver=0.12.6
+pkgrel=1
+pkgdesc="A glossy Matrix collaboration client, web and desktop versions."
+arch=('any')
+url="https://riot.im";
+_url="https://github.com/vector-im/riot-web";
+license=('Apache')
+makedepends=('npm' 'git' 'phantomjs')
+source=(${pkgbase}-${pkgver}.tar.gz::"${_url}/archive/v${pkgver}.tar.gz"
+
${pkgbase}-${pkgver}.tar.gz.asc::"${_url}/releases/download/v${pkgver}/v${pkgver}-src.t

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

2017-09-24 Thread Bruno Pagani
Date: Sunday, September 24, 2017 @ 22:14:01
  Author: archange
Revision: 260455

upgpkg: riot 0.12.6-1

Modified:
  riot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 20:18:38 UTC (rev 260454)
+++ PKGBUILD2017-09-24 22:14:01 UTC (rev 260455)
@@ -3,7 +3,7 @@
 
 pkgbase=riot
 pkgname=('riot-desktop' 'riot-web')
-pkgver=0.12.3
+pkgver=0.12.6
 pkgrel=1
 pkgdesc="A glossy Matrix collaboration client, web and desktop versions."
 arch=('any')
@@ -15,7 +15,7 @@
 
${pkgbase}-${pkgver}.tar.gz.asc::"${_url}/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc"
 "${pkgbase}.desktop"
 "${pkgbase}-desktop.sh")
-sha256sums=('8c3830dbf3b8daa0a63226fb64e70cbb20b6701020e5718a4dd9c8ad5a856eee'
+sha256sums=('ee08898c1468d3808cad146e749fcd2add12b9339cff1c21bbe42b7611642cf4'
 'SKIP'
 '043fbaa29be96f52541143e1684fd7ba33585edb215c06d1ed4e59ddc48a9fa7'
 'cb7304188845e3be24966b3a8bca5763f4d1b0055a0afa1a17a60917556caaf0')
@@ -28,8 +28,8 @@
 
 build() {
   cd ${pkgbase}-web-${pkgver}
-  npm install --cache "${srcdir}/npm-cache"
-  npm run build --cache "${srcdir}/npm-cache"
+  npm install --cache ../npm-cache
+  npm run build --cache ../npm-cache
 }
 
 package_riot-web() {
@@ -53,7 +53,7 @@
   cd ${pkgbase}-web-${pkgver}
 
   cd electron_app
-  npm install --cache "${srcdir}/npm-cache"
+  npm install --cache "${srcdir}"/npm-cache
   cd ..
 
   install -d 
"${pkgdir}"{/usr/lib/${pkgbase}/electron_app,/etc/webapps/${pkgbase}}


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

2017-09-24 Thread Jelle van der Waa
Date: Sunday, September 24, 2017 @ 20:18:38
  Author: jelle
Revision: 260454

archrelease: copy trunk to community-i686, community-x86_64

Added:
  i3-wm/repos/community-i686/0001-Use-OVER-operator-for-drawing-text.patch
(from rev 260453, i3-wm/trunk/0001-Use-OVER-operator-for-drawing-text.patch)
  i3-wm/repos/community-i686/PKGBUILD
(from rev 260453, i3-wm/trunk/PKGBUILD)
  i3-wm/repos/community-x86_64/0001-Use-OVER-operator-for-drawing-text.patch
(from rev 260453, i3-wm/trunk/0001-Use-OVER-operator-for-drawing-text.patch)
  i3-wm/repos/community-x86_64/PKGBUILD
(from rev 260453, i3-wm/trunk/PKGBUILD)
Deleted:
  i3-wm/repos/community-i686/0001-Use-OVER-operator-for-drawing-text.patch
  i3-wm/repos/community-i686/PKGBUILD
  i3-wm/repos/community-x86_64/0001-Use-OVER-operator-for-drawing-text.patch
  i3-wm/repos/community-x86_64/PKGBUILD

+
 /0001-Use-OVER-operator-for-drawing-text.patch |   70 ++
 /PKGBUILD  |  104 
++
 community-i686/0001-Use-OVER-operator-for-drawing-text.patch   |   35 ---
 community-i686/PKGBUILD|   52 -
 community-x86_64/0001-Use-OVER-operator-for-drawing-text.patch |   35 ---
 community-x86_64/PKGBUILD  |   52 -
 6 files changed, 174 insertions(+), 174 deletions(-)

Deleted: community-i686/0001-Use-OVER-operator-for-drawing-text.patch
===
--- community-i686/0001-Use-OVER-operator-for-drawing-text.patch
2017-09-24 20:17:59 UTC (rev 260453)
+++ community-i686/0001-Use-OVER-operator-for-drawing-text.patch
2017-09-24 20:18:38 UTC (rev 260454)
@@ -1,35 +0,0 @@
-From eea280b1f1d9d66c903014fd6703f401eb119a87 Mon Sep 17 00:00:00 2001
-Message-Id: 

-From: "Jan Alexander Steffens (heftig)" 
-Date: Sat, 9 Sep 2017 00:22:13 +0200
-Subject: [PATCH] Use OVER operator for drawing text
-
-For opaque text, SOURCE is not any different from OVER. However, when
-drawing color glyphs (which consist of RGBA pixels instead of strokes)
-SOURCE's handling of alpha is not what we want.
-
-I stumbled across this because cairo 1.15.8 seems to clear the surface
-before drawing color emoji if the operator is SOURCE, deleting every-
-thing drawn before. Arguably, the area outside the glyph bounds should
-not be touched, but even if this is a cairo bug the problem of alpha
-within the glyph remains.

- libi3/font.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/libi3/font.c b/libi3/font.c
-index 81091ea74a31da11..aef8427b5396c3d8 100644
 a/libi3/font.c
-+++ b/libi3/font.c
-@@ -105,7 +105,7 @@ static void draw_text_pango(const char *text, size_t 
text_len,
- pango_layout_set_text(layout, text, text_len);
- 
- /* Do the drawing */
--cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
-+cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
- cairo_set_source_rgb(cr, pango_font_red, pango_font_green, 
pango_font_blue);
- pango_cairo_update_layout(cr, layout);
- pango_layout_get_pixel_size(layout, NULL, &height);
--- 
-2.14.1
-

Copied: 
i3-wm/repos/community-i686/0001-Use-OVER-operator-for-drawing-text.patch (from 
rev 260453, i3-wm/trunk/0001-Use-OVER-operator-for-drawing-text.patch)
===
--- community-i686/0001-Use-OVER-operator-for-drawing-text.patch
(rev 0)
+++ community-i686/0001-Use-OVER-operator-for-drawing-text.patch
2017-09-24 20:18:38 UTC (rev 260454)
@@ -0,0 +1,35 @@
+From eea280b1f1d9d66c903014fd6703f401eb119a87 Mon Sep 17 00:00:00 2001
+Message-Id: 

+From: "Jan Alexander Steffens (heftig)" 
+Date: Sat, 9 Sep 2017 00:22:13 +0200
+Subject: [PATCH] Use OVER operator for drawing text
+
+For opaque text, SOURCE is not any different from OVER. However, when
+drawing color glyphs (which consist of RGBA pixels instead of strokes)
+SOURCE's handling of alpha is not what we want.
+
+I stumbled across this because cairo 1.15.8 seems to clear the surface
+before drawing color emoji if the operator is SOURCE, deleting every-
+thing drawn before. Arguably, the area outside the glyph bounds should
+not be touched, but even if this is a cairo bug the problem of alpha
+within the glyph remains.
+---
+ libi3/font.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libi3/font.c b/libi3/font.c
+index 81091ea74a31da11..aef8427b5396c3d8 100644
+--- a/libi3/font.c
 b/libi3/font.c
+@@ -105,7 +105,7 @@ static void draw_text_pango(const char *text, size_t 
text_len,
+ pango_layout_set_text(layout, text, text_len);
+ 
+ /* Do the drawing */
+-cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
++cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
+ cairo_set_source_rgb(cr, pango_font_red, pango_font_green, 
pango_font_blue

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

2017-09-24 Thread Jelle van der Waa
Date: Sunday, September 24, 2017 @ 20:17:59
  Author: jelle
Revision: 260453

upgpkg: i3-wm 4.14.1-1

Modified:
  i3-wm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 19:45:29 UTC (rev 260452)
+++ PKGBUILD2017-09-24 20:17:59 UTC (rev 260453)
@@ -2,7 +2,7 @@
 # Maintainer: Thorsten Töpper 
 
 pkgname=i3-wm
-pkgver=4.14
+pkgver=4.14.1
 pkgrel=1
 pkgdesc="An improved dynamic tiling window manager"
 url="https://i3wm.org/";
@@ -21,7 +21,7 @@
 replaces=(i3 i3bar)
 source=("https://i3wm.org/downloads/i3-$pkgver.tar.bz2"{,.asc}
 0001-Use-OVER-operator-for-drawing-text.patch)
-sha256sums=('ae3abde3af1b87e269d8aad2348be6f7298338cb8e06bad11cbf91cdbf92a5d6'
+sha256sums=('d0063ac561f3aa8d7e31e137356815bad781bd6ad774030362c89abe96ab5fb1'
 'SKIP'
 'e49e147b1cd06f95188decbbe41f5c3a0aca18d0195750bc3ea16465b4aca563')
 validpgpkeys=('424E14D703E7C6D43D9D6F364E7160ED4AC8EE1D') # Michael Stapelberg


[arch-commits] Commit in mariadb/repos (12 files)

2017-09-24 Thread Christian Hesse
Date: Sunday, September 24, 2017 @ 20:10:57
  Author: eworm
Revision: 306205

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  mariadb/repos/testing-i686/
  mariadb/repos/testing-i686/0001-openssl-1-1-0.patch
(from rev 306204, mariadb/trunk/0001-openssl-1-1-0.patch)
  mariadb/repos/testing-i686/PKGBUILD
(from rev 306204, mariadb/trunk/PKGBUILD)
  mariadb/repos/testing-i686/mariadb-sysusers.conf
(from rev 306204, mariadb/trunk/mariadb-sysusers.conf)
  mariadb/repos/testing-i686/mariadb-tmpfile.conf
(from rev 306204, mariadb/trunk/mariadb-tmpfile.conf)
  mariadb/repos/testing-i686/mariadb.install
(from rev 306204, mariadb/trunk/mariadb.install)
  mariadb/repos/testing-x86_64/
  mariadb/repos/testing-x86_64/0001-openssl-1-1-0.patch
(from rev 306204, mariadb/trunk/0001-openssl-1-1-0.patch)
  mariadb/repos/testing-x86_64/PKGBUILD
(from rev 306204, mariadb/trunk/PKGBUILD)
  mariadb/repos/testing-x86_64/mariadb-sysusers.conf
(from rev 306204, mariadb/trunk/mariadb-sysusers.conf)
  mariadb/repos/testing-x86_64/mariadb-tmpfile.conf
(from rev 306204, mariadb/trunk/mariadb-tmpfile.conf)
  mariadb/repos/testing-x86_64/mariadb.install
(from rev 306204, mariadb/trunk/mariadb.install)

-+
 testing-i686/0001-openssl-1-1-0.patch   | 1037 ++
 testing-i686/PKGBUILD   |  194 +
 testing-i686/mariadb-sysusers.conf  |1 
 testing-i686/mariadb-tmpfile.conf   |1 
 testing-i686/mariadb.install|9 
 testing-x86_64/0001-openssl-1-1-0.patch | 1037 ++
 testing-x86_64/PKGBUILD |  194 +
 testing-x86_64/mariadb-sysusers.conf|1 
 testing-x86_64/mariadb-tmpfile.conf |1 
 testing-x86_64/mariadb.install  |9 
 10 files changed, 2484 insertions(+)

Copied: mariadb/repos/testing-i686/0001-openssl-1-1-0.patch (from rev 306204, 
mariadb/trunk/0001-openssl-1-1-0.patch)
===
--- testing-i686/0001-openssl-1-1-0.patch   (rev 0)
+++ testing-i686/0001-openssl-1-1-0.patch   2017-09-24 20:10:57 UTC (rev 
306205)
@@ -0,0 +1,1037 @@
+diff --git a/extra/yassl/src/handshake.cpp b/extra/yassl/src/handshake.cpp
+index 407e409..6e181a9 100644
+--- a/extra/yassl/src/handshake.cpp
 b/extra/yassl/src/handshake.cpp
+@@ -788,6 +788,16 @@ int DoProcessReply(SSL& ssl)
+ needHdr = true;
+ else {
+ buffer >> hdr;
++/*
++  According to RFC 4346 (see "7.4.1.3. Server Hello"), the Server 
Hello
++  packet needs to specify the highest supported TLS version, but 
not
++  higher than what client requests. YaSSL highest supported 
version is
++  TLSv1.1 (=3.2) - if the client requests a higher version, 
downgrade it
++  here to 3.2.
++  See also Appendix E of RFC 5246 (TLS 1.2)
++*/
++if (hdr.version_.major_ == 3 && hdr.version_.minor_ > 2)
++  hdr.version_.minor_ = 2;
+ ssl.verifyState(hdr);
+ }
+ 
+diff --git a/include/ssl_compat.h b/include/ssl_compat.h
+new file mode 100644
+index 000..b0e3ed4
+--- /dev/null
 b/include/ssl_compat.h
+@@ -0,0 +1,75 @@
++/*
++ Copyright (c) 2016, 2017 MariaDB Corporation
++
++ This program is free software; you can redistribute it and/or modify
++ it under the terms of the GNU General Public License as published by
++ the Free Software Foundation; version 2 of the License.
++
++ This program is distributed in the hope that it will be useful,
++ but WITHOUT ANY WARRANTY; without even the implied warranty of
++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++ GNU General Public License for more details.
++
++ You should have received a copy of the GNU General Public License
++ along with this program; if not, write to the Free Software
++ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA */
++
++#include 
++
++/* OpenSSL version specific definitions */
++#if !defined(HAVE_YASSL) && defined(OPENSSL_VERSION_NUMBER)
++
++#if OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(LIBRESSL_VERSION_NUMBER)
++#define HAVE_X509_check_host 1
++#endif
++
++#if OPENSSL_VERSION_NUMBER >= 0x1010L && !defined(LIBRESSL_VERSION_NUMBER)
++#define HAVE_OPENSSL11 1
++#define ERR_remove_state(X) ERR_clear_error()
++#define EVP_MD_CTX_cleanup(X) EVP_MD_CTX_reset(X)
++#define EVP_CIPHER_CTX_SIZE 168
++#define EVP_MD_CTX_SIZE 48
++#undef EVP_MD_CTX_init
++#define EVP_MD_CTX_init(X) do { bzero((X), EVP_MD_CTX_SIZE); 
EVP_MD_CTX_reset(X); } while(0)
++#undef EVP_CIPHER_CTX_init
++#define EVP_CIPHER_CTX_init(X) do { bzero((X), EVP_CIPHER_CTX_SIZE); 
EVP_CIPHER_CTX_reset(X); } while(0)
++
++#else
++#define HAVE_OPENSSL10 1
++/*
++  Unfortunately RAND_bytes manual page does not provide any guarantees
++  in rel

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

2017-09-24 Thread Christian Hesse
Date: Sunday, September 24, 2017 @ 20:10:43
  Author: eworm
Revision: 306204

upgpkg: mariadb 10.1.27-1

new upstream release

Modified:
  mariadb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 14:28:06 UTC (rev 306203)
+++ PKGBUILD2017-09-24 20:10:43 UTC (rev 306204)
@@ -4,7 +4,7 @@
 
 pkgbase=mariadb
 pkgname=('libmariadbclient' 'mariadb-clients' 'mytop' 'mariadb')
-pkgver=10.1.26
+pkgver=10.1.27
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -16,7 +16,7 @@
 '0001-openssl-1-1-0.patch'
 'mariadb-sysusers.conf'
 'mariadb-tmpfile.conf')
-sha256sums=('ba88b1cb9967dea2909938a34ba89373b162b0d83e5c98a0f1c94540156bf73d'
+sha256sums=('1fd9a09d90903bf97b534162cabc47b79dea47f5ae9880cb8119c143de8540d4'
 'SKIP'
 '40d298ca77c0459ade4ef9fc68a3a7450273b098b9f7edfb0a5251c5db434cfc'
 'e1a22777c65854041f16fc0a2db3218d17b4d7e7ec7ab7a77cf49c71277c1515'


[arch-commits] Commit in lib32-gtk3/repos/multilib-x86_64 (4 files)

2017-09-24 Thread Maxime Gauduin
Date: Sunday, September 24, 2017 @ 19:45:29
  Author: alucryd
Revision: 260452

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-gtk3/repos/multilib-x86_64/PKGBUILD
(from rev 260451, lib32-gtk3/trunk/PKGBUILD)
  lib32-gtk3/repos/multilib-x86_64/gtk-query-immodules-3.0-32.hook
(from rev 260451, lib32-gtk3/trunk/gtk-query-immodules-3.0-32.hook)
Deleted:
  lib32-gtk3/repos/multilib-x86_64/PKGBUILD
  lib32-gtk3/repos/multilib-x86_64/gtk-query-immodules-3.0-32.hook

-+
 PKGBUILD|  136 +++---
 gtk-query-immodules-3.0-32.hook |   22 +++---
 2 files changed, 79 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-24 19:44:33 UTC (rev 260451)
+++ PKGBUILD2017-09-24 19:45:29 UTC (rev 260452)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: josephgbr 
-# Contributor: GordonGR 
-
-pkgname=lib32-gtk3
-pkgver=3.22.19
-pkgrel=1
-pkgdesc='GObject-based multi-platform GUI toolkit'
-arch=('x86_64')
-license=('LGPL')
-url='http://www.gtk.org/'
-depends=('gtk3' 'lib32-at-spi2-atk' 'lib32-colord' 'lib32-gdk-pixbuf2'
- 'lib32-json-glib' 'lib32-libcups' 'lib32-libepoxy' 'lib32-librsvg'
- 'lib32-libxcomposite' 'lib32-libxcursor' 'lib32-libxinerama'
- 'lib32-libxkbcommon' 'lib32-libxrandr' 'lib32-pango' 'lib32-rest')
-makedepends=('gcc-multilib' 'git' 'gobject-introspection' 'gtk-doc')
-_commit='efbf6f183ecd24cddea743a02fe8ce545f1b55f8'
-source=("git+https://git.gnome.org/browse/gtk+#commit=${_commit}";
-'gtk-query-immodules-3.0-32.hook')
-sha256sums=('SKIP'
-'c87e56504cd38d73748d12e87353680156cdeef30d082cca407d2375db821115')
-
-pkgver() {
-  cd gtk+
-
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd gtk+
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd gtk+
-
-  export CC='gcc -m32'
-  export CXX='/bin/false'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
---localstatedir='/var' \
---sysconfdir='/etc' \
---enable-{broadway,wayland,x11}-backend \
---disable-libcanberra \
---disable-schemas-compile
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd gtk+
-
-  make DESTDIR="${pkgdir}" install
-  mv "${pkgdir}"/usr/bin/gtk-query-immodules-3.0{,-32}
-  mv "${pkgdir}"/usr/bin/gtk-query-settings{,-32}
-  rm 
"${pkgdir}"/usr/bin/{broadwayd,gtk-{builder-tool,encode-symbolic-svg,launch,update-icon-cache},gtk3-{demo,demo-application,icon-browser,widget-factory}}
-  rm -rf "${pkgdir}"/{etc,usr/{include,share}}
-
-  install -dm 755 "${pkgdir}"/usr/share/libalpm/hooks
-  install -m 644 ../gtk-query-immodules-3.0-32.hook 
"${pkgdir}"/usr/share/libalpm/hooks/
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-gtk3/repos/multilib-x86_64/PKGBUILD (from rev 260451, 
lib32-gtk3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-24 19:45:29 UTC (rev 260452)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: josephgbr 
+# Contributor: GordonGR 
+
+pkgname=lib32-gtk3
+pkgver=3.22.21
+pkgrel=1
+pkgdesc='GObject-based multi-platform GUI toolkit'
+arch=('x86_64')
+license=('LGPL')
+url='http://www.gtk.org/'
+depends=('gtk3' 'lib32-at-spi2-atk' 'lib32-colord' 'lib32-gdk-pixbuf2'
+ 'lib32-json-glib' 'lib32-libcups' 'lib32-libepoxy' 'lib32-librsvg'
+ 'lib32-libxcomposite' 'lib32-libxcursor' 'lib32-libxinerama'
+ 'lib32-libxkbcommon' 'lib32-libxrandr' 'lib32-pango' 'lib32-rest')
+makedepends=('gcc-multilib' 'git' 'gobject-introspection' 'gtk-doc')
+_commit='fad199b4068603b1d822330d98ccfc5f0d761ac5'
+source=("git+https://git.gnome.org/browse/gtk+#commit=${_commit}";
+'gtk-query-immodules-3.0-32.hook')
+sha256sums=('SKIP'
+'c87e56504cd38d73748d12e87353680156cdeef30d082cca407d2375db821115')
+
+pkgver() {
+  cd gtk+
+
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd gtk+
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd gtk+
+
+  export CC='gcc -m32'
+  export CXX='/bin/false'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--localstatedir='/var' \
+--sysconfdir='/etc' \
+--enable-{broadway,wayland,x11}-backend \
+--disable-libcanberra \
+--disable-schemas-compile
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd gtk+
+
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}"/usr/bin/gtk-query-immodules-3.0{,-32}
+  mv "${pkgdir}"/usr/bin/gtk-query-settings{,-32}
+  rm 
"${pkgdir}"/usr/bin/{broadwayd,gtk-{builder-tool,encode-symbolic-svg,launch,update-icon-cache},gtk3-{demo,demo-application,icon-browser,widget-factory}}
+  rm -rf "${pkgdir}"/{e

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

2017-09-24 Thread Maxime Gauduin
Date: Sunday, September 24, 2017 @ 19:44:33
  Author: alucryd
Revision: 260451

upgpkg: lib32-gtk3 3.22.21-1

Modified:
  lib32-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 19:32:31 UTC (rev 260450)
+++ PKGBUILD2017-09-24 19:44:33 UTC (rev 260451)
@@ -4,7 +4,7 @@
 # Contributor: GordonGR 
 
 pkgname=lib32-gtk3
-pkgver=3.22.19
+pkgver=3.22.21
 pkgrel=1
 pkgdesc='GObject-based multi-platform GUI toolkit'
 arch=('x86_64')
@@ -15,7 +15,7 @@
  'lib32-libxcomposite' 'lib32-libxcursor' 'lib32-libxinerama'
  'lib32-libxkbcommon' 'lib32-libxrandr' 'lib32-pango' 'lib32-rest')
 makedepends=('gcc-multilib' 'git' 'gobject-introspection' 'gtk-doc')
-_commit='efbf6f183ecd24cddea743a02fe8ce545f1b55f8'
+_commit='fad199b4068603b1d822330d98ccfc5f0d761ac5'
 source=("git+https://git.gnome.org/browse/gtk+#commit=${_commit}";
 'gtk-query-immodules-3.0-32.hook')
 sha256sums=('SKIP'


[arch-commits] Commit in lib32-tcl/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2017-09-24 Thread Maxime Gauduin
Date: Sunday, September 24, 2017 @ 19:32:31
  Author: alucryd
Revision: 260450

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-tcl/repos/multilib-x86_64/PKGBUILD
(from rev 260449, lib32-tcl/trunk/PKGBUILD)
Deleted:
  lib32-tcl/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-24 19:32:14 UTC (rev 260449)
+++ PKGBUILD2017-09-24 19:32:31 UTC (rev 260450)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Miguel Revilla 
-# Contributor: Eric Bélanger 
-
-pkgname=lib32-tcl
-pkgver=8.6.6
-pkgrel=3
-pkgdesc='The Tcl scripting language'
-arch=('x86_64')
-url='http://tcl.sourceforge.net/'
-license=('custom')
-depends=('lib32-glibc' 'lib32-zlib' 'tcl')
-makedepends=('gcc-multilib')
-options=('staticlibs')
-source=("http://downloads.sourceforge.net/sourceforge/tcl/tcl${pkgver}-src.tar.gz";)
-sha256sums=('a265409781e4b3edcc4ef822533071b34c3dc6790b893963809b9fe221befe07')
-
-prepare() {
-  cd tcl${pkgver}
-
-  rm -rf pkgs/sqlite3*
-}
-
-build() {
-  cd tcl${pkgver}/unix
-
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
---mandir='/usr/share/man' \
---enable-threads
-  make
-}
-
-package() {
-  cd tcl${pkgver}/unix
-
-  make INSTALL_ROOT="${pkgdir}" install install-private-headers
-  rm -rf "${pkgdir}"/usr/{bin,include,lib,share}
-  ln -sf libtcl${pkgver%.*}.so "${pkgdir}"/usr/lib32/libtcl.so
-
-  sed -e "s#${srcdir}/tcl${pkgver}/unix#/usr/lib32#" \
-  -e "s#${srcdir}/tcl${pkgver}#/usr/include#" \
-  -i "${pkgdir}/usr/lib32/tclConfig.sh"
-
-  tdbcver=1.0.4
-  sed -e 
"s#${srcdir}/tcl${pkgver}/unix/pkgs/tdbc${tdbcver}#/usr/lib32/tdbc${tdbcver}#" \
-  -e "s#${srcdir}/tcl${pkgver}/pkgs/tdbc${tdbcver}/generic#/usr/include#" \
-  -e 
"s#${srcdir}/tcl${pkgver}/pkgs/tdbc${tdbcver}/library#/usr/lib32/tcl${pkgver%.*}#"
 \
-  -e "s#${srcdir}/tcl${pkgver}/pkgs/tdbc${tdbcver}#/usr/include#" \
-  -i "${pkgdir}/usr/lib32/tdbc${tdbcver}/tdbcConfig.sh"
-
-  ictlver=4.0.5
-  sed -e 
"s#${srcdir}/tcl${pkgver}/unix/pkgs/itcl${ictlver}#/usr/lib32/${ictlver}#" \
-  -e "s#${srcdir}/tcl${pkgver}/pkgs/itcl${ictlver}/generic#/usr/include#" \
-  -e "s#${srcdir}/tcl${pkgver}/pkgs/itcl${ictlver}#/usr/include#" \
-  -i "${pkgdir}/usr/lib32/itcl${ictlver}/itclConfig.sh"
-
-
-  install -dm 755 -p "${pkgdir}"/usr/share/licenses
-  ln -s tcl "${pkgdir}"/usr/share/licenses/lib32-tcl
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-tcl/repos/multilib-x86_64/PKGBUILD (from rev 260449, 
lib32-tcl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-24 19:32:31 UTC (rev 260450)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Miguel Revilla 
+# Contributor: Eric Bélanger 
+
+pkgname=lib32-tcl
+pkgver=8.6.7
+pkgrel=1
+pkgdesc='The Tcl scripting language'
+arch=('x86_64')
+url='http://tcl.sourceforge.net/'
+license=('custom')
+depends=('lib32-glibc' 'lib32-zlib' 'tcl')
+makedepends=('gcc-multilib')
+options=('staticlibs')
+source=("http://downloads.sourceforge.net/sourceforge/tcl/tcl${pkgver}-src.tar.gz";)
+sha256sums=('7c6b8f84e37332423cfe5bae503440d88450da8cc1243496249faa5268026ba5')
+
+prepare() {
+  cd tcl${pkgver}
+
+  rm -rf pkgs/sqlite3*
+}
+
+build() {
+  cd tcl${pkgver}/unix
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--mandir='/usr/share/man' \
+--enable-threads
+  make
+}
+
+package() {
+  cd tcl${pkgver}/unix
+
+  make INSTALL_ROOT="${pkgdir}" install install-private-headers
+  rm -rf "${pkgdir}"/usr/{bin,include,lib,share}
+  ln -sf libtcl${pkgver%.*}.so "${pkgdir}"/usr/lib32/libtcl.so
+
+  sed -e "s#${srcdir}/tcl${pkgver}/unix#/usr/lib32#" \
+  -e "s#${srcdir}/tcl${pkgver}#/usr/include#" \
+  -i "${pkgdir}/usr/lib32/tclConfig.sh"
+
+  tdbcver=1.0.5
+  sed -e 
"s#${srcdir}/tcl${pkgver}/unix/pkgs/tdbc${tdbcver}#/usr/lib32/tdbc${tdbcver}#" \
+  -e "s#${srcdir}/tcl${pkgver}/pkgs/tdbc${tdbcver}/generic#/usr/include#" \
+  -e 
"s#${srcdir}/tcl${pkgver}/pkgs/tdbc${tdbcver}/library#/usr/lib32/tcl${pkgver%.*}#"
 \
+  -e "s#${srcdir}/tcl${pkgver}/pkgs/tdbc${tdbcver}#/usr/include#" \
+  -i "${pkgdir}/usr/lib32/tdbc${tdbcver}/tdbcConfig.sh"
+
+  ictlver=4.1.0
+  sed -e 
"s#${srcdir}/tcl${pkgver}/unix/pkgs/itcl${ictlver}#/usr/lib32/${ictlver}#" \
+  -e "s#${srcdir}/tcl${pkgver}/pkgs/itcl${ictlver}/generic#/usr/include#" \
+  -e "s#${srcdir}/tcl${pkgver}/pkgs/itcl${ictlver}#/usr/include#" \
+  -i "${pkgdir}/usr/lib32/itcl${ictlver}/itcl

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

2017-09-24 Thread Maxime Gauduin
Date: Sunday, September 24, 2017 @ 19:32:14
  Author: alucryd
Revision: 260449

upgpkg: lib32-tcl 8.6.7-1

Modified:
  lib32-tcl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 19:26:30 UTC (rev 260448)
+++ PKGBUILD2017-09-24 19:32:14 UTC (rev 260449)
@@ -4,8 +4,8 @@
 # Contributor: Eric Bélanger 
 
 pkgname=lib32-tcl
-pkgver=8.6.6
-pkgrel=3
+pkgver=8.6.7
+pkgrel=1
 pkgdesc='The Tcl scripting language'
 arch=('x86_64')
 url='http://tcl.sourceforge.net/'
@@ -14,7 +14,7 @@
 makedepends=('gcc-multilib')
 options=('staticlibs')
 
source=("http://downloads.sourceforge.net/sourceforge/tcl/tcl${pkgver}-src.tar.gz";)
-sha256sums=('a265409781e4b3edcc4ef822533071b34c3dc6790b893963809b9fe221befe07')
+sha256sums=('7c6b8f84e37332423cfe5bae503440d88450da8cc1243496249faa5268026ba5')
 
 prepare() {
   cd tcl${pkgver}
@@ -48,7 +48,7 @@
   -e "s#${srcdir}/tcl${pkgver}#/usr/include#" \
   -i "${pkgdir}/usr/lib32/tclConfig.sh"
 
-  tdbcver=1.0.4
+  tdbcver=1.0.5
   sed -e 
"s#${srcdir}/tcl${pkgver}/unix/pkgs/tdbc${tdbcver}#/usr/lib32/tdbc${tdbcver}#" \
   -e "s#${srcdir}/tcl${pkgver}/pkgs/tdbc${tdbcver}/generic#/usr/include#" \
   -e 
"s#${srcdir}/tcl${pkgver}/pkgs/tdbc${tdbcver}/library#/usr/lib32/tcl${pkgver%.*}#"
 \
@@ -55,7 +55,7 @@
   -e "s#${srcdir}/tcl${pkgver}/pkgs/tdbc${tdbcver}#/usr/include#" \
   -i "${pkgdir}/usr/lib32/tdbc${tdbcver}/tdbcConfig.sh"
 
-  ictlver=4.0.5
+  ictlver=4.1.0
   sed -e 
"s#${srcdir}/tcl${pkgver}/unix/pkgs/itcl${ictlver}#/usr/lib32/${ictlver}#" \
   -e "s#${srcdir}/tcl${pkgver}/pkgs/itcl${ictlver}/generic#/usr/include#" \
   -e "s#${srcdir}/tcl${pkgver}/pkgs/itcl${ictlver}#/usr/include#" \


[arch-commits] Commit in lib32-wayland/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2017-09-24 Thread Maxime Gauduin
Date: Sunday, September 24, 2017 @ 19:26:30
  Author: alucryd
Revision: 260448

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-wayland/repos/multilib-x86_64/PKGBUILD
(from rev 260447, lib32-wayland/trunk/PKGBUILD)
Deleted:
  lib32-wayland/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-24 19:26:09 UTC (rev 260447)
+++ PKGBUILD2017-09-24 19:26:30 UTC (rev 260448)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Tom Gundersen 
-# Contributor: Sébastien Luttringer 
-# Contributor: Joel Teichroeb 
-
-pkgname=lib32-wayland
-pkgver=1.13.0
-pkgrel=1
-pkgdesc='A computer display server protocol'
-arch=('x86_64')
-url='https://wayland.freedesktop.org'
-license=('MIT')
-depends=('lib32-glibc' 'lib32-libffi' 'lib32-expat' 'lib32-libxml2' 'wayland')
-source=("https://wayland.freedesktop.org/releases/wayland-${pkgver}.tar.xz"{,.sig})
-validpgpkeys=('C7223EBE4EF66513B892598911A30156E0E67611') # Bryce Harrington
-sha256sums=('69b052c031a61e89af7cc8780893d0da1e301492352aa449dee9345043e6fe51'
-'SKIP')
-
-build() {
-  cd wayland-${pkgver}
-
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
---disable-documentation \
---disable-static
-  make
-}
-
-package() {
-  cd wayland-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/{bin,include,share}
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s wayland "${pkgdir}"/usr/share/licenses/lib32-wayland
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-wayland/repos/multilib-x86_64/PKGBUILD (from rev 260447, 
lib32-wayland/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-24 19:26:30 UTC (rev 260448)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Tom Gundersen 
+# Contributor: Sébastien Luttringer 
+# Contributor: Joel Teichroeb 
+
+pkgname=lib32-wayland
+pkgver=1.14.0
+pkgrel=1
+pkgdesc='A computer display server protocol'
+arch=('x86_64')
+url='https://wayland.freedesktop.org'
+license=('MIT')
+depends=('lib32-glibc' 'lib32-libffi' 'lib32-expat' 'lib32-libxml2' 'wayland')
+source=("https://wayland.freedesktop.org/releases/wayland-${pkgver}.tar.xz"{,.sig})
+validpgpkeys=('C7223EBE4EF66513B892598911A30156E0E67611') # Bryce Harrington
+sha256sums=('ed80cabc0961a759a42092e2c39aabfc1ec9a13c86c98bbe2b812f008da27ab8'
+'SKIP')
+
+build() {
+  cd wayland-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--disable-documentation \
+--disable-static
+  make
+}
+
+package() {
+  cd wayland-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s wayland "${pkgdir}"/usr/share/licenses/lib32-wayland
+}
+
+# vim: ts=2 sw=2 et:


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

2017-09-24 Thread Maxime Gauduin
Date: Sunday, September 24, 2017 @ 19:26:09
  Author: alucryd
Revision: 260447

upgpkg: lib32-wayland 1.14.0-1

Modified:
  lib32-wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 17:09:45 UTC (rev 260446)
+++ PKGBUILD2017-09-24 19:26:09 UTC (rev 260447)
@@ -5,7 +5,7 @@
 # Contributor: Joel Teichroeb 
 
 pkgname=lib32-wayland
-pkgver=1.13.0
+pkgver=1.14.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 depends=('lib32-glibc' 'lib32-libffi' 'lib32-expat' 'lib32-libxml2' 'wayland')
 
source=("https://wayland.freedesktop.org/releases/wayland-${pkgver}.tar.xz"{,.sig})
 validpgpkeys=('C7223EBE4EF66513B892598911A30156E0E67611') # Bryce Harrington
-sha256sums=('69b052c031a61e89af7cc8780893d0da1e301492352aa449dee9345043e6fe51'
+sha256sums=('ed80cabc0961a759a42092e2c39aabfc1ec9a13c86c98bbe2b812f008da27ab8'
 'SKIP')
 
 build() {


[arch-commits] Commit in lib32-freetype2/repos (6 files)

2017-09-24 Thread Laurent Carlier
Date: Sunday, September 24, 2017 @ 17:09:45
  Author: lcarlier
Revision: 260446

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-freetype2/repos/multilib-testing-x86_64/
  
lib32-freetype2/repos/multilib-testing-x86_64/0001-Enable-table-validation-modules.patch
(from rev 260445, 
lib32-freetype2/trunk/0001-Enable-table-validation-modules.patch)
  
lib32-freetype2/repos/multilib-testing-x86_64/0002-Enable-subpixel-rendering.patch
(from rev 260445, 
lib32-freetype2/trunk/0002-Enable-subpixel-rendering.patch)
  
lib32-freetype2/repos/multilib-testing-x86_64/0003-Enable-infinality-subpixel-hinting.patch
(from rev 260445, 
lib32-freetype2/trunk/0003-Enable-infinality-subpixel-hinting.patch)
  
lib32-freetype2/repos/multilib-testing-x86_64/0004-Enable-long-PCF-family-names.patch
(from rev 260445, 
lib32-freetype2/trunk/0004-Enable-long-PCF-family-names.patch)
  lib32-freetype2/repos/multilib-testing-x86_64/PKGBUILD
(from rev 260445, lib32-freetype2/trunk/PKGBUILD)

---+
 0001-Enable-table-validation-modules.patch|   49 +++
 0002-Enable-subpixel-rendering.patch  |   25 ++
 0003-Enable-infinality-subpixel-hinting.patch |   27 ++
 0004-Enable-long-PCF-family-names.patch   |   25 ++
 PKGBUILD  |   59 
 5 files changed, 185 insertions(+)

Copied: 
lib32-freetype2/repos/multilib-testing-x86_64/0001-Enable-table-validation-modules.patch
 (from rev 260445, 
lib32-freetype2/trunk/0001-Enable-table-validation-modules.patch)
===
--- multilib-testing-x86_64/0001-Enable-table-validation-modules.patch  
(rev 0)
+++ multilib-testing-x86_64/0001-Enable-table-validation-modules.patch  
2017-09-24 17:09:45 UTC (rev 260446)
@@ -0,0 +1,49 @@
+From 17dd2751813c3c8b37dac474cc5024473eb9bece Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Tue, 23 Jun 2015 08:40:29 +0200
+Subject: [PATCH 1/4] Enable table validation modules
+
+---
+ modules.cfg | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/modules.cfg b/modules.cfg
+index 517111efeb642459..64b2a34d510ce8f7 100644
+--- a/modules.cfg
 b/modules.cfg
+@@ -120,30 +120,30 @@ AUX_MODULES += cache
+ # TrueType GX/AAT table validation.  Needs ftgxval.c below.
+ #
+ # No FT_CONFIG_OPTION_PIC support.
+-# AUX_MODULES += gxvalid
++AUX_MODULES += gxvalid
+ 
+ # Support for streams compressed with gzip (files with suffix .gz).
+ #
+ # See include/freetype/ftgzip.h for the API.
+ # No FT_CONFIG_OPTION_PIC support.
+ AUX_MODULES += gzip
+ 
+ # Support for streams compressed with LZW (files with suffix .Z).
+ #
+ # See include/freetype/ftlzw.h for the API.
+ # No FT_CONFIG_OPTION_PIC support.
+ AUX_MODULES += lzw
+ 
+ # Support for streams compressed with bzip2 (files with suffix .bz2).
+ #
+ # See include/freetype/ftbzip2.h for the API.
+ # No FT_CONFIG_OPTION_PIC support.
+ AUX_MODULES += bzip2
+ 
+ # OpenType table validation.  Needs ftotval.c below.
+ #
+ # No FT_CONFIG_OPTION_PIC support.
+-# AUX_MODULES += otvalid
++AUX_MODULES += otvalid
+ 
+ # Auxiliary PostScript driver component to share common code.
+ #
+-- 
+2.13.0
+

Copied: 
lib32-freetype2/repos/multilib-testing-x86_64/0002-Enable-subpixel-rendering.patch
 (from rev 260445, lib32-freetype2/trunk/0002-Enable-subpixel-rendering.patch)
===
--- multilib-testing-x86_64/0002-Enable-subpixel-rendering.patch
(rev 0)
+++ multilib-testing-x86_64/0002-Enable-subpixel-rendering.patch
2017-09-24 17:09:45 UTC (rev 260446)
@@ -0,0 +1,25 @@
+From a8f7f3068a8a5f94adfc77f4ddf03bf08da38f9b Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Tue, 23 Jun 2015 08:43:07 +0200
+Subject: [PATCH 2/4] Enable subpixel rendering
+
+---
+ include/freetype/config/ftoption.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/include/freetype/config/ftoption.h 
b/include/freetype/config/ftoption.h
+index 1bf6e8f534ff0734..1126716626b570df 100644
+--- a/include/freetype/config/ftoption.h
 b/include/freetype/config/ftoption.h
+@@ -122,7 +122,7 @@ FT_BEGIN_HEADER
+   /* This is done to allow FreeType clients to run unmodified, forcing */
+   /* them to display normal gray-level anti-aliased glyphs.*/
+   /*   */
+-/* #define FT_CONFIG_OPTION_SUBPIXEL_RENDERING */
++#define FT_CONFIG_OPTION_SUBPIXEL_RENDERING
+ 
+ 
+   /*/
+-- 
+2.13.0
+

Copied: 
lib32-freetype2/repos/multilib-testing-x86_64/0003-Enable-infinality-subpixel-hinting.patch
 (from rev 260445, 
lib32-freetype2/trunk/0003-Enable-infinality-subpixel-hinting.patch)
==

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

2017-09-24 Thread Laurent Carlier
Date: Sunday, September 24, 2017 @ 17:09:24
  Author: lcarlier
Revision: 260445

upgpkg: lib32-freetype2 2.8.1-1

upstream update 2.8.1

Modified:
  lib32-freetype2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 16:05:32 UTC (rev 260444)
+++ PKGBUILD2017-09-24 17:09:24 UTC (rev 260445)
@@ -4,8 +4,8 @@
 
 _pkgbasename=freetype2
 pkgname=lib32-$_pkgbasename
-pkgver=2.8
-pkgrel=2
+pkgver=2.8.1
+pkgrel=1
 pkgdesc="TrueType font rendering library (32-bit)"
 arch=(x86_64)
 license=('GPL')
@@ -17,13 +17,11 @@
 provides=('libfreetype.so')
 
source=(https://download.savannah.gnu.org/releases/freetype/freetype-${pkgver}.tar.bz2{,.sig}
 0001-Enable-table-validation-modules.patch
-0002-Enable-subpixel-rendering.patch
 0003-Enable-infinality-subpixel-hinting.patch
 0004-Enable-long-PCF-family-names.patch)
-sha1sums=('42c6b1f733fe13a3eba135f5025b22cb68450f91'
+sha1sums=('417bb3747c4ac95b6f2652024a53fad45581fa1c'
   'SKIP'
   'c3e91e668936206d3c158bffde0f69788a086a5b'
-  '4ff958229a7f87e04a9894d5a6ed2df227071931'
   '81586014ea44375ddc85dd9dbcabae6e91c34d62'
   '334f229875039794adeb574e27d365bb445fb314')
 validpgpkeys=('58E0C111E39F5408C5D3EC76C1A60EACE707FDA5')
@@ -34,7 +32,6 @@
 
   cd freetype2
   patch -Np1 -i ../0001-Enable-table-validation-modules.patch
-  patch -Np1 -i ../0002-Enable-subpixel-rendering.patch
   patch -Np1 -i ../0003-Enable-infinality-subpixel-hinting.patch
   patch -Np1 -i ../0004-Enable-long-PCF-family-names.patch
 }


[arch-commits] Commit in gitlab-runner/repos (24 files)

2017-09-24 Thread Sven-Hendrik Haase
Date: Sunday, September 24, 2017 @ 16:05:32
  Author: svenstaro
Revision: 260444

archrelease: copy trunk to community-i686, community-x86_64

Added:
  gitlab-runner/repos/community-i686/PKGBUILD
(from rev 260443, gitlab-runner/trunk/PKGBUILD)
  gitlab-runner/repos/community-i686/config.toml
(from rev 260443, gitlab-runner/trunk/config.toml)
  gitlab-runner/repos/community-i686/gitlab-runner.install
(from rev 260443, gitlab-runner/trunk/gitlab-runner.install)
  gitlab-runner/repos/community-i686/gitlab-runner.service
(from rev 260443, gitlab-runner/trunk/gitlab-runner.service)
  gitlab-runner/repos/community-i686/gitlab-runner.sysusers
(from rev 260443, gitlab-runner/trunk/gitlab-runner.sysusers)
  gitlab-runner/repos/community-i686/gitlab-runner.tmpfiles
(from rev 260443, gitlab-runner/trunk/gitlab-runner.tmpfiles)
  gitlab-runner/repos/community-x86_64/PKGBUILD
(from rev 260443, gitlab-runner/trunk/PKGBUILD)
  gitlab-runner/repos/community-x86_64/config.toml
(from rev 260443, gitlab-runner/trunk/config.toml)
  gitlab-runner/repos/community-x86_64/gitlab-runner.install
(from rev 260443, gitlab-runner/trunk/gitlab-runner.install)
  gitlab-runner/repos/community-x86_64/gitlab-runner.service
(from rev 260443, gitlab-runner/trunk/gitlab-runner.service)
  gitlab-runner/repos/community-x86_64/gitlab-runner.sysusers
(from rev 260443, gitlab-runner/trunk/gitlab-runner.sysusers)
  gitlab-runner/repos/community-x86_64/gitlab-runner.tmpfiles
(from rev 260443, gitlab-runner/trunk/gitlab-runner.tmpfiles)
Deleted:
  gitlab-runner/repos/community-i686/PKGBUILD
  gitlab-runner/repos/community-i686/config.toml
  gitlab-runner/repos/community-i686/gitlab-runner.install
  gitlab-runner/repos/community-i686/gitlab-runner.service
  gitlab-runner/repos/community-i686/gitlab-runner.sysusers
  gitlab-runner/repos/community-i686/gitlab-runner.tmpfiles
  gitlab-runner/repos/community-x86_64/PKGBUILD
  gitlab-runner/repos/community-x86_64/config.toml
  gitlab-runner/repos/community-x86_64/gitlab-runner.install
  gitlab-runner/repos/community-x86_64/gitlab-runner.service
  gitlab-runner/repos/community-x86_64/gitlab-runner.sysusers
  gitlab-runner/repos/community-x86_64/gitlab-runner.tmpfiles

-+
 /PKGBUILD   |  148 ++
 /config.toml|2 
 /gitlab-runner.install  |   12 ++
 /gitlab-runner.service  |   34 ++
 /gitlab-runner.sysusers |2 
 /gitlab-runner.tmpfiles |2 
 community-i686/PKGBUILD |   75 ---
 community-i686/config.toml  |1 
 community-i686/gitlab-runner.install|6 -
 community-i686/gitlab-runner.service|   17 ---
 community-i686/gitlab-runner.sysusers   |1 
 community-i686/gitlab-runner.tmpfiles   |1 
 community-x86_64/PKGBUILD   |   75 ---
 community-x86_64/config.toml|1 
 community-x86_64/gitlab-runner.install  |6 -
 community-x86_64/gitlab-runner.service  |   17 ---
 community-x86_64/gitlab-runner.sysusers |1 
 community-x86_64/gitlab-runner.tmpfiles |1 
 18 files changed, 200 insertions(+), 202 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-24 16:05:08 UTC (rev 260443)
+++ community-i686/PKGBUILD 2017-09-24 16:05:32 UTC (rev 260444)
@@ -1,75 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Lubomir 'Kuci' Kucera 
-
-pkgname=gitlab-runner
-pkgver=9.5.0
-pkgrel=2
-pkgdesc="The official GitLab CI runner written in Go"
-arch=('i686' 'x86_64')
-url='https://gitlab.com/gitlab-org/gitlab-runner'
-license=('GPL3')
-depends=('ca-certificates' 'curl' 'git' 'glibc' 'tar')
-makedepends=('git' 'go' 'git' 'go-bindata' 'mercurial')
-install='gitlab-runner.install'
-replaces=('gitlab-ci-multi-runner')
-backup=('etc/gitlab-runner/config.toml')
-noextract=("prebuilt-${pkgver}-x86_64.tar.xz"
-   "prebuilt-${pkgver}-arm.tar.xz")
-
-# Note: This should be built using git because the runner gets its version 
information from there and I
-# haven't found the place to patch that yet.
-source=("git+https://gitlab.com/gitlab-org/gitlab-ci-multi-runner.git#tag=v${pkgver}";
-
"prebuilt-${pkgver}-x86_64.tar.xz::https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v${pkgver}/docker/prebuilt-x86_64.tar.xz";
-
"prebuilt-${pkgver}-arm.tar.xz::https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v${pkgver}/docker/prebuilt-arm.tar.xz";
-"gitlab-runner.service"
-"gitlab-runner.sysusers"
-"gitlab-runner.tmpfiles"
-"config.toml")
-sha512sums=('SKIP'
-
'da953698b2656d5d85a77891a3944951c8099ea61533b6c600d867edb4bb9ee90c799aadb46eb1509abee2810f98a511e20bb8f61adfce0b6c2cb008db1fc1b8'
-
'49ae617

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

2017-09-24 Thread Sven-Hendrik Haase
Date: Sunday, September 24, 2017 @ 16:05:08
  Author: svenstaro
Revision: 260443

upgpkg: gitlab-runner 10.0.0-1

Modified:
  gitlab-runner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 16:02:39 UTC (rev 260442)
+++ PKGBUILD2017-09-24 16:05:08 UTC (rev 260443)
@@ -2,8 +2,8 @@
 # Contributor: Lubomir 'Kuci' Kucera 
 
 pkgname=gitlab-runner
-pkgver=9.5.0
-pkgrel=2
+pkgver=10.0.0
+pkgrel=1
 pkgdesc="The official GitLab CI runner written in Go"
 arch=('i686' 'x86_64')
 url='https://gitlab.com/gitlab-org/gitlab-runner'
@@ -18,16 +18,16 @@
 
 # Note: This should be built using git because the runner gets its version 
information from there and I
 # haven't found the place to patch that yet.
-source=("git+https://gitlab.com/gitlab-org/gitlab-ci-multi-runner.git#tag=v${pkgver}";
-
"prebuilt-${pkgver}-x86_64.tar.xz::https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v${pkgver}/docker/prebuilt-x86_64.tar.xz";
-
"prebuilt-${pkgver}-arm.tar.xz::https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v${pkgver}/docker/prebuilt-arm.tar.xz";
+source=("git+https://gitlab.com/gitlab-org/gitlab-runner.git#tag=v${pkgver}";
+
"prebuilt-${pkgver}-x86_64.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/docker/prebuilt-x86_64.tar.xz";
+
"prebuilt-${pkgver}-arm.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/docker/prebuilt-arm.tar.xz";
 "gitlab-runner.service"
 "gitlab-runner.sysusers"
 "gitlab-runner.tmpfiles"
 "config.toml")
 sha512sums=('SKIP'
-
'da953698b2656d5d85a77891a3944951c8099ea61533b6c600d867edb4bb9ee90c799aadb46eb1509abee2810f98a511e20bb8f61adfce0b6c2cb008db1fc1b8'
-
'49ae61727a98082adfc6b0b9fd5b108fc7981f4628dc20a6dd6136102b9e17f3877ad61efff51e2ef3e7da40e01571dd2f94849fb120bec55ba028542751569c'
+
'acdc4f51b300d24ae3a8b62c1f7c6aa67e97c2a0c55fe602844f14827074383a4af8aa43967752c53fc4c455d58c6dbd49f3775784bf5b2458e5fda676360e37'
+
'b9b9ecb8980a6edc97b10083c39942b0bd63da60c15fd6af034ac296153c0a0ebec5f1c37f8cc6eb28a74246c88bac60353a3b4526a09064b5e0d01c8827fef8'
 
'ed24841242a56a3b10dd80cd23e0c980f6bbe5fd0ebd4c6b46529947e4920cc9c03e4f4b239da8a798c801a6cdd757415113f97e45c1032f2c519fdaec4d3ae0'
 
'8aa7f08702e99053c696fcc2aaba83beb9e9cd6f31973d82862db9350ac46df3a095377625d31fe909677525290d2de922d7a97930ed235774cb8f0da8944d40'
 
'6751d9fa0b27172d1b419c4138f5ac15cbc7c9147653a7258cf1470216142c637210bb60608c7ed0974e0e4057e5ddeae32225df1bb36e7dd1f20fec71e33cc3'
@@ -35,8 +35,8 @@
 
 prepare() {
 mkdir -p "${srcdir}/src/gitlab.com/gitlab-org/"
-ln -sf "${srcdir}/gitlab-ci-multi-runner" 
"${srcdir}/src/gitlab.com/gitlab-org/gitlab-ci-multi-runner"
-cd "${srcdir}/src/gitlab.com/gitlab-org/gitlab-ci-multi-runner"
+ln -sf "${srcdir}/gitlab-runner" 
"${srcdir}/src/gitlab.com/gitlab-org/gitlab-runner"
+cd "${srcdir}/src/gitlab.com/gitlab-org/gitlab-runner"
 
 make version
 
@@ -48,7 +48,7 @@
 }
 
 build() {
-cd "${srcdir}/src/gitlab.com/gitlab-org/gitlab-ci-multi-runner"
+cd "${srcdir}/src/gitlab.com/gitlab-org/gitlab-runner"
 
 export GOPATH="${srcdir}"
 go-bindata \
@@ -64,12 +64,11 @@
 }
 
 package() {
-cd "${srcdir}/src/gitlab.com/gitlab-org/gitlab-ci-multi-runner"
+cd "${srcdir}/src/gitlab.com/gitlab-org/gitlab-runner"
 
 install -Dm644 "${srcdir}/config.toml" 
"${pkgdir}/etc/gitlab-runner/config.toml"
 install -Dm644 "${srcdir}/gitlab-runner.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-runner.service"
 install -Dm644 "${srcdir}/gitlab-runner.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/gitlab-runner.conf"
 install -Dm644 "${srcdir}/gitlab-runner.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/gitlab-runner.conf"
-install -Dm755 out/binaries/gitlab-ci-multi-runner 
"${pkgdir}/usr/bin/gitlab-ci-multi-runner"
-ln -s /usr/bin/gitlab-ci-multi-runner "${pkgdir}/usr/bin/gitlab-runner"
+install -Dm755 out/binaries/gitlab-runner "${pkgdir}/usr/bin/gitlab-runner"
 }


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

2017-09-24 Thread Felix Yan
Date: Sunday, September 24, 2017 @ 16:02:39
  Author: felixonmars
Revision: 260442

archrelease: copy trunk to community-i686, community-x86_64

Added:
  haskell-diff/repos/community-i686/
  haskell-diff/repos/community-i686/PKGBUILD
(from rev 260441, haskell-diff/trunk/PKGBUILD)
  haskell-diff/repos/community-x86_64/
  haskell-diff/repos/community-x86_64/PKGBUILD
(from rev 260441, haskell-diff/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   39 +++
 community-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: haskell-diff/repos/community-i686/PKGBUILD (from rev 260441, 
haskell-diff/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-24 16:02:39 UTC (rev 260442)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=Diff
+pkgname=haskell-diff
+pkgver=0.3.4
+pkgrel=1
+pkgdesc="O(ND) diff algorithm in haskell"
+url="https://hackage.haskell.org/package/Diff";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('7b8af9a668429d8de141b840e4b22abafb7ccafa9cdbe4c5ee21efe58802ac5889f1575fd6b3c83755b1128ecec68f3aa0213e99b65161f1e7b5681dc6978ad7')
+
+build() {
+cd "${srcdir}/${_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 "${srcdir}/${_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"
+}

Copied: haskell-diff/repos/community-x86_64/PKGBUILD (from rev 260441, 
haskell-diff/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-24 16:02:39 UTC (rev 260442)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=Diff
+pkgname=haskell-diff
+pkgver=0.3.4
+pkgrel=1
+pkgdesc="O(ND) diff algorithm in haskell"
+url="https://hackage.haskell.org/package/Diff";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('7b8af9a668429d8de141b840e4b22abafb7ccafa9cdbe4c5ee21efe58802ac5889f1575fd6b3c83755b1128ecec68f3aa0213e99b65161f1e7b5681dc6978ad7')
+
+build() {
+cd "${srcdir}/${_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 "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (4 files)

2017-09-24 Thread Felix Yan
Date: Sunday, September 24, 2017 @ 16:00:38
  Author: felixonmars
Revision: 260441

addpkg: haskell-diff 0.3.4-1

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

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

Added: haskell-diff/trunk/PKGBUILD
===
--- haskell-diff/trunk/PKGBUILD (rev 0)
+++ haskell-diff/trunk/PKGBUILD 2017-09-24 16:00:38 UTC (rev 260441)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=Diff
+pkgname=haskell-diff
+pkgver=0.3.4
+pkgrel=1
+pkgdesc="O(ND) diff algorithm in haskell"
+url="https://hackage.haskell.org/package/Diff";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('7b8af9a668429d8de141b840e4b22abafb7ccafa9cdbe4c5ee21efe58802ac5889f1575fd6b3c83755b1128ecec68f3aa0213e99b65161f1e7b5681dc6978ad7')
+
+build() {
+cd "${srcdir}/${_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 "${srcdir}/${_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"
+}


Property changes on: haskell-diff/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2017-09-24 Thread Felix Yan
Date: Sunday, September 24, 2017 @ 15:56:34
  Author: felixonmars
Revision: 260440

archrelease: copy trunk to community-i686, community-x86_64

Added:
  haskell-configfile/repos/community-i686/
  haskell-configfile/repos/community-i686/PKGBUILD
(from rev 260439, haskell-configfile/trunk/PKGBUILD)
  haskell-configfile/repos/community-x86_64/
  haskell-configfile/repos/community-x86_64/PKGBUILD
(from rev 260439, haskell-configfile/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   40 
 community-x86_64/PKGBUILD |   40 
 2 files changed, 80 insertions(+)

Copied: haskell-configfile/repos/community-i686/PKGBUILD (from rev 260439, 
haskell-configfile/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-24 15:56:34 UTC (rev 260440)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ConfigFile
+pkgname=haskell-configfile
+pkgver=1.1.4
+pkgrel=1
+pkgdesc="Configuration file reading & writing"
+url="http://software.complete.org/configfile";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-parsec' 'haskell-mtl' 'haskell-missingh')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('4455110c95172461b2d82ae88ba4f386d5e49ddd7f7def83714d2f6198090f0d121166eece3efa735341da9bbc0029e704be00d3e671d24ad27e838dfe913776')
+
+build() {
+cd "${srcdir}/${_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 \
+-f-buildtests
+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}/${_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 "COPYRIGHT" 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYRIGHT"
+}

Copied: haskell-configfile/repos/community-x86_64/PKGBUILD (from rev 260439, 
haskell-configfile/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-24 15:56:34 UTC (rev 260440)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ConfigFile
+pkgname=haskell-configfile
+pkgver=1.1.4
+pkgrel=1
+pkgdesc="Configuration file reading & writing"
+url="http://software.complete.org/configfile";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-parsec' 'haskell-mtl' 'haskell-missingh')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('4455110c95172461b2d82ae88ba4f386d5e49ddd7f7def83714d2f6198090f0d121166eece3efa735341da9bbc0029e704be00d3e671d24ad27e838dfe913776')
+
+build() {
+cd "${srcdir}/${_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 \
+-f-buildtests
+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}/${_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 "COPYRIGHT" 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYRIGHT"
+}


[arch-commits] Commit in (4 files)

2017-09-24 Thread Felix Yan
Date: Sunday, September 24, 2017 @ 15:55:48
  Author: felixonmars
Revision: 260439

addpkg: haskell-configfile 1.1.4-1

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

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

Added: haskell-configfile/trunk/PKGBUILD
===
--- haskell-configfile/trunk/PKGBUILD   (rev 0)
+++ haskell-configfile/trunk/PKGBUILD   2017-09-24 15:55:48 UTC (rev 260439)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ConfigFile
+pkgname=haskell-configfile
+pkgver=1.1.4
+pkgrel=1
+pkgdesc="Configuration file reading & writing"
+url="http://software.complete.org/configfile";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-parsec' 'haskell-mtl' 'haskell-missingh')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('4455110c95172461b2d82ae88ba4f386d5e49ddd7f7def83714d2f6198090f0d121166eece3efa735341da9bbc0029e704be00d3e671d24ad27e838dfe913776')
+
+build() {
+cd "${srcdir}/${_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 \
+-f-buildtests
+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}/${_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 "COPYRIGHT" 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYRIGHT"
+}


Property changes on: haskell-configfile/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in nvidia-settings/repos (6 files)

2017-09-24 Thread Felix Yan
Date: Sunday, September 24, 2017 @ 14:28:06
  Author: felixonmars
Revision: 306203

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  nvidia-settings/repos/testing-i686/
  nvidia-settings/repos/testing-i686/PKGBUILD
(from rev 306202, nvidia-settings/trunk/PKGBUILD)
  nvidia-settings/repos/testing-i686/libxnvctrl_so.patch
(from rev 306202, nvidia-settings/trunk/libxnvctrl_so.patch)
  nvidia-settings/repos/testing-x86_64/
  nvidia-settings/repos/testing-x86_64/PKGBUILD
(from rev 306202, nvidia-settings/trunk/PKGBUILD)
  nvidia-settings/repos/testing-x86_64/libxnvctrl_so.patch
(from rev 306202, nvidia-settings/trunk/libxnvctrl_so.patch)

+
 testing-i686/PKGBUILD  |   61 +++
 testing-i686/libxnvctrl_so.patch   |   67 +++
 testing-x86_64/PKGBUILD|   61 +++
 testing-x86_64/libxnvctrl_so.patch |   67 +++
 4 files changed, 256 insertions(+)

Copied: nvidia-settings/repos/testing-i686/PKGBUILD (from rev 306202, 
nvidia-settings/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-09-24 14:28:06 UTC (rev 306203)
@@ -0,0 +1,61 @@
+# Maintainer: Felix Yan 
+# Maintainer: Levente Polyak 
+
+pkgbase=nvidia-settings
+pkgname=('nvidia-settings' 'libxnvctrl')
+pkgver=384.90
+pkgrel=1
+pkgdesc="Tool for configuring the NVIDIA graphics driver"
+url='https://github.com/NVIDIA/nvidia-settings'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('git' 'inetutils' 'gtk2' 'jansson' 'gtk3' 'libxv' 'libvdpau' 
'nvidia-utils' 'libxext')
+options=('staticlibs')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/NVIDIA/nvidia-settings/archive/${pkgver}.tar.gz
+libxnvctrl_so.patch)
+sha512sums=('d5c78844af1e0faaefd523347dc3dd3f17a49e9d0ac87b64b4177f06743ff7e06e1a3e454ad54e805c1f976cced6b7f45bfa851334005e58f84f8401b26202af'
+
'ed4b609de9691fbb4421eea340399331e7a5c5f47b9de8eade40ca8f78ac39a6f76cc106928cd0d79825f248a3a0eb563a10f68b7b6991cf3e28db0dde2a0f8d')
+
+prepare() {
+  export PREFIX=/usr
+  export NV_USE_BUNDLED_LIBJANSSON=0
+  cd ${pkgbase}-${pkgver}
+  patch -p1 < "${srcdir}/libxnvctrl_so.patch"
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  make
+  make -C src/libXNVCtrl
+}
+
+package_nvidia-settings() {
+  depends=('jansson' 'gtk3' 'libxv' 'libvdpau' 'nvidia-utils' 'libxnvctrl')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m644 doc/nvidia-settings.desktop 
"${pkgdir}/usr/share/applications/nvidia-settings.desktop"
+  install -D -m644 doc/nvidia-settings.png 
"${pkgdir}/usr/share/pixmaps/nvidia-settings.png"
+  sed -e 's:__UTILS_PATH__:/usr/bin:' -e 
's:__PIXMAP_PATH__:/usr/share/pixmaps:' -i 
"${pkgdir}/usr/share/applications/nvidia-settings.desktop"
+
+  rm "$pkgdir/usr/lib/libnvidia-gtk2.so.$pkgver"
+}
+
+package_libxnvctrl() {
+  depends=('libxext')
+  pkgdesc='NVIDIA NV-CONTROL X extension'
+
+  cd ${pkgbase}-${pkgver}
+  install -Dm 644 doc/{NV-CONTROL-API.txt,FRAMELOCK.txt} -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 samples/{Makefile,README,*.c,*.h,*.mk} -t 
"${pkgdir}/usr/share/doc/${pkgname}/samples"
+
+  cd src/libXNVCtrl
+  install -Dm 644 *.h -t "${pkgdir}/usr/include/NVCtrl"
+  install -Dm 644 libXNVCtrl.a -t "${pkgdir}/usr/lib"
+  install -Dm 755 libXNVCtrl.so.0.0.0 -t "${pkgdir}/usr/lib"
+  ln -s libXNVCtrl.so.0.0.0 "${pkgdir}/usr/lib/libXNVCtrl.so.0"
+  ln -s libXNVCtrl.so.0 "${pkgdir}/usr/lib/libXNVCtrl.so"
+}
+
+# vim: ts=2 sw=2 et:

Copied: nvidia-settings/repos/testing-i686/libxnvctrl_so.patch (from rev 
306202, nvidia-settings/trunk/libxnvctrl_so.patch)
===
--- testing-i686/libxnvctrl_so.patch(rev 0)
+++ testing-i686/libxnvctrl_so.patch2017-09-24 14:28:06 UTC (rev 306203)
@@ -0,0 +1,67 @@
+--- a/src/Makefile
 b/src/Makefile
+@@ -106,6 +106,8 @@
+ XNVCTRL_DIR ?= libXNVCtrl
+ XNVCTRL_MAKEFILE?= Makefile
+ XNVCTRL_ARCHIVE ?= $(XNVCTRL_DIR)/libXNVCtrl.a
++XNVCTRL_SHARED  ?= $(XNVCTRL_DIR)/libXNVCtrl.so.0
++XNVCTRL_LIB ?= $(XNVCTRL_SHARED)
+ XCONFIG_PARSER_DIR  ?= XF86Config-parser
+ COMMON_UTILS_DIR?= common-utils
+ COMMON_UNIX_DIR ?= common-unix
+@@ -280,15 +282,18 @@
+   $(MKDIR) $(BINDIR)
+   $(INSTALL) $(INSTALL_BIN_ARGS) $< $(BINDIR)/$(notdir $<)
+ 
++$(XNVCTRL_ARCHIVE) $(XNVCTRL_SHARED):
++  $(MAKE) -C $(XNVCTRL_DIR)
++
+ $(eval $(call DEBUG_INFO_RULES, $(NVIDIA_SETTINGS)))
+-$(NVIDIA_SETTINGS).unstripped: $(OBJS) $(XNVCTRL_ARCHIVE)
++$(NVIDIA_SETTINGS).unstripped: $(OBJS) $(XNVCTRL_LIB)
+   $(call quiet_cmd,LINK) $(CFLAGS) $(LDFLAGS) $(BIN_LDFLAGS) \
+-  -rdynamic -o $@ $(OBJS) $(XNVCTRL_ARCHIVE

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

2017-09-24 Thread Felix Yan
Date: Sunday, September 24, 2017 @ 14:27:33
  Author: felixonmars
Revision: 306202

upgpkg: nvidia-settings 384.90-1

Modified:
  nvidia-settings/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 14:25:38 UTC (rev 306201)
+++ PKGBUILD2017-09-24 14:27:33 UTC (rev 306202)
@@ -3,7 +3,7 @@
 
 pkgbase=nvidia-settings
 pkgname=('nvidia-settings' 'libxnvctrl')
-pkgver=384.69
+pkgver=384.90
 pkgrel=1
 pkgdesc="Tool for configuring the NVIDIA graphics driver"
 url='https://github.com/NVIDIA/nvidia-settings'
@@ -13,7 +13,7 @@
 options=('staticlibs')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/NVIDIA/nvidia-settings/archive/${pkgver}.tar.gz
 libxnvctrl_so.patch)
-sha512sums=('3017be97f57c3f3792fefdc043e0bcc3c28c2dff9c6864dcd3a18e29c3dd4d2048e121a1e1d23310e80a3a132472d6e7e2db22ac7544f792aa7b3e112bc428c5'
+sha512sums=('d5c78844af1e0faaefd523347dc3dd3f17a49e9d0ac87b64b4177f06743ff7e06e1a3e454ad54e805c1f976cced6b7f45bfa851334005e58f84f8401b26202af'
 
'ed4b609de9691fbb4421eea340399331e7a5c5f47b9de8eade40ca8f78ac39a6f76cc106928cd0d79825f248a3a0eb563a10f68b7b6991cf3e28db0dde2a0f8d')
 
 prepare() {


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

2017-09-24 Thread Jiachen Yang
Date: Sunday, September 24, 2017 @ 14:26:50
  Author: farseerfc
Revision: 260438

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  qtox/repos/community-staging-i686/
  qtox/repos/community-staging-i686/PKGBUILD
(from rev 260437, qtox/trunk/PKGBUILD)
  qtox/repos/community-staging-x86_64/
  qtox/repos/community-staging-x86_64/PKGBUILD
(from rev 260437, qtox/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   69 
 community-staging-x86_64/PKGBUILD |   69 
 2 files changed, 138 insertions(+)

Copied: qtox/repos/community-staging-i686/PKGBUILD (from rev 260437, 
qtox/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-24 14:26:50 UTC (rev 260438)
@@ -0,0 +1,69 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Vlad M. 
+# Contributor: Håvard Pettersson 
+# Contributor: Kevin MacMartin 
+
+pkgname=qtox
+_pkgname=qTox
+pkgver=1.11.0
+pkgrel=3
+_gitver='b73603b45a32e63a649294537a62a9f11176c73d'
+pkgdesc='Powerful Tox client written in C++/Qt that follows the Tox design 
guidelines'
+arch=('i686' 'x86_64')
+url='https://github.com/tux3/qTox'
+license=('GPL3')
+depends=('desktop-file-utils'
+ 'libxss'
+ 'openal'
+ 'gtk2'
+ 'ffmpeg'
+ 'qrencode'
+ 'qt5-svg'
+ 'sqlcipher'
+ 'toxcore')
+makedepends=('qt5-tools' 'git' 'check' 'cmake')
+
+#source=("git+https://github.com/qTox/qTox.git#commit=$_gitver";)
+source=( 
#"https://github.com/$_pkgname/$_pkgname/releases/download/v$pkgver/v$pkgver.tar.gz";
+
#"$_pkgname-v$pkgver.tar.gz::https://github.com/$_pkgname/$_pkgname/archive/v$pkgver/v$pkgver.tar.gz";
+
"https://github.com/$_pkgname/$_pkgname/releases/download/v$pkgver/v$pkgver.tar.lz";
+
"https://github.com/$_pkgname/$_pkgname/releases/download/v$pkgver/v$pkgver.tar.lz.asc";
+   
#"gcc7fix.patch::https://github.com/qTox/qTox/commit/246e23abf3aa64c494c6abf42c83944eb78f1b16.patch";
+)
+sha512sums=('3117b5ec9d88f58023f6c2f5e7c37c547ab920588d385e3abe062fb22ad79c49a9b6eb9ca31c6d56f9d03cfea55ef56ddc7e2e53bd43629825ea7b460b31f505'
+'SKIP')
+
#'61d267b721e133573a6fa54d3119c4a9a5f49c0d11db11415dc2b5877ddc841796e6ca23490ebdab0b324fb09a0b69db1aa59997b79b4db0354fc76395db3b36')
+
+## GPG key fingerprints taken from 
https://github.com/qTox/qTox/blob/$_gitver/README.md
+validpgpkeys=('DA262CC93C0E1E525AD21C8596775D454B8EBF44'  # sudden6 

+  'BA7883E22F9D35945BA3376053137C3033F09008'  # Zetok Zalbavar 

+ '1157616BBD860C539926F8139591A163FF9BE04C'  # - antis81
+ '31039166FA902CA50D05D6085AF9F2E29107C727'  # - Diadlo
+ 'C7A2552D0B250F983827742C133203A3AC399151'  # - initramfs
+ '2880C860D95C909D3DA45C687E086DD661263264'  # - tux3
+ )
+#prepare() {
+#  patch -p1 
+# AUR Maintainer: Vlad M. 
+# Contributor: Håvard Pettersson 
+# Contributor: Kevin MacMartin 
+
+pkgname=qtox
+_pkgname=qTox
+pkgver=1.11.0
+pkgrel=3
+_gitver='b73603b45a32e63a649294537a62a9f11176c73d'
+pkgdesc='Powerful Tox client written in C++/Qt that follows the Tox design 
guidelines'
+arch=('i686' 'x86_64')
+url='https://github.com/tux3/qTox'
+license=('GPL3')
+depends=('desktop-file-utils'
+ 'libxss'
+ 'openal'
+ 'gtk2'
+ 'ffmpeg'
+ 'qrencode'
+ 'qt5-svg'
+ 'sqlcipher'
+ 'toxcore')
+makedepends=('qt5-tools' 'git' 'check' 'cmake')
+
+#source=("git+https://github.com/qTox/qTox.git#commit=$_gitver";)
+source=( 
#"https://github.com/$_pkgname/$_pkgname/releases/download/v$pkgver/v$pkgver.tar.gz";
+
#"$_pkgname-v$pkgver.tar.gz::https://github.com/$_pkgname/$_pkgname/archive/v$pkgver/v$pkgver.tar.gz";
+
"https://github.com/$_pkgname/$_pkgname/releases/download/v$pkgver/v$pkgver.tar.lz";
+
"https://github.com/$_pkgname/$_pkgname/releases/download/v$pkgver/v$pkgver.tar.lz.asc";
+   
#"gcc7fix.patch::https://github.com/qTox/qTox/commit/246e23abf3aa64c494c6abf42c83944eb78f1b16.patch";
+)
+sha512sums=('3117b5ec9d88f58023f6c2f5e7c37c547ab920588d385e3abe062fb22ad79c49a9b6eb9ca31c6d56f9d03cfea55ef56ddc7e2e53bd43629825ea7b460b31f505'
+'SKIP')
+
#'61d267b721e133573a6fa54d3119c4a9a5f49c0d11db11415dc2b5877ddc841796e6ca23490ebdab0b324fb09a0b69db1aa59997b79b4db0354fc76395db3b36')
+
+## GPG key fingerprints taken from 
https://github.com/qTox/qTox/blob/$_gitver/README.md
+validpgpkeys=('DA262CC93C0E1E525AD21C8596775D454B8EBF44'  # sudden6 

+  'BA7883E22F9D35945BA3376053137C3033F09008'  # Zetok Zalbavar 

+ '1157616BBD860C539926F8139591A163FF9BE04C'  # - antis81
+ '31039166FA902CA50D05D6085AF9F2E29107C727'  # - Diadlo
+   

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

2017-09-24 Thread Jiachen Yang
Date: Sunday, September 24, 2017 @ 14:25:49
  Author: farseerfc
Revision: 260437

upgpkg: qtox 1.11.0-3

qtox qrencode rebuild

Modified:
  qtox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 14:05:42 UTC (rev 260436)
+++ PKGBUILD2017-09-24 14:25:49 UTC (rev 260437)
@@ -6,7 +6,7 @@
 pkgname=qtox
 _pkgname=qTox
 pkgver=1.11.0
-pkgrel=2
+pkgrel=3
 _gitver='b73603b45a32e63a649294537a62a9f11176c73d'
 pkgdesc='Powerful Tox client written in C++/Qt that follows the Tox design 
guidelines'
 arch=('i686' 'x86_64')


[arch-commits] Commit in nvidia-lts/repos (6 files)

2017-09-24 Thread Felix Yan
Date: Sunday, September 24, 2017 @ 14:25:38
  Author: felixonmars
Revision: 306201

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  nvidia-lts/repos/testing-i686/
  nvidia-lts/repos/testing-i686/PKGBUILD
(from rev 306200, nvidia-lts/trunk/PKGBUILD)
  nvidia-lts/repos/testing-i686/nvidia-lts.install
(from rev 306200, nvidia-lts/trunk/nvidia-lts.install)
  nvidia-lts/repos/testing-x86_64/
  nvidia-lts/repos/testing-x86_64/PKGBUILD
(from rev 306200, nvidia-lts/trunk/PKGBUILD)
  nvidia-lts/repos/testing-x86_64/nvidia-lts.install
(from rev 306200, nvidia-lts/trunk/nvidia-lts.install)

---+
 testing-i686/PKGBUILD |   56 
 testing-i686/nvidia-lts.install   |   15 +
 testing-x86_64/PKGBUILD   |   56 
 testing-x86_64/nvidia-lts.install |   15 +
 4 files changed, 142 insertions(+)

Copied: nvidia-lts/repos/testing-i686/PKGBUILD (from rev 306200, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-09-24 14:25:38 UTC (rev 306201)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=384.90
+_extramodules=extramodules-4.9-lts
+pkgrel=1
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+makedepends=("nvidia-utils=$pkgver" 'linux-lts>=4.9.51' 
'linux-lts-headers>=4.9.51')
+provides=('nvidia')
+license=('custom')
+install=nvidia-lts.install
+options=('!strip')
+source_i686=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";)
+source_x86_64=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";)
+sha512sums_i686=('4376be6ade4380f8416a7d07a77b2e71bf07f62488c6887d2023973ca57574a0c6d294327159d4a0cf12400e4156b48fa989e3a80615cefd25d918e6d558784f')
+sha512sums_x86_64=('64b9a30c1a92435202b67c65f6a33fa5bb533f7009ee24b4f5632f100aa5842bf2f5fd83d63d9c3ce7599ceacd29c585c31e83c1e214cb7c542279d1287c4b34')
+
+[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
+[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh ${_pkg}.run --extract-only
+}
+
+build() {
+export IGNORE_CC_MISMATCH=1
+
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}/kernel"
+make SYSSRC=/usr/lib/modules/${_kernver}/build module
+}
+
+package() {
+depends=('linux-lts>=4.9.51' "nvidia-utils=$pkgver" 'libgl')
+
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+  
"${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko"
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-modeset.ko" \
+  
"${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia-modeset.ko"
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-drm.ko" \
+  "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-drm.ko"
+
+if [[ "$CARCH" = "x86_64" ]]; then
+  install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-uvm.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko"
+fi
+
+gzip "${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/"*.ko
+install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf"
+echo "blacklist nvidiafb" >> "${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf"
+install -D -m644 "${srcdir}/${_pkg}/LICENSE" 
"${pkgdir}/usr/share/licenses/nvidia-lts/LICENSE"
+}

Copied: nvidia-lts/repos/testing-i686/nvidia-lts.install (from rev 306200, 
nvidia-lts/trunk/nvidia-lts.install)
===
--- testing-i686/nvidia-lts.install (rev 0)
+++ testing-i686/nvidia-lts.install 2017-09-24 14:25:38 UTC (rev 306201)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-4.9-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-4.9-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-4.9-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia-lts/repos/testing-x86_64/PKGBUILD (from rev 306200, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-09-24 14:25:38 UTC (rev 306201)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=384.90
+_extramodules=extramodules-4.9-lts
+pkgrel=1
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.c

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

2017-09-24 Thread Felix Yan
Date: Sunday, September 24, 2017 @ 14:25:04
  Author: felixonmars
Revision: 306200

upgpkg: nvidia-lts 384.90-1

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 14:23:44 UTC (rev 306199)
+++ PKGBUILD2017-09-24 14:25:04 UTC (rev 306200)
@@ -2,9 +2,9 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=nvidia-lts
-pkgver=384.69
+pkgver=384.90
 _extramodules=extramodules-4.9-lts
-pkgrel=3
+pkgrel=1
 pkgdesc="NVIDIA drivers for linux-lts"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";
@@ -15,8 +15,8 @@
 options=('!strip')
 
source_i686=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";)
 
source_x86_64=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";)
-sha512sums_i686=('7bd55906111ed00bc8aef75a70ee636dc5a8fc22196a94d29cd651b5083b1974e45194ee7091dbb7db4f70706297bdf1c9e5f658500fc28323030684a3670663')
-sha512sums_x86_64=('8e48416fb4d0cb781ae3611fcd710c73ef9276eebc79950bf8ae5ea484fb2f06356b1f9628b35062a2e98bfb4b1fa70322e1ac243b97b28766f73ef6e630cabf')
+sha512sums_i686=('4376be6ade4380f8416a7d07a77b2e71bf07f62488c6887d2023973ca57574a0c6d294327159d4a0cf12400e4156b48fa989e3a80615cefd25d918e6d558784f')
+sha512sums_x86_64=('64b9a30c1a92435202b67c65f6a33fa5bb533f7009ee24b4f5632f100aa5842bf2f5fd83d63d9c3ce7599ceacd29c585c31e83c1e214cb7c542279d1287c4b34')
 
 [[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
 [[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"


[arch-commits] Commit in nvidia/repos (12 files)

2017-09-24 Thread Felix Yan
Date: Sunday, September 24, 2017 @ 14:23:44
  Author: felixonmars
Revision: 306199

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  nvidia/repos/testing-i686/PKGBUILD
(from rev 306198, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-i686/fix-abi.patch
(from rev 306198, nvidia/trunk/fix-abi.patch)
  nvidia/repos/testing-i686/nvidia.install
(from rev 306198, nvidia/trunk/nvidia.install)
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 306198, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-x86_64/fix-abi.patch
(from rev 306198, nvidia/trunk/fix-abi.patch)
  nvidia/repos/testing-x86_64/nvidia.install
(from rev 306198, nvidia/trunk/nvidia.install)
Deleted:
  nvidia/repos/testing-i686/PKGBUILD
  nvidia/repos/testing-i686/fix-abi.patch
  nvidia/repos/testing-i686/nvidia.install
  nvidia/repos/testing-x86_64/PKGBUILD
  nvidia/repos/testing-x86_64/fix-abi.patch
  nvidia/repos/testing-x86_64/nvidia.install

---+
 /PKGBUILD |  174 
 /fix-abi.patch|   24 +
 /nvidia.install   |   26 +
 testing-i686/PKGBUILD |   87 
 testing-i686/fix-abi.patch|   12 --
 testing-i686/nvidia.install   |   13 --
 testing-x86_64/PKGBUILD   |   87 
 testing-x86_64/fix-abi.patch  |   12 --
 testing-x86_64/nvidia.install |   13 --
 9 files changed, 224 insertions(+), 224 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2017-09-24 14:22:53 UTC (rev 306198)
+++ testing-i686/PKGBUILD   2017-09-24 14:23:44 UTC (rev 306199)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: Felix Yan 
-# Contributor: Thomas Baechler 
-
-pkgbase=nvidia
-pkgname=(nvidia nvidia-dkms)
-pkgver=384.69
-_extramodules=extramodules-4.13-ARCH
-pkgrel=4
-pkgdesc="NVIDIA drivers for linux"
-arch=('i686' 'x86_64')
-url="http://www.nvidia.com/";
-makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.13' 'linux-headers<4.14')
-license=('custom')
-options=('!strip')
-source_i686=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";)
-source_x86_64=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";)
-md5sums_i686=('53039e5fe898d405f3ea1725751045b6')
-md5sums_x86_64=('0bee5889e14a653df35d6b9700363ff9')
-
-[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
-[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
-
-prepare() {
-sh "${_pkg}.run" --extract-only
-cd "${_pkg}"
-
-cp -a kernel kernel-dkms
-cd kernel-dkms
-sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
-sed -i 's/__JOBS/`nproc`/' dkms.conf
-sed -i 's/__DKMS_MODULES//' dkms.conf
-sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
-DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[1]="nvidia-uvm"\
-DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[2]="nvidia-modeset"\
-DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[3]="nvidia-drm"\
-DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
-
-# Gift for linux-rt guys
-sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
-}
-
-build() {
-_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-cd "${_pkg}"/kernel
-make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
-}
-
-package_nvidia() {
-pkgdesc="NVIDIA drivers for linux"
-depends=('linux>=4.13' 'linux<4.14' "nvidia-utils=${pkgver}" 'libgl')
-install=nvidia.install
-
-install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
-"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
-install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-modeset.ko" \
- "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-modeset.ko"
-install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-drm.ko" \
- "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-drm.ko"
-
-if [[ "$CARCH" = "x86_64" ]]; then
-install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-uvm.ko" \
-"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko"
-fi
-
-gzip "${pkgdir}/usr/lib/modules/${_extramodules}/"*.ko
-install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
-
-echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
-}
-
-package_nvidia-dkms() {
-pkgdesc="NVIDIA driver sources for linux"
-depends=('dkms' "nvidia-utils=$pkgver" 'libgl')
-optdepends=('linux-headers: Build the module for Arch kernel'
-'linux-lts-headers: Build the module for LTS Arch kernel')
-conflicts+=('nvidia')
-
-cd ${_pkg}
-install -dm 755 "${pkgdir}"/usr/{lib/modprobe.d,src}
-cp -dr --no-preserve='ownership' kernel-dkms 
"${pk

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

2017-09-24 Thread Felix Yan
Date: Sunday, September 24, 2017 @ 14:22:53
  Author: felixonmars
Revision: 306198

upgpkg: nvidia 384.90-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 14:05:58 UTC (rev 306197)
+++ PKGBUILD2017-09-24 14:22:53 UTC (rev 306198)
@@ -5,9 +5,9 @@
 
 pkgbase=nvidia
 pkgname=(nvidia nvidia-dkms)
-pkgver=384.69
+pkgver=384.90
 _extramodules=extramodules-4.13-ARCH
-pkgrel=4
+pkgrel=1
 pkgdesc="NVIDIA drivers for linux"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";
@@ -16,8 +16,8 @@
 options=('!strip')
 
source_i686=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";)
 
source_x86_64=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";)
-md5sums_i686=('53039e5fe898d405f3ea1725751045b6')
-md5sums_x86_64=('0bee5889e14a653df35d6b9700363ff9')
+md5sums_i686=('9423e4bdef7745c7b57a75c24f853b53')
+md5sums_x86_64=('d33916ac2d962a7e6acc803cf6fd677c')
 
 [[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
 [[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"


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

2017-09-24 Thread Felix Yan
Date: Sunday, September 24, 2017 @ 14:05:58
  Author: felixonmars
Revision: 306197

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  nvidia-utils/repos/testing-i686/
  nvidia-utils/repos/testing-i686/PKGBUILD
(from rev 306196, nvidia-utils/trunk/PKGBUILD)
  nvidia-utils/repos/testing-i686/nvidia-drm-outputclass.conf
(from rev 306196, nvidia-utils/trunk/nvidia-drm-outputclass.conf)
  nvidia-utils/repos/testing-i686/nvidia-utils.install
(from rev 306196, nvidia-utils/trunk/nvidia-utils.install)
  nvidia-utils/repos/testing-x86_64/
  nvidia-utils/repos/testing-x86_64/PKGBUILD
(from rev 306196, nvidia-utils/trunk/PKGBUILD)
  nvidia-utils/repos/testing-x86_64/nvidia-drm-outputclass.conf
(from rev 306196, nvidia-utils/trunk/nvidia-drm-outputclass.conf)
  nvidia-utils/repos/testing-x86_64/nvidia-utils.install
(from rev 306196, nvidia-utils/trunk/nvidia-utils.install)

+
 testing-i686/PKGBUILD  |  176 +++
 testing-i686/nvidia-drm-outputclass.conf   |   14 ++
 testing-i686/nvidia-utils.install  |   10 +
 testing-x86_64/PKGBUILD|  176 +++
 testing-x86_64/nvidia-drm-outputclass.conf |   14 ++
 testing-x86_64/nvidia-utils.install|   10 +
 6 files changed, 400 insertions(+)

Copied: nvidia-utils/repos/testing-i686/PKGBUILD (from rev 306196, 
nvidia-utils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-09-24 14:05:58 UTC (rev 306197)
@@ -0,0 +1,176 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Thomas Baechler 
+# Contributor: James Rayner 
+
+pkgbase=nvidia-utils
+pkgname=('nvidia-utils' 'opencl-nvidia')
+pkgver=384.90
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+license=('custom')
+options=('!strip')
+source=('nvidia-drm-outputclass.conf')
+source_i686=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";)
+source_x86_64=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";)
+md5sums=('a433deeb5f9cc661e537f42bde2f1df7')
+md5sums_i686=('9423e4bdef7745c7b57a75c24f853b53')
+md5sums_x86_64=('d33916ac2d962a7e6acc803cf6fd677c')
+sha512sums=('cfea06a816ac4a8b728b1ec728d667cdcca604abb038e8b5313b434021caad06a586856b8b3a6c79f8c925629360f5a051ca3de5ab46a42af76b9d0615d2bbbe')
+sha512sums_i686=('4376be6ade4380f8416a7d07a77b2e71bf07f62488c6887d2023973ca57574a0c6d294327159d4a0cf12400e4156b48fa989e3a80615cefd25d918e6d558784f')
+sha512sums_x86_64=('64b9a30c1a92435202b67c65f6a33fa5bb533f7009ee24b4f5632f100aa5842bf2f5fd83d63d9c3ce7599ceacd29c585c31e83c1e214cb7c542279d1287c4b34')
+
+[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
+[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+create_links() {
+# create soname links
+for _lib in $(find "${pkgdir}" -name '*.so*' | grep -v 'xorg/'); do
+_soname=$(dirname "${_lib}")/$(readelf -d "${_lib}" | grep -Po 
'SONAME.*: \[\K[^]]*' || true)
+_base=$(echo ${_soname} | sed -r 's/(.*).so.*/\1.so/')
+[[ -e "${_soname}" ]] || ln -s $(basename "${_lib}") "${_soname}"
+[[ -e "${_base}" ]] || ln -s $(basename "${_soname}") "${_base}"
+done
+}
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+bsdtar -xf nvidia-persistenced-init.tar.bz2
+
+sed -i 's/__NV_VK_ICD__/libGLX_nvidia.so.0/' nvidia_icd.json.template
+}
+
+package_opencl-nvidia() {
+pkgdesc="OpenCL implemention for NVIDIA"
+depends=('zlib')
+optdepends=('opencl-headers: headers necessary for OpenCL development')
+provides=('opencl-driver')
+cd "${_pkg}"
+
+# OpenCL
+install -D -m644 nvidia.icd "${pkgdir}/etc/OpenCL/vendors/nvidia.icd"
+install -D -m755 "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-compiler.so.${pkgver}"
+install -D -m755 "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-opencl.so.${pkgver}"
+
+create_links
+
+mkdir -p "${pkgdir}/usr/share/licenses"
+ln -s nvidia "${pkgdir}/usr/share/licenses/opencl-nvidia"
+}
+
+package_nvidia-utils() {
+pkgdesc="NVIDIA drivers utilities"
+depends=('xorg-server' 'libglvnd')
+optdepends=('nvidia-settings: configuration tool'
+'xorg-server-devel: nvidia-xconfig'
+'opencl-nvidia: OpenCL support')
+conflicts=('nvidia-libgl')
+provides=('vulkan-driver' 'opengl-driver' 'nvidia-libgl')
+replaces=('nvidia-libgl')
+install="${pkgname}.install"
+
+cd "${_pkg}"
+
+# X driver
+install -D -m755 nvidia_drv.so 
"${pkgdir}/usr/lib/xorg/modules/drivers/nvidia_drv.so"
+
+# GLX extension module for X
+install -D -m755 "libglx.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/xorg/libglx.so.${pkgver}"
+   

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

2017-09-24 Thread Felix Yan
Date: Sunday, September 24, 2017 @ 14:05:08
  Author: felixonmars
Revision: 306196

upgpkg: nvidia-utils 384.90-1

Modified:
  nvidia-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 11:33:45 UTC (rev 306195)
+++ PKGBUILD2017-09-24 14:05:08 UTC (rev 306196)
@@ -5,7 +5,7 @@
 
 pkgbase=nvidia-utils
 pkgname=('nvidia-utils' 'opencl-nvidia')
-pkgver=384.69
+pkgver=384.90
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";
@@ -15,11 +15,11 @@
 
source_i686=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";)
 
source_x86_64=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";)
 md5sums=('a433deeb5f9cc661e537f42bde2f1df7')
-md5sums_i686=('53039e5fe898d405f3ea1725751045b6')
-md5sums_x86_64=('0bee5889e14a653df35d6b9700363ff9')
+md5sums_i686=('9423e4bdef7745c7b57a75c24f853b53')
+md5sums_x86_64=('d33916ac2d962a7e6acc803cf6fd677c')
 
sha512sums=('cfea06a816ac4a8b728b1ec728d667cdcca604abb038e8b5313b434021caad06a586856b8b3a6c79f8c925629360f5a051ca3de5ab46a42af76b9d0615d2bbbe')
-sha512sums_i686=('7bd55906111ed00bc8aef75a70ee636dc5a8fc22196a94d29cd651b5083b1974e45194ee7091dbb7db4f70706297bdf1c9e5f658500fc28323030684a3670663')
-sha512sums_x86_64=('8e48416fb4d0cb781ae3611fcd710c73ef9276eebc79950bf8ae5ea484fb2f06356b1f9628b35062a2e98bfb4b1fa70322e1ac243b97b28766f73ef6e630cabf')
+sha512sums_i686=('4376be6ade4380f8416a7d07a77b2e71bf07f62488c6887d2023973ca57574a0c6d294327159d4a0cf12400e4156b48fa989e3a80615cefd25d918e6d558784f')
+sha512sums_x86_64=('64b9a30c1a92435202b67c65f6a33fa5bb533f7009ee24b4f5632f100aa5842bf2f5fd83d63d9c3ce7599ceacd29c585c31e83c1e214cb7c542279d1287c4b34')
 
 [[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
 [[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"


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

2017-09-24 Thread Felix Yan
Date: Sunday, September 24, 2017 @ 14:05:42
  Author: felixonmars
Revision: 260436

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-nvidia-utils/repos/multilib-testing-x86_64/
  lib32-nvidia-utils/repos/multilib-testing-x86_64/PKGBUILD
(from rev 260435, lib32-nvidia-utils/trunk/PKGBUILD)

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

Copied: lib32-nvidia-utils/repos/multilib-testing-x86_64/PKGBUILD (from rev 
260435, lib32-nvidia-utils/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2017-09-24 14:05:42 UTC (rev 260436)
@@ -0,0 +1,114 @@
+# $Id$
+# Maintainer: Thomas Baechler 
+# Contributor: James Rayner 
+
+_pkgbasename=nvidia-utils
+pkgbase=lib32-$_pkgbasename
+pkgname=('lib32-nvidia-utils' 'lib32-opencl-nvidia')
+pkgver=384.90
+pkgrel=1
+arch=('x86_64')
+url="http://www.nvidia.com/";
+#makedepends=('nvidia-libgl')  # To avoid conflict during installation in the 
build chroot
+license=('custom')
+options=('!strip')
+
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+sha512sums=('4376be6ade4380f8416a7d07a77b2e71bf07f62488c6887d2023973ca57574a0c6d294327159d4a0cf12400e4156b48fa989e3a80615cefd25d918e6d558784f')
+
+create_links() {
+# create soname links
+for _lib in $(find "${pkgdir}" -name '*.so*' | grep -v 'xorg/'); do
+_soname=$(dirname "${_lib}")/$(readelf -d "${_lib}" | grep -Po 
'SONAME.*: \[\K[^]]*' || true)
+_base=$(echo ${_soname} | sed -r 's/(.*).so.*/\1.so/')
+[[ -e "${_soname}" ]] || ln -s $(basename "${_lib}") "${_soname}"
+[[ -e "${_base}" ]] || ln -s $(basename "${_soname}") "${_base}"
+done
+}
+
+build() {
+sh ${_pkg}.run --extract-only
+}
+
+package_lib32-opencl-nvidia() {
+pkgdesc="OpenCL implemention for NVIDIA (32-bit)"
+depends=('lib32-zlib' 'lib32-gcc-libs')
+optdepends=('opencl-headers: headers necessary for OpenCL development')
+provides=('lib32-opencl-driver')
+
+cd "${_pkg}"
+
+# OpenCL
+install -D -m755 "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-compiler.so.${pkgver}"
+install -D -m755 "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-opencl.so.${pkgver}" 
+
+create_links
+
+mkdir -p "${pkgdir}/usr/share/licenses"
+ln -s $_pkgbasename "${pkgdir}/usr/share/licenses/lib32-opencl-nvidia"
+}
+
+package_lib32-nvidia-utils() {
+pkgdesc="NVIDIA drivers utilities (32-bit)"
+depends=('lib32-zlib' 'lib32-gcc-libs' 'lib32-libglvnd' 'nvidia-utils')
+optdepends=('lib32-opencl-nvidia')
+conflicts=('lib32-nvidia-libgl')
+provides=('lib32-vulkan-driver' 'lib32-opengl-driver' 'lib32-nvidia-libgl')
+replaces=('lib32-nvidia-libgl')
+
+cd "${_pkg}"
+
+# GLX extension module for X - useless ?
+install -D -m755 "libglx.so.${pkgver}" 
"${pkgdir}/usr/lib32/nvidia/xorg/modules/extensions/libglx.so.${pkgver}"
+ln -s "libglx.so.${pkgver}" 
"${pkgdir}/usr/lib32/nvidia/xorg/modules/extensions/libglx.so" # X doesn't find 
glx otherwise
+install -D -m755 "libGLX_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libGLX_nvidia.so.${pkgver}"
+# now in lib32-mesa driver
+#ln -s "libGLX_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libGLX_indirect.so.0"
+
+# Wayland stuff
+install -D -m755 "libnvidia-egl-wayland.so.1.0.1" 
"${pkgdir}/usr/lib32/libnvidia-egl-wayland.so.1.0.1"
+ln -s "libnvidia-egl-wayland.so.1.0.1" 
"${pkgdir}/usr/lib32/libnvidia-egl-wayland.so.1"
+
+# OpenGL libraries
+install -D -m755 "libEGL_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libEGL_nvidia.so.${pkgver}"
+install -D -m755 "libGLESv1_CM_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libGLESv1_CM_nvidia.so.${pkgver}"
+install -D -m755 "libGLESv2_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libGLESv2_nvidia.so.${pkgver}"
+
+# OpenGL core library
+install -D -m755 "libnvidia-glcore.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-glcore.so.${pkgver}"
+install -D -m755 "libnvidia-eglcore.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-eglcore.so.${pkgver}"
+install -D -m755 "libnvidia-glsi.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-glsi.so.${pkgver}"
+
+# misc
+install -D -m755 "libnvidia-ifr.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-ifr.so.${pkgver}"
+install -D -m755 "libnvidia-fbc.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-fbc.so.${pkgver}"
+install -D -m755 "libnvidia-encode.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-encode.so.${pkgver}"
+install -D -m755 "libnvidia-cfg.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-cfg.so.${pkgver}"
+install -D -m755 "libnvidia-ml.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-ml.so.${pkgver}"
+install -D -m755 "libnvidia-wfb.so

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

2017-09-24 Thread Felix Yan
Date: Sunday, September 24, 2017 @ 14:05:18
  Author: felixonmars
Revision: 260435

upgpkg: lib32-nvidia-utils 384.90-1

Modified:
  lib32-nvidia-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 14:01:30 UTC (rev 260434)
+++ PKGBUILD2017-09-24 14:05:18 UTC (rev 260435)
@@ -5,7 +5,7 @@
 _pkgbasename=nvidia-utils
 pkgbase=lib32-$_pkgbasename
 pkgname=('lib32-nvidia-utils' 'lib32-opencl-nvidia')
-pkgver=384.69
+pkgver=384.90
 pkgrel=1
 arch=('x86_64')
 url="http://www.nvidia.com/";
@@ -16,7 +16,7 @@
 _arch='x86'
 _pkg="NVIDIA-Linux-${_arch}-${pkgver}"
 
source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
-sha512sums=('7bd55906111ed00bc8aef75a70ee636dc5a8fc22196a94d29cd651b5083b1974e45194ee7091dbb7db4f70706297bdf1c9e5f658500fc28323030684a3670663')
+sha512sums=('4376be6ade4380f8416a7d07a77b2e71bf07f62488c6887d2023973ca57574a0c6d294327159d4a0cf12400e4156b48fa989e3a80615cefd25d918e6d558784f')
 
 create_links() {
 # create soname links


[arch-commits] Commit in easystroke/repos (12 files)

2017-09-24 Thread Bartłomiej Piotrowski
Date: Sunday, September 24, 2017 @ 14:01:30
  Author: bpiotrowski
Revision: 260434

archrelease: copy trunk to community-i686, community-x86_64

Added:
  easystroke/repos/community-i686/PKGBUILD
(from rev 260433, easystroke/trunk/PKGBUILD)
  easystroke/repos/community-i686/easystroke-0.6.0-gcc7-build-fix.patch
(from rev 260433, easystroke/trunk/easystroke-0.6.0-gcc7-build-fix.patch)
  easystroke/repos/community-i686/replace-sigc-group-with-lambda.patch
(from rev 260433, easystroke/trunk/replace-sigc-group-with-lambda.patch)
  easystroke/repos/community-x86_64/PKGBUILD
(from rev 260433, easystroke/trunk/PKGBUILD)
  easystroke/repos/community-x86_64/easystroke-0.6.0-gcc7-build-fix.patch
(from rev 260433, easystroke/trunk/easystroke-0.6.0-gcc7-build-fix.patch)
  easystroke/repos/community-x86_64/replace-sigc-group-with-lambda.patch
(from rev 260433, easystroke/trunk/replace-sigc-group-with-lambda.patch)
Deleted:
  easystroke/repos/community-i686/PKGBUILD
  easystroke/repos/community-i686/easystroke-0.6.0-gcc7-build-fix.patch
  easystroke/repos/community-i686/replace-sigc-group-with-lambda.patch
  easystroke/repos/community-x86_64/PKGBUILD
  easystroke/repos/community-x86_64/easystroke-0.6.0-gcc7-build-fix.patch
  easystroke/repos/community-x86_64/replace-sigc-group-with-lambda.patch

+
 /PKGBUILD  |   90 +++
 /easystroke-0.6.0-gcc7-build-fix.patch |   80 +
 /replace-sigc-group-with-lambda.patch  |   80 +
 community-i686/PKGBUILD|   45 ---
 community-i686/easystroke-0.6.0-gcc7-build-fix.patch   |   40 --
 community-i686/replace-sigc-group-with-lambda.patch|   40 --
 community-x86_64/PKGBUILD  |   45 ---
 community-x86_64/easystroke-0.6.0-gcc7-build-fix.patch |   40 --
 community-x86_64/replace-sigc-group-with-lambda.patch  |   40 --
 9 files changed, 250 insertions(+), 250 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-24 14:01:20 UTC (rev 260433)
+++ community-i686/PKGBUILD 2017-09-24 14:01:30 UTC (rev 260434)
@@ -1,45 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Kevin Sullivan 
-
-pkgname=easystroke
-pkgver=0.6.0
-pkgrel=15
-pkgdesc='Use mouse gestures to initiate commands and hotkeys.'
-arch=('i686' 'x86_64')
-url='http://easystroke.sourceforge.net/'
-license=('custom:ISC')
-depends=('gtkmm3' 'boost-libs' 'libxtst' 'dbus-glib' 'xorg-server')
-makedepends=('boost' 'inputproto' 'intltool' 'gettext' 'xorg-server-devel' 
'help2man')
-source=("http://downloads.sourceforge.net/easystroke/${pkgname}-${pkgver}.tar.gz";
-'easystroke-0.6.0-gcc7-build-fix.patch'
-'replace-sigc-group-with-lambda.patch')
-md5sums=('3b4f25d02a6b5ac57a8b7a06545869db'
- '4b0cb9354798cfab1ce21d04bb1ff002'
- '4a27e1336df773e2f1cd67788477cc3b')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-
-  # Fix compilation with GCC 7.
-  patch -Np1 -i ../easystroke-0.6.0-gcc7-build-fix.patch
-
-  # fix build with libsigc++ 2.6; also build in C++11 mode
-  # (not sure if the lambda is correct, but seems to work)
-  patch -Np1 -i ../replace-sigc-group-with-lambda.patch
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  make
-  make man
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-
-  make PREFIX=/usr DESTDIR="${pkgdir}" install
-
-  install -Dm0644 "${pkgname}.1" "${pkgdir}/usr/share/man/man1/${pkgname}.1"
-  install -Dm0644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: easystroke/repos/community-i686/PKGBUILD (from rev 260433, 
easystroke/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-24 14:01:30 UTC (rev 260434)
@@ -0,0 +1,45 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Kevin Sullivan 
+
+pkgname=easystroke
+pkgver=0.6.0
+pkgrel=16
+pkgdesc='Use mouse gestures to initiate commands and hotkeys.'
+arch=('i686' 'x86_64')
+url='http://easystroke.sourceforge.net/'
+license=('custom:ISC')
+depends=('gtkmm3' 'boost-libs' 'libxtst' 'dbus-glib' 'xorg-server')
+makedepends=('boost' 'inputproto' 'intltool' 'gettext' 'xorg-server-devel' 
'help2man')
+source=("http://downloads.sourceforge.net/easystroke/${pkgname}-${pkgver}.tar.gz";
+'easystroke-0.6.0-gcc7-build-fix.patch'
+'replace-sigc-group-with-lambda.patch')
+md5sums=('3b4f25d02a6b5ac57a8b7a06545869db'
+ '4b0cb9354798cfab1ce21d04bb1ff002'
+ '4a27e1336df773e2f1cd67788477cc3b')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+
+  # Fix compilation with GCC 7.
+  patch -Np1 -i ../easystroke-0.6.0-gcc7-build-fix.patch
+
+  # fix build with libsigc++ 2.6; also build in C++11 mode
+  # (not 

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

2017-09-24 Thread Bartłomiej Piotrowski
Date: Sunday, September 24, 2017 @ 14:01:20
  Author: bpiotrowski
Revision: 260433

0.6.0-16: rebuild against boost 1.65.1

Modified:
  easystroke/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 13:40:13 UTC (rev 260432)
+++ PKGBUILD2017-09-24 14:01:20 UTC (rev 260433)
@@ -3,7 +3,7 @@
 
 pkgname=easystroke
 pkgver=0.6.0
-pkgrel=15
+pkgrel=16
 pkgdesc='Use mouse gestures to initiate commands and hotkeys.'
 arch=('i686' 'x86_64')
 url='http://easystroke.sourceforge.net/'


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

2017-09-24 Thread Jiachen Yang
Date: Sunday, September 24, 2017 @ 13:40:13
  Author: farseerfc
Revision: 260432

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  toxic/repos/community-staging-i686/
  toxic/repos/community-staging-i686/PKGBUILD
(from rev 260431, toxic/trunk/PKGBUILD)
  toxic/repos/community-staging-x86_64/
  toxic/repos/community-staging-x86_64/PKGBUILD
(from rev 260431, toxic/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   33 +
 community-staging-x86_64/PKGBUILD |   33 +
 2 files changed, 66 insertions(+)

Copied: toxic/repos/community-staging-i686/PKGBUILD (from rev 260431, 
toxic/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-24 13:40:13 UTC (rev 260432)
@@ -0,0 +1,33 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Vlad M. 
+
+pkgname=toxic
+pkgdesc='CLI Tox client'
+license=('GPL3')
+pkgver=0.8.0
+pkgrel=4
+depends=('curl'
+ 'desktop-file-utils'
+ 'freealut'
+ 'libnotify'
+ 'qrencode'
+ 'toxcore')
+arch=('i686' 'x86_64')
+url='https://github.com/JFreegman/toxic'
+source=("$pkgname-$pkgver.tar.gz::https://github.com/JFreegman/$pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz";
+   
"$pkgname-$pkgver.tar.gz.asc::https://github.com/JFreegman/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz.asc";)
+sha512sums=('3c59edb61b1bcdbfa3a8391a1a1ceccc6c9c38b49c1709813d60480b180fb39607806116b9dcd1de35ebb02e23e95d78c8191f04a4875e06e27fa43bc9800b33'
+'SKIP')
+validpgpkeys=('BABD00573A065BFA90D53D563627F3144076AE63')  # Jfreegman 

+
+build() {
+  cd "$pkgname-$pkgver"
+  # enabled X11 on konsole may cause 
https://github.com/JFreegman/toxic/issues/277
+  # but we can only do video and call with X11 enabled 
https://bugs.archlinux.org/task/52836
+  make PREFIX=/usr
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+}

Copied: toxic/repos/community-staging-x86_64/PKGBUILD (from rev 260431, 
toxic/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-24 13:40:13 UTC (rev 260432)
@@ -0,0 +1,33 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Vlad M. 
+
+pkgname=toxic
+pkgdesc='CLI Tox client'
+license=('GPL3')
+pkgver=0.8.0
+pkgrel=4
+depends=('curl'
+ 'desktop-file-utils'
+ 'freealut'
+ 'libnotify'
+ 'qrencode'
+ 'toxcore')
+arch=('i686' 'x86_64')
+url='https://github.com/JFreegman/toxic'
+source=("$pkgname-$pkgver.tar.gz::https://github.com/JFreegman/$pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz";
+   
"$pkgname-$pkgver.tar.gz.asc::https://github.com/JFreegman/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz.asc";)
+sha512sums=('3c59edb61b1bcdbfa3a8391a1a1ceccc6c9c38b49c1709813d60480b180fb39607806116b9dcd1de35ebb02e23e95d78c8191f04a4875e06e27fa43bc9800b33'
+'SKIP')
+validpgpkeys=('BABD00573A065BFA90D53D563627F3144076AE63')  # Jfreegman 

+
+build() {
+  cd "$pkgname-$pkgver"
+  # enabled X11 on konsole may cause 
https://github.com/JFreegman/toxic/issues/277
+  # but we can only do video and call with X11 enabled 
https://bugs.archlinux.org/task/52836
+  make PREFIX=/usr
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+}


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

2017-09-24 Thread Jiachen Yang
Date: Sunday, September 24, 2017 @ 13:38:24
  Author: farseerfc
Revision: 260431

upgpkg: toxic 0.8.0-4

toxic qrencode rebuild

Modified:
  toxic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 13:06:11 UTC (rev 260430)
+++ PKGBUILD2017-09-24 13:38:24 UTC (rev 260431)
@@ -5,7 +5,7 @@
 pkgdesc='CLI Tox client'
 license=('GPL3')
 pkgver=0.8.0
-pkgrel=3
+pkgrel=4
 depends=('curl'
  'desktop-file-utils'
  'freealut'


[arch-commits] Commit in plasma5-applets-weather-widget/repos (4 files)

2017-09-24 Thread Antonio Rojas
Date: Sunday, September 24, 2017 @ 13:06:11
  Author: arojas
Revision: 260430

archrelease: copy trunk to community-i686, community-x86_64

Added:
  plasma5-applets-weather-widget/repos/community-i686/PKGBUILD
(from rev 260429, plasma5-applets-weather-widget/trunk/PKGBUILD)
  plasma5-applets-weather-widget/repos/community-x86_64/PKGBUILD
(from rev 260429, plasma5-applets-weather-widget/trunk/PKGBUILD)
Deleted:
  plasma5-applets-weather-widget/repos/community-i686/PKGBUILD
  plasma5-applets-weather-widget/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   68 
 community-i686/PKGBUILD   |   33 -
 community-x86_64/PKGBUILD |   33 -
 3 files changed, 68 insertions(+), 66 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-24 13:05:50 UTC (rev 260429)
+++ community-i686/PKGBUILD 2017-09-24 13:06:11 UTC (rev 260430)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Martin Kostolný 
-
-pkgname=plasma5-applets-weather-widget
-pkgver=1.6.10
-pkgrel=1
-pkgdesc="Plasma applet for displaying weather information from yr.no server"
-arch=(i686 x86_64)
-url="http://kde-apps.org/content/show.php/Weather+Widget?content=169572";
-license=(GPL)
-depends=(plasma-workspace qt5-graphicaleffects)
-makedepends=(extra-cmake-modules)
-source=($pkgname-$pkgver.tar.gz::"https://github.com/kotelnik/plasma-applet-weather-widget/archive/v$pkgver.tar.gz";)
-sha256sums=('9557441285121be52bfe27fa2bb214e865132b8581953faf88f1fae4ae1e87f2')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../plasma-applet-weather-widget-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma5-applets-weather-widget/repos/community-i686/PKGBUILD (from rev 
260429, plasma5-applets-weather-widget/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-24 13:06:11 UTC (rev 260430)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Martin Kostolný 
+
+pkgname=plasma5-applets-weather-widget
+pkgver=1.6.10
+pkgrel=1
+pkgdesc="Plasma applet for displaying weather information from yr.no server"
+arch=(i686 x86_64)
+url="http://kde-apps.org/content/show.php/Weather+Widget?content=169572";
+license=(GPL)
+depends=(plasma-workspace qt5-graphicaleffects)
+makedepends=(extra-cmake-modules)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/kotelnik/plasma-applet-weather-widget/archive/v$pkgver.tar.gz";)
+sha256sums=('9557441285121be52bfe27fa2bb214e865132b8581953faf88f1fae4ae1e87f2')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../plasma-applet-weather-widget-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-24 13:05:50 UTC (rev 260429)
+++ community-x86_64/PKGBUILD   2017-09-24 13:06:11 UTC (rev 260430)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Martin Kostolný 
-
-pkgname=plasma5-applets-weather-widget
-pkgver=1.6.10
-pkgrel=1
-pkgdesc="Plasma applet for displaying weather information from yr.no server"
-arch=(i686 x86_64)
-url="http://kde-apps.org/content/show.php/Weather+Widget?content=169572";
-license=(GPL)
-depends=(plasma-workspace qt5-graphicaleffects)
-makedepends=(extra-cmake-modules)
-source=($pkgname-$pkgver.tar.gz::"https://github.com/kotelnik/plasma-applet-weather-widget/archive/v$pkgver.tar.gz";)
-sha256sums=('9557441285121be52bfe27fa2bb214e865132b8581953faf88f1fae4ae1e87f2')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../plasma-applet-weather-widget-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma5-applets-weather-widget/repos/community-x86_64/PKGBUILD (from 
rev 260429, plasma5-applets-weather-widget/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-24 13:06:11 UTC (rev 260430)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Martin Kostolný 
+
+pkgname=plasma5-applets-weather-widget
+pkgver=1.6.10
+pkgrel=1
+pkgdesc="Plasma applet for displaying weather in

[arch-commits] Commit in plasma5-applets-weather-widget/trunk (PKGBUILD)

2017-09-24 Thread Antonio Rojas
Date: Sunday, September 24, 2017 @ 13:05:50
  Author: arojas
Revision: 260429

Build in build(), not in package()

Modified:
  plasma5-applets-weather-widget/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 12:40:27 UTC (rev 260428)
+++ PKGBUILD2017-09-24 13:05:50 UTC (rev 260429)
@@ -25,6 +25,7 @@
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_LIBDIR=lib \
 -DBUILD_TESTING=OFF
+  make
 }
 
 package() {


[arch-commits] Commit in plasma5-applets-weather-widget/repos (4 files)

2017-09-24 Thread Antonio Rojas
Date: Sunday, September 24, 2017 @ 12:40:27
  Author: arojas
Revision: 260428

archrelease: copy trunk to community-i686, community-x86_64

Added:
  plasma5-applets-weather-widget/repos/community-i686/PKGBUILD
(from rev 260427, plasma5-applets-weather-widget/trunk/PKGBUILD)
  plasma5-applets-weather-widget/repos/community-x86_64/PKGBUILD
(from rev 260427, plasma5-applets-weather-widget/trunk/PKGBUILD)
Deleted:
  plasma5-applets-weather-widget/repos/community-i686/PKGBUILD
  plasma5-applets-weather-widget/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   66 
 community-i686/PKGBUILD   |   33 --
 community-x86_64/PKGBUILD |   33 --
 3 files changed, 66 insertions(+), 66 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-24 12:39:33 UTC (rev 260427)
+++ community-i686/PKGBUILD 2017-09-24 12:40:27 UTC (rev 260428)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Martin Kostolný 
-
-pkgname=plasma5-applets-weather-widget
-pkgver=1.6.9
-pkgrel=1
-pkgdesc="Plasma applet for displaying weather information from yr.no server"
-arch=(i686 x86_64)
-url="http://kde-apps.org/content/show.php/Weather+Widget?content=169572";
-license=(GPL)
-depends=(plasma-workspace qt5-graphicaleffects)
-makedepends=(extra-cmake-modules)
-source=($pkgname-$pkgver.tar.gz::"https://github.com/kotelnik/plasma-applet-weather-widget/archive/v$pkgver.tar.gz";)
-md5sums=('9396e0e39c4587c039976dda6f462a51')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../plasma-applet-weather-widget-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma5-applets-weather-widget/repos/community-i686/PKGBUILD (from rev 
260427, plasma5-applets-weather-widget/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-24 12:40:27 UTC (rev 260428)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Martin Kostolný 
+
+pkgname=plasma5-applets-weather-widget
+pkgver=1.6.10
+pkgrel=1
+pkgdesc="Plasma applet for displaying weather information from yr.no server"
+arch=(i686 x86_64)
+url="http://kde-apps.org/content/show.php/Weather+Widget?content=169572";
+license=(GPL)
+depends=(plasma-workspace qt5-graphicaleffects)
+makedepends=(extra-cmake-modules)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/kotelnik/plasma-applet-weather-widget/archive/v$pkgver.tar.gz";)
+sha256sums=('9557441285121be52bfe27fa2bb214e865132b8581953faf88f1fae4ae1e87f2')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../plasma-applet-weather-widget-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-24 12:39:33 UTC (rev 260427)
+++ community-x86_64/PKGBUILD   2017-09-24 12:40:27 UTC (rev 260428)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Martin Kostolný 
-
-pkgname=plasma5-applets-weather-widget
-pkgver=1.6.9
-pkgrel=1
-pkgdesc="Plasma applet for displaying weather information from yr.no server"
-arch=(i686 x86_64)
-url="http://kde-apps.org/content/show.php/Weather+Widget?content=169572";
-license=(GPL)
-depends=(plasma-workspace qt5-graphicaleffects)
-makedepends=(extra-cmake-modules)
-source=($pkgname-$pkgver.tar.gz::"https://github.com/kotelnik/plasma-applet-weather-widget/archive/v$pkgver.tar.gz";)
-md5sums=('9396e0e39c4587c039976dda6f462a51')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../plasma-applet-weather-widget-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma5-applets-weather-widget/repos/community-x86_64/PKGBUILD (from 
rev 260427, plasma5-applets-weather-widget/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-24 12:40:27 UTC (rev 260428)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Martin Kostolný 
+
+pkgname=plasma5-applets-weather-widget
+pkgver=1.6.10
+pkgrel=1
+pkgdesc="Plasma applet for displaying weather information from yr.no server"
+arch=(i686 x86_64)
+url="http://kde-apps.org/con

[arch-commits] Commit in plasma5-applets-weather-widget/trunk (PKGBUILD)

2017-09-24 Thread Antonio Rojas
Date: Sunday, September 24, 2017 @ 12:39:33
  Author: arojas
Revision: 260427

Update to 1.6.10

Modified:
  plasma5-applets-weather-widget/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 11:39:09 UTC (rev 260426)
+++ PKGBUILD2017-09-24 12:39:33 UTC (rev 260427)
@@ -3,7 +3,7 @@
 # Contributor: Martin Kostolný 
 
 pkgname=plasma5-applets-weather-widget
-pkgver=1.6.9
+pkgver=1.6.10
 pkgrel=1
 pkgdesc="Plasma applet for displaying weather information from yr.no server"
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 depends=(plasma-workspace qt5-graphicaleffects)
 makedepends=(extra-cmake-modules)
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/kotelnik/plasma-applet-weather-widget/archive/v$pkgver.tar.gz";)
-md5sums=('9396e0e39c4587c039976dda6f462a51')
+sha256sums=('9557441285121be52bfe27fa2bb214e865132b8581953faf88f1fae4ae1e87f2')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in lib32-vulkan-loader-layers/repos/multilib-x86_64 (3 files)

2017-09-24 Thread Laurent Carlier
Date: Sunday, September 24, 2017 @ 11:39:09
  Author: lcarlier
Revision: 260426

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-vulkan-loader-layers/repos/multilib-x86_64/PKGBUILD
(from rev 260425, lib32-vulkan-loader-layers/trunk/PKGBUILD)
Deleted:
  
lib32-vulkan-loader-layers/repos/multilib-x86_64/0001-loader-Remove-executable-stack-from-libvulkan.so.patch
  lib32-vulkan-loader-layers/repos/multilib-x86_64/PKGBUILD

-+
 0001-loader-Remove-executable-stack-from-libvulkan.so.patch |   28 -
 PKGBUILD|  161 --
 2 files changed, 76 insertions(+), 113 deletions(-)

Deleted: 0001-loader-Remove-executable-stack-from-libvulkan.so.patch
===
--- 0001-loader-Remove-executable-stack-from-libvulkan.so.patch 2017-09-24 
11:38:57 UTC (rev 260425)
+++ 0001-loader-Remove-executable-stack-from-libvulkan.so.patch 2017-09-24 
11:39:09 UTC (rev 260426)
@@ -1,28 +0,0 @@
-From 3152f2a5056077d3e1061ac61e3ef7888ff96dc7 Mon Sep 17 00:00:00 2001
-From: Lenny Komow 
-Date: Thu, 20 Jul 2017 16:07:14 -0600
-Subject: [PATCH] loader: Remove executable stack from libvulkan.so
-
-Change-Id: Id77d5560479cbbc6f5453a6362c5a20dd721fdd0

- loader/unknown_ext_chain_gas.asm | 4 
- 1 file changed, 4 insertions(+)
-
-diff --git a/loader/unknown_ext_chain_gas.asm 
b/loader/unknown_ext_chain_gas.asm
-index e463f45b..798760bd 100644
 a/loader/unknown_ext_chain_gas.asm
-+++ b/loader/unknown_ext_chain_gas.asm
-@@ -108,6 +108,10 @@ vkdev_ext\num:
- 
- .endif
- 
-+#if defined(__ELF__)
-+.section .note.GNU-stack,"",%progbits
-+#endif
-+
- .data
- 
- termin_error_string:
--- 
-2.13.2
-

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-24 11:38:57 UTC (rev 260425)
+++ PKGBUILD2017-09-24 11:39:09 UTC (rev 260426)
@@ -1,85 +0,0 @@
-# $Id$
-# Maintainer: Laurent Carlier 
-
-pkgbase=lib32-vulkan-loader-layers
-pkgname=(lib32-vulkan-icd-loader lib32-vulkan-validation-layers)
-_pkgname=Vulkan-LoaderAndValidationLayers
-pkgver=1.0.54.0
-pkgrel=1
-arch=(x86_64)
-url="https://www.khronos.org/vulkan/";
-license=('custom')
-depends=()
-makedepends=(git cmake python-lxml lib32-libx11 lib32-libxrandr lib32-wayland)
-source=("https://github.com/KhronosGroup/${_pkgname}/archive/sdk-${pkgver}.tar.gz";
-0001-loader-Remove-executable-stack-from-libvulkan.so.patch)
-sha256sums=('f2556963f27309485c4d6bd9acece58d51df6a1b13699cc3a2c8d2579e6a3831'
-'01c1e96916a9fc0ef6f62703cd968c14031ad75f64f61409f108bc9e427977a1')
-
-prepare() {
-  cd "${srcdir}/${_pkgname}-sdk-${pkgver}"
-
-  # 
https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers/issues/1956
-  patch -Np1 -i ../0001-loader-Remove-executable-stack-from-libvulkan.so.patch
-}
-
-build() {
-  export ASFLAGS=--32
-  export CC="gcc -m32"
-  export CXX="g++ -m32"


-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" 
-
-  cd "${srcdir}/${_pkgname}-sdk-${pkgver}"
-
-  ./update_external_sources.sh
-
-  rm -rf build ; mkdir build ; cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_SYSCONFDIR=/etc \
--DCMAKE_INSTALL_LIBDIR=lib32 \
--DCMAKE_INSTALL_DATADIR=/share \
--DCMAKE_SKIP_RPATH=True \
--DBUILD_TESTS=Off \
--DBUILD_WSI_XCB_SUPPORT=On \
--DBUILD_WSI_XLIB_SUPPORT=On \
--DBUILD_WSI_WAYLAND_SUPPORT=On \
--DBUILD_WSI_MIR_SUPPORT=Off \
--DCMAKE_BUILD_TYPE=Release \
-..
-  make
-}
-
-package_lib32-vulkan-icd-loader() {
-  pkgdesc="Vulkan Installable Client Driver (ICD) Loader (32-bit)"
-  depends=(lib32-glibc)
-  optdepends=(lib32-vulkan-driver: packaged vulkan driver)
-  cd "${srcdir}/${_pkgname}-sdk-${pkgver}/build"
-  
-  make DESTDIR="${pkgdir}" install
-
-  rm -r ${pkgdir}/etc
-  rm -r ${pkgdir}/usr/bin
-  rm -r ${pkgdir}/usr/include
-  rm ${pkgdir}/usr/lib32/libVkLayer*.so
-
-  install -dm755 ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 ../LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/
-}
-
-package_lib32-vulkan-validation-layers() {
-  pkgdesc="Vulkan Software Development Kit (32-bit)"
-  depends=(lib32-gcc-libs lib32-vulkan-icd-loader vulkan-headers)
-  cd "${srcdir}/${_pkgname}-sdk-${pkgver}/build"
-  
-  make DESTDIR="${pkgdir}" install
-
-  rm -r ${pkgdir}/etc
-  rm -r ${pkgdir}/usr/bin
-  rm -r ${pkgdir}/usr/include
-  rm -r ${pkgdir}/usr/lib32/pkgconfig
-  rm ${pkgdir}/usr/lib32/libvulkan.so*
-
-  install -dm755 ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 ../LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/
-}
-

Copied: lib32-vulkan-loader-layers/repos/multilib-x86_64/PKGBUILD (from rev 
260425, lib32-vulkan-loader-layers/tru

[arch-commits] Commit in lib32-vulkan-loader-layers/trunk (2 files)

2017-09-24 Thread Laurent Carlier
Date: Sunday, September 24, 2017 @ 11:38:57
  Author: lcarlier
Revision: 260425

upgpkg: lib32-vulkan-loader-layers 1.0.61.1-1

upstream update 1.0.61.1

Modified:
  lib32-vulkan-loader-layers/trunk/PKGBUILD
Deleted:
  
lib32-vulkan-loader-layers/trunk/0001-loader-Remove-executable-stack-from-libvulkan.so.patch

-+
 0001-loader-Remove-executable-stack-from-libvulkan.so.patch |   28 --
 PKGBUILD|   15 +
 2 files changed, 3 insertions(+), 40 deletions(-)

Deleted: 0001-loader-Remove-executable-stack-from-libvulkan.so.patch
===
--- 0001-loader-Remove-executable-stack-from-libvulkan.so.patch 2017-09-24 
11:06:46 UTC (rev 260424)
+++ 0001-loader-Remove-executable-stack-from-libvulkan.so.patch 2017-09-24 
11:38:57 UTC (rev 260425)
@@ -1,28 +0,0 @@
-From 3152f2a5056077d3e1061ac61e3ef7888ff96dc7 Mon Sep 17 00:00:00 2001
-From: Lenny Komow 
-Date: Thu, 20 Jul 2017 16:07:14 -0600
-Subject: [PATCH] loader: Remove executable stack from libvulkan.so
-
-Change-Id: Id77d5560479cbbc6f5453a6362c5a20dd721fdd0

- loader/unknown_ext_chain_gas.asm | 4 
- 1 file changed, 4 insertions(+)
-
-diff --git a/loader/unknown_ext_chain_gas.asm 
b/loader/unknown_ext_chain_gas.asm
-index e463f45b..798760bd 100644
 a/loader/unknown_ext_chain_gas.asm
-+++ b/loader/unknown_ext_chain_gas.asm
-@@ -108,6 +108,10 @@ vkdev_ext\num:
- 
- .endif
- 
-+#if defined(__ELF__)
-+.section .note.GNU-stack,"",%progbits
-+#endif
-+
- .data
- 
- termin_error_string:
--- 
-2.13.2
-

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 11:06:46 UTC (rev 260424)
+++ PKGBUILD2017-09-24 11:38:57 UTC (rev 260425)
@@ -4,7 +4,7 @@
 pkgbase=lib32-vulkan-loader-layers
 pkgname=(lib32-vulkan-icd-loader lib32-vulkan-validation-layers)
 _pkgname=Vulkan-LoaderAndValidationLayers
-pkgver=1.0.54.0
+pkgver=1.0.61.1
 pkgrel=1
 arch=(x86_64)
 url="https://www.khronos.org/vulkan/";
@@ -11,18 +11,9 @@
 license=('custom')
 depends=()
 makedepends=(git cmake python-lxml lib32-libx11 lib32-libxrandr lib32-wayland)
-source=("https://github.com/KhronosGroup/${_pkgname}/archive/sdk-${pkgver}.tar.gz";
-0001-loader-Remove-executable-stack-from-libvulkan.so.patch)
-sha256sums=('f2556963f27309485c4d6bd9acece58d51df6a1b13699cc3a2c8d2579e6a3831'
-'01c1e96916a9fc0ef6f62703cd968c14031ad75f64f61409f108bc9e427977a1')
+source=("https://github.com/KhronosGroup/${_pkgname}/archive/sdk-${pkgver}.tar.gz";)
+sha256sums=('47a2e56e4721ffac7df6a4e8ce2189da41331b7ed91e3879266c69302604e615')
 
-prepare() {
-  cd "${srcdir}/${_pkgname}-sdk-${pkgver}"
-
-  # 
https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers/issues/1956
-  patch -Np1 -i ../0001-loader-Remove-executable-stack-from-libvulkan.so.patch
-}
-
 build() {
   export ASFLAGS=--32
   export CC="gcc -m32"


[arch-commits] Commit in vulkan-loader-layers/repos (8 files)

2017-09-24 Thread Laurent Carlier
Date: Sunday, September 24, 2017 @ 11:33:45
  Author: lcarlier
Revision: 306195

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  
vulkan-loader-layers/repos/extra-i686/0001-loader-Remove-executable-stack-from-libvulkan.so.patch
(from rev 306194, 
vulkan-loader-layers/trunk/0001-loader-Remove-executable-stack-from-libvulkan.so.patch)
  vulkan-loader-layers/repos/extra-i686/PKGBUILD
(from rev 306194, vulkan-loader-layers/trunk/PKGBUILD)
  
vulkan-loader-layers/repos/extra-x86_64/0001-loader-Remove-executable-stack-from-libvulkan.so.patch
(from rev 306194, 
vulkan-loader-layers/trunk/0001-loader-Remove-executable-stack-from-libvulkan.so.patch)
  vulkan-loader-layers/repos/extra-x86_64/PKGBUILD
(from rev 306194, vulkan-loader-layers/trunk/PKGBUILD)
Deleted:
  
vulkan-loader-layers/repos/extra-i686/0001-loader-Remove-executable-stack-from-libvulkan.so.patch
  vulkan-loader-layers/repos/extra-i686/PKGBUILD
  
vulkan-loader-layers/repos/extra-x86_64/0001-loader-Remove-executable-stack-from-libvulkan.so.patch
  vulkan-loader-layers/repos/extra-x86_64/PKGBUILD

--+
 /0001-loader-Remove-executable-stack-from-libvulkan.so.patch |   
56 +++
 /PKGBUILD|  
162 ++
 extra-i686/0001-loader-Remove-executable-stack-from-libvulkan.so.patch   |   
28 -
 extra-i686/PKGBUILD  |   
81 -
 extra-x86_64/0001-loader-Remove-executable-stack-from-libvulkan.so.patch |   
28 -
 extra-x86_64/PKGBUILD|   
81 -
 6 files changed, 218 insertions(+), 218 deletions(-)

Deleted: extra-i686/0001-loader-Remove-executable-stack-from-libvulkan.so.patch
===
--- extra-i686/0001-loader-Remove-executable-stack-from-libvulkan.so.patch  
2017-09-24 11:33:32 UTC (rev 306194)
+++ extra-i686/0001-loader-Remove-executable-stack-from-libvulkan.so.patch  
2017-09-24 11:33:45 UTC (rev 306195)
@@ -1,28 +0,0 @@
-From 3152f2a5056077d3e1061ac61e3ef7888ff96dc7 Mon Sep 17 00:00:00 2001
-From: Lenny Komow 
-Date: Thu, 20 Jul 2017 16:07:14 -0600
-Subject: [PATCH] loader: Remove executable stack from libvulkan.so
-
-Change-Id: Id77d5560479cbbc6f5453a6362c5a20dd721fdd0

- loader/unknown_ext_chain_gas.asm | 4 
- 1 file changed, 4 insertions(+)
-
-diff --git a/loader/unknown_ext_chain_gas.asm 
b/loader/unknown_ext_chain_gas.asm
-index e463f45b..798760bd 100644
 a/loader/unknown_ext_chain_gas.asm
-+++ b/loader/unknown_ext_chain_gas.asm
-@@ -108,6 +108,10 @@ vkdev_ext\num:
- 
- .endif
- 
-+#if defined(__ELF__)
-+.section .note.GNU-stack,"",%progbits
-+#endif
-+
- .data
- 
- termin_error_string:
--- 
-2.13.2
-

Copied: 
vulkan-loader-layers/repos/extra-i686/0001-loader-Remove-executable-stack-from-libvulkan.so.patch
 (from rev 306194, 
vulkan-loader-layers/trunk/0001-loader-Remove-executable-stack-from-libvulkan.so.patch)
===
--- extra-i686/0001-loader-Remove-executable-stack-from-libvulkan.so.patch  
(rev 0)
+++ extra-i686/0001-loader-Remove-executable-stack-from-libvulkan.so.patch  
2017-09-24 11:33:45 UTC (rev 306195)
@@ -0,0 +1,28 @@
+From 3152f2a5056077d3e1061ac61e3ef7888ff96dc7 Mon Sep 17 00:00:00 2001
+From: Lenny Komow 
+Date: Thu, 20 Jul 2017 16:07:14 -0600
+Subject: [PATCH] loader: Remove executable stack from libvulkan.so
+
+Change-Id: Id77d5560479cbbc6f5453a6362c5a20dd721fdd0
+---
+ loader/unknown_ext_chain_gas.asm | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/loader/unknown_ext_chain_gas.asm 
b/loader/unknown_ext_chain_gas.asm
+index e463f45b..798760bd 100644
+--- a/loader/unknown_ext_chain_gas.asm
 b/loader/unknown_ext_chain_gas.asm
+@@ -108,6 +108,10 @@ vkdev_ext\num:
+ 
+ .endif
+ 
++#if defined(__ELF__)
++.section .note.GNU-stack,"",%progbits
++#endif
++
+ .data
+ 
+ termin_error_string:
+-- 
+2.13.2
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-24 11:33:32 UTC (rev 306194)
+++ extra-i686/PKGBUILD 2017-09-24 11:33:45 UTC (rev 306195)
@@ -1,81 +0,0 @@
-# $Id$
-# Maintainer: Laurent Carlier 
-
-pkgbase=vulkan-loader-layers
-pkgname=(vulkan-icd-loader vulkan-validation-layers)
-_pkgname=Vulkan-LoaderAndValidationLayers
-pkgver=1.0.57.0
-pkgrel=1
-arch=(i686 x86_64)
-url="https://www.khronos.org/vulkan/";
-license=('custom')
-depends=()
-makedepends=(git cmake python-lxml libx11 libxrandr wayland)
-source=("https://github.com/KhronosGroup/${_pkgname}/archive/sdk-${pkgver}.tar.gz";)
-sha256sums=('a425caf7cdd4328555de20174e40092aeff491cc511bfc65435fa66dc983461e')
-
-build() {
-  cd "${srcdir}/${_pkgname}-sdk-${pkgver}"
-
-  ./update_external_sources.sh
-
-  rm -rf build ; mkdir build ; cd bui

[arch-commits] Commit in vulkan-loader-layers/trunk (PKGBUILD)

2017-09-24 Thread Laurent Carlier
Date: Sunday, September 24, 2017 @ 11:33:32
  Author: lcarlier
Revision: 306194

upgpkg: vulkan-loader-layers 1.0.61.1-1

upstream update 1.0.61.1

Modified:
  vulkan-loader-layers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 11:26:01 UTC (rev 306193)
+++ PKGBUILD2017-09-24 11:33:32 UTC (rev 306194)
@@ -4,7 +4,7 @@
 pkgbase=vulkan-loader-layers
 pkgname=(vulkan-icd-loader vulkan-validation-layers)
 _pkgname=Vulkan-LoaderAndValidationLayers
-pkgver=1.0.57.0
+pkgver=1.0.61.1
 pkgrel=1
 arch=(i686 x86_64)
 url="https://www.khronos.org/vulkan/";
@@ -12,7 +12,7 @@
 depends=()
 makedepends=(git cmake python-lxml libx11 libxrandr wayland)
 
source=("https://github.com/KhronosGroup/${_pkgname}/archive/sdk-${pkgver}.tar.gz";)
-sha256sums=('a425caf7cdd4328555de20174e40092aeff491cc511bfc65435fa66dc983461e')
+sha256sums=('47a2e56e4721ffac7df6a4e8ce2189da41331b7ed91e3879266c69302604e615')
 
 build() {
   cd "${srcdir}/${_pkgname}-sdk-${pkgver}"


  1   2   3   >