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

2016-10-07 Thread Kyle Keen
Date: Saturday, October 8, 2016 @ 02:41:01
  Author: kkeen
Revision: 191621

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

Added:
  hiawatha/repos/community-i686/PKGBUILD
(from rev 191620, hiawatha/trunk/PKGBUILD)
  hiawatha/repos/community-i686/hiawatha.conf.sample
(from rev 191620, hiawatha/trunk/hiawatha.conf.sample)
  hiawatha/repos/community-i686/hiawatha.service
(from rev 191620, hiawatha/trunk/hiawatha.service)
  hiawatha/repos/community-x86_64/PKGBUILD
(from rev 191620, hiawatha/trunk/PKGBUILD)
  hiawatha/repos/community-x86_64/hiawatha.conf.sample
(from rev 191620, hiawatha/trunk/hiawatha.conf.sample)
  hiawatha/repos/community-x86_64/hiawatha.service
(from rev 191620, hiawatha/trunk/hiawatha.service)
Deleted:
  hiawatha/repos/community-i686/PKGBUILD
  hiawatha/repos/community-i686/hiawatha.conf.sample
  hiawatha/repos/community-i686/hiawatha.service
  hiawatha/repos/community-x86_64/PKGBUILD
  hiawatha/repos/community-x86_64/hiawatha.conf.sample
  hiawatha/repos/community-x86_64/hiawatha.service

---+
 /PKGBUILD |  184 +
 /hiawatha.conf.sample |  228 
 /hiawatha.service |   32 
 community-i686/PKGBUILD   |   92 
 community-i686/hiawatha.conf.sample   |  114 
 community-i686/hiawatha.service   |   16 --
 community-x86_64/PKGBUILD |   92 
 community-x86_64/hiawatha.conf.sample |  114 
 community-x86_64/hiawatha.service |   16 --
 9 files changed, 444 insertions(+), 444 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-08 02:40:34 UTC (rev 191620)
+++ community-i686/PKGBUILD 2016-10-08 02:41:01 UTC (rev 191621)
@@ -1,92 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Kurt Marasco 
-# Contributor: Pascal Ernster 
-
-pkgname=hiawatha
-pkgver=10.3
-pkgrel=1
-pkgdesc="Secure and advanced webserver"
-url="https://www.hiawatha-webserver.org/;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('libxslt' 'mbedtls')
-optdepends=('php-fpm: PHP fastcgi')
-makedepends=('cmake')
-backup=(
-'etc/hiawatha/hiawatha.conf'
-'etc/hiawatha/cgi-wrapper.conf'
-'etc/hiawatha/mimetype.conf'
-)
-
-source=(
-"https://www.hiawatha-webserver.org/files/$pkgname-$pkgver.tar.gz; 
-'hiawatha.conf.sample'
-'hiawatha.service'
-)
-sha256sums=('99d185fb16bb1ab706724494d3cac86464f1485ed4b0fff09a192eca6da5ff8e'
-'4671d2586cbe3cd6497b16ff422c6143cdab40641ef3c9c4988c478351a8f5e7'
-'fb789b12bb6246237b15a9244f58317abdd53e5ca4eb55880e40a498b2237155')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed -i 's/www-data/http/g' extra/logrotate.in
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  mkdir -p build
-  cd build
-
-  cmake ../ -DCMAKE_INSTALL_PREFIX="/" \
--DCMAKE_INSTALL_BINDIR="/usr/bin" \
--DCMAKE_INSTALL_SBINDIR="/usr/bin" \
--DCMAKE_INSTALL_SYSCONFDIR="/etc/hiawatha" \
--DCMAKE_INSTALL_LIBDIR="/usr/lib" \
--DCMAKE_INSTALL_MANDIR="/usr/share/man" \
--DCONFIG_DIR="/etc/hiawatha" \
--DLOG_DIR="/var/log/hiawatha" \
--DPID_DIR="/run" \
--DENABLE_TLS=ON \
--DUSE_SYSTEM_MBEDTLS=ON \
--DENABLE_MONITOR=ON \
--DWEBROOT_DIR="/srv/http/hiawatha" \
--DWORK_DIR="/var/lib/hiawatha"
-
-  make
-
-  # Features enabled by default
-  # -DENABLE_CACHE
-  # -DENABLE_IPV6
-  # -DENABLE_RPROXY
-  # -DENABLE_TOOLKIT
-  # -DENABLE_XSLT
-
-  # Features disabled by default
-  # -DENABLE_DEBUG
-  # -DENABLE_TOMAHAWK  
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir/" install
- 
-  rmdir "$pkgdir/run"
-  rm "$pkgdir/srv/http/hiawatha/index.html"
-  rmdir -p --ignore-fail-on-non-empty "$pkgdir/srv/http/hiawatha"
- 
-  # Update stock hiawatha.conf
-  sed -e 's|#ServerId = www-data|ServerId = http|' \
-  -e 's|/var/www/|/srv/http/|g' \
-  -e 's|//|/|g' \
-  -e 's|#CGIextension = cgi|&\n#TriggerOnCGIstatus = no|g' \
-  -e 's|ConnectTo = 127.0.0.1:2005|ConnectTo = 127.0.0.1:9000|g' \
-  -e 's|#  Extension = php|&\n#   SessionTimeout = 30|g' \
-  -e 's|#ErrorHandler = 404:/error.cgi|&\n#UseGZfile = yes|g' \
-  -i "$pkgdir/etc/hiawatha/hiawatha.conf"
-  
-  install -Dm644 logrotate.d/hiawatha "$pkgdir/etc/logrotate.d/hiawatha"
-  install -Dm644 "$srcdir/hiawatha.service" 
"$pkgdir/usr/lib/systemd/system/hiawatha.service"
-  install -Dm644 "$srcdir/hiawatha.conf.sample" "$pkgdir/etc/hiawatha/"
-}
-

Copied: hiawatha/repos/community-i686/PKGBUILD (from rev 191620, 
hiawatha/trunk/PKGBUILD)

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

2016-10-07 Thread Kyle Keen
Date: Saturday, October 8, 2016 @ 02:40:34
  Author: kkeen
Revision: 191620

upgpkg: hiawatha 10.4-1

Modified:
  hiawatha/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-08 01:53:44 UTC (rev 191619)
+++ PKGBUILD2016-10-08 02:40:34 UTC (rev 191620)
@@ -4,7 +4,7 @@
 # Contributor: Pascal Ernster 
 
 pkgname=hiawatha
-pkgver=10.3
+pkgver=10.4
 pkgrel=1
 pkgdesc="Secure and advanced webserver"
 url="https://www.hiawatha-webserver.org/;
@@ -24,7 +24,7 @@
 'hiawatha.conf.sample'
 'hiawatha.service'
 )
-sha256sums=('99d185fb16bb1ab706724494d3cac86464f1485ed4b0fff09a192eca6da5ff8e'
+sha256sums=('e40ebcbde8fbd5a14dbf7279143757aea02a461940daa5c460496871eaa75454'
 '4671d2586cbe3cd6497b16ff422c6143cdab40641ef3c9c4988c478351a8f5e7'
 'fb789b12bb6246237b15a9244f58317abdd53e5ca4eb55880e40a498b2237155')
 


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

2016-10-07 Thread Kyle Keen
Date: Saturday, October 8, 2016 @ 01:53:44
  Author: kkeen
Revision: 191619

FS#51276, fix googlecode URL

Modified:
  libpgm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-08 01:51:13 UTC (rev 191618)
+++ PKGBUILD2016-10-08 01:53:44 UTC (rev 191619)
@@ -7,12 +7,14 @@
 pkgrel=2
 pkgdesc="OpenPGM: implementation of the Pragmatic General Multicast (PGM, 
RFC3208)"
 arch=('i686' 'x86_64')
-url="http://code.google.com/p/openpgm;
+#url="http://code.google.com/p/openpgm;
+url='https://www.freshports.org/net/openpgm/'
 license=('LGPL2.1')
 depends=('glibc')
 makedepends=('python2')
 options=(!strip)
-source=("http://openpgm.googlecode.com/files/$pkgname-$pkgver.tar.gz;)
+#source=("http://openpgm.googlecode.com/files/$pkgname-$pkgver.tar.gz;)
+source=("https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/openpgm/libpgm-$pkgver.tar.gz;)
 sha256sums=('6b895f550b95284dcde7189b01e04a9a1c1f94579af31b1eebd32c2207a1ba2c')
 
 


[arch-commits] Commit in wine-staging/repos/community-i686 (4 files)

2016-10-07 Thread Felix Yan
Date: Saturday, October 8, 2016 @ 01:51:13
  Author: felixonmars
Revision: 191618

archrelease: copy trunk to community-i686

Added:
  wine-staging/repos/community-i686/30-win32-aliases.conf
(from rev 191617, wine-staging/trunk/30-win32-aliases.conf)
  wine-staging/repos/community-i686/PKGBUILD
(from rev 191617, wine-staging/trunk/PKGBUILD)
Deleted:
  wine-staging/repos/community-i686/30-win32-aliases.conf
  wine-staging/repos/community-i686/PKGBUILD

--+
 PKGBUILD |  368 ++---
 1 file changed, 184 insertions(+), 184 deletions(-)

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

Copied: wine-staging/repos/community-i686/30-win32-aliases.conf (from rev 
191617, wine-staging/trunk/30-win32-aliases.conf)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-08 01:48:37 UTC (rev 191617)
+++ PKGBUILD2016-10-08 01:51:13 UTC (rev 191618)
@@ -1,184 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging
-pkgver=1.9.20
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=("https://github.com/wine-compholio/wine-patched/archive/staging-$_pkgbasever.tar.gz;
-30-win32-aliases.conf)
-sha1sums=('1322112de8dee5111647ab3ac285afc5ca6fcce9'
-  '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch"
-url="http://www.wine-staging.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-_depends=(
-  attr lib32-attr
-  fontconfig   lib32-fontconfig
-  lcms2lib32-lcms2
-  libxml2  lib32-libxml2
-  libxcursor   lib32-libxcursor
-  libxrandrlib32-libxrandr
-  libxdamage   lib32-libxdamage
-  libxilib32-libxi
-  gettext  lib32-gettext
-  freetype2lib32-freetype2
-  glu  lib32-glu
-  libsmlib32-libsm
-  gcc-libs lib32-gcc-libs
-  libpcap  lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'   'gcc-multilib>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  libcl lib32-libcl
-  libxslt   lib32-libxslt
-  libpulse  lib32-libpulse
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  samba
-  opencl-headers
-)
-  
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  alsa-lib  lib32-alsa-lib
-  libjpeg-turbo lib32-libjpeg-turbo
-  libxcomposite lib32-libxcomposite
-  libxinerama   lib32-libxinerama
-  ncurses   lib32-ncurses
-  libcl lib32-libcl
-  libxslt   lib32-libxslt
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  cups
-  samba   dosbox
-)
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  _depends=(${_depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/} ${_depends[@]})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  optdepends=(${optdepends[@]/*32-*/})
-  provides=("wine=$pkgver")
-  conflicts=('wine')
-else
-  makedepends=(${makedepends[@]} ${_depends[@]})
-  provides=("wine=$pkgver" "wine-wow64=$pkgver")
-  conflicts=('wine' 'wine-wow64')
-fi
-
-prepare() {
-  # Allow ccache to work
-  mv wine-patched-staging-$_pkgbasever $pkgname
-
-  sed 's|OpenCL/opencl.h|CL/opencl.h|g' -i $pkgname/configure*
-
-  # Get rid of old build dirs
-  rm -rf $pkgname-{32,64}-build
-  mkdir $pkgname-32-build

[arch-commits] Commit in wine/repos/community-i686 (4 files)

2016-10-07 Thread Felix Yan
Date: Saturday, October 8, 2016 @ 01:48:37
  Author: felixonmars
Revision: 191617

archrelease: copy trunk to community-i686

Added:
  wine/repos/community-i686/30-win32-aliases.conf
(from rev 191616, wine/trunk/30-win32-aliases.conf)
  wine/repos/community-i686/PKGBUILD
(from rev 191616, wine/trunk/PKGBUILD)
Deleted:
  wine/repos/community-i686/30-win32-aliases.conf
  wine/repos/community-i686/PKGBUILD

---+
 30-win32-aliases.conf |   40 ++---
 PKGBUILD  |  356 
 2 files changed, 198 insertions(+), 198 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2016-10-07 21:50:01 UTC (rev 191616)
+++ 30-win32-aliases.conf   2016-10-08 01:48:37 UTC (rev 191617)
@@ -1,20 +0,0 @@
-
-
-
-  
-MS Shell Dlg
-Microsoft Sans Serif
-sans-serif
-  
-  
-MS Shell Dlg 2
-Tahoma
-sans-serif
-  
-
-  
-MS Sans Serif
-Microsoft Sans Serif
-sans-serif
-  
-

Copied: wine/repos/community-i686/30-win32-aliases.conf (from rev 191616, 
wine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2016-10-08 01:48:37 UTC (rev 191617)
@@ -0,0 +1,20 @@
+
+
+
+  
+MS Shell Dlg
+Microsoft Sans Serif
+sans-serif
+  
+  
+MS Shell Dlg 2
+Tahoma
+sans-serif
+  
+
+  
+MS Sans Serif
+Microsoft Sans Serif
+sans-serif
+  
+

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-07 21:50:01 UTC (rev 191616)
+++ PKGBUILD2016-10-08 01:48:37 UTC (rev 191617)
@@ -1,178 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine
-pkgver=1.9.20
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(https://dl.winehq.org/wine/source/1.9/$pkgname-$_pkgbasever.tar.bz2{,.sign}
-30-win32-aliases.conf)
-sha1sums=('4d6eaff5090b960c079ebcb239c9898aedfbd145'
-  'SKIP'
-  '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7
-  DA23579A74D4AD9AF9D3F945CEFAC8EAAF17519D)
-
-pkgdesc="A compatibility layer for running Windows programs"
-url="http://www.winehq.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-_depends=(
-  fontconfig  lib32-fontconfig
-  lcms2   lib32-lcms2
-  libxml2 lib32-libxml2
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  libpcap lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'  'gcc-multilib>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  libcl lib32-libcl
-  libxslt   lib32-libxslt
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  samba
-  opencl-headers
-)
-  
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  alsa-lib  lib32-alsa-lib
-  libjpeg-turbo lib32-libjpeg-turbo
-  libxcomposite lib32-libxcomposite
-  libxinerama   lib32-libxinerama
-  ncurses   lib32-ncurses
-  libcl lib32-libcl
-  libxslt   lib32-libxslt
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  cups
-  samba   dosbox
-)
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  _depends=(${_depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/} ${_depends[@]})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  

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

2016-10-07 Thread Jaroslav Lichtblau
Date: Friday, October 7, 2016 @ 21:50:01
  Author: jlichtblau
Revision: 191616

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

Added:
  mapnik/repos/community-staging-i686/
  mapnik/repos/community-staging-i686/PKGBUILD
(from rev 191615, mapnik/trunk/PKGBUILD)
  mapnik/repos/community-staging-i686/mapnik.install
(from rev 191615, mapnik/trunk/mapnik.install)
  mapnik/repos/community-staging-x86_64/
  mapnik/repos/community-staging-x86_64/PKGBUILD
(from rev 191615, mapnik/trunk/PKGBUILD)
  mapnik/repos/community-staging-x86_64/mapnik.install
(from rev 191615, mapnik/trunk/mapnik.install)

-+
 community-staging-i686/PKGBUILD |   45 ++
 community-staging-i686/mapnik.install   |   11 +++
 community-staging-x86_64/PKGBUILD   |   45 ++
 community-staging-x86_64/mapnik.install |   11 +++
 4 files changed, 112 insertions(+)

Copied: mapnik/repos/community-staging-i686/PKGBUILD (from rev 191615, 
mapnik/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 21:50:01 UTC (rev 191616)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: David Dent 
+# Contributor: orbisvicis 
+
+pkgname=mapnik
+pkgver=3.0.12
+pkgrel=2
+pkgdesc="Free Toolkit for developing mapping applications. Above all Mapnik is 
about rendering beautiful maps"
+arch=('i686' 'x86_64')
+url="http://mapnik.org/;
+license=('LGPL')
+depends=('boost-libs' 'icu' 'libpng' 'libjpeg' 'libtiff' 'freetype2'
+'libxml2' 'python2' 'proj' 'cairo' 'cairomm' 'pycairo'
+'postgresql-libs' 'postgis' 'gdal' 'curl' 'libltdl')
+optdepends=('libxslt: Web Map Service'
+'python2-lxml:Web Map Service'
+'python2-pillow:  Web Map Service'
+'python-nose: Web Map Service'
+'apache:  Web Map Service'
+'mod_fastcgi: Web Map Service - or:'
+'mod_fcgid:   Web Map Service - or:'
+'mod_wsgi2:   Web Map Service')
+makedepends=('scons' 'boost' 'git')
+install="mapnik.install"
+source=("https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-v$pkgver.tar.bz2;)
+sha256sums=('66a3d620c3ce543c91ea5b42a25079aca9a2a90f6079a2ce2a8714398fa57d6d')
+
+build() {
+  cd "$srcdir/$pkgname-v$pkgver"
+  PYTHON=python2
+  scons configure \
+PREFIX="/usr" \
+INPUT_PLUGINS=all \
+XMLPARSER=libxml2 \
+DESTDIR="$pkgdir" \
+
CUSTOM_CXXFLAGS="-DBOOST_OPTIONAL_CONFIG_USE_OLD_IMPLEMENTATION_OF_OPTIONAL"
+  scons $MAKEFLAGS
+}
+
+package(){
+  cd "$srcdir/$pkgname-v$pkgver"
+  scons install
+}

Copied: mapnik/repos/community-staging-i686/mapnik.install (from rev 191615, 
mapnik/trunk/mapnik.install)
===
--- community-staging-i686/mapnik.install   (rev 0)
+++ community-staging-i686/mapnik.install   2016-10-07 21:50:01 UTC (rev 
191616)
@@ -0,0 +1,11 @@
+post_install() {
+  /sbin/ldconfig
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: mapnik/repos/community-staging-x86_64/PKGBUILD (from rev 191615, 
mapnik/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-07 21:50:01 UTC (rev 191616)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: David Dent 
+# Contributor: orbisvicis 
+
+pkgname=mapnik
+pkgver=3.0.12
+pkgrel=2
+pkgdesc="Free Toolkit for developing mapping applications. Above all Mapnik is 
about rendering beautiful maps"
+arch=('i686' 'x86_64')
+url="http://mapnik.org/;
+license=('LGPL')
+depends=('boost-libs' 'icu' 'libpng' 'libjpeg' 'libtiff' 'freetype2'
+'libxml2' 'python2' 'proj' 'cairo' 'cairomm' 'pycairo'
+'postgresql-libs' 'postgis' 'gdal' 'curl' 'libltdl')
+optdepends=('libxslt: Web Map Service'
+'python2-lxml:Web Map Service'
+'python2-pillow:  Web Map Service'
+'python-nose: Web Map Service'
+'apache:  Web Map Service'
+'mod_fastcgi: Web Map Service - or:'
+'mod_fcgid:   Web Map Service - or:'
+'mod_wsgi2:   Web Map Service')
+makedepends=('scons' 'boost' 'git')
+install="mapnik.install"
+source=("https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-v$pkgver.tar.bz2;)

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

2016-10-07 Thread Jaroslav Lichtblau
Date: Friday, October 7, 2016 @ 21:49:44
  Author: jlichtblau
Revision: 191615

upgpkg: mapnik 3.0.12-2 - boost 1.62 rebuild

Modified:
  mapnik/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 21:16:11 UTC (rev 191614)
+++ PKGBUILD2016-10-07 21:49:44 UTC (rev 191615)
@@ -6,7 +6,7 @@
 
 pkgname=mapnik
 pkgver=3.0.12
-pkgrel=1
+pkgrel=2
 pkgdesc="Free Toolkit for developing mapping applications. Above all Mapnik is 
about rendering beautiful maps"
 arch=('i686' 'x86_64')
 url="http://mapnik.org/;


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

2016-10-07 Thread Jaroslav Lichtblau
Date: Friday, October 7, 2016 @ 21:16:11
  Author: jlichtblau
Revision: 191614

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

Added:
  glob2/repos/community-staging-i686/
  glob2/repos/community-staging-i686/PKGBUILD
(from rev 191613, glob2/trunk/PKGBUILD)
  glob2/repos/community-staging-i686/fix-ftbfs-gcc49.diff
(from rev 191613, glob2/trunk/fix-ftbfs-gcc49.diff)
  glob2/repos/community-staging-i686/glob2-0.9.4.1-gcc44.patch
(from rev 191613, glob2/trunk/glob2-0.9.4.1-gcc44.patch)
  glob2/repos/community-staging-x86_64/
  glob2/repos/community-staging-x86_64/PKGBUILD
(from rev 191613, glob2/trunk/PKGBUILD)
  glob2/repos/community-staging-x86_64/fix-ftbfs-gcc49.diff
(from rev 191613, glob2/trunk/fix-ftbfs-gcc49.diff)
  glob2/repos/community-staging-x86_64/glob2-0.9.4.1-gcc44.patch
(from rev 191613, glob2/trunk/glob2-0.9.4.1-gcc44.patch)

+
 community-staging-i686/PKGBUILD|   46 ++
 community-staging-i686/fix-ftbfs-gcc49.diff|   14 +++
 community-staging-i686/glob2-0.9.4.1-gcc44.patch   |   87 +++
 community-staging-x86_64/PKGBUILD  |   46 ++
 community-staging-x86_64/fix-ftbfs-gcc49.diff  |   14 +++
 community-staging-x86_64/glob2-0.9.4.1-gcc44.patch |   87 +++
 6 files changed, 294 insertions(+)

Copied: glob2/repos/community-staging-i686/PKGBUILD (from rev 191613, 
glob2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 21:16:11 UTC (rev 191614)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Roman Kyrylych 
+# Contributor: Jaroslav Lichtblau 
+
+pkgname=glob2
+pkgver=0.9.4.4
+pkgrel=30
+pkgdesc='An innovative Real-Time Strategy game which reduces micro-management 
by automatically assigning tasks to units'
+arch=('x86_64' 'i686')
+url='http://www.globulation2.org/'
+license=('GPL3')
+depends=('boost-libs' 'sdl_net' 'sdl_image' 'sdl_ttf' 'libvorbis' 'speex' 'glu'
+ 'fribidi' 'xdg-utils' 'libgl' 'hicolor-icon-theme')
+makedepends=('scons' 'boost' 'mesa' 'patch')
+source=(http://dl.sv.nongnu.org/releases/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.gz
+glob2-0.9.4.1-gcc44.patch fix-ftbfs-gcc49.diff
+
glob2-gcc6.patch::"https://bitbucket.org/giszmo/glob2/commits/a9a16d8631db0176267b4f4aefd8e93767f8d247/raw/;)
+sha256sums=('0f4d898ec6b05ce27b4a12ef242cc26571304b90d2509932a4743c71311314b8'
+'3a0cfc06696d1aaf2d7948b5f6a09a8ce96492767039dc09bfc25182b92d7b7a'
+'2bf0e51ca5de8c6f4910b68522a0265e07bb32beefe13b9912b59e5954c5bfba'
+'40013ef6805694f3d96407ca5df46c4083f0d13677c75c8f05c53efbe3d33e20')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  patch -p0 -i "$srcdir/glob2-0.9.4.1-gcc44.patch"
+  patch -p1 -i "$srcdir/fix-ftbfs-gcc49.diff"
+  patch -p1 -i "$srcdir/glob2-gcc6.patch"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  scons LINKFLAGS="-lboost_system"
+}
+
+package () {
+  cd "$pkgname-$pkgver"
+
+  scons install BINDIR="$pkgdir/usr/bin" INSTALLDIR="$pkgdir/usr/share"
+  find "$pkgdir/usr/share" -type f -exec chmod 644 '{}' \;
+  install -Dm644 "data/icons/$pkgname-icon-48x48.png" \
+"$pkgdir/usr/share/pixmaps/$pkgname-icon-48x48.png"
+}

Copied: glob2/repos/community-staging-i686/fix-ftbfs-gcc49.diff (from rev 
191613, glob2/trunk/fix-ftbfs-gcc49.diff)
===
--- community-staging-i686/fix-ftbfs-gcc49.diff (rev 0)
+++ community-staging-i686/fix-ftbfs-gcc49.diff 2016-10-07 21:16:11 UTC (rev 
191614)
@@ -0,0 +1,14 @@
+Index: glob2-0.9.4.4/src/Game.h
+===
+--- glob2-0.9.4.4.orig/src/Game.h  2014-07-14 10:36:36.705074927 +0800
 glob2-0.9.4.4/src/Game.h   2014-07-14 10:38:28.733077827 +0800
+@@ -148,7 +148,8 @@
+   TOP_TO_BOTTOM,
+   BOTTOM_TO_TOP
+   };
+-  
++
++public:
+   struct BuildProject
+   {
+   int posX;

Copied: glob2/repos/community-staging-i686/glob2-0.9.4.1-gcc44.patch (from rev 
191613, glob2/trunk/glob2-0.9.4.1-gcc44.patch)
===
--- community-staging-i686/glob2-0.9.4.1-gcc44.patch
(rev 0)
+++ community-staging-i686/glob2-0.9.4.1-gcc44.patch2016-10-07 21:16:11 UTC 
(rev 191614)
@@ -0,0 +1,87 @@
+diff -up libgag/include/StreamBackend.h.orig libgag/include/StreamBackend.h
+--- libgag/include/StreamBackend.h.orig2009-03-18 03:46:47.0 
+0100
 libgag/include/StreamBackend.h 2009-06-20 

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

2016-10-07 Thread Jaroslav Lichtblau
Date: Friday, October 7, 2016 @ 21:15:32
  Author: jlichtblau
Revision: 191613

upgpkg: glob2 0.9.4.4-30 - boost 1.62 rebuild

Modified:
  glob2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 20:50:58 UTC (rev 191612)
+++ PKGBUILD2016-10-07 21:15:32 UTC (rev 191613)
@@ -6,7 +6,7 @@
 
 pkgname=glob2
 pkgver=0.9.4.4
-pkgrel=29
+pkgrel=30
 pkgdesc='An innovative Real-Time Strategy game which reduces micro-management 
by automatically assigning tasks to units'
 arch=('x86_64' 'i686')
 url='http://www.globulation2.org/'


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

2016-10-07 Thread Jaroslav Lichtblau
Date: Friday, October 7, 2016 @ 20:50:58
  Author: jlichtblau
Revision: 191612

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-07 20:50:44 UTC (rev 191611)
+++ PKGBUILD2016-10-07 20:50:58 UTC (rev 191612)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=youtube-dl
-pkgver=2016.10.02
-pkgrel=1
-pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
-arch=('any')
-url="http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support'
-'atomicparsley: for embedding thumbnails into m4a files')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('ecc58e3661c70ed3eeb46712461ad53f92d0b815d4030466d6a29eca9f6869ba'
-'SKIP')
-validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
-  '428DF5D63EF07494BB455AC0EBF01804BCF05F6B'  # Filippo Valsorda
-  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M. 
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
- "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
-  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 191611, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-07 20:50:58 UTC (rev 191612)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=youtube-dl
+pkgver=2016.10.07
+pkgrel=1
+pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
+arch=('any')
+url="http://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support'
+'atomicparsley: for embedding thumbnails into m4a files')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('56be6107275cbdc867e89caf9d20f351d184fdc4fb06d915945fef708086dbce'
+'SKIP')
+validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
+  '428DF5D63EF07494BB455AC0EBF01804BCF05F6B'  # Filippo Valsorda
+  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M. 
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
+ "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
+  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2016-10-07 Thread Jaroslav Lichtblau
Date: Friday, October 7, 2016 @ 20:50:44
  Author: jlichtblau
Revision: 191611

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

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 20:43:09 UTC (rev 191610)
+++ PKGBUILD2016-10-07 20:50:44 UTC (rev 191611)
@@ -3,7 +3,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=youtube-dl
-pkgver=2016.10.02
+pkgver=2016.10.07
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -14,7 +14,7 @@
 'rtmpdump: for rtmp streams support'
 'atomicparsley: for embedding thumbnails into m4a files')
 
source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('ecc58e3661c70ed3eeb46712461ad53f92d0b815d4030466d6a29eca9f6869ba'
+sha256sums=('56be6107275cbdc867e89caf9d20f351d184fdc4fb06d915945fef708086dbce'
 'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
   '428DF5D63EF07494BB455AC0EBF01804BCF05F6B'  # Filippo Valsorda


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 20:43:04
  Author: bpiotrowski
Revision: 191609

upgpkg: wt 3.3.6-3

rebuild against boost 1.62.0

Modified:
  wt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 20:24:29 UTC (rev 191608)
+++ PKGBUILD2016-10-07 20:43:04 UTC (rev 191609)
@@ -6,7 +6,7 @@
 pkgname=wt
 pkgver=3.3.6
 _pkgver=3.3.6
-pkgrel=2
+pkgrel=3
 pkgdesc="a C++ library and application server for developing and deploying web 
applications"
 arch=('i686' 'x86_64')
 url="http://www.webtoolkit.eu/;


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 20:43:09
  Author: bpiotrowski
Revision: 191610

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

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

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

Copied: wt/repos/community-staging-i686/PKGBUILD (from rev 191609, 
wt/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 20:43:09 UTC (rev 191610)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Denis Martinez 
+
+pkgname=wt
+pkgver=3.3.6
+_pkgver=3.3.6
+pkgrel=3
+pkgdesc="a C++ library and application server for developing and deploying web 
applications"
+arch=('i686' 'x86_64')
+url="http://www.webtoolkit.eu/;
+license=('GPL')
+depends=('boost-libs' 'libharu' 'graphicsmagick' 'pango' 'zlib')
+makedepends=('boost' 'cmake' 'postgresql-libs' 'fcgi' 'sqlite' 'mysql++' 'qt4' 
'doxygen' 'mesa' 'glu')
+optdepends=('openssl: for SSL support in built-in webserver'
+   'fcgi: for FastCGI support'
+   'postgresql-libs: for PostgreSQL Dbo support'
+   'sqlite: for Sqlite Dbo support'
+   'mysql++: for the hangman example'
+   'qt4: for the Wt/Qt interopability example (wtwithqt)')
+backup=('etc/wt/wt_config.xml')
+source=(https://github.com/kdeforche/wt/archive/${_pkgver}.tar.gz)
+md5sums=('a5be5f7efa93c4eae7f1d8812ff78c70')
+
+build() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+
+  [[ -d build ]] && rm -r build
+  mkdir -p build && cd build
+  cmake \
+  -DCONNECTOR_HTTP=ON \
+  -DWT_CPP_11_MODE=-std=c++11 \
+  -DCONFIGDIR=/etc \
+  -DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DWEBUSER=http \
+  -DWEBGROUP=http \
+  -DUSE_SYSTEM_SQLITE3=ON \
+  -DINSTALL_EXAMPLES=ON \
+  -DBUILD_EXAMPLES=ON \
+  -DINSTALL_FINDWT_CMAKE_FILE=ON \
+  ..
+  # build examples again when they are compatible with boost 1.58
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${_pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+}

Copied: wt/repos/community-staging-x86_64/PKGBUILD (from rev 191609, 
wt/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-07 20:43:09 UTC (rev 191610)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Denis Martinez 
+
+pkgname=wt
+pkgver=3.3.6
+_pkgver=3.3.6
+pkgrel=3
+pkgdesc="a C++ library and application server for developing and deploying web 
applications"
+arch=('i686' 'x86_64')
+url="http://www.webtoolkit.eu/;
+license=('GPL')
+depends=('boost-libs' 'libharu' 'graphicsmagick' 'pango' 'zlib')
+makedepends=('boost' 'cmake' 'postgresql-libs' 'fcgi' 'sqlite' 'mysql++' 'qt4' 
'doxygen' 'mesa' 'glu')
+optdepends=('openssl: for SSL support in built-in webserver'
+   'fcgi: for FastCGI support'
+   'postgresql-libs: for PostgreSQL Dbo support'
+   'sqlite: for Sqlite Dbo support'
+   'mysql++: for the hangman example'
+   'qt4: for the Wt/Qt interopability example (wtwithqt)')
+backup=('etc/wt/wt_config.xml')
+source=(https://github.com/kdeforche/wt/archive/${_pkgver}.tar.gz)
+md5sums=('a5be5f7efa93c4eae7f1d8812ff78c70')
+
+build() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+
+  [[ -d build ]] && rm -r build
+  mkdir -p build && cd build
+  cmake \
+  -DCONNECTOR_HTTP=ON \
+  -DWT_CPP_11_MODE=-std=c++11 \
+  -DCONFIGDIR=/etc \
+  -DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DWEBUSER=http \
+  -DWEBGROUP=http \
+  -DUSE_SYSTEM_SQLITE3=ON \
+  -DINSTALL_EXAMPLES=ON \
+  -DBUILD_EXAMPLES=ON \
+  -DINSTALL_FINDWT_CMAKE_FILE=ON \
+  ..
+  # build examples again when they are compatible with boost 1.58
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${_pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+}


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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 20:35:45
  Author: arojas
Revision: 277911

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

Added:
  fvwm/repos/extra-i686/PKGBUILD
(from rev 277910, fvwm/trunk/PKGBUILD)
  fvwm/repos/extra-i686/fvwm.desktop
(from rev 277910, fvwm/trunk/fvwm.desktop)
  fvwm/repos/extra-x86_64/PKGBUILD
(from rev 277910, fvwm/trunk/PKGBUILD)
  fvwm/repos/extra-x86_64/fvwm.desktop
(from rev 277910, fvwm/trunk/fvwm.desktop)
Deleted:
  fvwm/repos/extra-i686/PKGBUILD
  fvwm/repos/extra-i686/fvwm.desktop
  fvwm/repos/extra-x86_64/PKGBUILD
  fvwm/repos/extra-x86_64/fvwm.desktop

---+
 /PKGBUILD |   66 
 /fvwm.desktop |   14 +
 extra-i686/PKGBUILD   |   33 --
 extra-i686/fvwm.desktop   |7 
 extra-x86_64/PKGBUILD |   33 --
 extra-x86_64/fvwm.desktop |7 
 6 files changed, 80 insertions(+), 80 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-07 20:35:10 UTC (rev 277910)
+++ extra-i686/PKGBUILD 2016-10-07 20:35:45 UTC (rev 277911)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=fvwm
-pkgver=2.6.6
-pkgrel=1
-pkgdesc="A multiple large virtual desktop window manager originally derived 
from twm"
-arch=('i686' 'x86_64')
-url="http://www.fvwm.org;
-license=('GPL' 'custom')
-depends=('fribidi' 'perl' 'libstroke' 'libxpm' 'librsvg' 'libxinerama' 
'libxcursor')
-makedepends=('libxslt')
-optdepends=('perl-tk: for ClickToFocus support'
-'perl-x11-protocol: for ClickToFocus support')
-options=('!emptydirs' '!makeflags')
-source=(https://github.com/fvwmorg/fvwm/releases/download/version-${pkgver//./_}/fvwm-${pkgver}.tar.gz
 fvwm.desktop)
-sha1sums=('71f396cc59633887d14d1d88367dc7fa4118a781'
-  '6fd8fd767f32f88cc8b4743a2ba49bcfcdb32bcb')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib 
--with-stroke-library
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -d "${pkgdir}/usr/share/doc/fvwm"
-  install -D -m644 
sample.fvwmrc/{decor_examples,DecorMwm,DecorWin95,new-features,system.*} 
"${pkgdir}/usr/share/doc/fvwm"
-  install -D -m644 ../fvwm.desktop "${pkgdir}/usr/share/xsessions/fvwm.desktop"
-  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: fvwm/repos/extra-i686/PKGBUILD (from rev 277910, fvwm/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-07 20:35:45 UTC (rev 277911)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=fvwm
+pkgver=2.6.6
+pkgrel=2
+pkgdesc="A multiple large virtual desktop window manager originally derived 
from twm"
+arch=('i686' 'x86_64')
+url="http://www.fvwm.org;
+license=('GPL' 'custom')
+depends=('fribidi' 'perl' 'libstroke' 'libxpm' 'librsvg' 'libxinerama' 
'libxcursor' 'python2-xdg')
+makedepends=('libxslt')
+optdepends=('perl-tk: for ClickToFocus support'
+'perl-x11-protocol: for ClickToFocus support')
+options=('!emptydirs' '!makeflags')
+source=(https://github.com/fvwmorg/fvwm/releases/download/version-${pkgver//./_}/fvwm-${pkgver}.tar.gz
 fvwm.desktop)
+sha1sums=('71f396cc59633887d14d1d88367dc7fa4118a781'
+  '6fd8fd767f32f88cc8b4743a2ba49bcfcdb32bcb')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc 
--libexecdir=/usr/lib --with-stroke-library
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -d "${pkgdir}/usr/share/doc/fvwm"
+  install -D -m644 
sample.fvwmrc/{decor_examples,DecorMwm,DecorWin95,new-features,system.*} 
"${pkgdir}/usr/share/doc/fvwm"
+  install -D -m644 ../fvwm.desktop "${pkgdir}/usr/share/xsessions/fvwm.desktop"
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Deleted: extra-i686/fvwm.desktop
===
--- extra-i686/fvwm.desktop 2016-10-07 20:35:10 UTC (rev 277910)
+++ extra-i686/fvwm.desktop 2016-10-07 20:35:45 UTC (rev 277911)
@@ -1,7 +0,0 @@
-[Desktop Entry]
-Encoding=UTF-8
-Name=FVWM
-Comment=The fvwm window manager
-Type=XSession
-Exec=/usr/bin/fvwm
-TryExec=/usr/bin/fvwm

Copied: fvwm/repos/extra-i686/fvwm.desktop (from rev 277910, 
fvwm/trunk/fvwm.desktop)
===
--- extra-i686/fvwm.desktop (rev 0)
+++ extra-i686/fvwm.desktop 2016-10-07 20:35:45 UTC (rev 277911)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=FVWM
+Comment=The fvwm window manager
+Type=XSession
+Exec=/usr/bin/fvwm

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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 20:35:10
  Author: arojas
Revision: 277910

Add python2-xdg dependency, fix shebang (FS#51211)

Modified:
  fvwm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 19:47:46 UTC (rev 277909)
+++ PKGBUILD2016-10-07 20:35:10 UTC (rev 277910)
@@ -3,12 +3,12 @@
 
 pkgname=fvwm
 pkgver=2.6.6
-pkgrel=1
+pkgrel=2
 pkgdesc="A multiple large virtual desktop window manager originally derived 
from twm"
 arch=('i686' 'x86_64')
 url="http://www.fvwm.org;
 license=('GPL' 'custom')
-depends=('fribidi' 'perl' 'libstroke' 'libxpm' 'librsvg' 'libxinerama' 
'libxcursor')
+depends=('fribidi' 'perl' 'libstroke' 'libxpm' 'librsvg' 'libxinerama' 
'libxcursor' 'python2-xdg')
 makedepends=('libxslt')
 optdepends=('perl-tk: for ClickToFocus support'
 'perl-x11-protocol: for ClickToFocus support')
@@ -19,7 +19,7 @@
 
 build() {
   cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib 
--with-stroke-library
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc 
--libexecdir=/usr/lib --with-stroke-library
   make
 }
 


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 20:24:20
  Author: bpiotrowski
Revision: 191607

upgpkg: wesnoth 1.12.6-3

rebuild against boost 1.62.0

Modified:
  wesnoth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 20:13:45 UTC (rev 191606)
+++ PKGBUILD2016-10-07 20:24:20 UTC (rev 191607)
@@ -7,7 +7,7 @@
 
 pkgname=wesnoth
 pkgver=1.12.6
-pkgrel=2
+pkgrel=3
 pkgdesc="A turn-based strategy game on a fantasy world"
 arch=('i686' 'x86_64')
 license=('GPL')


[arch-commits] Commit in wesnoth/repos (14 files)

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 20:24:29
  Author: bpiotrowski
Revision: 191608

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

Added:
  wesnoth/repos/community-staging-i686/
  wesnoth/repos/community-staging-i686/PKGBUILD
(from rev 191607, wesnoth/trunk/PKGBUILD)
  wesnoth/repos/community-staging-i686/wesnoth-boost.patch
(from rev 191607, wesnoth/trunk/wesnoth-boost.patch)
  wesnoth/repos/community-staging-i686/wesnoth.install
(from rev 191607, wesnoth/trunk/wesnoth.install)
  wesnoth/repos/community-staging-i686/wesnoth.tmpfiles.conf
(from rev 191607, wesnoth/trunk/wesnoth.tmpfiles.conf)
  wesnoth/repos/community-staging-i686/wesnothd.service
(from rev 191607, wesnoth/trunk/wesnothd.service)
  wesnoth/repos/community-staging-i686/wesnothd.tmpfiles.conf
(from rev 191607, wesnoth/trunk/wesnothd.tmpfiles.conf)
  wesnoth/repos/community-staging-x86_64/
  wesnoth/repos/community-staging-x86_64/PKGBUILD
(from rev 191607, wesnoth/trunk/PKGBUILD)
  wesnoth/repos/community-staging-x86_64/wesnoth-boost.patch
(from rev 191607, wesnoth/trunk/wesnoth-boost.patch)
  wesnoth/repos/community-staging-x86_64/wesnoth.install
(from rev 191607, wesnoth/trunk/wesnoth.install)
  wesnoth/repos/community-staging-x86_64/wesnoth.tmpfiles.conf
(from rev 191607, wesnoth/trunk/wesnoth.tmpfiles.conf)
  wesnoth/repos/community-staging-x86_64/wesnothd.service
(from rev 191607, wesnoth/trunk/wesnothd.service)
  wesnoth/repos/community-staging-x86_64/wesnothd.tmpfiles.conf
(from rev 191607, wesnoth/trunk/wesnothd.tmpfiles.conf)

-+
 community-staging-i686/PKGBUILD |   56 ++
 community-staging-i686/wesnoth-boost.patch  |   12 
 community-staging-i686/wesnoth.install  |   14 +
 community-staging-i686/wesnoth.tmpfiles.conf|1 
 community-staging-i686/wesnothd.service |9 +++
 community-staging-i686/wesnothd.tmpfiles.conf   |1 
 community-staging-x86_64/PKGBUILD   |   56 ++
 community-staging-x86_64/wesnoth-boost.patch|   12 
 community-staging-x86_64/wesnoth.install|   14 +
 community-staging-x86_64/wesnoth.tmpfiles.conf  |1 
 community-staging-x86_64/wesnothd.service   |9 +++
 community-staging-x86_64/wesnothd.tmpfiles.conf |1 
 12 files changed, 186 insertions(+)

Copied: wesnoth/repos/community-staging-i686/PKGBUILD (from rev 191607, 
wesnoth/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 20:24:29 UTC (rev 191608)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Jan de Groot 
+# Contributor: Tobias Powalowski 
+# Contributor: Jacobo Arvelo 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=wesnoth
+pkgver=1.12.6
+pkgrel=3
+pkgdesc="A turn-based strategy game on a fantasy world"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.wesnoth.org/;
+depends=('sdl_ttf' 'sdl_net' 'sdl_mixer' 'sdl_image' 'fribidi' 'boost-libs' 
'pango' 'lua52' 'wesnoth-data' 'dbus' 'python2')
+makedepends=('boost' 'cmake' 'git')
+install=wesnoth.install
+options=(!emptydirs)
+source=("git://github.com/wesnoth/wesnoth.git#tag=${pkgver}"
+"wesnoth-boost.patch"
+wesnothd.tmpfiles.conf
+wesnothd.service)
+md5sums=('SKIP'
+ '9a4ad99ba66990bfc17cb12966b3823b'
+ '2d2fea6b3d86dfd589f5ad35a3be1f97'
+ 'd1b6bf1d3dc05086ee6a370adff0ae4a')
+
+build() {
+  cd "$srcdir/$pkgname"
+  
+  # Try this again in a new version when they fix their linking to boost
+  patch -Np1 < ${srcdir}/wesnoth-boost.patch
+
+  mkdir build && cd build
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DENABLE_OMP=ON \
+  -DENABLE_TOOLS=ON \
+  -DMANDIR=share/man
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm -r $pkgdir/usr/share/applications
+  rm -r $pkgdir/usr/share/doc
+  rm -r $pkgdir/usr/share/pixmaps
+  rm -r $pkgdir/usr/share/wesnoth
+
+  install -Dm644 "$srcdir/wesnothd.tmpfiles.conf" 
"$pkgdir/usr/lib/tmpfiles.d/wesnothd.conf"
+  install -Dm644 "$srcdir/wesnothd.service" 
"$pkgdir/usr/lib/systemd/system/wesnothd.service"
+}

Copied: wesnoth/repos/community-staging-i686/wesnoth-boost.patch (from rev 
191607, wesnoth/trunk/wesnoth-boost.patch)
===
--- community-staging-i686/wesnoth-boost.patch  (rev 0)
+++ community-staging-i686/wesnoth-boost.patch  2016-10-07 20:24:29 UTC (rev 
191608)
@@ -0,0 +1,12 @@
+diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
+index 43a20d7..61f36e0 100644
+--- a/src/CMakeLists.txt
 

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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 20:13:45
  Author: arojas
Revision: 191606

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

Added:
  guitarix2/repos/community-staging-i686/
  guitarix2/repos/community-staging-i686/PKGBUILD
(from rev 191605, guitarix2/trunk/PKGBUILD)
  guitarix2/repos/community-staging-i686/guitarix2-fix-build.patch
(from rev 191605, guitarix2/trunk/guitarix2-fix-build.patch)
  guitarix2/repos/community-staging-x86_64/
  guitarix2/repos/community-staging-x86_64/PKGBUILD
(from rev 191605, guitarix2/trunk/PKGBUILD)
  guitarix2/repos/community-staging-x86_64/guitarix2-fix-build.patch
(from rev 191605, guitarix2/trunk/guitarix2-fix-build.patch)

+
 community-staging-i686/PKGBUILD|   41 +
 community-staging-i686/guitarix2-fix-build.patch   |   44 +++
 community-staging-x86_64/PKGBUILD  |   41 +
 community-staging-x86_64/guitarix2-fix-build.patch |   44 +++
 4 files changed, 170 insertions(+)

Copied: guitarix2/repos/community-staging-i686/PKGBUILD (from rev 191605, 
guitarix2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 20:13:45 UTC (rev 191606)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: speps 
+
+pkgname=guitarix2
+pkgver=0.35.1
+pkgrel=2
+pkgdesc="A simple mono guitar amplifier and FX for JACK using Faust"
+arch=('i686' 'x86_64')
+url="http://guitarix.sourceforge.net/;
+license=('GPL')
+depends=('gtkmm' 'liblrdf' 'lilv' 'bluez-libs' 'boost-libs' 'webkitgtk2'
+ 'zita-convolver' 'zita-resampler' 'desktop-file-utils')
+makedepends=('python' 'python2' 'boost' 'eigen' 'gperf' 'intltool' 'lv2')
+optdepends=('meterbridge: sound meters')
+provides=('guitarix' 'gx_head')
+conflicts=('guitarix' 'gx_head')
+replaces=('guitarix' 'gx_head')
+source=("http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.xz;
 guitarix2-fix-build.patch)
+md5sums=('fb7269fe6fdde4c493be65f974819bb4'
+ '1a2a417e19652e7eaf1779aff81a9564')
+
+prepare() {
+  cd guitarix-$pkgver
+  patch -p1 -i ../guitarix2-fix-build.patch # Debian patch
+}
+
+build() {
+  cd guitarix-$pkgver
+  python2 waf configure --prefix=/usr \
+--no-desktop-update \
+--no-ldconfig \
+--no-faust \
+--shared-lib \
+--lib-dev
+  python2 waf build
+}
+
+package() {
+  cd guitarix-$pkgver
+  python2 waf install --destdir="$pkgdir"
+}

Copied: guitarix2/repos/community-staging-i686/guitarix2-fix-build.patch (from 
rev 191605, guitarix2/trunk/guitarix2-fix-build.patch)
===
--- community-staging-i686/guitarix2-fix-build.patch
(rev 0)
+++ community-staging-i686/guitarix2-fix-build.patch2016-10-07 20:13:45 UTC 
(rev 191606)
@@ -0,0 +1,44 @@
+--- guitarix-0.35.1/src/gx_head/engine/gx_system.cpp.orig  2016-10-07 
19:41:19.707493651 +
 guitarix-0.35.1/src/gx_head/engine/gx_system.cpp   2016-10-07 
19:42:18.128197974 +
+@@ -349,7 +349,7 @@
+   file->enumerate_children(G_FILE_ATTRIBUTE_STANDARD_NAME
+"," G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME);
+ Glib::RefPtr file_info;
+-while ((file_info = child_enumeration->next_file()) != 0) {
++while (file_info = child_enumeration->next_file()) {
+   if (file_info->get_file_type() == Gio::FILE_TYPE_DIRECTORY) {
+   Glib::RefPtr child = file->get_child(
+   
file_info->get_attribute_byte_string(G_FILE_ATTRIBUTE_STANDARD_NAME));
+diff --git a/trunk/src/gx_head/engine/ladspaback.cpp 
b/trunk/src/gx_head/engine/ladspaback.cpp
+index 2a6bd01..be934a7 100644
+--- guitarix-0.35.1/src/gx_head/engine/ladspaback.cpp
 guitarix-0.35.1/src/gx_head/engine/ladspaback.cpp
+@@ -1622,7 +1622,7 @@ void LadspaPluginList::load(gx_system::CmdlineOptions& 
options, std::vector file_info;
+ 
+-while ((file_info = child_enumeration->next_file()) != 0) {
++while ((file_info = child_enumeration->next_file())) {
+ if 
(file_info->get_attribute_string(G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE) 
== "application/x-sharedlib") {
+ std::string nm = 
file_info->get_attribute_byte_string(G_FILE_ATTRIBUTE_STANDARD_NAME);
+ if (lib_is_blacklisted(nm)) {
+@@ -1650,7 +1650,7 @@ void LadspaPluginList::load(gx_system::CmdlineOptions& 
options, std::vector file_info;
+ 
+-while ((file_info = child_enumeration->next_file()) != 0) {
++while ((file_info = child_enumeration->next_file())) {
+   //if not f.endswith((".rdf",".rdfs")):
+ if 

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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 20:12:39
  Author: arojas
Revision: 191605

Boost 1.62 rebuild

Added:
  guitarix2/trunk/guitarix2-fix-build.patch
Modified:
  guitarix2/trunk/PKGBUILD
Deleted:
  guitarix2/trunk/guitarix-abs.patch

---+
 PKGBUILD  |   12 +---
 guitarix-abs.patch|   12 
 guitarix2-fix-build.patch |   44 
 3 files changed, 53 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 20:11:25 UTC (rev 191604)
+++ PKGBUILD2016-10-07 20:12:39 UTC (rev 191605)
@@ -3,7 +3,7 @@
 
 pkgname=guitarix2
 pkgver=0.35.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A simple mono guitar amplifier and FX for JACK using Faust"
 arch=('i686' 'x86_64')
 url="http://guitarix.sourceforge.net/;
@@ -15,9 +15,15 @@
 provides=('guitarix' 'gx_head')
 conflicts=('guitarix' 'gx_head')
 replaces=('guitarix' 'gx_head')
-source=("http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.xz;)
-md5sums=('fb7269fe6fdde4c493be65f974819bb4')
+source=("http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.xz;
 guitarix2-fix-build.patch)
+md5sums=('fb7269fe6fdde4c493be65f974819bb4'
+ '1a2a417e19652e7eaf1779aff81a9564')
 
+prepare() {
+  cd guitarix-$pkgver
+  patch -p1 -i ../guitarix2-fix-build.patch # Debian patch
+}
+
 build() {
   cd guitarix-$pkgver
   python2 waf configure --prefix=/usr \

Deleted: guitarix-abs.patch
===
--- guitarix-abs.patch  2016-10-07 20:11:25 UTC (rev 191604)
+++ guitarix-abs.patch  2016-10-07 20:12:39 UTC (rev 191605)
@@ -1,12 +0,0 @@
-diff -Nurp guitarix-0.35.0.mod/libgxwmm/gxwmm/gainline.h 
guitarix-0.35.0/libgxwmm/gxwmm/gainline.h
 guitarix-0.35.0.mod/libgxwmm/gxwmm/gainline.h  2016-04-24 
06:18:37.0 +0200
-+++ guitarix-0.35.0/libgxwmm/gxwmm/gainline.h  2016-04-24 21:22:44.846076833 
+0200
-@@ -22,7 +22,7 @@
- #include 
- #include 
- 
--inline bool operator==(const gain_points& p1, const gain_points& p2) { return 
p1.i == p2.i && abs(p1.g - p2.g) < 1e-4 * (p1.g + p2.g); }
-+inline bool operator==(const gain_points& p1, const gain_points& p2) { return 
p1.i == p2.i && fabs(p1.g - p2.g) < 1e-4 * (p1.g + p2.g); }
- inline bool operator!=(const gain_points& p1, const gain_points& p2) { return 
!(p1 == p2); }
- 
- class Gainline: public std::vector

Added: guitarix2-fix-build.patch
===
--- guitarix2-fix-build.patch   (rev 0)
+++ guitarix2-fix-build.patch   2016-10-07 20:12:39 UTC (rev 191605)
@@ -0,0 +1,44 @@
+--- guitarix-0.35.1/src/gx_head/engine/gx_system.cpp.orig  2016-10-07 
19:41:19.707493651 +
 guitarix-0.35.1/src/gx_head/engine/gx_system.cpp   2016-10-07 
19:42:18.128197974 +
+@@ -349,7 +349,7 @@
+   file->enumerate_children(G_FILE_ATTRIBUTE_STANDARD_NAME
+"," G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME);
+ Glib::RefPtr file_info;
+-while ((file_info = child_enumeration->next_file()) != 0) {
++while (file_info = child_enumeration->next_file()) {
+   if (file_info->get_file_type() == Gio::FILE_TYPE_DIRECTORY) {
+   Glib::RefPtr child = file->get_child(
+   
file_info->get_attribute_byte_string(G_FILE_ATTRIBUTE_STANDARD_NAME));
+diff --git a/trunk/src/gx_head/engine/ladspaback.cpp 
b/trunk/src/gx_head/engine/ladspaback.cpp
+index 2a6bd01..be934a7 100644
+--- guitarix-0.35.1/src/gx_head/engine/ladspaback.cpp
 guitarix-0.35.1/src/gx_head/engine/ladspaback.cpp
+@@ -1622,7 +1622,7 @@ void LadspaPluginList::load(gx_system::CmdlineOptions& 
options, std::vector file_info;
+ 
+-while ((file_info = child_enumeration->next_file()) != 0) {
++while ((file_info = child_enumeration->next_file())) {
+ if 
(file_info->get_attribute_string(G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE) 
== "application/x-sharedlib") {
+ std::string nm = 
file_info->get_attribute_byte_string(G_FILE_ATTRIBUTE_STANDARD_NAME);
+ if (lib_is_blacklisted(nm)) {
+@@ -1650,7 +1650,7 @@ void LadspaPluginList::load(gx_system::CmdlineOptions& 
options, std::vector file_info;
+ 
+-while ((file_info = child_enumeration->next_file()) != 0) {
++while ((file_info = child_enumeration->next_file())) {
+   //if not f.endswith((".rdf",".rdfs")):
+ if 
(file_info->get_attribute_string(G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE) 
== "application/rdf+xml") {
+ std::string nm = 
file_info->get_attribute_byte_string(G_FILE_ATTRIBUTE_STANDARD_NAME);
+--- guitarix-0.35.1/src/gx_head/engine/gx_system.cpp.orig  2016-10-07 
19:53:44.599882708 +
 guitarix-0.35.1/src/gx_head/engine/gx_system.cpp   2016-10-07 
19:53:56.963366468 +
+@@ -329,7 

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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 20:11:25
  Author: bpiotrowski
Revision: 191604

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

Added:
  python2-tagpy/repos/community-staging-i686/
  python2-tagpy/repos/community-staging-i686/PKGBUILD
(from rev 191603, python2-tagpy/trunk/PKGBUILD)
  python2-tagpy/repos/community-staging-x86_64/
  python2-tagpy/repos/community-staging-x86_64/PKGBUILD
(from rev 191603, python2-tagpy/trunk/PKGBUILD)

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

Copied: python2-tagpy/repos/community-staging-i686/PKGBUILD (from rev 191603, 
python2-tagpy/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 20:11:25 UTC (rev 191604)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Andrea Scarpino 
+# Contributor: Callan Barrett 
+# Contributor: Scott Horowitz 
+
+pkgname=python2-tagpy
+pkgver=2013.1
+pkgrel=9
+pkgdesc='Python bindings for TagLib'
+arch=('x86_64' 'i686')
+url='http://pypi.python.org/pypi/tagpy'
+license=('MIT')
+depends=('python2' 'taglib' 'boost-libs')
+makedepends=('python2-setuptools' 'boost')
+replaces=('tagpy')
+conflicts=('tagpy')
+source=("http://pypi.python.org/packages/source/t/tagpy/tagpy-$pkgver.tar.gz;)
+sha256sums=('80481c78ce34878e7a1f3231acd781a3bf1b0b569c70ce0e8d63af58061152f4')
+
+prepare() {
+  cd "tagpy-$pkgver"
+
+  sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+$(find . -name '*.py') 
+}
+
+build() {
+  cd "tagpy-$pkgver"
+
+  ./configure.py \
+--taglib-lib-dir=/usr/lib/ \
+--taglib-inc-dir=/usr/include/taglib/ \
+--boost-inc-dir=/usr/include/boost/ \
+--boost-lib-dir=/usr/lib/ \
+--boost-python-libname=boost_python
+  python2 setup.py build
+}
+
+check(){
+  cd "tagpy-$pkgver"
+
+  python2 setup.py test
+}
+
+package(){
+  cd "tagpy-$pkgver"
+
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: python2-tagpy/repos/community-staging-x86_64/PKGBUILD (from rev 191603, 
python2-tagpy/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-07 20:11:25 UTC (rev 191604)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Andrea Scarpino 
+# Contributor: Callan Barrett 
+# Contributor: Scott Horowitz 
+
+pkgname=python2-tagpy
+pkgver=2013.1
+pkgrel=9
+pkgdesc='Python bindings for TagLib'
+arch=('x86_64' 'i686')
+url='http://pypi.python.org/pypi/tagpy'
+license=('MIT')
+depends=('python2' 'taglib' 'boost-libs')
+makedepends=('python2-setuptools' 'boost')
+replaces=('tagpy')
+conflicts=('tagpy')
+source=("http://pypi.python.org/packages/source/t/tagpy/tagpy-$pkgver.tar.gz;)
+sha256sums=('80481c78ce34878e7a1f3231acd781a3bf1b0b569c70ce0e8d63af58061152f4')
+
+prepare() {
+  cd "tagpy-$pkgver"
+
+  sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+$(find . -name '*.py') 
+}
+
+build() {
+  cd "tagpy-$pkgver"
+
+  ./configure.py \
+--taglib-lib-dir=/usr/lib/ \
+--taglib-inc-dir=/usr/include/taglib/ \
+--boost-inc-dir=/usr/include/boost/ \
+--boost-lib-dir=/usr/lib/ \
+--boost-python-libname=boost_python
+  python2 setup.py build
+}
+
+check(){
+  cd "tagpy-$pkgver"
+
+  python2 setup.py test
+}
+
+package(){
+  cd "tagpy-$pkgver"
+
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 20:11:21
  Author: bpiotrowski
Revision: 191603

upgpkg: python2-tagpy 2013.1-9

rebuild against boost 1.62.0

Modified:
  python2-tagpy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 20:10:18 UTC (rev 191602)
+++ PKGBUILD2016-10-07 20:11:21 UTC (rev 191603)
@@ -6,7 +6,7 @@
 
 pkgname=python2-tagpy
 pkgver=2013.1
-pkgrel=8
+pkgrel=9
 pkgdesc='Python bindings for TagLib'
 arch=('x86_64' 'i686')
 url='http://pypi.python.org/pypi/tagpy'


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 20:10:18
  Author: bpiotrowski
Revision: 191602

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

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

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

Copied: pulseview/repos/community-staging-i686/PKGBUILD (from rev 191601, 
pulseview/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 20:10:18 UTC (rev 191602)
@@ -0,0 +1,27 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Thomas Krug 
+
+pkgname=pulseview
+pkgver=0.3.0
+pkgrel=4
+pkgdesc='A Qt based logic analyzer GUI for sigrok'
+arch=(i686 x86_64)
+url='http://sigrok.org/wiki/Main_Page'
+license=(GPL3)
+depends=(libsigrok libsigrokdecode qt5-base qt5-svg boost-libs)
+makedepends=(cmake boost)
+source=(http://sigrok.org/download/source/pulseview/pulseview-$pkgver.tar.gz)
+sha1sums=('6a829e37c7ccefe84265080d36a7dc43cfec3672')
+
+build() {
+  cd pulseview-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr 
-DCMAKE_CXX_FLAGS=-fext-numeric-literals -DDISABLE_WERROR=ON -DENABLE_TESTS=OFF 
.
+  make
+}
+
+package() {
+  cd pulseview-$pkgver
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+  install -Dm644 contrib/pulseview.desktop 
"$pkgdir/usr/share/applications/pulseview.desktop"
+  install -Dm644 icons/sigrok-logo-notext.svg 
"$pkgdir/usr/share/pixmaps/sigrok-logo-notext.svg"
+}

Copied: pulseview/repos/community-staging-x86_64/PKGBUILD (from rev 191601, 
pulseview/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-07 20:10:18 UTC (rev 191602)
@@ -0,0 +1,27 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Thomas Krug 
+
+pkgname=pulseview
+pkgver=0.3.0
+pkgrel=4
+pkgdesc='A Qt based logic analyzer GUI for sigrok'
+arch=(i686 x86_64)
+url='http://sigrok.org/wiki/Main_Page'
+license=(GPL3)
+depends=(libsigrok libsigrokdecode qt5-base qt5-svg boost-libs)
+makedepends=(cmake boost)
+source=(http://sigrok.org/download/source/pulseview/pulseview-$pkgver.tar.gz)
+sha1sums=('6a829e37c7ccefe84265080d36a7dc43cfec3672')
+
+build() {
+  cd pulseview-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr 
-DCMAKE_CXX_FLAGS=-fext-numeric-literals -DDISABLE_WERROR=ON -DENABLE_TESTS=OFF 
.
+  make
+}
+
+package() {
+  cd pulseview-$pkgver
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+  install -Dm644 contrib/pulseview.desktop 
"$pkgdir/usr/share/applications/pulseview.desktop"
+  install -Dm644 icons/sigrok-logo-notext.svg 
"$pkgdir/usr/share/pixmaps/sigrok-logo-notext.svg"
+}


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 20:10:13
  Author: bpiotrowski
Revision: 191601

upgpkg: pulseview 0.3.0-4

rebuild against boost 1.62.0

Modified:
  pulseview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 19:59:17 UTC (rev 191600)
+++ PKGBUILD2016-10-07 20:10:13 UTC (rev 191601)
@@ -3,7 +3,7 @@
 
 pkgname=pulseview
 pkgver=0.3.0
-pkgrel=3
+pkgrel=4
 pkgdesc='A Qt based logic analyzer GUI for sigrok'
 arch=(i686 x86_64)
 url='http://sigrok.org/wiki/Main_Page'


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:59:10
  Author: bpiotrowski
Revision: 191599

upgpkg: ncmpcpp 0.7.5-3

rebuild against boost 1.62.0

Modified:
  ncmpcpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 19:56:21 UTC (rev 191598)
+++ PKGBUILD2016-10-07 19:59:10 UTC (rev 191599)
@@ -6,7 +6,7 @@
 
 pkgname=ncmpcpp
 pkgver=0.7.5
-pkgrel=2
+pkgrel=3
 pkgdesc='Almost exact clone of ncmpc with some new features'
 url='http://ncmpcpp.rybczak.net/'
 arch=('i686' 'x86_64')


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:59:17
  Author: bpiotrowski
Revision: 191600

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

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

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

Copied: ncmpcpp/repos/community-staging-i686/PKGBUILD (from rev 191599, 
ncmpcpp/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 19:59:17 UTC (rev 191600)
@@ -0,0 +1,39 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: graysky 
+# Contributor: Mateusz Herych 
+# Contributor: Army 
+
+pkgname=ncmpcpp
+pkgver=0.7.5
+pkgrel=3
+pkgdesc='Almost exact clone of ncmpc with some new features'
+url='http://ncmpcpp.rybczak.net/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('curl' 'libmpdclient' 'taglib' 'ncurses' 'fftw' 'boost-libs')
+makedepends=('boost')
+source=(${pkgname}-${pkgver}.tar.bz2::http://rybczak.net/ncmpcpp/stable/${pkgname}-${pkgver}.tar.bz2)
+sha512sums=('5f3b370a5a8fdc05e85a7b748debd960c0e76d5b9e43717efceaa985baa0c543d14d8b0fd7b09550111bff3aa66ec290d6cd2c0ec21de7a0caa10df1c68c99c8')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  BOOST_LIB_SUFFIX='' ./configure --prefix=/usr \
+--enable-clock \
+--enable-outputs \
+--enable-unicode \
+--enable-visualizer \
+--with-curl \
+--with-fftw \
+--with-taglib
+  make
+  make -C extras
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 755 extras/artist_to_albumartist -t "${pkgdir}/usr/bin"
+}
+
+# vim: ts=2 sw=2 et:

Copied: ncmpcpp/repos/community-staging-x86_64/PKGBUILD (from rev 191599, 
ncmpcpp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-07 19:59:17 UTC (rev 191600)
@@ -0,0 +1,39 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: graysky 
+# Contributor: Mateusz Herych 
+# Contributor: Army 
+
+pkgname=ncmpcpp
+pkgver=0.7.5
+pkgrel=3
+pkgdesc='Almost exact clone of ncmpc with some new features'
+url='http://ncmpcpp.rybczak.net/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('curl' 'libmpdclient' 'taglib' 'ncurses' 'fftw' 'boost-libs')
+makedepends=('boost')
+source=(${pkgname}-${pkgver}.tar.bz2::http://rybczak.net/ncmpcpp/stable/${pkgname}-${pkgver}.tar.bz2)
+sha512sums=('5f3b370a5a8fdc05e85a7b748debd960c0e76d5b9e43717efceaa985baa0c543d14d8b0fd7b09550111bff3aa66ec290d6cd2c0ec21de7a0caa10df1c68c99c8')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  BOOST_LIB_SUFFIX='' ./configure --prefix=/usr \
+--enable-clock \
+--enable-outputs \
+--enable-unicode \
+--enable-visualizer \
+--with-curl \
+--with-fftw \
+--with-taglib
+  make
+  make -C extras
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 755 extras/artist_to_albumartist -t "${pkgdir}/usr/bin"
+}
+
+# vim: ts=2 sw=2 et:


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:56:16
  Author: bpiotrowski
Revision: 191597

upgpkg: mupen64plus 2.5-6

rebuild against boost 1.62.0

Modified:
  mupen64plus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 19:51:21 UTC (rev 191596)
+++ PKGBUILD2016-10-07 19:56:16 UTC (rev 191597)
@@ -7,7 +7,7 @@
 
 pkgname=mupen64plus
 pkgver=2.5
-pkgrel=5
+pkgrel=6
 pkgdesc='Nintendo64 Emulator'
 arch=('i686' 'x86_64')
 url='http://code.google.com/p/mupen64plus/'


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:56:21
  Author: bpiotrowski
Revision: 191598

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

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

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

Copied: mupen64plus/repos/community-staging-i686/PKGBUILD (from rev 191597, 
mupen64plus/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 19:56:21 UTC (rev 191598)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Laurent Carlier 
+# Contributor: Allan McRae 
+# Contributor: Zephyr
+
+pkgname=mupen64plus
+pkgver=2.5
+pkgrel=6
+pkgdesc='Nintendo64 Emulator'
+arch=('i686' 'x86_64')
+url='http://code.google.com/p/mupen64plus/'
+license=('GPL')
+depends=('glu' 'libsamplerate' 'libpng' 'sdl' 'freetype2' 'boost-libs')
+makedepends=('mesa' 'boost')
+source=("https://github.com/mupen64plus/mupen64plus-core/releases/download/2.5/mupen64plus-bundle-src-${pkgver}.tar.gz;)
+sha256sums=('9c75b9d826f2d24666175f723a97369b3a6ee159b307f7cc876bbb4facdbba66')
+
+build() {
+  cd mupen64plus-bundle-src-${pkgver}
+
+  sh m64p_build.sh
+}
+
+package() {
+  cd mupen64plus-bundle-src-$pkgver
+  
+  # set LDCONFIG since we are using fakeroot and scripts run root commands by 
checking the uid
+  ./m64p_install.sh DESTDIR="$pkgdir" PREFIX='/usr' MANDIR='/usr/share/man' 
LDCONFIG='true'
+}
+
+# vim: ts=2:sw=2:et

Copied: mupen64plus/repos/community-staging-x86_64/PKGBUILD (from rev 191597, 
mupen64plus/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-07 19:56:21 UTC (rev 191598)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Laurent Carlier 
+# Contributor: Allan McRae 
+# Contributor: Zephyr
+
+pkgname=mupen64plus
+pkgver=2.5
+pkgrel=6
+pkgdesc='Nintendo64 Emulator'
+arch=('i686' 'x86_64')
+url='http://code.google.com/p/mupen64plus/'
+license=('GPL')
+depends=('glu' 'libsamplerate' 'libpng' 'sdl' 'freetype2' 'boost-libs')
+makedepends=('mesa' 'boost')
+source=("https://github.com/mupen64plus/mupen64plus-core/releases/download/2.5/mupen64plus-bundle-src-${pkgver}.tar.gz;)
+sha256sums=('9c75b9d826f2d24666175f723a97369b3a6ee159b307f7cc876bbb4facdbba66')
+
+build() {
+  cd mupen64plus-bundle-src-${pkgver}
+
+  sh m64p_build.sh
+}
+
+package() {
+  cd mupen64plus-bundle-src-$pkgver
+  
+  # set LDCONFIG since we are using fakeroot and scripts run root commands by 
checking the uid
+  ./m64p_install.sh DESTDIR="$pkgdir" PREFIX='/usr' MANDIR='/usr/share/man' 
LDCONFIG='true'
+}
+
+# vim: ts=2:sw=2:et


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:47:46
  Author: bpiotrowski
Revision: 277909

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

Added:
  vigra/repos/staging-i686/
  vigra/repos/staging-i686/PKGBUILD
(from rev 277908, vigra/trunk/PKGBUILD)
  vigra/repos/staging-i686/vigra-1.7.1.gcc460.patch
(from rev 277908, vigra/trunk/vigra-1.7.1.gcc460.patch)
  vigra/repos/staging-x86_64/
  vigra/repos/staging-x86_64/PKGBUILD
(from rev 277908, vigra/trunk/PKGBUILD)
  vigra/repos/staging-x86_64/vigra-1.7.1.gcc460.patch
(from rev 277908, vigra/trunk/vigra-1.7.1.gcc460.patch)

-+
 staging-i686/PKGBUILD   |   61 ++
 staging-i686/vigra-1.7.1.gcc460.patch   |   33 
 staging-x86_64/PKGBUILD |   61 ++
 staging-x86_64/vigra-1.7.1.gcc460.patch |   33 
 4 files changed, 188 insertions(+)

Copied: vigra/repos/staging-i686/PKGBUILD (from rev 277908, 
vigra/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-07 19:47:46 UTC (rev 277909)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Lukas Jirkovsky 
+
+pkgbase=vigra
+pkgname=('vigra' 'vigra-doc')
+pkgver=1.11.0
+pkgrel=4
+arch=('i686' 'x86_64')
+url="http://hci.iwr.uni-heidelberg.de/vigra/;
+license=('custom:MIT')
+makedepends=(# runtime deps
+ 'libpng' 'libtiff' 'openexr' 'gcc-libs' 'sh' 'hdf5' 'fftw'
+# additional makedeps
+ 'cmake' 'python-nose' 'doxygen' 'python-sphinx' 'boost' 
'python-numpy')
+source=(https://github.com/ukoethe/vigra/releases/download/Version-${pkgver//./-}/vigra-${pkgver}-src.tar.gz)
+md5sums=('7f80d289e03a2f2e8c8e85f3ff29d988')
+
+build() {
+  cd "${srcdir}"/${pkgbase}-${pkgver}
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYTHON_EXECUTABLE=/usr/bin/python \
+  -DWITH_OPENEXR=true \
+  -DWITH_VIGRANUMPY=1 \
+  -DDOCINSTALL=share/doc
+  make
+}
+
+#check() {
+#  cd "${srcdir}"/${pkgname}-${pkgver}
+#  make -j1 -k check #|| /bin/true # i686 fails
+#}
+
+package_vigra() {
+  pkgdesc="Computer vision library"
+  depends=('libpng' 'libtiff' 'openexr' 'gcc-libs' 'sh' 'hdf5' 'fftw')
+  optdepends=('python: for python bindings'
+  'boost-libs: for python bindings')
+
+  cd "${srcdir}"/${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  # license
+  install -D -m644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  
+  # remove doc
+  rm -rf "${pkgdir}"/usr/share/doc
+}
+
+package_vigra-doc() {
+  pkgdesc="Computer vision library - documentation and examples"
+  #depends=('vigra')
+  #arch=('any')
+
+  cd "${srcdir}"/${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  # cleanup
+  rm -rf "${pkgdir}"/usr/{bin,include,lib}
+
+  # license
+  install -D -m644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: vigra/repos/staging-i686/vigra-1.7.1.gcc460.patch (from rev 277908, 
vigra/trunk/vigra-1.7.1.gcc460.patch)
===
--- staging-i686/vigra-1.7.1.gcc460.patch   (rev 0)
+++ staging-i686/vigra-1.7.1.gcc460.patch   2016-10-07 19:47:46 UTC (rev 
277909)
@@ -0,0 +1,33 @@
+diff -baur vigra-1.7.1.old/include/vigra/random_forest.hxx 
vigra-1.7.1/include/vigra/random_forest.hxx
+--- vigra-1.7.1.old/include/vigra/random_forest.hxx2010-12-03 
17:40:34.0 +
 vigra-1.7.1/include/vigra/random_forest.hxx2011-01-28 
00:16:32.0 +
+@@ -43,6 +43,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include "mathutil.hxx"
+ #include "array_vector.hxx"
+ #include "sized_int.hxx"
+diff -baur vigra-1.7.1.old/include/vigra/sifImport.hxx 
vigra-1.7.1/include/vigra/sifImport.hxx
+--- vigra-1.7.1.old/include/vigra/sifImport.hxx2010-12-03 
17:40:34.0 +
 vigra-1.7.1/include/vigra/sifImport.hxx2011-01-28 00:23:31.0 
+
+@@ -57,6 +57,7 @@
+ #include 
+ #include 
+ #include  
++#include 
+ #include "vigra/multi_array.hxx"
+ 
+ namespace vigra {
+diff -baur vigra-1.7.1.old/include/vigra/multi_iterator.hxx 
vigra-1.7.1/include/vigra/multi_iterator.hxx
+--- vigra-1.7.1.old/include/vigra/multi_iterator.hxx   2010-12-03 
17:40:34.0 +
 vigra-1.7.1/include/vigra/multi_iterator.hxx   2011-01-28 
00:23:31.0 +
+@@ -41,6 +41,7 @@
+ #define VIGRA_MULTI_ITERATOR_HXX
+ 
+ #include 
++#include 
+ #include "tinyvector.hxx"
+ #include "iteratortags.hxx"
+ 

Copied: vigra/repos/staging-x86_64/PKGBUILD (from rev 277908, 
vigra/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-10-07 

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

2016-10-07 Thread Anatol Pomozov
Date: Friday, October 7, 2016 @ 19:47:21
  Author: anatolik
Revision: 191595

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

Added:
  avr-gdb/repos/community-testing-i686/
  avr-gdb/repos/community-testing-i686/PKGBUILD
(from rev 191594, avr-gdb/trunk/PKGBUILD)
  avr-gdb/repos/community-testing-x86_64/
  avr-gdb/repos/community-testing-x86_64/PKGBUILD
(from rev 191594, avr-gdb/trunk/PKGBUILD)

---+
 community-testing-i686/PKGBUILD   |   52 
 community-testing-x86_64/PKGBUILD |   52 
 2 files changed, 104 insertions(+)

Copied: avr-gdb/repos/community-testing-i686/PKGBUILD (from rev 191594, 
avr-gdb/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-10-07 19:47:21 UTC (rev 191595)
@@ -0,0 +1,52 @@
+# Maintainer: schuay 
+# Contributor: Ivan Sichmann Freitas 
+# Contributor: Laszlo Papp 
+# Contributor: Gerardo Exequiel Pozzi 
+# Contributor: Vladimir Cerny 
+# Contributor: 4javier <4javieregATgmailDOTcom>
+
+_target=avr
+pkgname=$_target-gdb
+pkgver=7.12
+pkgrel=1
+pkgdesc='The GNU Debugger for AVR'
+arch=(i686 x86_64)
+url='http://www.gnu.org/software/gdb/'
+license=(GPL3)
+depends=(python guile xz gdb-common)
+options=(!emptydirs)
+source=(ftp://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
+sha256sums=('834ff3c5948b30718343ea57b11cbc3235d7995c6a4f3a5cecec8c8114164f94'
+'SKIP')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 

+
+prepare() {
+  cd gdb-$pkgver
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+}
+
+build() {
+  cd gdb-$pkgver
+
+  ./configure \
+--disable-nls \
+--enable-languages=c,c++ \
+--prefix=/usr \
+--target=$_target \
+--with-python=/usr/bin/python3 \
+--with-system-readline \
+--with-system-gdbinit=/etc/gdb/gdbinit
+
+  make
+}
+
+package() {
+  cd gdb-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/share/info
+  rm -r "$pkgdir"/usr/share/man
+  rm -r "$pkgdir"/usr/share/gdb
+  rm -r "$pkgdir"/usr/include/gdb
+}

Copied: avr-gdb/repos/community-testing-x86_64/PKGBUILD (from rev 191594, 
avr-gdb/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-10-07 19:47:21 UTC (rev 191595)
@@ -0,0 +1,52 @@
+# Maintainer: schuay 
+# Contributor: Ivan Sichmann Freitas 
+# Contributor: Laszlo Papp 
+# Contributor: Gerardo Exequiel Pozzi 
+# Contributor: Vladimir Cerny 
+# Contributor: 4javier <4javieregATgmailDOTcom>
+
+_target=avr
+pkgname=$_target-gdb
+pkgver=7.12
+pkgrel=1
+pkgdesc='The GNU Debugger for AVR'
+arch=(i686 x86_64)
+url='http://www.gnu.org/software/gdb/'
+license=(GPL3)
+depends=(python guile xz gdb-common)
+options=(!emptydirs)
+source=(ftp://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
+sha256sums=('834ff3c5948b30718343ea57b11cbc3235d7995c6a4f3a5cecec8c8114164f94'
+'SKIP')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 

+
+prepare() {
+  cd gdb-$pkgver
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+}
+
+build() {
+  cd gdb-$pkgver
+
+  ./configure \
+--disable-nls \
+--enable-languages=c,c++ \
+--prefix=/usr \
+--target=$_target \
+--with-python=/usr/bin/python3 \
+--with-system-readline \
+--with-system-gdbinit=/etc/gdb/gdbinit
+
+  make
+}
+
+package() {
+  cd gdb-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/share/info
+  rm -r "$pkgdir"/usr/share/man
+  rm -r "$pkgdir"/usr/share/gdb
+  rm -r "$pkgdir"/usr/include/gdb
+}


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:47:41
  Author: bpiotrowski
Revision: 277908

upgpkg: vigra 1.11.0-4

rebuild against boost 1.62.0

Modified:
  vigra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 19:41:56 UTC (rev 277907)
+++ PKGBUILD2016-10-07 19:47:41 UTC (rev 277908)
@@ -5,7 +5,7 @@
 pkgbase=vigra
 pkgname=('vigra' 'vigra-doc')
 pkgver=1.11.0
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 url="http://hci.iwr.uni-heidelberg.de/vigra/;
 license=('custom:MIT')


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

2016-10-07 Thread Anatol Pomozov
Date: Friday, October 7, 2016 @ 19:46:51
  Author: anatolik
Revision: 191594

upgpkg: avr-gdb 7.12-1

Modified:
  avr-gdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 19:41:21 UTC (rev 191593)
+++ PKGBUILD2016-10-07 19:46:51 UTC (rev 191594)
@@ -7,7 +7,7 @@
 
 _target=avr
 pkgname=$_target-gdb
-pkgver=7.11.1
+pkgver=7.12
 pkgrel=1
 pkgdesc='The GNU Debugger for AVR'
 arch=(i686 x86_64)
@@ -16,7 +16,7 @@
 depends=(python guile xz gdb-common)
 options=(!emptydirs)
 source=(ftp://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
-sha256sums=('e9216da4e3755e9f414c1aa0026b626251dfc57ffe572a266e98da4f6988fc70'
+sha256sums=('834ff3c5948b30718343ea57b11cbc3235d7995c6a4f3a5cecec8c8114164f94'
 'SKIP')
 validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 

 


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

2016-10-07 Thread Anatol Pomozov
Date: Friday, October 7, 2016 @ 19:41:56
  Author: anatolik
Revision: 277907

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

Added:
  gdb/repos/testing-i686/
  gdb/repos/testing-i686/PKGBUILD
(from rev 277906, gdb/trunk/PKGBUILD)
  gdb/repos/testing-x86_64/
  gdb/repos/testing-x86_64/PKGBUILD
(from rev 277906, gdb/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   70 ++
 testing-x86_64/PKGBUILD |   70 ++
 2 files changed, 140 insertions(+)

Copied: gdb/repos/testing-i686/PKGBUILD (from rev 277906, gdb/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-10-07 19:41:56 UTC (rev 277907)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: Jan de Groot 
+
+pkgbase=gdb
+# gdb-common is a package that contains files common for all cross compiled 
versions
+# of gdb (for arm/avr/...)
+pkgname=(gdb gdb-common)
+pkgver=7.12
+pkgrel=1
+pkgdesc='The GNU Debugger'
+arch=(i686 x86_64)
+url='http://www.gnu.org/software/gdb/'
+license=(GPL3)
+makedepends=(texinfo python guile ncurses expat xz)
+source=(http://ftp.gnu.org/gnu/gdb/${pkgname}-${pkgver}.tar.xz{,.sig})
+sha1sums=('1a6a0f2fe04d6ac9ba85048af35610e0fc217300'
+  'SKIP')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker
+
+prepare() {
+  cd gdb-$pkgver
+
+  # hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+}
+
+build() {
+  cd gdb-$pkgver
+  
+  ./configure --prefix=/usr --disable-nls \
+--with-system-readline \
+--with-python=/usr/bin/python3 \
+--with-system-gdbinit=/etc/gdb/gdbinit
+  make
+}
+
+package_gdb-common() {
+  depends=(python guile)
+
+  cd gdb-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # resolve conflicts with binutils
+  rm $pkgdir/usr/include/{ansidecl,bfd,bfdlink,dis-asm,plugin-api,symcat}.h
+  rm $pkgdir/usr/share/info/bfd.info
+  rm $pkgdir/usr/lib/{libbfd,libopcodes}.a
+
+  rm -r $pkgdir/usr/{bin,include,lib,share/info,share/man}
+}
+
+package_gdb() {
+  depends=(ncurses expat xz gdb-common=$pkgver)
+  backup=(etc/gdb/gdbinit)
+
+  cd gdb-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # install "custom" system gdbinit
+  install -dm755 $pkgdir/etc/gdb
+  touch $pkgdir/etc/gdb/gdbinit
+
+  # resolve conflicts with binutils
+  rm $pkgdir/usr/include/{ansidecl,bfd,bfdlink,dis-asm,plugin-api,symcat}.h
+  rm $pkgdir/usr/share/info/bfd.info
+  rm $pkgdir/usr/lib/{libbfd,libopcodes}.a
+
+  # comes from gdb-common
+  rm -r $pkgdir/usr/share/gdb/
+}

Copied: gdb/repos/testing-x86_64/PKGBUILD (from rev 277906, gdb/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-10-07 19:41:56 UTC (rev 277907)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: Jan de Groot 
+
+pkgbase=gdb
+# gdb-common is a package that contains files common for all cross compiled 
versions
+# of gdb (for arm/avr/...)
+pkgname=(gdb gdb-common)
+pkgver=7.12
+pkgrel=1
+pkgdesc='The GNU Debugger'
+arch=(i686 x86_64)
+url='http://www.gnu.org/software/gdb/'
+license=(GPL3)
+makedepends=(texinfo python guile ncurses expat xz)
+source=(http://ftp.gnu.org/gnu/gdb/${pkgname}-${pkgver}.tar.xz{,.sig})
+sha1sums=('1a6a0f2fe04d6ac9ba85048af35610e0fc217300'
+  'SKIP')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker
+
+prepare() {
+  cd gdb-$pkgver
+
+  # hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+}
+
+build() {
+  cd gdb-$pkgver
+  
+  ./configure --prefix=/usr --disable-nls \
+--with-system-readline \
+--with-python=/usr/bin/python3 \
+--with-system-gdbinit=/etc/gdb/gdbinit
+  make
+}
+
+package_gdb-common() {
+  depends=(python guile)
+
+  cd gdb-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # resolve conflicts with binutils
+  rm $pkgdir/usr/include/{ansidecl,bfd,bfdlink,dis-asm,plugin-api,symcat}.h
+  rm $pkgdir/usr/share/info/bfd.info
+  rm $pkgdir/usr/lib/{libbfd,libopcodes}.a
+
+  rm -r $pkgdir/usr/{bin,include,lib,share/info,share/man}
+}
+
+package_gdb() {
+  depends=(ncurses expat xz gdb-common=$pkgver)
+  backup=(etc/gdb/gdbinit)
+
+  cd gdb-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # install "custom" system gdbinit
+  install -dm755 $pkgdir/etc/gdb
+  touch $pkgdir/etc/gdb/gdbinit
+
+  # resolve conflicts with binutils
+  rm $pkgdir/usr/include/{ansidecl,bfd,bfdlink,dis-asm,plugin-api,symcat}.h
+  rm $pkgdir/usr/share/info/bfd.info
+  rm $pkgdir/usr/lib/{libbfd,libopcodes}.a
+
+  # comes 

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

2016-10-07 Thread Anatol Pomozov
Date: Friday, October 7, 2016 @ 19:41:26
  Author: anatolik
Revision: 277906

upgpkg: gdb 7.12-1

Modified:
  gdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 19:40:07 UTC (rev 277905)
+++ PKGBUILD2016-10-07 19:41:26 UTC (rev 277906)
@@ -6,8 +6,8 @@
 # gdb-common is a package that contains files common for all cross compiled 
versions
 # of gdb (for arm/avr/...)
 pkgname=(gdb gdb-common)
-pkgver=7.11.1
-pkgrel=2
+pkgver=7.12
+pkgrel=1
 pkgdesc='The GNU Debugger'
 arch=(i686 x86_64)
 url='http://www.gnu.org/software/gdb/'
@@ -14,7 +14,7 @@
 license=(GPL3)
 makedepends=(texinfo python guile ncurses expat xz)
 source=(http://ftp.gnu.org/gnu/gdb/${pkgname}-${pkgver}.tar.xz{,.sig})
-sha1sums=('df23fde077df1b8555949281bc963596f70de3ec'
+sha1sums=('1a6a0f2fe04d6ac9ba85048af35610e0fc217300'
   'SKIP')
 validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker
 


[arch-commits] Commit in arm-none-eabi-gdb/repos (4 files)

2016-10-07 Thread Anatol Pomozov
Date: Friday, October 7, 2016 @ 19:41:21
  Author: anatolik
Revision: 191593

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

Added:
  arm-none-eabi-gdb/repos/community-testing-i686/
  arm-none-eabi-gdb/repos/community-testing-i686/PKGBUILD
(from rev 191592, arm-none-eabi-gdb/trunk/PKGBUILD)
  arm-none-eabi-gdb/repos/community-testing-x86_64/
  arm-none-eabi-gdb/repos/community-testing-x86_64/PKGBUILD
(from rev 191592, arm-none-eabi-gdb/trunk/PKGBUILD)

---+
 community-testing-i686/PKGBUILD   |   56 
 community-testing-x86_64/PKGBUILD |   56 
 2 files changed, 112 insertions(+)

Copied: arm-none-eabi-gdb/repos/community-testing-i686/PKGBUILD (from rev 
191592, arm-none-eabi-gdb/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-10-07 19:41:21 UTC (rev 191593)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Martin Schmölzer 
+
+_target=arm-none-eabi
+pkgname=$_target-gdb
+pkgver=7.12
+pkgrel=1
+pkgdesc='The GNU Debugger for the ARM EABI (bare-metal) target'
+arch=(i686 x86_64)
+url='http://www.gnu.org/software/gdb/'
+license=(GPL3)
+depends=(xz ncurses expat python guile gdb-common)
+optdepends=('openocd: for debugging JTAG targets'
+'stlink: for debugging over STLINK')
+options=(!emptydirs)
+source=(ftp://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
+sha256sums=('834ff3c5948b30718343ea57b11cbc3235d7995c6a4f3a5cecec8c8114164f94'
+'SKIP')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 

+
+prepare() {
+  cd gdb-$pkgver
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+}
+
+build() {
+  cd gdb-$pkgver
+
+  ./configure \
+--target=$_target \
+--prefix=/usr \
+--enable-languages=c,c++ \
+--enable-multilib \
+--enable-interwork \
+--with-system-readline \
+--disable-nls \
+--with-python=/usr/bin/python3 \
+--with-system-gdbinit=/etc/gdb/gdbinit
+
+  make
+}
+
+package() {
+  cd gdb-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  # Following files conflict with 'gdb' package
+  rm -r "$pkgdir"/usr/share/info
+  # TOTHINK: we remove python module used for debugging. It means arm-*-gdb 
alone will not be able to debug and 'gdb' package
+  # should be installed. File a bug upstream - ask a separate python module 
folder for cross tools.
+  rm -r "$pkgdir"/usr/share/gdb
+  rm -r "$pkgdir"/usr/include/gdb
+  rm -r "$pkgdir"/usr/share/man/man5
+}

Copied: arm-none-eabi-gdb/repos/community-testing-x86_64/PKGBUILD (from rev 
191592, arm-none-eabi-gdb/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-10-07 19:41:21 UTC (rev 191593)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Martin Schmölzer 
+
+_target=arm-none-eabi
+pkgname=$_target-gdb
+pkgver=7.12
+pkgrel=1
+pkgdesc='The GNU Debugger for the ARM EABI (bare-metal) target'
+arch=(i686 x86_64)
+url='http://www.gnu.org/software/gdb/'
+license=(GPL3)
+depends=(xz ncurses expat python guile gdb-common)
+optdepends=('openocd: for debugging JTAG targets'
+'stlink: for debugging over STLINK')
+options=(!emptydirs)
+source=(ftp://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
+sha256sums=('834ff3c5948b30718343ea57b11cbc3235d7995c6a4f3a5cecec8c8114164f94'
+'SKIP')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 

+
+prepare() {
+  cd gdb-$pkgver
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+}
+
+build() {
+  cd gdb-$pkgver
+
+  ./configure \
+--target=$_target \
+--prefix=/usr \
+--enable-languages=c,c++ \
+--enable-multilib \
+--enable-interwork \
+--with-system-readline \
+--disable-nls \
+--with-python=/usr/bin/python3 \
+--with-system-gdbinit=/etc/gdb/gdbinit
+
+  make
+}
+
+package() {
+  cd gdb-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  # Following files conflict with 'gdb' package
+  rm -r "$pkgdir"/usr/share/info
+  # TOTHINK: we remove python module used for debugging. It means arm-*-gdb 
alone will not be able to debug and 'gdb' package
+  # should be installed. File a bug upstream - ask a separate python module 
folder for cross tools.
+  rm -r "$pkgdir"/usr/share/gdb
+  rm -r "$pkgdir"/usr/include/gdb
+  rm -r "$pkgdir"/usr/share/man/man5
+}


[arch-commits] Commit in arm-none-eabi-gdb/trunk (PKGBUILD)

2016-10-07 Thread Anatol Pomozov
Date: Friday, October 7, 2016 @ 19:40:41
  Author: anatolik
Revision: 191592

upgpkg: arm-none-eabi-gdb 7.12-1

Modified:
  arm-none-eabi-gdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 18:55:53 UTC (rev 191591)
+++ PKGBUILD2016-10-07 19:40:41 UTC (rev 191592)
@@ -4,7 +4,7 @@
 
 _target=arm-none-eabi
 pkgname=$_target-gdb
-pkgver=7.11.1
+pkgver=7.12
 pkgrel=1
 pkgdesc='The GNU Debugger for the ARM EABI (bare-metal) target'
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 'stlink: for debugging over STLINK')
 options=(!emptydirs)
 source=(ftp://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
-sha256sums=('e9216da4e3755e9f414c1aa0026b626251dfc57ffe572a266e98da4f6988fc70'
+sha256sums=('834ff3c5948b30718343ea57b11cbc3235d7995c6a4f3a5cecec8c8114164f94'
 'SKIP')
 validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 

 


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:40:01
  Author: bpiotrowski
Revision: 277904

upgpkg: mkvtoolnix 9.4.2-2

rebuild against boost 1.62.0

Modified:
  mkvtoolnix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 19:31:11 UTC (rev 277903)
+++ PKGBUILD2016-10-07 19:40:01 UTC (rev 277904)
@@ -6,7 +6,7 @@
 pkgbase=mkvtoolnix
 pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gui')
 pkgver=9.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Set of tools to create, edit and inspect Matroska files'
 arch=('i686' 'x86_64')
 url='https://www.bunkus.org/videotools/mkvtoolnix/'


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:40:07
  Author: bpiotrowski
Revision: 277905

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

Added:
  mkvtoolnix/repos/staging-i686/
  mkvtoolnix/repos/staging-i686/PKGBUILD
(from rev 277904, mkvtoolnix/trunk/PKGBUILD)
  mkvtoolnix/repos/staging-x86_64/
  mkvtoolnix/repos/staging-x86_64/PKGBUILD
(from rev 277904, mkvtoolnix/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   61 ++
 staging-x86_64/PKGBUILD |   61 ++
 2 files changed, 122 insertions(+)

Copied: mkvtoolnix/repos/staging-i686/PKGBUILD (from rev 277904, 
mkvtoolnix/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-07 19:40:07 UTC (rev 277905)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Maintainer: Maxime Gauduin 
+# Contributor: xduugu 
+
+pkgbase=mkvtoolnix
+pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gui')
+pkgver=9.4.2
+pkgrel=2
+pkgdesc='Set of tools to create, edit and inspect Matroska files'
+arch=('i686' 'x86_64')
+url='https://www.bunkus.org/videotools/mkvtoolnix/'
+license=('GPL')
+makedepends=('boost' 'boost-libs' 'file' 'flac' 'libebml' 'libmatroska'
+ 'libogg' 'libvorbis' 'qt5-base' 'ruby' 'zlib')
+source=("http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-${pkgver}.tar.xz;)
+md5sums=('55c246e54ff0e0e8c9c61320f1730ef9')
+
+build() {
+  cd mkvtoolnix-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--without-curl \
+--disable-qt
+  ./drake apps:mkvinfo $MAKEFLAGS
+  mv src/mkvinfo{,-cli}
+
+  ./configure \
+--prefix='/usr' \
+--without-curl
+  ./drake $MAKEFLAGS
+}
+
+package_mkvtoolnix-cli() {
+  depends=('boost-libs' 'file' 'flac' 'gcc-libs' 'glibc' 'libogg' 'zlib'
+   'libebml.so' 'libmatroska.so' 'libvorbis.so')
+
+  cd mkvtoolnix-${pkgver}
+
+  ./drake DESTDIR="${pkgdir}" install
+  install -m 755 src/mkvinfo-cli "${pkgdir}"/usr/bin/mkvinfo
+  rm -rf "${pkgdir}"/usr/share/{applications,icons,mime}
+  find "${pkgdir}" -name mkvtoolnix-gui* -delete
+}
+
+package_mkvtoolnix-gui() {
+  depends=('desktop-file-utils' 'hicolor-icon-theme' 'mkvtoolnix-cli'
+   'qt5-base' 'shared-mime-info' 'xdg-utils')
+  replaces=('mkvtoolnix-gtk')
+
+  cd mkvtoolnix-${pkgver}
+
+  ./drake DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/share/locale
+  for t in mkv{extract,info,merge,propedit}; do
+find "${pkgdir}" -name $t* -delete
+  done
+}
+
+# vim: ts=2 sw=2 et:

Copied: mkvtoolnix/repos/staging-x86_64/PKGBUILD (from rev 277904, 
mkvtoolnix/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-10-07 19:40:07 UTC (rev 277905)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Maintainer: Maxime Gauduin 
+# Contributor: xduugu 
+
+pkgbase=mkvtoolnix
+pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gui')
+pkgver=9.4.2
+pkgrel=2
+pkgdesc='Set of tools to create, edit and inspect Matroska files'
+arch=('i686' 'x86_64')
+url='https://www.bunkus.org/videotools/mkvtoolnix/'
+license=('GPL')
+makedepends=('boost' 'boost-libs' 'file' 'flac' 'libebml' 'libmatroska'
+ 'libogg' 'libvorbis' 'qt5-base' 'ruby' 'zlib')
+source=("http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-${pkgver}.tar.xz;)
+md5sums=('55c246e54ff0e0e8c9c61320f1730ef9')
+
+build() {
+  cd mkvtoolnix-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--without-curl \
+--disable-qt
+  ./drake apps:mkvinfo $MAKEFLAGS
+  mv src/mkvinfo{,-cli}
+
+  ./configure \
+--prefix='/usr' \
+--without-curl
+  ./drake $MAKEFLAGS
+}
+
+package_mkvtoolnix-cli() {
+  depends=('boost-libs' 'file' 'flac' 'gcc-libs' 'glibc' 'libogg' 'zlib'
+   'libebml.so' 'libmatroska.so' 'libvorbis.so')
+
+  cd mkvtoolnix-${pkgver}
+
+  ./drake DESTDIR="${pkgdir}" install
+  install -m 755 src/mkvinfo-cli "${pkgdir}"/usr/bin/mkvinfo
+  rm -rf "${pkgdir}"/usr/share/{applications,icons,mime}
+  find "${pkgdir}" -name mkvtoolnix-gui* -delete
+}
+
+package_mkvtoolnix-gui() {
+  depends=('desktop-file-utils' 'hicolor-icon-theme' 'mkvtoolnix-cli'
+   'qt5-base' 'shared-mime-info' 'xdg-utils')
+  replaces=('mkvtoolnix-gtk')
+
+  cd mkvtoolnix-${pkgver}
+
+  ./drake DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/share/locale
+  for t in mkv{extract,info,merge,propedit}; do
+find "${pkgdir}" -name $t* -delete
+  done
+}
+
+# vim: ts=2 sw=2 et:


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:31:11
  Author: bpiotrowski
Revision: 277903

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

Added:
  licq/repos/staging-i686/
  licq/repos/staging-i686/PKGBUILD
(from rev 277902, licq/trunk/PKGBUILD)
  licq/repos/staging-i686/licq-gcc6.patch
(from rev 277902, licq/trunk/licq-gcc6.patch)
  licq/repos/staging-x86_64/
  licq/repos/staging-x86_64/PKGBUILD
(from rev 277902, licq/trunk/PKGBUILD)
  licq/repos/staging-x86_64/licq-gcc6.patch
(from rev 277902, licq/trunk/licq-gcc6.patch)

+
 staging-i686/PKGBUILD  |   49 +++
 staging-i686/licq-gcc6.patch   |   24 +++
 staging-x86_64/PKGBUILD|   49 +++
 staging-x86_64/licq-gcc6.patch |   24 +++
 4 files changed, 146 insertions(+)

Copied: licq/repos/staging-i686/PKGBUILD (from rev 277902, licq/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-07 19:31:11 UTC (rev 277903)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Juergen Hoetzel 
+
+pkgname=licq
+pkgver=1.8.2
+pkgrel=12
+pkgdesc="Advanced graphical ICQ clone and more for Unix"
+arch=('i686' 'x86_64')
+url="http://www.licq.org;
+license=('GPL')
+depends=('boost-libs' 'gpgme' 'libxss' 'qt4')
+makedepends=('cmake' 'boost' 'optipng')
+source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2
 licq-gcc6.patch)
+md5sums=('46af2bc95865ee61a103d27812fe6e6a'
+ '8af303d8d31573246470f0ba0ccba428')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  mkdir build
+
+  # Fix invalid PNG images to work with libpng 1.6
+  # https://github.com/licq-im/licq/pull/32
+  optipng -quiet -force -fix plugins/qt4-gui/share/skins/Mirabilis/*.png
+
+  # Fix build with GCC 6
+  patch -p1 -i ../licq-gcc6.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  local licq_plugins="auto-reply icq rms msn qt4-gui" # osd jabber aosd
+  
+  local plugins="" _plugin
+  for _plugin in ${licq_plugins}; do
+plugins+=" ${_plugin}\/CMakeLists.txt"
+  done
+  sed -i -e "s/file(GLOB cmake_plugins.*$/set(cmake_plugins ${plugins})/" 
plugins/CMakeLists.txt
+
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DUSE_FIFO=ON -DBUILD_PLUGINS=ON 
-DBUILD_TESTS=OFF ..
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/build"
+  make DESTDIR="${pkgdir}" install
+}

Copied: licq/repos/staging-i686/licq-gcc6.patch (from rev 277902, 
licq/trunk/licq-gcc6.patch)
===
--- staging-i686/licq-gcc6.patch(rev 0)
+++ staging-i686/licq-gcc6.patch2016-10-07 19:31:11 UTC (rev 277903)
@@ -0,0 +1,24 @@
+--- licq-1.8.2/src/licq.cpp.orig   2016-05-12 15:27:35.927500283 +
 licq-1.8.2/src/licq.cpp2016-05-12 15:28:01.107415744 +
+@@ -568,18 +568,18 @@
+ if (!licqConf.get(szKey, pluginName))
+   continue;
+ 
+-bool loaded = LoadPlugin(pluginName, argc, argv);
++bool loaded= (bool)LoadPlugin(pluginName, argc, argv);
+ 
+ // Make upgrade from 1.3.x and older easier by automatically 
switching from kde/qt-gui to kde4/qt4-gui
+ if (!loaded && pluginName == "kde-gui")
+ {
+   gLog.warning(tr("Plugin kde-gui is no longer available, trying to 
load kde4-gui instead."));
+-  loaded = LoadPlugin("kde4-gui", argc, argv);
++  loaded= (bool)LoadPlugin("kde4-gui", argc, argv);
+ }
+ if (!loaded && (pluginName == "qt-gui" || pluginName == "kde-gui"))
+ {
+   gLog.warning(tr("Plugin %s is no longer available, trying to load 
qt4-gui instead."), pluginName.c_str());
+-  loaded = LoadPlugin("qt4-gui", argc, argv);
++  loaded= (bool)LoadPlugin("qt4-gui", argc, argv);
+ }
+ 
+ if (!loaded)

Copied: licq/repos/staging-x86_64/PKGBUILD (from rev 277902, 
licq/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-10-07 19:31:11 UTC (rev 277903)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Juergen Hoetzel 
+
+pkgname=licq
+pkgver=1.8.2
+pkgrel=12
+pkgdesc="Advanced graphical ICQ clone and more for Unix"
+arch=('i686' 'x86_64')
+url="http://www.licq.org;
+license=('GPL')
+depends=('boost-libs' 'gpgme' 'libxss' 'qt4')
+makedepends=('cmake' 'boost' 'optipng')
+source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2
 licq-gcc6.patch)
+md5sums=('46af2bc95865ee61a103d27812fe6e6a'
+ '8af303d8d31573246470f0ba0ccba428')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  mkdir build
+
+  # Fix invalid PNG images to work with libpng 1.6
+  # 

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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:31:07
  Author: bpiotrowski
Revision: 277902

upgpkg: licq 1.8.2-12

rebuild against boost 1.62.0

Modified:
  licq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 19:28:50 UTC (rev 277901)
+++ PKGBUILD2016-10-07 19:31:07 UTC (rev 277902)
@@ -3,7 +3,7 @@
 
 pkgname=licq
 pkgver=1.8.2
-pkgrel=11
+pkgrel=12
 pkgdesc="Advanced graphical ICQ clone and more for Unix"
 arch=('i686' 'x86_64')
 url="http://www.licq.org;


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:28:50
  Author: bpiotrowski
Revision: 277901

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

Added:
  libtorrent-rasterbar/repos/staging-i686/
  libtorrent-rasterbar/repos/staging-i686/PKGBUILD
(from rev 277900, libtorrent-rasterbar/trunk/PKGBUILD)
  libtorrent-rasterbar/repos/staging-x86_64/
  libtorrent-rasterbar/repos/staging-x86_64/PKGBUILD
(from rev 277900, libtorrent-rasterbar/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   57 ++
 staging-x86_64/PKGBUILD |   57 ++
 2 files changed, 114 insertions(+)

Copied: libtorrent-rasterbar/repos/staging-i686/PKGBUILD (from rev 277900, 
libtorrent-rasterbar/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-07 19:28:50 UTC (rev 277901)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Hugo Doria 
+
+pkgname=libtorrent-rasterbar
+pkgver=1.1.1
+pkgrel=2
+epoch=1
+pkgdesc="A C++ BitTorrent library that aims to be a good alternative to all 
the other implementations around"
+url="http://www.rasterbar.com/products/libtorrent/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('boost-libs')
+makedepends=('boost' 'python2' 'python3')
+options=('!emptydirs')
+_pkgver=${pkgver//./_}
+source=(https://github.com/arvidn/libtorrent/archive/libtorrent-${_pkgver}/$pkgname-$pkgver.tar.gz)
+sha1sums=('8b8285adb93355df7c20bea4cb4cb446f0e8af6a')
+
+prepare() {
+  mkdir py2 py3
+  cd libtorrent-libtorrent-${_pkgver}
+
+  # Avoid depending on newer processors
+  sed -i 's/-msse4.2//' configure.ac
+
+  ./autotool.sh
+}
+
+_build() (
+  cd py$1
+  # 
https://github.com/qbittorrent/qBittorrent/issues/5265#issuecomment-220007436
+  CXXFLAGS="$CXXFLAGS -std=c++11" \
+  PYTHON=/usr/bin/python$1 \
+  ../libtorrent-libtorrent-${_pkgver}/configure \
+--prefix=/usr \
+--enable-python-binding \
+--enable-examples \
+--disable-static \
+--with-libiconv
+)
+
+build() {
+  _build 2
+  _build 3
+}
+
+package() {
+  make -C py2 DESTDIR="$pkgdir" install
+  make -C py3 DESTDIR="$pkgdir" install
+  install -Dm644 libtorrent-libtorrent-${_pkgver}/COPYING \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove most example binaries
+  rm "$pkgdir"/usr/bin/{*_test,*_tester,simple_client,stats_counters}
+}

Copied: libtorrent-rasterbar/repos/staging-x86_64/PKGBUILD (from rev 277900, 
libtorrent-rasterbar/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-10-07 19:28:50 UTC (rev 277901)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Hugo Doria 
+
+pkgname=libtorrent-rasterbar
+pkgver=1.1.1
+pkgrel=2
+epoch=1
+pkgdesc="A C++ BitTorrent library that aims to be a good alternative to all 
the other implementations around"
+url="http://www.rasterbar.com/products/libtorrent/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('boost-libs')
+makedepends=('boost' 'python2' 'python3')
+options=('!emptydirs')
+_pkgver=${pkgver//./_}
+source=(https://github.com/arvidn/libtorrent/archive/libtorrent-${_pkgver}/$pkgname-$pkgver.tar.gz)
+sha1sums=('8b8285adb93355df7c20bea4cb4cb446f0e8af6a')
+
+prepare() {
+  mkdir py2 py3
+  cd libtorrent-libtorrent-${_pkgver}
+
+  # Avoid depending on newer processors
+  sed -i 's/-msse4.2//' configure.ac
+
+  ./autotool.sh
+}
+
+_build() (
+  cd py$1
+  # 
https://github.com/qbittorrent/qBittorrent/issues/5265#issuecomment-220007436
+  CXXFLAGS="$CXXFLAGS -std=c++11" \
+  PYTHON=/usr/bin/python$1 \
+  ../libtorrent-libtorrent-${_pkgver}/configure \
+--prefix=/usr \
+--enable-python-binding \
+--enable-examples \
+--disable-static \
+--with-libiconv
+)
+
+build() {
+  _build 2
+  _build 3
+}
+
+package() {
+  make -C py2 DESTDIR="$pkgdir" install
+  make -C py3 DESTDIR="$pkgdir" install
+  install -Dm644 libtorrent-libtorrent-${_pkgver}/COPYING \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove most example binaries
+  rm "$pkgdir"/usr/bin/{*_test,*_tester,simple_client,stats_counters}
+}


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:28:46
  Author: bpiotrowski
Revision: 277900

upgpkg: libtorrent-rasterbar 1:1.1.1-2

rebuild against boost 1.62.0

Modified:
  libtorrent-rasterbar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 19:17:27 UTC (rev 277899)
+++ PKGBUILD2016-10-07 19:28:46 UTC (rev 277900)
@@ -5,7 +5,7 @@
 
 pkgname=libtorrent-rasterbar
 pkgver=1.1.1
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="A C++ BitTorrent library that aims to be a good alternative to all 
the other implementations around"
 url="http://www.rasterbar.com/products/libtorrent/;


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:17:22
  Author: bpiotrowski
Revision: 277898

upgpkg: libpst 0.6.67-2

rebuild against boost 1.62.0

Modified:
  libpst/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 19:15:51 UTC (rev 277897)
+++ PKGBUILD2016-10-07 19:17:22 UTC (rev 277898)
@@ -4,7 +4,7 @@
 pkgbase=libpst
 pkgname=('libpst' 'libpst-docs')
 pkgver=0.6.67
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url="http://www.five-ten-sg.com/libpst/;
 license=('GPL')


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:14:39
  Author: bpiotrowski
Revision: 277894

upgpkg: libphonenumber 7.7.0-2

rebuild against boost 1.62.0

Modified:
  libphonenumber/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 19:11:55 UTC (rev 277893)
+++ PKGBUILD2016-10-07 19:14:39 UTC (rev 277894)
@@ -3,7 +3,7 @@
 
 pkgname=libphonenumber
 pkgver=7.7.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Google's common library for parsing, formatting, and validating 
international phone numbers"
 arch=(i686 x86_64)
 depends=(icu protobuf boost-libs)


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

2016-10-07 Thread Andreas Radke
Date: Friday, October 7, 2016 @ 19:15:01
  Author: andyrtr
Revision: 277896

upgpkg: linux-lts 4.4.24-1

upstream update 4.4.24

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 19:14:44 UTC (rev 277895)
+++ PKGBUILD2016-10-07 19:15:01 UTC (rev 277896)
@@ -3,7 +3,7 @@
 
 pkgbase=linux-lts
 _srcname=linux-4.4
-pkgver=4.4.23
+pkgver=4.4.24
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/;
@@ -21,7 +21,7 @@
 # https://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
 sha256sums=('401d7c8fef594999a460d10c72c5a94e9c2e1022f16795ec51746b0d165418b2'
 'SKIP'
-'0592b15bb78879ffa72933c71b8b11787a7b4560ea33b8ba8b421df034ee74c8'
+'10a083229253e7f781496a077913d8666c156c6900f4f735542fb15030339eef'
 'SKIP'
 'b11702727b1503e5a613946790978481d34d8ecc6870337fadd3ce1ef084a8e2'
 '68c7296ff2f5f55d69e83aa4d20f925df740b1eb1e6bdb0f13e8a170360ed09f'


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:17:27
  Author: bpiotrowski
Revision: 277899

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

Added:
  libpst/repos/staging-i686/
  libpst/repos/staging-i686/PKGBUILD
(from rev 277898, libpst/trunk/PKGBUILD)
  libpst/repos/staging-x86_64/
  libpst/repos/staging-x86_64/PKGBUILD
(from rev 277898, libpst/trunk/PKGBUILD)

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

Copied: libpst/repos/staging-i686/PKGBUILD (from rev 277898, 
libpst/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-07 19:17:27 UTC (rev 277899)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=libpst
+pkgname=('libpst' 'libpst-docs')
+pkgver=0.6.67
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://www.five-ten-sg.com/libpst/;
+license=('GPL')
+makedepends=('python2' 'boost' 'libgsf')
+source=(http://www.five-ten-sg.com/libpst/packages/${pkgbase}-${pkgver}.tar.gz)
+sha1sums=('8b26a5faecaca5578c6207c66da0c94b85362f8d')
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure --prefix=/usr --mandir=/usr/share/man \
+  --disable-static --enable-libpst-shared --disable-dii PYTHON_VERSION=2
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package_libpst() {
+  pkgdesc="Outlook .pst file converter"
+  depends=('gcc-libs' 'libgsf')
+  optdepends=('boost-libs: for libpst python interface')
+  options=('!docs')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="${pkgdir}" install
+}
+
+package_libpst-docs() {
+  pkgdesc="Documentation for Outlook .pst file converter"
+  options=('docs')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="${pkgdir}" install-htmlDATA
+  cd html
+  make DESTDIR="${pkgdir}" install-htmldevelDATA
+}

Copied: libpst/repos/staging-x86_64/PKGBUILD (from rev 277898, 
libpst/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-10-07 19:17:27 UTC (rev 277899)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=libpst
+pkgname=('libpst' 'libpst-docs')
+pkgver=0.6.67
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://www.five-ten-sg.com/libpst/;
+license=('GPL')
+makedepends=('python2' 'boost' 'libgsf')
+source=(http://www.five-ten-sg.com/libpst/packages/${pkgbase}-${pkgver}.tar.gz)
+sha1sums=('8b26a5faecaca5578c6207c66da0c94b85362f8d')
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure --prefix=/usr --mandir=/usr/share/man \
+  --disable-static --enable-libpst-shared --disable-dii PYTHON_VERSION=2
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package_libpst() {
+  pkgdesc="Outlook .pst file converter"
+  depends=('gcc-libs' 'libgsf')
+  optdepends=('boost-libs: for libpst python interface')
+  options=('!docs')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="${pkgdir}" install
+}
+
+package_libpst-docs() {
+  pkgdesc="Documentation for Outlook .pst file converter"
+  options=('docs')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="${pkgdir}" install-htmlDATA
+  cd html
+  make DESTDIR="${pkgdir}" install-htmldevelDATA
+}


[arch-commits] Commit in linux-lts/repos (16 files)

2016-10-07 Thread Andreas Radke
Date: Friday, October 7, 2016 @ 19:15:51
  Author: andyrtr
Revision: 277897

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

Added:
  linux-lts/repos/testing-i686/
  linux-lts/repos/testing-i686/0001-sdhci-revert.patch
(from rev 277896, linux-lts/trunk/0001-sdhci-revert.patch)
  linux-lts/repos/testing-i686/PKGBUILD
(from rev 277896, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
(from rev 277896, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-i686/config
(from rev 277896, linux-lts/trunk/config)
  linux-lts/repos/testing-i686/config.x86_64
(from rev 277896, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-i686/linux-lts.install
(from rev 277896, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-i686/linux-lts.preset
(from rev 277896, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/testing-x86_64/
  linux-lts/repos/testing-x86_64/0001-sdhci-revert.patch
(from rev 277896, linux-lts/trunk/0001-sdhci-revert.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 277896, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 277896, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-x86_64/config
(from rev 277896, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/config.x86_64
(from rev 277896, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 277896, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 277896, linux-lts/trunk/linux-lts.preset)

--+
 testing-i686/0001-sdhci-revert.patch |   25 
 testing-i686/PKGBUILD|  292 
 testing-i686/change-default-console-loglevel.patch   |   11 
 testing-i686/config  | 7903 +
 testing-i686/config.x86_64   | 7662 
 testing-i686/linux-lts.install   |   37 
 testing-i686/linux-lts.preset|   14 
 testing-x86_64/0001-sdhci-revert.patch   |   25 
 testing-x86_64/PKGBUILD  |  292 
 testing-x86_64/change-default-console-loglevel.patch |   11 
 testing-x86_64/config| 7903 +
 testing-x86_64/config.x86_64 | 7662 
 testing-x86_64/linux-lts.install |   37 
 testing-x86_64/linux-lts.preset  |   14 
 14 files changed, 31888 insertions(+)

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


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:14:44
  Author: bpiotrowski
Revision: 277895

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

Added:
  libphonenumber/repos/staging-i686/
  libphonenumber/repos/staging-i686/PKGBUILD
(from rev 277894, libphonenumber/trunk/PKGBUILD)
  libphonenumber/repos/staging-x86_64/
  libphonenumber/repos/staging-x86_64/PKGBUILD
(from rev 277894, libphonenumber/trunk/PKGBUILD)

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

Copied: libphonenumber/repos/staging-i686/PKGBUILD (from rev 277894, 
libphonenumber/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-07 19:14:44 UTC (rev 277895)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=libphonenumber
+pkgver=7.7.0
+pkgrel=2
+pkgdesc="Google's common library for parsing, formatting, and validating 
international phone numbers"
+arch=(i686 x86_64)
+depends=(icu protobuf boost-libs)
+makedepends=(boost cmake gtest git java-environment)
+url="https://github.com/googlei18n/libphonenumber;
+license=("Apache")
+_commit=1ec4d341c3cd13dc2ae05e0b372e85edfb41ee80
+source=("git+$url#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^libphonenumber-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  CXXFLAGS+=" -Wno-error=deprecated-declarations"  # readdir_r deprecation
+  cmake -DCMAKE_INSTALL_PREFIX=/usr ../$pkgname/cpp
+  make
+}
+
+check() {
+  cd build
+  make tests
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: libphonenumber/repos/staging-x86_64/PKGBUILD (from rev 277894, 
libphonenumber/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-10-07 19:14:44 UTC (rev 277895)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=libphonenumber
+pkgver=7.7.0
+pkgrel=2
+pkgdesc="Google's common library for parsing, formatting, and validating 
international phone numbers"
+arch=(i686 x86_64)
+depends=(icu protobuf boost-libs)
+makedepends=(boost cmake gtest git java-environment)
+url="https://github.com/googlei18n/libphonenumber;
+license=("Apache")
+_commit=1ec4d341c3cd13dc2ae05e0b372e85edfb41ee80
+source=("git+$url#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^libphonenumber-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  CXXFLAGS+=" -Wno-error=deprecated-declarations"  # readdir_r deprecation
+  cmake -DCMAKE_INSTALL_PREFIX=/usr ../$pkgname/cpp
+  make
+}
+
+check() {
+  cd build
+  make tests
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:11:50
  Author: bpiotrowski
Revision: 277892

upgpkg: ekiga 4.0.1-22

rebuild against boost 1.62.0

Modified:
  ekiga/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 19:08:40 UTC (rev 277891)
+++ PKGBUILD2016-10-07 19:11:50 UTC (rev 277892)
@@ -4,7 +4,7 @@
 
 pkgname=ekiga
 pkgver=4.0.1
-pkgrel=21
+pkgrel=22
 pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
 url="http://www.ekiga.org;
 license=(GPL)


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:11:55
  Author: bpiotrowski
Revision: 277893

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

Added:
  ekiga/repos/staging-i686/
  ekiga/repos/staging-i686/PKGBUILD
(from rev 277892, ekiga/trunk/PKGBUILD)
  ekiga/repos/staging-x86_64/
  ekiga/repos/staging-x86_64/PKGBUILD
(from rev 277892, ekiga/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   35 +++
 staging-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: ekiga/repos/staging-i686/PKGBUILD (from rev 277892, 
ekiga/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-07 19:11:55 UTC (rev 277893)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=22
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Copied: ekiga/repos/staging-x86_64/PKGBUILD (from rev 277892, 
ekiga/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-10-07 19:11:55 UTC (rev 277893)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=22
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}


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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 19:08:40
  Author: arojas
Revision: 277891

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

Added:
  source-highlight/repos/staging-i686/
  source-highlight/repos/staging-i686/PKGBUILD
(from rev 277890, source-highlight/trunk/PKGBUILD)
  source-highlight/repos/staging-x86_64/
  source-highlight/repos/staging-x86_64/PKGBUILD
(from rev 277890, source-highlight/trunk/PKGBUILD)

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

Copied: source-highlight/repos/staging-i686/PKGBUILD (from rev 277890, 
source-highlight/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-07 19:08:40 UTC (rev 277891)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=source-highlight
+pkgver=3.1.8
+pkgrel=10
+pkgdesc="Convert source code to syntax highlighted document"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/src-highlite/;
+license=('GPL')
+depends=('bash' 'boost-libs')
+makedepends=('ctags' 'boost')
+source=("ftp://ftp.gnu.org/gnu/src-highlite/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('3243470706ef5fefdc3e43b5306a4e41')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --with-bash-completion=/usr/share/bash-completion/completions
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make prefix="${pkgdir}/usr" 
bash_completiondir="${pkgdir}/usr/share/bash-completion/completions" install
+
+  # PKGBUILD syntax highlighting
+  echo -e "\npkgbuild = sh.lang" >> "${pkgdir}"/usr/share/${pkgname}/lang.map
+}

Copied: source-highlight/repos/staging-x86_64/PKGBUILD (from rev 277890, 
source-highlight/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-10-07 19:08:40 UTC (rev 277891)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=source-highlight
+pkgver=3.1.8
+pkgrel=10
+pkgdesc="Convert source code to syntax highlighted document"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/src-highlite/;
+license=('GPL')
+depends=('bash' 'boost-libs')
+makedepends=('ctags' 'boost')
+source=("ftp://ftp.gnu.org/gnu/src-highlite/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('3243470706ef5fefdc3e43b5306a4e41')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --with-bash-completion=/usr/share/bash-completion/completions
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make prefix="${pkgdir}/usr" 
bash_completiondir="${pkgdir}/usr/share/bash-completion/completions" install
+
+  # PKGBUILD syntax highlighting
+  echo -e "\npkgbuild = sh.lang" >> "${pkgdir}"/usr/share/${pkgname}/lang.map
+}


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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 19:08:15
  Author: arojas
Revision: 277890

Boost 1.62 rebuild

Modified:
  source-highlight/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 19:05:39 UTC (rev 277889)
+++ PKGBUILD2016-10-07 19:08:15 UTC (rev 277890)
@@ -4,7 +4,7 @@
 
 pkgname=source-highlight
 pkgver=3.1.8
-pkgrel=9
+pkgrel=10
 pkgdesc="Convert source code to syntax highlighted document"
 arch=('i686' 'x86_64')
 url="http://www.gnu.org/software/src-highlite/;


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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 19:05:39
  Author: arojas
Revision: 277889

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

Added:
  lyx/repos/staging-i686/
  lyx/repos/staging-i686/PKGBUILD
(from rev 277888, lyx/trunk/PKGBUILD)
  lyx/repos/staging-i686/lyxrc.dist
(from rev 277888, lyx/trunk/lyxrc.dist)
  lyx/repos/staging-x86_64/
  lyx/repos/staging-x86_64/PKGBUILD
(from rev 277888, lyx/trunk/PKGBUILD)
  lyx/repos/staging-x86_64/lyxrc.dist
(from rev 277888, lyx/trunk/lyxrc.dist)

---+
 staging-i686/PKGBUILD |   37 +
 staging-i686/lyxrc.dist   |   14 ++
 staging-x86_64/PKGBUILD   |   37 +
 staging-x86_64/lyxrc.dist |   14 ++
 4 files changed, 102 insertions(+)

Copied: lyx/repos/staging-i686/PKGBUILD (from rev 277888, lyx/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-07 19:05:39 UTC (rev 277889)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Jason Chu 
+
+pkgname=lyx
+pkgver=2.2.1
+pkgrel=3
+pkgdesc="An advanced WYSIWYM document processor & LaTeX front-end"
+arch=('i686' 'x86_64')
+url="http://www.lyx.org;
+depends=('qt5-svg' 'texlive-core' 'python2' 'imagemagick' 'enchant' 
'boost-libs' 'libmythes' 'file')
+makedepends=('boost' 'bc')
+optdepends=('rcs: built-in version control system'
+'texlive-latexextra: float wrap support')
+license=('GPL')
+backup=('etc/lyx/lyxrc.dist')
+options=('emptydirs')
+source=(ftp://ftp.lyx.org/pub/lyx/stable/2.2.x/$pkgname-$pkgver.tar.xz 
lyxrc.dist)
+sha1sums=('e245219dcfe3aafb314ea482fd0c03ce8ed95eb0'
+  '56416642cc3da2a13b87b84e6b87c1a239f3d09a')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  export CXXFLAGS="$CXXFLAGS -fpermissive"
+  ./configure --prefix=/usr \
+--enable-qt5 --without-included-boost \
+--without-included-mythes
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  # install default config file
+  install -Dm644 "${srcdir}/lyxrc.dist" "${pkgdir}/etc/lyx/lyxrc.dist"
+  ln -sf /etc/lyx/lyxrc.dist "${pkgdir}/usr/share/lyx/lyxrc.dist"
+}

Copied: lyx/repos/staging-i686/lyxrc.dist (from rev 277888, 
lyx/trunk/lyxrc.dist)
===
--- staging-i686/lyxrc.dist (rev 0)
+++ staging-i686/lyxrc.dist 2016-10-07 19:05:39 UTC (rev 277889)
@@ -0,0 +1,14 @@
+### This file is part of
+### 
+###  LyX, The Document Processor
+###
+###  Copyright 1995 Matthias Ettrich
+###  Copyright 1995-2011 The LyX Team.
+###
+### 
+
+# The file lyxrc.dist gives initial global options for all LyX users.
+# Almost all settings here can be overridden through the preferences in LyX.
+
+\thesaurusdir_path "/usr/share/mythes"
+\hunspelldir_path "/usr/share/myspell"

Copied: lyx/repos/staging-x86_64/PKGBUILD (from rev 277888, lyx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-10-07 19:05:39 UTC (rev 277889)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Jason Chu 
+
+pkgname=lyx
+pkgver=2.2.1
+pkgrel=3
+pkgdesc="An advanced WYSIWYM document processor & LaTeX front-end"
+arch=('i686' 'x86_64')
+url="http://www.lyx.org;
+depends=('qt5-svg' 'texlive-core' 'python2' 'imagemagick' 'enchant' 
'boost-libs' 'libmythes' 'file')
+makedepends=('boost' 'bc')
+optdepends=('rcs: built-in version control system'
+'texlive-latexextra: float wrap support')
+license=('GPL')
+backup=('etc/lyx/lyxrc.dist')
+options=('emptydirs')
+source=(ftp://ftp.lyx.org/pub/lyx/stable/2.2.x/$pkgname-$pkgver.tar.xz 
lyxrc.dist)
+sha1sums=('e245219dcfe3aafb314ea482fd0c03ce8ed95eb0'
+  '56416642cc3da2a13b87b84e6b87c1a239f3d09a')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  export CXXFLAGS="$CXXFLAGS -fpermissive"
+  ./configure --prefix=/usr \
+--enable-qt5 --without-included-boost \
+--without-included-mythes
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  # install default config file
+  install -Dm644 "${srcdir}/lyxrc.dist" "${pkgdir}/etc/lyx/lyxrc.dist"
+  ln -sf /etc/lyx/lyxrc.dist "${pkgdir}/usr/share/lyx/lyxrc.dist"
+}

Copied: lyx/repos/staging-x86_64/lyxrc.dist (from rev 277888, 
lyx/trunk/lyxrc.dist)
===
--- staging-x86_64/lyxrc.dist   (rev 0)
+++ staging-x86_64/lyxrc.dist   2016-10-07 19:05:39 UTC (rev 277889)
@@ 

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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 19:05:10
  Author: arojas
Revision: 277888

Boost 1.62 rebuild

Modified:
  lyx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 18:50:53 UTC (rev 277887)
+++ PKGBUILD2016-10-07 19:05:10 UTC (rev 277888)
@@ -4,7 +4,7 @@
 
 pkgname=lyx
 pkgver=2.2.1
-pkgrel=2
+pkgrel=3
 pkgdesc="An advanced WYSIWYM document processor & LaTeX front-end"
 arch=('i686' 'x86_64')
 url="http://www.lyx.org;


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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 18:55:53
  Author: arojas
Revision: 191591

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

Added:
  electricsheep/repos/community-staging-i686/
  electricsheep/repos/community-staging-i686/PKGBUILD
(from rev 191590, electricsheep/trunk/PKGBUILD)
  electricsheep/repos/community-staging-i686/electricsheep-ffmpeg30.patch
(from rev 191590, electricsheep/trunk/electricsheep-ffmpeg30.patch)
  electricsheep/repos/community-staging-i686/electricsheep-no-wxgtk.patch
(from rev 191590, electricsheep/trunk/electricsheep-no-wxgtk.patch)
  electricsheep/repos/community-staging-x86_64/
  electricsheep/repos/community-staging-x86_64/PKGBUILD
(from rev 191590, electricsheep/trunk/PKGBUILD)
  electricsheep/repos/community-staging-x86_64/electricsheep-ffmpeg30.patch
(from rev 191590, electricsheep/trunk/electricsheep-ffmpeg30.patch)
  electricsheep/repos/community-staging-x86_64/electricsheep-no-wxgtk.patch
(from rev 191590, electricsheep/trunk/electricsheep-no-wxgtk.patch)

---+
 community-staging-i686/PKGBUILD   |   70 
 community-staging-i686/electricsheep-ffmpeg30.patch   |   89 
 community-staging-i686/electricsheep-no-wxgtk.patch   |   77 +
 community-staging-x86_64/PKGBUILD |   70 
 community-staging-x86_64/electricsheep-ffmpeg30.patch |   89 
 community-staging-x86_64/electricsheep-no-wxgtk.patch |   77 +
 6 files changed, 472 insertions(+)

Copied: electricsheep/repos/community-staging-i686/PKGBUILD (from rev 191590, 
electricsheep/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 18:55:53 UTC (rev 191591)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=electricsheep
+pkgver=2.7b33
+pkgrel=29
+pkgdesc="A screensaver that realize the collective dream of sleeping computers 
from all over the internet"
+arch=('i686' 'x86_64')
+url="http://community.electricsheep.org/;
+license=('GPL')
+depends=('curl' 'flam3' 'ffmpeg' 'lua51' 'libgtop' 'boost-libs' 'freeglut' 
'glee')
+makedepends=('boost' 'mesa' 'glu' 'tinyxml')
+optdepends=('xscreensaver: to use electricsheep with xscreensaver')
+options=('!emptydirs')
+source=(https://sources.archlinux.org/other/community/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig}
+electricsheep-no-wxgtk.patch
+electricsheep-ffmpeg30.patch)
+sha1sums=('d86607d97accad8519df2a21d67253abe45f5fdd'
+  'SKIP'
+  'b186318902dd0abac6e72a81fa374434d7244ac3'
+  'c28e8a1ad5738c56615bdb431d80eff7f9e2a554')
+validpgpkeys=('5357F3B111688D88C1D88119FCF2CB179205AC90')
+
+# source PKGBUILD && mksource
+mksource() {
+  [[ -x /usr/bin/svn ]] || (echo "svn not found. Install subversion." && 
return 1)
+  _svnver=r125
+  _svntrunk="http://electricsheep.googlecode.com/svn/trunk/client_generic;
+  _svnmod="${pkgname}-${pkgver}"
+  mkdir ${pkgname}-${pkgver}
+  pushd ${pkgname}-${pkgver}
+  svn co ${_svntrunk} --config-dir ./ -r ${_svnver} ${_svnmod}
+  find . -depth -type d -name .svn -exec rm -rf {} \;
+  (cd ${pkgname}-${pkgver} ; rm -r boost Build_guides curlTest ffmpeg 
InstallerMSVC \
+Launcher libpng libxml lua5.1 MacBuild RuntimeMSVC wxConfig)
+  tar -cJf ../${pkgname}-${pkgver}.tar.xz ${pkgname}-${pkgver}/*
+  popd
+  rm -r ${pkgname}-${pkgver}
+  gpg --detach-sign --use-agent -u ${GPGKEY} ${pkgname}-${pkgver}.tar.xz
+}
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+# Do not build broken electricsheep-preferences
+  patch -p0 -i "${srcdir}/electricsheep-no-wxgtk.patch"
+  patch -p1 -i "${srcdir}/electricsheep-ffmpeg30.patch"
+
+  sed -i -e 's/av_close_input_file( m_pFormatContext )/avformat_close_input( 
\_pFormatContext )/' ContentDecoder/ContentDecoder.cpp
+  sed -i -e 's/AM_PROG_CC_STDC/AC_PROG_CC/' configure.ac
+  sed -i '12 i\
+#include ' Common/Singleton.h
+  mkdir m4
+
+  sed -e 's|\[lua5.1\]|\[lua51\]|g' -i configure.ac
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./autogen.sh
+  CPPFLAGS+=" -I/usr/include/lua5.1" ./configure --prefix=/usr
+  sed -i 's|-I /usr/include/libavutil||' MSVC/SettingsGUI/Makefile
+  make CXXFLAGS+="-DUSE_NEW_FFMPEG_API=1" GLEE_LIBS="-lGLee"
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 menu-entries/ElectricSheep.desktop.kde 
"${pkgdir}/usr/share/kde4/services/ScreenSavers/electricsheep.desktop"
+  install -D -m644 Runtime/logo.png 
"${pkgdir}/usr/share/icons/electricsheep.png"
+}

Copied: electricsheep/repos/community-staging-i686/electricsheep-ffmpeg30.patch 
(from rev 191590, electricsheep/trunk/electricsheep-ffmpeg30.patch)
===
--- 

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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 18:55:29
  Author: arojas
Revision: 191590

Boost 1.62 rebuild

Modified:
  electricsheep/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 18:50:35 UTC (rev 191589)
+++ PKGBUILD2016-10-07 18:55:29 UTC (rev 191590)
@@ -3,7 +3,7 @@
 
 pkgname=electricsheep
 pkgver=2.7b33
-pkgrel=28
+pkgrel=29
 pkgdesc="A screensaver that realize the collective dream of sleeping computers 
from all over the internet"
 arch=('i686' 'x86_64')
 url="http://community.electricsheep.org/;


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

2016-10-07 Thread Dave Reisner
Date: Friday, October 7, 2016 @ 18:50:53
  Author: dreisner
Revision: 277887

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

Added:
  systemd/repos/testing-i686/
  systemd/repos/testing-i686/PKGBUILD
(from rev 277886, systemd/trunk/PKGBUILD)
  systemd/repos/testing-i686/arch.conf
(from rev 277886, systemd/trunk/arch.conf)
  systemd/repos/testing-i686/initcpio-hook-udev
(from rev 277886, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-i686/initcpio-install-systemd
(from rev 277886, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-i686/initcpio-install-udev
(from rev 277886, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-i686/loader.conf
(from rev 277886, systemd/trunk/loader.conf)
  systemd/repos/testing-i686/splash-arch.bmp
(from rev 277886, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-i686/systemd.install
(from rev 277886, systemd/trunk/systemd.install)
  systemd/repos/testing-i686/udev-hwdb.hook
(from rev 277886, systemd/trunk/udev-hwdb.hook)
  systemd/repos/testing-x86_64/
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 277886, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 277886, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 277886, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 277886, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 277886, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 277886, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 277886, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd.install
(from rev 277886, systemd/trunk/systemd.install)
  systemd/repos/testing-x86_64/udev-hwdb.hook
(from rev 277886, systemd/trunk/udev-hwdb.hook)

-+
 testing-i686/PKGBUILD   |  187 
 testing-i686/arch.conf  |7 +
 testing-i686/initcpio-hook-udev |   22 +++
 testing-i686/initcpio-install-systemd   |  195 ++
 testing-i686/initcpio-install-udev  |   28 
 testing-i686/loader.conf|1 
 testing-i686/systemd.install|   80 
 testing-i686/udev-hwdb.hook |   11 +
 testing-x86_64/PKGBUILD |  187 
 testing-x86_64/arch.conf|7 +
 testing-x86_64/initcpio-hook-udev   |   22 +++
 testing-x86_64/initcpio-install-systemd |  195 ++
 testing-x86_64/initcpio-install-udev|   28 
 testing-x86_64/loader.conf  |1 
 testing-x86_64/systemd.install  |   80 
 testing-x86_64/udev-hwdb.hook   |   11 +
 16 files changed, 1062 insertions(+)

Copied: systemd/repos/testing-i686/PKGBUILD (from rev 277886, 
systemd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-10-07 18:50:53 UTC (rev 277887)
@@ -0,0 +1,187 @@
+# Maintainer: Dave Reisner 
+# Maintainer: Tom Gundersen 
+
+pkgbase=systemd
+pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
+pkgver=231
+pkgrel=4
+arch=('i686' 'x86_64')
+url="http://www.freedesktop.org/wiki/Software/systemd;
+makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
+ 'intltool' 'iptables' 'kmod' 'libcap' 'libidn' 'libgcrypt'
+ 'libmicrohttpd' 'libxslt' 'util-linux' 'linux-api-headers'
+ 'python-lxml' 'quota-tools' 'shadow' 'gnu-efi-libs' 'git')
+options=('strip' 'debug')
+source=("git://github.com/systemd/systemd.git#tag=v$pkgver"
+'initcpio-hook-udev'
+'initcpio-install-systemd'
+'initcpio-install-udev'
+'arch.conf'
+'loader.conf'
+'splash-arch.bmp'
+'udev-hwdb.hook')
+md5sums=('SKIP'
+ '90ea67a7bb237502094914622a39e281'
+ '55ea7d81c02d090b65c42a88f1a5a21a'
+ '1b3aa3a0551b08af9305d33f85b5c2fc'
+ '20ead378f5d6df4b2a3e670301510a7d'
+ 'ddaef54f68f6c86c6c07835fc668f62a'
+ '1e2f9a8b0fa32022bf0a8f39123e5f4e'
+ 'a475a5ed8f03fb0f6b58b4684998d05c')
+
+_backports=(
+  '531ac2b2349da02acc9c382849758e07eb92b020'  # If the notification message 
length is 0, ignore the message
+  '8523bf7dd514a3a2c6114b7b8fb8f308b4f09fc4'  # pid1: process zero-length 
notification messages again
+  '9987750e7a4c62e0eb8473603150596ba7c3a015'  # pid1: don't return any error 
in manager_dispatch_notify_fd()
+  'bd64d82c1c0e3fe2a5f9b3dd9132d62834f50b2d'  # Revert "pid1: reconnect to the 
console before being re-executed"
+  

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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 18:50:35
  Author: arojas
Revision: 191589

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

Added:
  eclib/repos/community-staging-i686/
  eclib/repos/community-staging-i686/PKGBUILD
(from rev 191588, eclib/trunk/PKGBUILD)
  eclib/repos/community-staging-x86_64/
  eclib/repos/community-staging-x86_64/PKGBUILD
(from rev 191588, eclib/trunk/PKGBUILD)
Deleted:
  eclib/repos/community-staging-i686/PKGBUILD
  eclib/repos/community-staging-x86_64/PKGBUILD

---+
 /PKGBUILD |   54 
 community-staging-i686/PKGBUILD   |   27 --
 community-staging-x86_64/PKGBUILD |   27 --
 3 files changed, 54 insertions(+), 54 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2016-09-04 09:39:54 UTC (rev 188515)
+++ community-staging-i686/PKGBUILD 2016-10-07 18:50:35 UTC (rev 191589)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=eclib
-pkgver=20160720
-pkgrel=3
-pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
-arch=(i686 x86_64)
-url="https://github.com/JohnCremona/eclib/;
-license=(GPL)
-depends=(flint pari-sage boost-libs)
-makedepends=(boost)
-source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz;)
-md5sums=('6ba0a5b73184b2f36b7d52bc2d8a0338')
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh
-  ./configure --prefix=/usr --with-flint=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make install DESTDIR="$pkgdir"
-}
-

Copied: eclib/repos/community-staging-i686/PKGBUILD (from rev 191588, 
eclib/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 18:50:35 UTC (rev 191589)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=eclib
+pkgver=20160720
+pkgrel=4
+pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
+arch=(i686 x86_64)
+url="https://github.com/JohnCremona/eclib/;
+license=(GPL)
+depends=(flint pari-sage boost-libs)
+makedepends=(boost)
+source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz;)
+md5sums=('6ba0a5b73184b2f36b7d52bc2d8a0338')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --with-flint=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}
+

Deleted: community-staging-x86_64/PKGBUILD
===
--- community-staging-x86_64/PKGBUILD   2016-09-04 09:39:54 UTC (rev 188515)
+++ community-staging-x86_64/PKGBUILD   2016-10-07 18:50:35 UTC (rev 191589)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=eclib
-pkgver=20160720
-pkgrel=3
-pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
-arch=(i686 x86_64)
-url="https://github.com/JohnCremona/eclib/;
-license=(GPL)
-depends=(flint pari-sage boost-libs)
-makedepends=(boost)
-source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz;)
-md5sums=('6ba0a5b73184b2f36b7d52bc2d8a0338')
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh
-  ./configure --prefix=/usr --with-flint=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make install DESTDIR="$pkgdir"
-}
-

Copied: eclib/repos/community-staging-x86_64/PKGBUILD (from rev 191588, 
eclib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-07 18:50:35 UTC (rev 191589)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=eclib
+pkgver=20160720
+pkgrel=4
+pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
+arch=(i686 x86_64)
+url="https://github.com/JohnCremona/eclib/;
+license=(GPL)
+depends=(flint pari-sage boost-libs)
+makedepends=(boost)
+source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz;)
+md5sums=('6ba0a5b73184b2f36b7d52bc2d8a0338')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --with-flint=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}
+


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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 18:48:28
  Author: arojas
Revision: 191588

Boost 1.62 rebuild

Modified:
  eclib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 18:18:41 UTC (rev 191587)
+++ PKGBUILD2016-10-07 18:48:28 UTC (rev 191588)
@@ -3,7 +3,7 @@
 
 pkgname=eclib
 pkgver=20160720
-pkgrel=3
+pkgrel=4
 pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
 arch=(i686 x86_64)
 url="https://github.com/JohnCremona/eclib/;


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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 18:43:26
  Author: arojas
Revision: 277886

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

Added:
  kig/repos/staging-i686/
  kig/repos/staging-i686/PKGBUILD
(from rev 277885, kig/trunk/PKGBUILD)
  kig/repos/staging-x86_64/
  kig/repos/staging-x86_64/PKGBUILD
(from rev 277885, kig/trunk/PKGBUILD)

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

Copied: kig/repos/staging-i686/PKGBUILD (from rev 277885, kig/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-07 18:43:26 UTC (rev 277886)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kig
+pkgver=16.08.1
+pkgrel=3
+pkgdesc="Interactive Geometry"
+url="http://kde.org/applications/education/kig/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('ktexteditor' 'boost-libs' 'python2' 'hicolor-icon-theme') # 
kemoticons, kitemmodels are only required for tests
+makedepends=('extra-cmake-modules' 'kdoctools' 'boost' 'qt5-xmlpatterns')
+optdepends=('qt5-xmlpatterns: support for GeoGebra files')
+replaces=('kdeedu-kig')
+conflicts=('kdeedu-kig')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kig-${pkgver}.tar.xz;)
+sha1sums=('efd0d2f4e1b056698aefc97eb9924f194b663058')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+  # Use the python2 executable
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
"${pkgdir}"/usr/bin/pykig.py
+}

Copied: kig/repos/staging-x86_64/PKGBUILD (from rev 277885, kig/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-10-07 18:43:26 UTC (rev 277886)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kig
+pkgver=16.08.1
+pkgrel=3
+pkgdesc="Interactive Geometry"
+url="http://kde.org/applications/education/kig/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('ktexteditor' 'boost-libs' 'python2' 'hicolor-icon-theme') # 
kemoticons, kitemmodels are only required for tests
+makedepends=('extra-cmake-modules' 'kdoctools' 'boost' 'qt5-xmlpatterns')
+optdepends=('qt5-xmlpatterns: support for GeoGebra files')
+replaces=('kdeedu-kig')
+conflicts=('kdeedu-kig')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kig-${pkgver}.tar.xz;)
+sha1sums=('efd0d2f4e1b056698aefc97eb9924f194b663058')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+  # Use the python2 executable
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
"${pkgdir}"/usr/bin/pykig.py
+}


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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 18:42:57
  Author: arojas
Revision: 277885

Boost 1.62 rebuild

Modified:
  kig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 18:40:07 UTC (rev 277884)
+++ PKGBUILD2016-10-07 18:42:57 UTC (rev 277885)
@@ -4,7 +4,7 @@
 
 pkgname=kig
 pkgver=16.08.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Interactive Geometry"
 url="http://kde.org/applications/education/kig/;
 arch=('i686' 'x86_64')


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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 18:40:07
  Author: arojas
Revision: 277884

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

Added:
  krita/repos/staging-i686/
  krita/repos/staging-i686/PKGBUILD
(from rev 277883, krita/trunk/PKGBUILD)
  krita/repos/staging-x86_64/
  krita/repos/staging-x86_64/PKGBUILD
(from rev 277883, krita/trunk/PKGBUILD)

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

Copied: krita/repos/staging-i686/PKGBUILD (from rev 277883, 
krita/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-07 18:40:07 UTC (rev 277884)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 262594 2016-03-26 20:49:29Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgname=krita
+pkgver=3.0.1.1
+pkgrel=2
+pkgdesc="Edit and paint images"
+arch=(i686 x86_64)
+url="http://krita.org;
+license=(LGPL)
+depends=(kio kitemmodels gsl libraw opencolorio exiv2 openexr fftw curl 
boost-libs hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python boost eigen vc poppler-qt5)
+optdepends=('poppler-qt5: PDF filter')
+conflicts=(calligra-krita krita-l10n)
+replaces=(calligra-krita krita-l10n)
+source=("http://download.kde.org/stable/krita/$pkgver/krita-$pkgver.tar.gz;)
+md5sums=('ea0c41c44269b18dfce17130d9341654')
+validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD') # Boudewijn Rempt 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DPACKAGERS_BUILD=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+# Fix conflicts with breeze
+  rm "$pkgdir"/usr/share/color-schemes/Breeze*
+}

Copied: krita/repos/staging-x86_64/PKGBUILD (from rev 277883, 
krita/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-10-07 18:40:07 UTC (rev 277884)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 262594 2016-03-26 20:49:29Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgname=krita
+pkgver=3.0.1.1
+pkgrel=2
+pkgdesc="Edit and paint images"
+arch=(i686 x86_64)
+url="http://krita.org;
+license=(LGPL)
+depends=(kio kitemmodels gsl libraw opencolorio exiv2 openexr fftw curl 
boost-libs hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python boost eigen vc poppler-qt5)
+optdepends=('poppler-qt5: PDF filter')
+conflicts=(calligra-krita krita-l10n)
+replaces=(calligra-krita krita-l10n)
+source=("http://download.kde.org/stable/krita/$pkgver/krita-$pkgver.tar.gz;)
+md5sums=('ea0c41c44269b18dfce17130d9341654')
+validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD') # Boudewijn Rempt 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DPACKAGERS_BUILD=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+# Fix conflicts with breeze
+  rm "$pkgdir"/usr/share/color-schemes/Breeze*
+}


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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 18:39:26
  Author: arojas
Revision: 277883

Boost 1.62 rebuild

Modified:
  krita/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 17:48:26 UTC (rev 277882)
+++ PKGBUILD2016-10-07 18:39:26 UTC (rev 277883)
@@ -3,7 +3,7 @@
 
 pkgname=krita
 pkgver=3.0.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Edit and paint images"
 arch=(i686 x86_64)
 url="http://krita.org;


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

2016-10-07 Thread Anatol Pomozov
Date: Friday, October 7, 2016 @ 18:18:41
  Author: anatolik
Revision: 191587

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

Added:
  crystal/repos/community-i686/PKGBUILD
(from rev 191586, crystal/trunk/PKGBUILD)
  crystal/repos/community-x86_64/PKGBUILD
(from rev 191586, crystal/trunk/PKGBUILD)
Deleted:
  crystal/repos/community-i686/PKGBUILD
  crystal/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-07 18:17:42 UTC (rev 191586)
+++ community-i686/PKGBUILD 2016-10-07 18:18:41 UTC (rev 191587)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov 
-# Contributor: Jonne Haß 
-
-pkgname=crystal
-pkgver=0.19.3
-pkgrel=1
-_binary_rel=1
-pkgdesc='The Crystal Programming Language'
-arch=(i686 x86_64)
-url='http://crystal-lang.org'
-license=(Apache)
-depends=(gc libatomic_ops pcre libevent)
-makedepends=(libxml2 llvm)
-checkdepends=(libyaml libxml2 gmp inetutils git)
-optdepends=('shards: crystal language package manager'
-'libyaml: For YAML support'
-'gmp: For BigInt support'
-'libxml2: For XML support')
-source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
-source_i686+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-i686.tar.gz)
-source_x86_64+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-x86_64.tar.gz)
-sha256sums=('72954087131bd648735bc397cfd585204087a4b8ab7f927f0a054741381ea01f')
-sha256sums_i686=('583796b46cf6cf569d9292c7b781818a046fea4ad59346d397ad728dc0fad06d')
-sha256sums_x86_64=('e4284e4796e543f90e8e7bef8fb94455c5d98d1e29ed8f5519d13f07a962d335')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's|Please install shards: https://github.com/ysbaddaden/shards|Please 
install shards: pacman -S shards|' src/compiler/crystal/command.cr
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  make release=1 \
-   PATH="$srcdir/$pkgname-$pkgver-$_binary_rel/bin:$PATH" \
-   CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
-   CRYSTAL_CONFIG_VERSION="$pkgver" \
-   CRYSTAL_CONFIG_PATH="libs:/usr/lib/crystal" \
-   CRYSTAL_CACHE_DIR="/tmp/crystal"
-  make doc CRYSTAL_CACHE_DIR="/tmp/crystal"
-}
-
-check() {
-  cd $pkgname-$pkgver
-
-  make all_spec CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
-CRYSTAL_CONFIG_VERSION="$pkgver" \
-CRYSTAL_CACHE_DIR="/tmp/crystal"
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  # /usr/bin/crystalcompiled executable
-  # /usr/lib/crystal/   compiler src & core libs
-  # /usr/share/doc/crystal/api  api docs
-  # /usr/share/doc/crystal/samples/ samples
-
-  install -Dm755 ".build/crystal" "$pkgdir/usr/bin/crystal"
-
-  install -dm755 "$pkgdir/usr/lib"
-  cp -r src "$pkgdir/usr/lib/crystal"
-
-  install -dm755 "$pkgdir/usr/share/doc/crystal"
-  cp -r doc "$pkgdir/usr/share/doc/crystal/api"
-  cp -r samples "$pkgdir/usr/share/doc/crystal/"
-
-  install -Dm644 etc/completion.bash 
"$pkgdir/usr/share/bash-completion/completions/crystal"
-  install -Dm644 etc/completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_crystal"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: crystal/repos/community-i686/PKGBUILD (from rev 191586, 
crystal/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-07 18:18:41 UTC (rev 191587)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Jonne Haß 
+
+pkgname=crystal
+pkgver=0.19.4
+pkgrel=1
+_binary_rel=1
+pkgdesc='The Crystal Programming Language'
+arch=(i686 x86_64)
+url='http://crystal-lang.org'
+license=(Apache)
+depends=(gc libatomic_ops pcre libevent)
+makedepends=(libxml2 llvm)
+checkdepends=(libyaml libxml2 gmp inetutils git)
+optdepends=('shards: crystal language package manager'
+'libyaml: For YAML support'
+'gmp: For BigInt support'
+'libxml2: For XML support')
+source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
+source_i686+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-i686.tar.gz)
+source_x86_64+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-x86_64.tar.gz)

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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 18:17:27
  Author: bpiotrowski
Revision: 191584

upgpkg: synfig 1.0.2-6

rebuild against boost 1.62.0

Modified:
  synfig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 18:17:25 UTC (rev 191583)
+++ PKGBUILD2016-10-07 18:17:27 UTC (rev 191584)
@@ -4,7 +4,7 @@
 
 pkgname=synfig
 pkgver=1.0.2
-pkgrel=5
+pkgrel=6
 pkgdesc="Professional vector animation program (CLI renderer only)"
 arch=(i686 x86_64)
 url="http://synfig.org;


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

2016-10-07 Thread Anatol Pomozov
Date: Friday, October 7, 2016 @ 18:17:42
  Author: anatolik
Revision: 191586

upgpkg: crystal 0.19.4-1

Modified:
  crystal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 18:17:33 UTC (rev 191585)
+++ PKGBUILD2016-10-07 18:17:42 UTC (rev 191586)
@@ -3,7 +3,7 @@
 # Contributor: Jonne Haß 
 
 pkgname=crystal
-pkgver=0.19.3
+pkgver=0.19.4
 pkgrel=1
 _binary_rel=1
 pkgdesc='The Crystal Programming Language'
@@ -20,9 +20,9 @@
 
source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
 
source_i686+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-i686.tar.gz)
 
source_x86_64+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-x86_64.tar.gz)
-sha256sums=('72954087131bd648735bc397cfd585204087a4b8ab7f927f0a054741381ea01f')
-sha256sums_i686=('583796b46cf6cf569d9292c7b781818a046fea4ad59346d397ad728dc0fad06d')
-sha256sums_x86_64=('e4284e4796e543f90e8e7bef8fb94455c5d98d1e29ed8f5519d13f07a962d335')
+sha256sums=('e239afa449744e0381823531f6af66407ba1f4b78767bd67a9bb09d9fcc6b9e4')
+sha256sums_i686=('ed03a81e614384f578e22a30ade9bed0149502ef28b874770994dcdd065ec10c')
+sha256sums_x86_64=('f1e06bd5762abfb6b079252fa7062438f595df4e7d21593ecda0e775e2220e02')
 
 prepare() {
   cd $pkgname-$pkgver


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 18:17:33
  Author: bpiotrowski
Revision: 191585

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

Added:
  synfig/repos/community-staging-i686/
  synfig/repos/community-staging-i686/PKGBUILD
(from rev 191584, synfig/trunk/PKGBUILD)
  synfig/repos/community-staging-i686/build-fix.patch
(from rev 191584, synfig/trunk/build-fix.patch)
  synfig/repos/community-staging-i686/ffmpeg-0.8.patch
(from rev 191584, synfig/trunk/ffmpeg-0.8.patch)
  synfig/repos/community-staging-x86_64/
  synfig/repos/community-staging-x86_64/PKGBUILD
(from rev 191584, synfig/trunk/PKGBUILD)
  synfig/repos/community-staging-x86_64/build-fix.patch
(from rev 191584, synfig/trunk/build-fix.patch)
  synfig/repos/community-staging-x86_64/ffmpeg-0.8.patch
(from rev 191584, synfig/trunk/ffmpeg-0.8.patch)

---+
 community-staging-i686/PKGBUILD   |   47 +
 community-staging-i686/build-fix.patch|   56 ++
 community-staging-i686/ffmpeg-0.8.patch   |   60 
 community-staging-x86_64/PKGBUILD |   47 +
 community-staging-x86_64/build-fix.patch  |   56 ++
 community-staging-x86_64/ffmpeg-0.8.patch |   60 
 6 files changed, 326 insertions(+)

Copied: synfig/repos/community-staging-i686/PKGBUILD (from rev 191584, 
synfig/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 18:17:33 UTC (rev 191585)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Franco Iacomella 
+
+pkgname=synfig
+pkgver=1.0.2
+pkgrel=6
+pkgdesc="Professional vector animation program (CLI renderer only)"
+arch=(i686 x86_64)
+url="http://synfig.org;
+license=('GPL2')
+depends=('libxml++' 'libsigc++2.0' 'etl' 'imagemagick' 'ffmpeg-compat' 
'fontconfig' 'libpng'
+'libtiff' 'libdv' 'libmng' 'cairo' 'pango' 'boost-libs' 'mlt')
+makedepends=('boost')
+optdepends=('openexr' 'libsigc++')
+conflicts=('synfig-core')
+replaces=('synfig-core')
+#source=(http://download.tuxfamily.org/synfig/releases/$pkgver/synfig-$pkgver.tar.gz
+source=(http://downloads.sourceforge.net/project/synfig/releases/$pkgver/source/synfig-$pkgver.tar.gz
+   build-fix.patch
+   ffmpeg-0.8.patch)
+md5sums=('a7b19f9eb22f2bd82067ebc1401b8808'
+ '16b852a3ff44765d8efd2ce597f5ca0e'
+ 'ebf41046097cfd778dee9a9854561dae')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i "$srcdir/build-fix.patch"
+  patch -Np1 -i "$srcdir/ffmpeg-0.8.patch"
+  sed -i 's|.*set_remove_alpha.*||g' src/modules/mod_libavcodec/trgt_av.cpp
+}
+
+build() {
+  cd $pkgname-$pkgver
+  export PKG_CONFIG_PATH=/usr/lib/ffmpeg-compat/pkgconfig:$PKG_CONFIG_PATH
+  LDFLAGS="$LDFLAGS -Wl,-rpath -Wl,/usr/lib/ffmpeg-compat"
+  CFLAGS="$CFLAGS -D__STDC_CONSTANT_MACROS"
+  CXXFLAGS="$CXXFLAGS -D__STDC_CONSTANT_MACROS -std=gnu++11"
+  [ -f configure ] || { libtoolize --ltdl --copy --force && autoreconf 
--install --force; }
+  [ -f Makefile ] || ./configure --prefix=/usr --sysconfdir=/etc 
--with-libavcodec --with-libdv
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: synfig/repos/community-staging-i686/build-fix.patch (from rev 191584, 
synfig/trunk/build-fix.patch)
===
--- community-staging-i686/build-fix.patch  (rev 0)
+++ community-staging-i686/build-fix.patch  2016-10-07 18:17:33 UTC (rev 
191585)
@@ -0,0 +1,56 @@
+diff -wbBur synfig-1.0-RC5/src/modules/mod_libavcodec/mptr.cpp 
synfig-1.0-RC5.my/src/modules/mod_libavcodec/mptr.cpp
+--- synfig-1.0-RC5/src/modules/mod_libavcodec/mptr.cpp 2015-03-28 
13:15:00.0 +0300
 synfig-1.0-RC5.my/src/modules/mod_libavcodec/mptr.cpp  2015-04-28 
16:56:11.568749053 +0300
+@@ -56,8 +56,8 @@
+ /* === M E T H O D S === 
*/
+ 
+ 
+-Importer_LibAVCodec::Importer_LibAVCodec(const char *file):
+-  filename(file)
++Importer_LibAVCodec::Importer_LibAVCodec(const synfig::FileSystem::Identifier 
):
++  Importer(identifier)
+ {
+ }
+ 
+diff -wbBur synfig-1.0-RC5/src/modules/mod_libavcodec/mptr.h 
synfig-1.0-RC5.my/src/modules/mod_libavcodec/mptr.h
+--- synfig-1.0-RC5/src/modules/mod_libavcodec/mptr.h   2015-03-28 
13:15:00.0 +0300
 synfig-1.0-RC5.my/src/modules/mod_libavcodec/mptr.h2015-04-28 
16:55:18.699192946 +0300
+@@ -46,7 +46,7 @@
+   synfig::String filename;
+ 
+ public:
+-  Importer_LibAVCodec(const char *filename);
++  Importer_LibAVCodec(const synfig::FileSystem::Identifier );
+   ~Importer_LibAVCodec();
+ 
+   virtual bool 

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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 18:17:21
  Author: bpiotrowski
Revision: 191582

upgpkg: springlobby 0.255-2

rebuild against boost 1.62.0

Modified:
  springlobby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 18:17:19 UTC (rev 191581)
+++ PKGBUILD2016-10-07 18:17:21 UTC (rev 191582)
@@ -4,7 +4,7 @@
 
 pkgname=springlobby
 pkgver=0.255
-pkgrel=1
+pkgrel=2
 pkgdesc="A free cross-platform lobby client for the Spring RTS project"
 arch=('i686' 'x86_64')
 url="http://springlobby.info/;


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 18:17:25
  Author: bpiotrowski
Revision: 191583

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

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

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

Copied: springlobby/repos/community-staging-i686/PKGBUILD (from rev 191582, 
springlobby/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 18:17:25 UTC (rev 191583)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: DuGi 
+
+pkgname=springlobby
+pkgver=0.255
+pkgrel=2
+pkgdesc="A free cross-platform lobby client for the Spring RTS project"
+arch=('i686' 'x86_64')
+url="http://springlobby.info/;
+license=('GPL2')
+depends=('hicolor-icon-theme' 'wxgtk' 'curl' 'libtorrent-rasterbar' 
'boost-libs'
+ 'alure' 'libsm')
+optdepends=('sdl' 'sdl_sound' 'sdl_mixer') 
+makedepends=('boost' 'asio' 'cmake' 'git')
+source=(git://github.com/springlobby/springlobby.git#tag=${pkgver})
+md5sums=('SKIP')
+
+prepare() {
+  cd $srcdir/${pkgname}
+  git submodule update --init
+}
+
+build() {
+  cd $srcdir/${pkgname}
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make 
+}
+
+package() {
+  cd $srcdir/${pkgname}
+
+  make DESTDIR=$pkgdir install
+}
+
+# vim: sw=2:ts=2 et:

Copied: springlobby/repos/community-staging-x86_64/PKGBUILD (from rev 191582, 
springlobby/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-07 18:17:25 UTC (rev 191583)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: DuGi 
+
+pkgname=springlobby
+pkgver=0.255
+pkgrel=2
+pkgdesc="A free cross-platform lobby client for the Spring RTS project"
+arch=('i686' 'x86_64')
+url="http://springlobby.info/;
+license=('GPL2')
+depends=('hicolor-icon-theme' 'wxgtk' 'curl' 'libtorrent-rasterbar' 
'boost-libs'
+ 'alure' 'libsm')
+optdepends=('sdl' 'sdl_sound' 'sdl_mixer') 
+makedepends=('boost' 'asio' 'cmake' 'git')
+source=(git://github.com/springlobby/springlobby.git#tag=${pkgver})
+md5sums=('SKIP')
+
+prepare() {
+  cd $srcdir/${pkgname}
+  git submodule update --init
+}
+
+build() {
+  cd $srcdir/${pkgname}
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make 
+}
+
+package() {
+  cd $srcdir/${pkgname}
+
+  make DESTDIR=$pkgdir install
+}
+
+# vim: sw=2:ts=2 et:


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 18:17:19
  Author: bpiotrowski
Revision: 191581

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

Added:
  spring/repos/community-staging-i686/
  spring/repos/community-staging-i686/0001-fix-build-with-curl-7.50.0.patch
(from rev 191580, spring/trunk/0001-fix-build-with-curl-7.50.0.patch)
  spring/repos/community-staging-i686/PKGBUILD
(from rev 191580, spring/trunk/PKGBUILD)
  spring/repos/community-staging-x86_64/
  spring/repos/community-staging-x86_64/0001-fix-build-with-curl-7.50.0.patch
(from rev 191580, spring/trunk/0001-fix-build-with-curl-7.50.0.patch)
  spring/repos/community-staging-x86_64/PKGBUILD
(from rev 191580, spring/trunk/PKGBUILD)

+
 community-staging-i686/0001-fix-build-with-curl-7.50.0.patch   |   49 +
 community-staging-i686/PKGBUILD|   51 
++
 community-staging-x86_64/0001-fix-build-with-curl-7.50.0.patch |   49 +
 community-staging-x86_64/PKGBUILD  |   51 
++
 4 files changed, 200 insertions(+)

Copied: 
spring/repos/community-staging-i686/0001-fix-build-with-curl-7.50.0.patch (from 
rev 191580, spring/trunk/0001-fix-build-with-curl-7.50.0.patch)
===
--- community-staging-i686/0001-fix-build-with-curl-7.50.0.patch
(rev 0)
+++ community-staging-i686/0001-fix-build-with-curl-7.50.0.patch
2016-10-07 18:17:19 UTC (rev 191581)
@@ -0,0 +1,49 @@
+From 3a4f9f6fcd3934840f12ea2637e13745b681 Mon Sep 17 00:00:00 2001
+From: Johan Rehnberg 
+Date: Wed, 27 Jul 2016 11:13:18 +0200
+Subject: [PATCH] fix build with curl 7.50.0
+
+See the following commits for some details:
+https://github.com/curl/curl/commit/9adf3c4
+https://github.com/curl/curl/commit/434f8d0
+---
+ src/Downloader/Http/HttpDownloader.cpp | 1 -
+ src/Downloader/Http/HttpDownloader.h   | 3 +--
+ 2 files changed, 1 insertion(+), 3 deletions(-)
+
+diff --git a/src/Downloader/Http/HttpDownloader.cpp 
b/src/Downloader/Http/HttpDownloader.cpp
+index 6e13c12..dd33bba 100644
+--- a/src/Downloader/Http/HttpDownloader.cpp
 b/src/Downloader/Http/HttpDownloader.cpp
+@@ -22,7 +22,6 @@
+ #endif
+ 
+ #include 
+-#include 
+ #include 
+ #include 
+ #include 
+diff --git a/src/Downloader/Http/HttpDownloader.h 
b/src/Downloader/Http/HttpDownloader.h
+index 77bbcee..47e0e79 100644
+--- a/src/Downloader/Http/HttpDownloader.h
 b/src/Downloader/Http/HttpDownloader.h
+@@ -5,6 +5,7 @@
+ 
+ #include "../IDownloader.h"
+ 
++#include 
+ #include 
+ #include 
+ 
+@@ -13,8 +14,6 @@ class HashSHA1;
+ class CFile;
+ class FileData;
+ class DownloadData;
+-typedef void CURLM;
+-typedef void CURL;
+ 
+ class CHttpDownloader: public IDownloader
+ {
+-- 
+2.9.2
+

Copied: spring/repos/community-staging-i686/PKGBUILD (from rev 191580, 
spring/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 18:17:19 UTC (rev 191581)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=spring
+pkgver=103.0
+pkgrel=4
+pkgdesc='A free 3D real-time-strategy (RTS) game engine'
+arch=('i686' 'x86_64')
+url="http://springrts.com/;
+license=('GPL')
+depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl2' 
'libunwind'
+ 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils' 'libx11')
+makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'jdk8-openjdk' 
'mesa')
+optdepends=('python2: python-based bots'
+'java-runtime: java-based bots')
+source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${pkgver}_src.tar.lzma
+0001-fix-build-with-curl-7.50.0.patch)
+md5sums=('e71a3dc16262b06b159157ecd52bbbe5'
+ '8e4652c98c66016959fdd0dd1f6fc283')
+
+prepare() {
+  bsdtar -xf ${pkgname}_${pkgver}_src.tar.lzma
+
+  cd spring_${pkgver}/tools/pr-downloader
+
+  patch -Np1 -i ${srcdir}/0001-fix-build-with-curl-7.50.0.patch 
+}
+
+build() {
+  cd spring_${pkgver}
+
+  cmake. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DDATADIR=share/spring \
+-DJAVA_HOME=/usr/lib/jvm/java-8-openjdk \
+-DCMAKE_SKIP_RPATH=YES
+  make
+}
+
+package() {
+  cd spring_${pkgver}
+
+  make DESTDIR="$pkgdir" install
+
+  install -d "$pkgdir/etc/spring"
+  echo '$HOME/.spring' > "$pkgdir/etc/spring/datadir"
+}
+
+# vim sw=2:ts=2 et:

Copied: 
spring/repos/community-staging-x86_64/0001-fix-build-with-curl-7.50.0.patch 
(from rev 191580, spring/trunk/0001-fix-build-with-curl-7.50.0.patch)
===
--- community-staging-x86_64/0001-fix-build-with-curl-7.50.0.patch  

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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 18:17:14
  Author: bpiotrowski
Revision: 191580

upgpkg: spring 103.0-4

rebuild against boost 1.62.0

Modified:
  spring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 18:17:12 UTC (rev 191579)
+++ PKGBUILD2016-10-07 18:17:14 UTC (rev 191580)
@@ -5,7 +5,7 @@
 
 pkgname=spring
 pkgver=103.0
-pkgrel=3
+pkgrel=4
 pkgdesc='A free 3D real-time-strategy (RTS) game engine'
 arch=('i686' 'x86_64')
 url="http://springrts.com/;


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 18:17:12
  Author: bpiotrowski
Revision: 191579

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

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

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

Copied: snapper/repos/community-staging-i686/PKGBUILD (from rev 191578, 
snapper/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 18:17:12 UTC (rev 191579)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Tom Kuther 
+
+pkgname=snapper
+pkgver=0.3.3
+pkgrel=3
+pkgdesc="A tool for managing BTRFS and LVM snapshots. It can create, diff and 
restore snapshots and provides timelined auto-snapping."
+arch=('i686' 'x86_64')
+url="http://snapper.io;
+license=('GPL2')
+depends=('btrfs-progs' 'libxml2' 'dbus' 'boost-libs' 'acl')
+makedepends=('boost' 'lvm2' 'libxslt' 'docbook-xsl' 'pam' 'git' 'systemd')
+optdepends=('pam: pam_snapper')
+backup=('etc/conf.d/snapper')
+source=("ftp://ftp.suse.com/pub/projects/$pkgname/$pkgname-$pkgver.tar.bz2;)
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # cron names
+  sed -e 's...@suse.de-snapper@snapper@g' -i scripts/Makefile.am
+
+  # fix sysconf dir
+  sed -e 's@/etc/sysconfig@/etc/conf.d@g' -i scripts/*snapper*
+
+  # fix pam plugin install location
+  sed -i -e 's@shell echo /@shell echo /usr/@g' pam/Makefile.am
+
+  # all in /usr/bin
+  sed -i -e 's@/usr/sbin@/usr/bin@g' data/org.opensuse.Snapper.service
+
+# NTP drift file location
+  sed -i -e 's@/var/lib/ntp/drift/ntp.drift@/var/lib/ntp/ntp.drift@' 
data/base.txt
+
+  # man pages sysconfig location
+  sed -i -e 's@/etc/sysconfig@/etc/conf.d@g' doc/*
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  aclocal
+  libtoolize --force --automake --copy
+  autoheader
+  automake --add-missing --copy
+  autoconf
+  ./configure --prefix=/usr \
+  --sbindir=/usr/bin \
+  --with-conf=/etc/conf.d \
+  --disable-zypp \
+  --disable-silent-rules
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 data/sysconfig.snapper \
+"$pkgdir"/etc/conf.d/snapper
+}
+
+sha256sums=('e64f42417fffed65524ce125eb31b5dbdd802a519ef04dd88c9251ef2784fe10')

Copied: snapper/repos/community-staging-x86_64/PKGBUILD (from rev 191578, 
snapper/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-07 18:17:12 UTC (rev 191579)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Tom Kuther 
+
+pkgname=snapper
+pkgver=0.3.3
+pkgrel=3
+pkgdesc="A tool for managing BTRFS and LVM snapshots. It can create, diff and 
restore snapshots and provides timelined auto-snapping."
+arch=('i686' 'x86_64')
+url="http://snapper.io;
+license=('GPL2')
+depends=('btrfs-progs' 'libxml2' 'dbus' 'boost-libs' 'acl')
+makedepends=('boost' 'lvm2' 'libxslt' 'docbook-xsl' 'pam' 'git' 'systemd')
+optdepends=('pam: pam_snapper')
+backup=('etc/conf.d/snapper')
+source=("ftp://ftp.suse.com/pub/projects/$pkgname/$pkgname-$pkgver.tar.bz2;)
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # cron names
+  sed -e 's...@suse.de-snapper@snapper@g' -i scripts/Makefile.am
+
+  # fix sysconf dir
+  sed -e 's@/etc/sysconfig@/etc/conf.d@g' -i scripts/*snapper*
+
+  # fix pam plugin install location
+  sed -i -e 's@shell echo /@shell echo /usr/@g' pam/Makefile.am
+
+  # all in /usr/bin
+  sed -i -e 's@/usr/sbin@/usr/bin@g' data/org.opensuse.Snapper.service
+
+# NTP drift file location
+  sed -i -e 's@/var/lib/ntp/drift/ntp.drift@/var/lib/ntp/ntp.drift@' 
data/base.txt
+
+  # man pages sysconfig location
+  sed -i -e 's@/etc/sysconfig@/etc/conf.d@g' doc/*
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  aclocal
+  libtoolize --force --automake --copy
+  autoheader
+  automake --add-missing --copy
+  autoconf
+  ./configure --prefix=/usr \
+  --sbindir=/usr/bin \
+  --with-conf=/etc/conf.d \
+  --disable-zypp \
+  --disable-silent-rules
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 data/sysconfig.snapper \
+

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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 18:16:39
  Author: bpiotrowski
Revision: 191573

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

Added:
  cclive/repos/community-staging-i686/
  cclive/repos/community-staging-i686/PKGBUILD
(from rev 191572, cclive/trunk/PKGBUILD)
  cclive/repos/community-staging-i686/boost.m4
(from rev 191572, cclive/trunk/boost.m4)
  cclive/repos/community-staging-i686/iostream.patch
(from rev 191572, cclive/trunk/iostream.patch)
  cclive/repos/community-staging-x86_64/
  cclive/repos/community-staging-x86_64/PKGBUILD
(from rev 191572, cclive/trunk/PKGBUILD)
  cclive/repos/community-staging-x86_64/boost.m4
(from rev 191572, cclive/trunk/boost.m4)
  cclive/repos/community-staging-x86_64/iostream.patch
(from rev 191572, cclive/trunk/iostream.patch)

-+
 community-staging-i686/PKGBUILD |   45 
 community-staging-i686/boost.m4 | 1442 ++
 community-staging-i686/iostream.patch   |   37 
 community-staging-x86_64/PKGBUILD   |   45 
 community-staging-x86_64/boost.m4   | 1442 ++
 community-staging-x86_64/iostream.patch |   37 
 6 files changed, 3048 insertions(+)

Copied: cclive/repos/community-staging-i686/PKGBUILD (from rev 191572, 
cclive/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 18:16:39 UTC (rev 191573)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Lukas Fleischer 
+# Contributor: joyfulg...@archlinux.us
+# Contributor: nathan owe ndowens04 at gmail dot com
+
+pkgname=cclive
+pkgver=0.9.3
+pkgrel=12
+pkgdesc='Commandline downloader for popular video websites.'
+arch=('i686' 'x86_64')
+url='http://cclive.sourceforge.net/'
+license=('AGPL3')
+depends=('boost-libs' 'pcre' 'curl' 'libquvi' 'glibmm')
+makedepends=('boost')
+source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
+iostream.patch
+boost.m4) # https://github.com/tsuna/boost.m4
+md5sums=('c336f97e29327d92ead62765a0ef0b65'
+ 'd5a2f6aee7832683bcffe2ea6b1561ad'
+ 'c2ed0f4a18fa2da46706705cc6d37dbd')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Update boost.m4 to support GCC > 5.1
+  cp $srcdir/boost.m4 m4/
+  autoconf
+
+  patch -p1 -i $srcdir/iostream.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  # glibmm 2.46 uses C++11 features
+  CXXFLAGS+=' -std=c++11'
+
+  ./configure --prefix=/usr boost_cv_rpath_link_ldflag="-L/usr/lib"
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: cclive/repos/community-staging-i686/boost.m4 (from rev 191572, 
cclive/trunk/boost.m4)
===
--- community-staging-i686/boost.m4 (rev 0)
+++ community-staging-i686/boost.m4 2016-10-07 18:16:39 UTC (rev 191573)
@@ -0,0 +1,1442 @@
+# boost.m4: Locate Boost headers and libraries for autoconf-based projects.
+# Copyright (C) 2007-2011, 2014  Benoit Sigoure 
+#
+# 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, either version 3 of the License, or
+# (at your option) any later version.
+#
+# Additional permission under section 7 of the GNU General Public
+# License, version 3 ("GPLv3"):
+#
+# If you convey this file as part of a work that contains a
+# configuration script generated by Autoconf, you may do so under
+# terms of your choice.
+#
+# 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, see .
+
+m4_define([_BOOST_SERIAL], [m4_translit([
+# serial 24
+], [#
+], [])])
+
+# Original sources can be found at http://github.com/tsuna/boost.m4
+# You can fetch the latest version of the script by doing:
+#   wget http://github.com/tsuna/boost.m4/raw/master/build-aux/boost.m4
+
+# -- #
+# README #
+# -- #
+
+# This file provides several macros to use the various Boost libraries.
+# The first macro is BOOST_REQUIRE.  It will simply check if it's possible to
+# find the Boost headers of a given (optional) minimum version and it will
+# define BOOST_CPPFLAGS accordingly.  It will add an option --with-boost to
+# your configure so that users can specify non standard locations.
+# If the user's environment contains BOOST_ROOT and --with-boost was not
+# specified, --with-boost=$BOOST_ROOT is implicitly used.
+# For more README 

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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 18:16:42
  Author: bpiotrowski
Revision: 191574

upgpkg: python2-exiv2 0.3.2-12

rebuild against boost 1.62.0

Modified:
  python2-exiv2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 18:16:39 UTC (rev 191573)
+++ PKGBUILD2016-10-07 18:16:42 UTC (rev 191574)
@@ -6,7 +6,7 @@
 _pkgname=pyexiv2
 pkgname=python2-exiv2
 pkgver=0.3.2
-pkgrel=11
+pkgrel=12
 pkgdesc="pyexiv2 is a Python binding to exiv2, the C++ library for 
manipulation of EXIF, IPTC and XMP image metadata."
 url="http://tilloy.net/dev/pyexiv2;
 arch=('i686' 'x86_64')


[arch-commits] Commit in schroot/repos (18 files)

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 18:17:02
  Author: bpiotrowski
Revision: 191577

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

Added:
  schroot/repos/community-staging-i686/
  schroot/repos/community-staging-i686/PKGBUILD
(from rev 191576, schroot/trunk/PKGBUILD)
  schroot/repos/community-staging-i686/arch32-config
(from rev 191576, schroot/trunk/arch32-config)
  schroot/repos/community-staging-i686/arch32-copyfiles
(from rev 191576, schroot/trunk/arch32-copyfiles)
  schroot/repos/community-staging-i686/arch32-example
(from rev 191576, schroot/trunk/arch32-example)
  schroot/repos/community-staging-i686/arch32-mount
(from rev 191576, schroot/trunk/arch32-mount)
  schroot/repos/community-staging-i686/arch32-nssdatabases
(from rev 191576, schroot/trunk/arch32-nssdatabases)
  schroot/repos/community-staging-i686/fix-bash-completion.patch
(from rev 191576, schroot/trunk/fix-bash-completion.patch)
  schroot/repos/community-staging-i686/pam.d.schroot.patch
(from rev 191576, schroot/trunk/pam.d.schroot.patch)
  schroot/repos/community-staging-x86_64/
  schroot/repos/community-staging-x86_64/PKGBUILD
(from rev 191576, schroot/trunk/PKGBUILD)
  schroot/repos/community-staging-x86_64/arch32-config
(from rev 191576, schroot/trunk/arch32-config)
  schroot/repos/community-staging-x86_64/arch32-copyfiles
(from rev 191576, schroot/trunk/arch32-copyfiles)
  schroot/repos/community-staging-x86_64/arch32-example
(from rev 191576, schroot/trunk/arch32-example)
  schroot/repos/community-staging-x86_64/arch32-mount
(from rev 191576, schroot/trunk/arch32-mount)
  schroot/repos/community-staging-x86_64/arch32-nssdatabases
(from rev 191576, schroot/trunk/arch32-nssdatabases)
  schroot/repos/community-staging-x86_64/fix-bash-completion.patch
(from rev 191576, schroot/trunk/fix-bash-completion.patch)
  schroot/repos/community-staging-x86_64/pam.d.schroot.patch
(from rev 191576, schroot/trunk/pam.d.schroot.patch)

+
 community-staging-i686/PKGBUILD|   84 +++
 community-staging-i686/arch32-config   |   11 ++
 community-staging-i686/arch32-copyfiles|6 +
 community-staging-i686/arch32-example  |   10 ++
 community-staging-i686/arch32-mount|   12 ++
 community-staging-i686/arch32-nssdatabases |6 +
 community-staging-i686/fix-bash-completion.patch   |   11 ++
 community-staging-i686/pam.d.schroot.patch |   15 +++
 community-staging-x86_64/PKGBUILD  |   84 +++
 community-staging-x86_64/arch32-config |   11 ++
 community-staging-x86_64/arch32-copyfiles  |6 +
 community-staging-x86_64/arch32-example|   10 ++
 community-staging-x86_64/arch32-mount  |   12 ++
 community-staging-x86_64/arch32-nssdatabases   |6 +
 community-staging-x86_64/fix-bash-completion.patch |   11 ++
 community-staging-x86_64/pam.d.schroot.patch   |   15 +++
 16 files changed, 310 insertions(+)

Copied: schroot/repos/community-staging-i686/PKGBUILD (from rev 191576, 
schroot/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 18:17:02 UTC (rev 191577)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andreas Wagner 
+
+pkgname=schroot
+pkgver=1.6.10
+pkgrel=13
+pkgdesc="Allows users to execute shell commands under different root 
filesystems. (Successor to dchroot)."
+url="http://packages.qa.debian.org/s/schroot.html;
+license=('GPL3')
+depends=('pam' 'lockdev' 'boost-libs' 'e2fsprogs')
+makedepends=('boost' 'cppunit')
+optdepends=('btrfs-progs-unstable' 'lvm2')
+arch=('i686' 'x86_64')
+conflicts=('dchroot')
+replaces=('dchroot')
+provides=('schroot' 'sbuild' 'dchroot')
+backup=('etc/schroot/schroot.conf'
+   'etc/schroot/arch32/config'
+   'etc/schroot/arch32/copyfiles'
+   'etc/schroot/arch32/mount'
+   'etc/schroot/arch32/nssdatabases')
+source=("http://ftp.debian.org/debian/pool/main/s/$pkgname/${pkgname}_${pkgver}.orig.tar.xz;
+   
"http://http.debian.net/debian/pool/main/s/schroot/schroot_$pkgver-2.debian.tar.xz;
+   'arch32-example'
+   'arch32-config'
+   'arch32-copyfiles'
+   'arch32-mount'
+   'arch32-nssdatabases'
+   'pam.d.schroot.patch'
+   'fix-bash-completion.patch')
+md5sums=('f8ec667831487f4b12e094bc0dc9bbe3'
+ '44c9913952e62738e244dda412f3d819'
+ '54239847f89b9a4772910415bde6276a'
+ '5a3f7b839c7e0b8933748da7c5b6385b'
+ 'ddb2f09c02b24dab777110f9808472e1'
+ 'f0d5d5b5e34a860f6f90b5628c680f46'
+ 'af1da6edd8c8c0dafeeb2c2c4e0c840b'
+ 'a8d77cac806a0a9adef3f93cdbeb280a'
+ 

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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 18:16:49
  Author: bpiotrowski
Revision: 191576

upgpkg: schroot 1.6.10-13

rebuild against boost 1.62.0

Modified:
  schroot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 18:16:47 UTC (rev 191575)
+++ PKGBUILD2016-10-07 18:16:49 UTC (rev 191576)
@@ -4,7 +4,7 @@
 
 pkgname=schroot
 pkgver=1.6.10
-pkgrel=12
+pkgrel=13
 pkgdesc="Allows users to execute shell commands under different root 
filesystems. (Successor to dchroot)."
 url="http://packages.qa.debian.org/s/schroot.html;
 license=('GPL3')


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 18:17:04
  Author: bpiotrowski
Revision: 191578

upgpkg: snapper 0.3.3-3

rebuild against boost 1.62.0

Modified:
  snapper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 18:17:02 UTC (rev 191577)
+++ PKGBUILD2016-10-07 18:17:04 UTC (rev 191578)
@@ -4,7 +4,7 @@
 
 pkgname=snapper
 pkgver=0.3.3
-pkgrel=2
+pkgrel=3
 pkgdesc="A tool for managing BTRFS and LVM snapshots. It can create, diff and 
restore snapshots and provides timelined auto-snapping."
 arch=('i686' 'x86_64')
 url="http://snapper.io;


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 18:16:47
  Author: bpiotrowski
Revision: 191575

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

Added:
  python2-exiv2/repos/community-staging-i686/
  python2-exiv2/repos/community-staging-i686/PKGBUILD
(from rev 191574, python2-exiv2/trunk/PKGBUILD)
  python2-exiv2/repos/community-staging-x86_64/
  python2-exiv2/repos/community-staging-x86_64/PKGBUILD
(from rev 191574, python2-exiv2/trunk/PKGBUILD)

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

Copied: python2-exiv2/repos/community-staging-i686/PKGBUILD (from rev 191574, 
python2-exiv2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 18:16:47 UTC (rev 191575)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Archie 
+# Contributor: Byron Clark 
+
+_pkgname=pyexiv2
+pkgname=python2-exiv2
+pkgver=0.3.2
+pkgrel=12
+pkgdesc="pyexiv2 is a Python binding to exiv2, the C++ library for 
manipulation of EXIF, IPTC and XMP image metadata."
+url="http://tilloy.net/dev/pyexiv2;
+arch=('i686' 'x86_64')
+depends=('python2' 'boost-libs' 'exiv2')
+makedepends=('scons' 'boost')
+replaces=('pyexiv2')
+conflicts=('pyexiv2')
+provides=('pyexiv2')
+license=('GPL')
+source=("http://launchpad.net/${_pkgname}/0.3.x/${pkgver}/+download/${_pkgname}-${pkgver}.tar.bz2;)
+md5sums=('9c0377ca4cf7d5c994af0b5536ae')
+
+build() {
+cd "${srcdir}/${_pkgname}-${pkgver}"
+scons
+}
+
+package() {
+cd "${srcdir}/${_pkgname}-${pkgver}"
+scons DESTDIR="${pkgdir}" install
+}

Copied: python2-exiv2/repos/community-staging-x86_64/PKGBUILD (from rev 191574, 
python2-exiv2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-07 18:16:47 UTC (rev 191575)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Archie 
+# Contributor: Byron Clark 
+
+_pkgname=pyexiv2
+pkgname=python2-exiv2
+pkgver=0.3.2
+pkgrel=12
+pkgdesc="pyexiv2 is a Python binding to exiv2, the C++ library for 
manipulation of EXIF, IPTC and XMP image metadata."
+url="http://tilloy.net/dev/pyexiv2;
+arch=('i686' 'x86_64')
+depends=('python2' 'boost-libs' 'exiv2')
+makedepends=('scons' 'boost')
+replaces=('pyexiv2')
+conflicts=('pyexiv2')
+provides=('pyexiv2')
+license=('GPL')
+source=("http://launchpad.net/${_pkgname}/0.3.x/${pkgver}/+download/${_pkgname}-${pkgver}.tar.bz2;)
+md5sums=('9c0377ca4cf7d5c994af0b5536ae')
+
+build() {
+cd "${srcdir}/${_pkgname}-${pkgver}"
+scons
+}
+
+package() {
+cd "${srcdir}/${_pkgname}-${pkgver}"
+scons DESTDIR="${pkgdir}" install
+}


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 18:16:32
  Author: bpiotrowski
Revision: 191572

upgpkg: cclive 0.9.3-12

rebuild against boost 1.62.0

Modified:
  cclive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 17:00:19 UTC (rev 191571)
+++ PKGBUILD2016-10-07 18:16:32 UTC (rev 191572)
@@ -5,7 +5,7 @@
 
 pkgname=cclive
 pkgver=0.9.3
-pkgrel=11
+pkgrel=12
 pkgdesc='Commandline downloader for popular video websites.'
 arch=('i686' 'x86_64')
 url='http://cclive.sourceforge.net/'


[arch-commits] Commit in systemd/trunk (PKGBUILD systemd.install)

2016-10-07 Thread Dave Reisner
Date: Friday, October 7, 2016 @ 17:48:26
  Author: dreisner
Revision: 277882

upgpkg: systemd 231-4

- avoid reexec when upgrading from 231-1 (FS#51275)

Modified:
  systemd/trunk/PKGBUILD
  systemd/trunk/systemd.install

-+
 PKGBUILD|3 ++-
 systemd.install |   12 +---
 2 files changed, 7 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 17:45:28 UTC (rev 277881)
+++ PKGBUILD2016-10-07 17:48:26 UTC (rev 277882)
@@ -4,7 +4,7 @@
 pkgbase=systemd
 pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
 pkgver=231
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 url="http://www.freedesktop.org/wiki/Software/systemd;
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
@@ -34,6 +34,7 @@
   '8523bf7dd514a3a2c6114b7b8fb8f308b4f09fc4'  # pid1: process zero-length 
notification messages again
   '9987750e7a4c62e0eb8473603150596ba7c3a015'  # pid1: don't return any error 
in manager_dispatch_notify_fd()
   'bd64d82c1c0e3fe2a5f9b3dd9132d62834f50b2d'  # Revert "pid1: reconnect to the 
console before being re-executed"
+  'bd5b9f0a12dd9c1947b11534e99c395ddf44caa9'  # systemctl: suppress errors 
with "show" for nonexistent units and properties
 )
 
 prepare() {

Modified: systemd.install
===
--- systemd.install 2016-10-07 17:45:28 UTC (rev 277881)
+++ systemd.install 2016-10-07 17:48:26 UTC (rev 277882)
@@ -10,12 +10,6 @@
   :
 }
 
-maybe_reexec() {
-  if sd_booted; then
-systemctl --system daemon-reexec
-  fi
-}
-
 post_common() {
   systemd-sysusers
   journalctl --update-catalog
@@ -63,7 +57,11 @@
 post_upgrade() {
   post_common "$@"
 
-  maybe_reexec "$@"
+  # don't reexec if the old version is 231-1 or 231-2.
+  # https://github.com/systemd/systemd/commit/bd64d82c1c
+  if [[ $1 != 231-[12] ]] && sd_booted; then
+systemctl --system daemon-reexec
+  fi
 
   local v upgrades=(
 216-2


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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 17:45:28
  Author: arojas
Revision: 277881

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

Added:
  akonadi-qt4/repos/staging-i686/
  akonadi-qt4/repos/staging-i686/PKGBUILD
(from rev 277880, akonadi-qt4/trunk/PKGBUILD)
  akonadi-qt4/repos/staging-i686/dont-leak-old-external-payload-files.patch
(from rev 277880, 
akonadi-qt4/trunk/dont-leak-old-external-payload-files.patch)
  akonadi-qt4/repos/staging-x86_64/
  akonadi-qt4/repos/staging-x86_64/PKGBUILD
(from rev 277880, akonadi-qt4/trunk/PKGBUILD)
  akonadi-qt4/repos/staging-x86_64/dont-leak-old-external-payload-files.patch
(from rev 277880, 
akonadi-qt4/trunk/dont-leak-old-external-payload-files.patch)

---+
 staging-i686/PKGBUILD |   61 +
 staging-i686/dont-leak-old-external-payload-files.patch   |  135 
 staging-x86_64/PKGBUILD   |   61 +
 staging-x86_64/dont-leak-old-external-payload-files.patch |  135 
 4 files changed, 392 insertions(+)

Copied: akonadi-qt4/repos/staging-i686/PKGBUILD (from rev 277880, 
akonadi-qt4/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-07 17:45:28 UTC (rev 277881)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=akonadi-qt4
+pkgname=(libakonadi-qt4 akonadi-qt4)
+pkgver=1.13.0
+pkgrel=11
+pkgdesc="PIM layer, which provides an asynchronous API to access all kind of 
PIM data (Qt4 version)"
+arch=('i686' 'x86_64')
+url='http://community.kde.org/KDE_PIM/Akonadi'
+license=('LGPL')
+makedepends=('cmake' 'automoc4' 'boost' 'postgresql' 'mariadb' 'qt4' 'libxslt')
+source=("http://download.kde.org/stable/akonadi/src/akonadi-${pkgver}.tar.bz2;
+dont-leak-old-external-payload-files.patch)
+md5sums=('84eb2e471bd6bdfe54a2a2f1d858c07d'
+ '9711e300dde3775a38637daa3c20befe')
+
+prepare() {
+  mkdir -p build
+
+  cd akonadi-$pkgver
+  # https://bugs.kde.org/show_bug.cgi?id=341884
+  patch -p1 -i ../dont-leak-old-external-payload-files.patch
+}
+
+build() {
+  cd build
+  cmake ../akonadi-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE \
+-DQT_QMAKE_EXECUTABLE=qmake-qt4 \
+-DWITH_SOPRANO=OFF
+  make
+}
+
+package_libakonadi-qt4() {
+  pkgdesc='Qt4 akonadi libraries'
+  depends=('qt4')
+  conflicts=('akonadi<15')
+
+  cd build
+  make DESTDIR="$pkgdir" install
+
+# conflicts with akonadi
+  rm -r "$pkgdir"/usr/{bin,share}
+}
+
+package_akonadi-qt4() {
+  depends=(libakonadi-qt4 boost-libs mariadb)
+  conflicts=(akonadi)
+  replaces=('akonadi<15')
+
+  cd build
+  make DESTDIR="$pkgdir" install
+
+# provided by libakonadi-qt4
+  rm -r "$pkgdir"/usr/{lib,include}
+}

Copied: 
akonadi-qt4/repos/staging-i686/dont-leak-old-external-payload-files.patch (from 
rev 277880, akonadi-qt4/trunk/dont-leak-old-external-payload-files.patch)
===
--- staging-i686/dont-leak-old-external-payload-files.patch 
(rev 0)
+++ staging-i686/dont-leak-old-external-payload-files.patch 2016-10-07 
17:45:28 UTC (rev 277881)
@@ -0,0 +1,135 @@
+From: Dan Vrátil 
+Date: Mon, 29 Jun 2015 20:45:11 +
+Subject: Don't leak old external payload files
+X-Git-Url: 
http://quickgit.kde.org/?p=akonadi.git=commitdiff=9c0dc6b3f0826d32eac310b2e7ecd858ca3df681
+---
+Don't leak old external payload files
+
+Actually delete old payload files after we increase the payload revision or
+switch from external to internal payload. This caused 
~/.local/share/akonadi/file_db_data
+to grow insanely for all users, leaving them with many duplicated files (just 
with
+different revisions).
+
+It is recommended that users run akonadictl fsck to clean up the leaked payload
+files.
+
+Note that there won't be any more releases of Akonadi 1.13 (and this has been
+fixed in master already), so I strongly recommend distributions to pick this
+patch into their packaging.
+
+BUG: 341884
+CCBUG: 338402
+---
+
+
+--- a/server/src/storage/partstreamer.cpp
 b/server/src/storage/partstreamer.cpp
+@@ -290,6 +290,12 @@
+ mDataChanged = true;
+ }
+ 
++// If the part is external, remember it's current file name
++QString originalFile;
++if (part.isValid() && part.external()) {
++originalFile = PartHelper::resolveAbsolutePath(part.data());
++}
++
+ part.setPartType(partType);
+ part.setVersion(partVersion);
+ part.setPimItemId(mItem.id());
+@@ -306,6 +312,14 @@
+ *changed = mDataChanged;
+ }
+ 
++if (!originalFile.isEmpty()) {
++// If 

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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 17:44:49
  Author: arojas
Revision: 277880

Boost 1.62 rebuild

Modified:
  akonadi-qt4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 17:40:45 UTC (rev 277879)
+++ PKGBUILD2016-10-07 17:44:49 UTC (rev 277880)
@@ -6,7 +6,7 @@
 pkgbase=akonadi-qt4
 pkgname=(libakonadi-qt4 akonadi-qt4)
 pkgver=1.13.0
-pkgrel=10
+pkgrel=11
 pkgdesc="PIM layer, which provides an asynchronous API to access all kind of 
PIM data (Qt4 version)"
 arch=('i686' 'x86_64')
 url='http://community.kde.org/KDE_PIM/Akonadi'


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

2016-10-07 Thread Tobias Powalowski
Date: Friday, October 7, 2016 @ 17:40:18
  Author: tpowa
Revision: 277878

upgpkg: linux 4.8.1-1

bump to latest version

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 17:37:19 UTC (rev 277877)
+++ PKGBUILD2016-10-07 17:40:18 UTC (rev 277878)
@@ -5,7 +5,7 @@
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-4.8
-pkgver=4.8
+pkgver=4.8.1
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/;
@@ -14,8 +14,8 @@
 options=('!strip')
 source=("https://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.xz;
 "https://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.sign;
-#"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.xz;
-#"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.sign;
+"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.xz;
+"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.sign;
 # the main kernel config files
 'config' 'config.x86_64'
 # standard config files for mkinitcpio ramdisk
@@ -25,8 +25,10 @@
 
 sha256sums=('3e9150065f193d3d94bcf46a1fe9f033c7ef7122ab71d75a7fb5a2f0c9a7e11a'
 'SKIP'
-'81ec5323ffd7fc1d003d201eb878a5368bd29c0be5d1b39351359adcc81da0fb'
-'87d60623a10a4ca142ee58b338f72c76088b4b18f723c9028e6ae0613a23e339'
+'79c7bda5b4ac4dee7791f34448464f7aa74d498f80df6e1e5ab73f96c5baea41'
+'SKIP'
+'86c7dec2d8e3ec7946d6b4cc0283d30c8add570f1bb6ee158e472ca56d2e'
+'7e892a9a9f4e6b0b043e44d9d17f93a549878e1d6aa7a72fa925f98e3f895c5c'
 'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c'
 '1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99')
 validpgpkeys=(
@@ -40,7 +42,7 @@
   cd "${srcdir}/${_srcname}"
 
   # add upstream patch
-  #patch -p1 -i "${srcdir}/patch-${pkgver}"
+  patch -p1 -i "${srcdir}/patch-${pkgver}"
 
   # add latest fixes from stable queue, if needed
   # http://git.kernel.org/?p=linux/kernel/git/stable/stable-queue.git


[arch-commits] Commit in linux/repos (28 files)

2016-10-07 Thread Tobias Powalowski
Date: Friday, October 7, 2016 @ 17:40:45
  Author: tpowa
Revision: 277879

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

Added:
  linux/repos/testing-i686/PKGBUILD
(from rev 277878, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 277878, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 277878, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 277878, linux/trunk/config.x86_64)
  linux/repos/testing-i686/linux.install
(from rev 277878, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 277878, linux/trunk/linux.preset)
  linux/repos/testing-x86_64/PKGBUILD
(from rev 277878, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 277878, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 277878, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 277878, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/linux.install
(from rev 277878, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 277878, linux/trunk/linux.preset)
Deleted:
  linux/repos/testing-i686/PKGBUILD
  linux/repos/testing-i686/change-default-console-loglevel.patch
  linux/repos/testing-i686/config
  linux/repos/testing-i686/config.4.8
  linux/repos/testing-i686/config.x86_64
  linux/repos/testing-i686/config.x86_64.4.8
  linux/repos/testing-i686/linux.install
  linux/repos/testing-i686/linux.preset
  linux/repos/testing-x86_64/PKGBUILD
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
  linux/repos/testing-x86_64/config
  linux/repos/testing-x86_64/config.4.8
  linux/repos/testing-x86_64/config.x86_64
  linux/repos/testing-x86_64/config.x86_64.4.8
  linux/repos/testing-x86_64/linux.install
  linux/repos/testing-x86_64/linux.preset

--+
 /PKGBUILD|  604 
 /change-default-console-loglevel.patch   |   22 
 /config  |16414 +
 /config.x86_64   |15914 
 /linux.install   |   74 
 /linux.preset|   28 
 testing-i686/PKGBUILD|  300 
 testing-i686/change-default-console-loglevel.patch   |   11 
 testing-i686/config  | 8207 
 testing-i686/config.4.8  | 8207 
 testing-i686/config.x86_64   | 7957 
 testing-i686/config.x86_64.4.8   | 7957 
 testing-i686/linux.install   |   37 
 testing-i686/linux.preset|   14 
 testing-x86_64/PKGBUILD  |  300 
 testing-x86_64/change-default-console-loglevel.patch |   11 
 testing-x86_64/config| 8207 
 testing-x86_64/config.4.8| 8207 
 testing-x86_64/config.x86_64 | 7957 
 testing-x86_64/config.x86_64.4.8 | 7957 
 testing-x86_64/linux.install |   37 
 testing-x86_64/linux.preset  |   14 
 22 files changed, 33056 insertions(+), 65380 deletions(-)

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


[arch-commits] Commit in avogadro/repos (10 files)

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 17:37:19
  Author: arojas
Revision: 277877

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

Added:
  avogadro/repos/staging-i686/
  avogadro/repos/staging-i686/PKGBUILD
(from rev 277876, avogadro/trunk/PKGBUILD)
  avogadro/repos/staging-i686/avogadro-fix-linking.patch
(from rev 277876, avogadro/trunk/avogadro-fix-linking.patch)
  avogadro/repos/staging-i686/avogadro-glibc2.23.patch
(from rev 277876, avogadro/trunk/avogadro-glibc2.23.patch)
  avogadro/repos/staging-i686/boost153.patch
(from rev 277876, avogadro/trunk/boost153.patch)
  avogadro/repos/staging-x86_64/
  avogadro/repos/staging-x86_64/PKGBUILD
(from rev 277876, avogadro/trunk/PKGBUILD)
  avogadro/repos/staging-x86_64/avogadro-fix-linking.patch
(from rev 277876, avogadro/trunk/avogadro-fix-linking.patch)
  avogadro/repos/staging-x86_64/avogadro-glibc2.23.patch
(from rev 277876, avogadro/trunk/avogadro-glibc2.23.patch)
  avogadro/repos/staging-x86_64/boost153.patch
(from rev 277876, avogadro/trunk/boost153.patch)

---+
 staging-i686/PKGBUILD |   47 +
 staging-i686/avogadro-fix-linking.patch   |   14 ++
 staging-i686/avogadro-glibc2.23.patch |   18 
 staging-i686/boost153.patch   |   60 
 staging-x86_64/PKGBUILD   |   47 +
 staging-x86_64/avogadro-fix-linking.patch |   14 ++
 staging-x86_64/avogadro-glibc2.23.patch   |   18 
 staging-x86_64/boost153.patch |   60 
 8 files changed, 278 insertions(+)

Copied: avogadro/repos/staging-i686/PKGBUILD (from rev 277876, 
avogadro/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-07 17:37:19 UTC (rev 277877)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Nick B 
+
+pkgname=avogadro
+pkgver=1.2.0
+pkgrel=4
+pkgdesc="An advanced molecular editor based on Qt"
+arch=('i686' 'x86_64')
+url="http://avogadro.openmolecules.net/wiki/Main_Page;
+license=('GPL2')
+depends=('openbabel' 'python2-pyqt4' 'boost-libs' 'glew' 'python2-numpy')
+makedepends=('cmake' 'boost' 'doxygen' 'mesa-libgl' 'eigen')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'boost153.patch' 'avogadro-glibc2.23.patch' 
'avogadro-fix-linking.patch')
+md5sums=('3206068fc27bd3b717c568ee72f1e5ec'
+ 'aa2573f78d5dbd85b3cb79e08acde8ab'
+ '83990ecbb4c076fddda3eaca2c2975ed'
+ 'e333f624d5649c6d3a7cfd14a778bc73')
+
+prepare() {
+  mkdir build
+
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i "${srcdir}"/boost153.patch
+# Fix build with glibc 2.23
+  patch -p1 -i ../avogadro-glibc2.23.patch
+# Fix linking (Fedora)
+  patch -p1 -i ../avogadro-fix-linking.patch
+}
+
+build() {
+  cd build
+
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DQT_MKSPECS_RELATIVE=share/qt4/mkspecs
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: avogadro/repos/staging-i686/avogadro-fix-linking.patch (from rev 
277876, avogadro/trunk/avogadro-fix-linking.patch)
===
--- staging-i686/avogadro-fix-linking.patch (rev 0)
+++ staging-i686/avogadro-fix-linking.patch 2016-10-07 17:37:19 UTC (rev 
277877)
@@ -0,0 +1,14 @@
+diff -up avogadro-1.1.1/libavogadro/src/python/CMakeLists.txt.openbabel 
avogadro-1.1.1/libavogadro/src/python/CMakeLists.txt
+--- avogadro-1.1.1/libavogadro/src/python/CMakeLists.txt.openbabel 
2013-12-06 09:50:04.0 -0600
 avogadro-1.1.1/libavogadro/src/python/CMakeLists.txt   2016-01-25 
13:50:10.469758655 -0600
+@@ -20,8 +20,8 @@ if (WIN32)
+   set_target_properties(python-module PROPERTIES SUFFIX ".pyd")
+   target_link_libraries(python-module avogadro ${PYTHON_LIBRARIES})
+ else()
+-  target_link_libraries(python-module stdc++ avogadro
+-${QT_LIBRARIES} ${PYTHON_LIBRARIES} ${Boost_LIBRARIES})
++  target_link_libraries(python-module stdc++ avogadro 
++${QT_LIBRARIES} ${PYTHON_LIBRARIES} ${OPENBABEL2_LIBRARIES} 
${Boost_LIBRARIES})
+ endif()
+ 
+ # Let's try to use this instead:

Copied: avogadro/repos/staging-i686/avogadro-glibc2.23.patch (from rev 277876, 
avogadro/trunk/avogadro-glibc2.23.patch)
===
--- staging-i686/avogadro-glibc2.23.patch   (rev 0)
+++ staging-i686/avogadro-glibc2.23.patch   2016-10-07 17:37:19 UTC (rev 
277877)
@@ -0,0 +1,18 @@
+--- 
avogadro-1.2.0/libavogadro/src/extensions/symmetry/libmsym/src/orbital.c.orig   
   2016-06-16 

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

2016-10-07 Thread Antonio Rojas
Date: Friday, October 7, 2016 @ 17:36:47
  Author: arojas
Revision: 277876

Boost 1.62 rebuild

Modified:
  avogadro/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 17:25:07 UTC (rev 277875)
+++ PKGBUILD2016-10-07 17:36:47 UTC (rev 277876)
@@ -5,7 +5,7 @@
 
 pkgname=avogadro
 pkgver=1.2.0
-pkgrel=3
+pkgrel=4
 pkgdesc="An advanced molecular editor based on Qt"
 arch=('i686' 'x86_64')
 url="http://avogadro.openmolecules.net/wiki/Main_Page;


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

2016-10-07 Thread Gaëtan Bisson
Date: Friday, October 7, 2016 @ 17:25:07
  Author: bisson
Revision: 277875

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

Added:
  hugin/repos/staging-i686/
  hugin/repos/staging-i686/PKGBUILD
(from rev 277874, hugin/trunk/PKGBUILD)
  hugin/repos/staging-x86_64/
  hugin/repos/staging-x86_64/PKGBUILD
(from rev 277874, hugin/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   37 +
 staging-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: hugin/repos/staging-i686/PKGBUILD (from rev 277874, 
hugin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-07 17:25:07 UTC (rev 277875)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Kieslich 
+# Contributor: Giovanni Scafora 
+# Contributor: Dominik Ryba 
+
+pkgname=hugin
+pkgver=2016.2.0
+pkgrel=2
+pkgdesc='Panorama photo stitcher'
+url='http://hugin.sourceforge.net/'
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('cmake' 'boost' 'tclap' 'mesa' 'swig')
+depends=('wxgtk' 'boost-libs' 'enblend-enfuse' 'exiv2' 'libpano13'
+ 'python' 'lensfun' 'lapack' 'make' 'sqlite' 'perl-image-exiftool'
+  'glew' 'desktop-file-utils')
+source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver%.*}/${pkgname}-${pkgver/r/_r}.tar.bz2;)
+sha1sums=('9d28609d973fa72b95b1e2506cf1de7d24578e67')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver/rc?}"
+   install -d build
+   cd build
+   cmake .. \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DENABLE_LAPACK=yes \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver/rc?}"
+   cd build
+   make DESTDIR="${pkgdir}" install
+}

Copied: hugin/repos/staging-x86_64/PKGBUILD (from rev 277874, 
hugin/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-10-07 17:25:07 UTC (rev 277875)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Kieslich 
+# Contributor: Giovanni Scafora 
+# Contributor: Dominik Ryba 
+
+pkgname=hugin
+pkgver=2016.2.0
+pkgrel=2
+pkgdesc='Panorama photo stitcher'
+url='http://hugin.sourceforge.net/'
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('cmake' 'boost' 'tclap' 'mesa' 'swig')
+depends=('wxgtk' 'boost-libs' 'enblend-enfuse' 'exiv2' 'libpano13'
+ 'python' 'lensfun' 'lapack' 'make' 'sqlite' 'perl-image-exiftool'
+  'glew' 'desktop-file-utils')
+source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver%.*}/${pkgname}-${pkgver/r/_r}.tar.bz2;)
+sha1sums=('9d28609d973fa72b95b1e2506cf1de7d24578e67')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver/rc?}"
+   install -d build
+   cd build
+   cmake .. \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DENABLE_LAPACK=yes \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver/rc?}"
+   cd build
+   make DESTDIR="${pkgdir}" install
+}


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

2016-10-07 Thread Gaëtan Bisson
Date: Friday, October 7, 2016 @ 17:13:36
  Author: bisson
Revision: 277874

rebuild for boost-1.62

Modified:
  hugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 16:26:03 UTC (rev 277873)
+++ PKGBUILD2016-10-07 17:13:36 UTC (rev 277874)
@@ -6,7 +6,7 @@
 
 pkgname=hugin
 pkgver=2016.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Panorama photo stitcher'
 url='http://hugin.sourceforge.net/'
 license=('GPL')


[arch-commits] Commit in wine-staging/repos/community-i686 (4 files)

2016-10-07 Thread Felix Yan
Date: Friday, October 7, 2016 @ 17:00:19
  Author: felixonmars
Revision: 191571

archrelease: copy trunk to community-i686

Added:
  wine-staging/repos/community-i686/30-win32-aliases.conf
(from rev 191570, wine-staging/trunk/30-win32-aliases.conf)
  wine-staging/repos/community-i686/PKGBUILD
(from rev 191570, wine-staging/trunk/PKGBUILD)
Deleted:
  wine-staging/repos/community-i686/30-win32-aliases.conf
  wine-staging/repos/community-i686/PKGBUILD

--+
 PKGBUILD |  368 ++---
 1 file changed, 184 insertions(+), 184 deletions(-)

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

Copied: wine-staging/repos/community-i686/30-win32-aliases.conf (from rev 
191570, wine-staging/trunk/30-win32-aliases.conf)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-07 16:57:06 UTC (rev 191570)
+++ PKGBUILD2016-10-07 17:00:19 UTC (rev 191571)
@@ -1,184 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging
-pkgver=1.9.19
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=("https://github.com/wine-compholio/wine-patched/archive/staging-$_pkgbasever.tar.gz;
-30-win32-aliases.conf)
-sha1sums=('8b581ec3582e0f68b923f683425d7cc55ea92c49'
-  '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch"
-url="http://www.wine-staging.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-_depends=(
-  attr lib32-attr
-  fontconfig   lib32-fontconfig
-  lcms2lib32-lcms2
-  libxml2  lib32-libxml2
-  libxcursor   lib32-libxcursor
-  libxrandrlib32-libxrandr
-  libxdamage   lib32-libxdamage
-  libxilib32-libxi
-  gettext  lib32-gettext
-  freetype2lib32-freetype2
-  glu  lib32-glu
-  libsmlib32-libsm
-  gcc-libs lib32-gcc-libs
-  libpcap  lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'   'gcc-multilib>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  libcl lib32-libcl
-  libxslt   lib32-libxslt
-  libpulse  lib32-libpulse
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  samba
-  opencl-headers
-)
-  
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  alsa-lib  lib32-alsa-lib
-  libjpeg-turbo lib32-libjpeg-turbo
-  libxcomposite lib32-libxcomposite
-  libxinerama   lib32-libxinerama
-  ncurses   lib32-ncurses
-  libcl lib32-libcl
-  libxslt   lib32-libxslt
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  cups
-  samba   dosbox
-)
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  _depends=(${_depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/} ${_depends[@]})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  optdepends=(${optdepends[@]/*32-*/})
-  provides=("wine=$pkgver")
-  conflicts=('wine')
-else
-  makedepends=(${makedepends[@]} ${_depends[@]})
-  provides=("wine=$pkgver" "wine-wow64=$pkgver")
-  conflicts=('wine' 'wine-wow64')
-fi
-
-prepare() {
-  # Allow ccache to work
-  mv wine-patched-staging-$_pkgbasever $pkgname
-
-  sed 's|OpenCL/opencl.h|CL/opencl.h|g' -i $pkgname/configure*
-
-  # Get rid of old build dirs
-  rm -rf $pkgname-{32,64}-build
-  mkdir $pkgname-32-build

[arch-commits] Commit in wine/repos/community-i686 (4 files)

2016-10-07 Thread Felix Yan
Date: Friday, October 7, 2016 @ 16:57:06
  Author: felixonmars
Revision: 191570

archrelease: copy trunk to community-i686

Added:
  wine/repos/community-i686/30-win32-aliases.conf
(from rev 191569, wine/trunk/30-win32-aliases.conf)
  wine/repos/community-i686/PKGBUILD
(from rev 191569, wine/trunk/PKGBUILD)
Deleted:
  wine/repos/community-i686/30-win32-aliases.conf
  wine/repos/community-i686/PKGBUILD

---+
 30-win32-aliases.conf |   40 ++---
 PKGBUILD  |  356 
 2 files changed, 198 insertions(+), 198 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2016-10-07 16:38:03 UTC (rev 191569)
+++ 30-win32-aliases.conf   2016-10-07 16:57:06 UTC (rev 191570)
@@ -1,20 +0,0 @@
-
-
-
-  
-MS Shell Dlg
-Microsoft Sans Serif
-sans-serif
-  
-  
-MS Shell Dlg 2
-Tahoma
-sans-serif
-  
-
-  
-MS Sans Serif
-Microsoft Sans Serif
-sans-serif
-  
-

Copied: wine/repos/community-i686/30-win32-aliases.conf (from rev 191569, 
wine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2016-10-07 16:57:06 UTC (rev 191570)
@@ -0,0 +1,20 @@
+
+
+
+  
+MS Shell Dlg
+Microsoft Sans Serif
+sans-serif
+  
+  
+MS Shell Dlg 2
+Tahoma
+sans-serif
+  
+
+  
+MS Sans Serif
+Microsoft Sans Serif
+sans-serif
+  
+

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-07 16:38:03 UTC (rev 191569)
+++ PKGBUILD2016-10-07 16:57:06 UTC (rev 191570)
@@ -1,178 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine
-pkgver=1.9.19
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(https://dl.winehq.org/wine/source/1.9/$pkgname-$_pkgbasever.tar.bz2{,.sign}
-30-win32-aliases.conf)
-sha1sums=('bc14e74430a360a208bbb959e9d2d6867b2791db'
-  'SKIP'
-  '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7
-  DA23579A74D4AD9AF9D3F945CEFAC8EAAF17519D)
-
-pkgdesc="A compatibility layer for running Windows programs"
-url="http://www.winehq.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-_depends=(
-  fontconfig  lib32-fontconfig
-  lcms2   lib32-lcms2
-  libxml2 lib32-libxml2
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  libpcap lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'  'gcc-multilib>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  libcl lib32-libcl
-  libxslt   lib32-libxslt
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  samba
-  opencl-headers
-)
-  
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  alsa-lib  lib32-alsa-lib
-  libjpeg-turbo lib32-libjpeg-turbo
-  libxcomposite lib32-libxcomposite
-  libxinerama   lib32-libxinerama
-  ncurses   lib32-ncurses
-  libcl lib32-libcl
-  libxslt   lib32-libxslt
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  cups
-  samba   dosbox
-)
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  _depends=(${_depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/} ${_depends[@]})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  

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

2016-10-07 Thread Levente Polyak
Date: Friday, October 7, 2016 @ 16:38:03
  Author: anthraxx
Revision: 191569

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

Added:
  vtk/repos/community-staging-i686/
  vtk/repos/community-staging-i686/.contrib
(from rev 191568, vtk/trunk/.contrib)
  vtk/repos/community-staging-i686/PKGBUILD
(from rev 191568, vtk/trunk/PKGBUILD)
  vtk/repos/community-staging-i686/ffmpeg3_compat.patch
(from rev 191568, vtk/trunk/ffmpeg3_compat.patch)
  vtk/repos/community-staging-i686/gcc6.patch
(from rev 191568, vtk/trunk/gcc6.patch)
  vtk/repos/community-staging-i686/gdal2.patch
(from rev 191568, vtk/trunk/gdal2.patch)
  vtk/repos/community-staging-x86_64/
  vtk/repos/community-staging-x86_64/.contrib
(from rev 191568, vtk/trunk/.contrib)
  vtk/repos/community-staging-x86_64/PKGBUILD
(from rev 191568, vtk/trunk/PKGBUILD)
  vtk/repos/community-staging-x86_64/ffmpeg3_compat.patch
(from rev 191568, vtk/trunk/ffmpeg3_compat.patch)
  vtk/repos/community-staging-x86_64/gcc6.patch
(from rev 191568, vtk/trunk/gcc6.patch)
  vtk/repos/community-staging-x86_64/gdal2.patch
(from rev 191568, vtk/trunk/gdal2.patch)

---+
 community-staging-i686/.contrib   |6 +
 community-staging-i686/PKGBUILD   |  132 
 community-staging-i686/ffmpeg3_compat.patch   |   62 +++
 community-staging-i686/gcc6.patch |   21 +++
 community-staging-i686/gdal2.patch|   31 +
 community-staging-x86_64/.contrib |6 +
 community-staging-x86_64/PKGBUILD |  132 
 community-staging-x86_64/ffmpeg3_compat.patch |   62 +++
 community-staging-x86_64/gcc6.patch   |   21 +++
 community-staging-x86_64/gdal2.patch  |   31 +
 10 files changed, 504 insertions(+)

Copied: vtk/repos/community-staging-i686/.contrib (from rev 191568, 
vtk/trunk/.contrib)
===
--- community-staging-i686/.contrib (rev 0)
+++ community-staging-i686/.contrib 2016-10-07 16:38:03 UTC (rev 191569)
@@ -0,0 +1,6 @@
+# Contributor: Christofer Bertonha 
+# Contributor: leepesjee 
+# Contributor: Olivier Medoc
+# Contributor: ignotus
+# Contributor: Fabian Moser
+# Contributor: djscholl

Copied: vtk/repos/community-staging-i686/PKGBUILD (from rev 191568, 
vtk/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-07 16:38:03 UTC (rev 191569)
@@ -0,0 +1,132 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Andrzej Giniewicz 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+
+pkgname=vtk
+pkgver=7.0.0
+_majorver=7.0
+pkgrel=3
+pkgdesc='A software system for 3D computer graphics, image processing, and 
visualization'
+arch=('i686' 'x86_64')
+url='http://www.vtk.org/'
+license=('BSD')
+depends=('gcc-libs' 'gl2ps')
+makedepends=('boost' 'cmake' 'ninja' 'java-environment' 'doxygen' 'gnuplot' 
'tk' 'wget' 'python2-matplotlib' 'python2-twisted' 'python2-mpi4py' 
'python2-autobahn' 'unixodbc' 'gdal' 'openmpi' 'mariadb' 'glew' 'ffmpeg' 
'lesstif' 'qt5-base' 'jsoncpp')
+optdepends=('python2: python bindings'
+'java-runtime: java bindings'
+'tk: tcl bindings'
+'gnuplot: plotting tools'
+'graphviz: drawing tools'
+'python2-matplotlib: for Matplotlib rendering'
+'python2-twisted: for vtkWeb'
+'python2-autobahn: for vtkWeb'
+'openmpi: OpenMPI support'
+'python2-mpi4py: OpenMPI python support'
+'unixodbc'
+'glew'
+'gdal'
+'mariadb'
+'ffmpeg'
+'jsoncpp')
+source=("http://www.vtk.org/files/release/${_majorver}/VTK-${pkgver}.tar.gz;
+
"http://www.vtk.org/files/release/${_majorver}/VTKData-${pkgver}.tar.gz;
+
"http://www.vtk.org/files/release/${_majorver}/VTKLargeData-${pkgver}.tar.gz;
+gdal2.patch
+ffmpeg3_compat.patch
+gcc6.patch)
+options=(staticlibs)
+sha1sums=('7719fac36b36965eaf5076542166ba49bbe7afbb'
+  '1bbaa642a3e3676a58a08c956df73645326c2859'
+  '8d16a1fba15e4eb95c03fe97937488ddcdd7fbd0'
+  'c60610e7c8cf0ad93d7c02cbf8a20fc415f59b3e'
+  'a78177f8dd6dedd9ad189fa12730ec53c7d02508'
+  'efba04fac41ecc390aa7df3009a7a80f395c9949')
+
+prepare() {
+  cd "${srcdir}"/VTK-$pkgver
+
+  patch -p1 < ../ffmpeg3_compat.patch # 
http://www.vtk.org/Bug/view.php?id=16001
+  patch -p1 < ../gdal2.patch # https://github.com/Kitware/VTK/pull/21
+  patch -p1 < ../gcc6.patch # https://github.com/Kitware/VTK/pull/21
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env 

[arch-commits] Commit in vtk/trunk (PKGBUILD gcc6.patch)

2016-10-07 Thread Levente Polyak
Date: Friday, October 7, 2016 @ 16:36:24
  Author: anthraxx
Revision: 191568

updpkg: vtk 7.0.0-1 (jsoncpp 1.7.7 rebuild)

Added:
  vtk/trunk/gcc6.patch
Modified:
  vtk/trunk/PKGBUILD

+
 PKGBUILD   |   15 ++-
 gcc6.patch |   21 +
 2 files changed, 31 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 16:15:37 UTC (rev 191567)
+++ PKGBUILD2016-10-07 16:36:24 UTC (rev 191568)
@@ -6,7 +6,7 @@
 pkgname=vtk
 pkgver=7.0.0
 _majorver=7.0
-pkgrel=2
+pkgrel=3
 pkgdesc='A software system for 3D computer graphics, image processing, and 
visualization'
 arch=('i686' 'x86_64')
 url='http://www.vtk.org/'
@@ -33,13 +33,15 @@
 
"http://www.vtk.org/files/release/${_majorver}/VTKData-${pkgver}.tar.gz;
 
"http://www.vtk.org/files/release/${_majorver}/VTKLargeData-${pkgver}.tar.gz;
 gdal2.patch
-ffmpeg3_compat.patch)
+ffmpeg3_compat.patch
+gcc6.patch)
 options=(staticlibs)
 sha1sums=('7719fac36b36965eaf5076542166ba49bbe7afbb'
   '1bbaa642a3e3676a58a08c956df73645326c2859'
   '8d16a1fba15e4eb95c03fe97937488ddcdd7fbd0'
   'c60610e7c8cf0ad93d7c02cbf8a20fc415f59b3e'
-  'a78177f8dd6dedd9ad189fa12730ec53c7d02508')
+  'a78177f8dd6dedd9ad189fa12730ec53c7d02508'
+  'efba04fac41ecc390aa7df3009a7a80f395c9949')
 
 prepare() {
   cd "${srcdir}"/VTK-$pkgver
@@ -46,6 +48,7 @@
 
   patch -p1 < ../ffmpeg3_compat.patch # 
http://www.vtk.org/Bug/view.php?id=16001
   patch -p1 < ../gdal2.patch # https://github.com/Kitware/VTK/pull/21
+  patch -p1 < ../gcc6.patch # https://github.com/Kitware/VTK/pull/21
 
   sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
   -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
@@ -64,11 +67,12 @@
 
   # flags to enable using system libs
   local cmake_system_flags=""
-  # TODO: try to use system provided XDMF2, XDMF3, LIBPROJ4 NETCDF
+  # TODO: try to use system provided XDMF2, XDMF3, LIBPROJ4 NETCDF, HDF5
   # VTK fails to compile with recent netcdf-cxx package, VTK should be ported 
to the latest API
   # VTK does not work with XDMF2 compiled from git. TODO: make vtk compatible 
with system XDMF library. 
   # Note: VTK explicitly disables system GLEW dependency, it uses embedded 
sources with modifications
-  for lib in HDF5 EXPAT FREETYPE JPEG PNG TIFF ZLIB LIBXML2 OGGTHEORA TWISTED 
ZOPE SIX AUTOBAHN MPI4PY JSONCPP GLEW GL2PS; do
+  # Note: system HDF5 is incompatible
+  for lib in EXPAT FREETYPE JPEG PNG TIFF ZLIB LIBXML2 OGGTHEORA TWISTED ZOPE 
SIX AUTOBAHN MPI4PY JSONCPP GLEW GL2PS; do
 cmake_system_flags+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
   done
 
@@ -79,6 +83,7 @@
 
   cmake \
 -Wno-dev \
+-DVTK_USE_SYSTEM_HDF5:BOOL=OFF \
 -DCMAKE_SKIP_RPATH=ON \
 -DBUILD_SHARED_LIBS:BOOL=ON \
 -DCMAKE_INSTALL_PREFIX:FILEPATH=/usr \

Added: gcc6.patch
===
--- gcc6.patch  (rev 0)
+++ gcc6.patch  2016-10-07 16:36:24 UTC (rev 191568)
@@ -0,0 +1,21 @@
 b/CMake/GenerateExportHeader.cmake 2016-05-07 10:26:51.085595051 +0200
+@@ -166,7 +166,7 @@
+ execute_process(COMMAND ${CMAKE_C_COMPILER} ARGS --version
+   OUTPUT_VARIABLE _gcc_version_info
+   ERROR_VARIABLE _gcc_version_info)
+-string(REGEX MATCH "[345]\\.[0-9]\\.[0-9]*"
++string(REGEX MATCH "[3-9]\\.[0-9]\\.[0-9]*"
+   _gcc_version "${_gcc_version_info}")
+ # gcc on mac just reports: "gcc (GCC) 3.3 20030304 ..." without the
+ # patch level, handle this here:
+
 b/CMake/vtkCompilerExtras.cmake2016-05-07 10:27:20.496204378 +0200
+@@ -32,7 +32,7 @@
+ OUTPUT_VARIABLE _gcc_version_info
+ ERROR_VARIABLE _gcc_version_info)
+ 
+-  string (REGEX MATCH "[345]\\.[0-9]\\.[0-9]*"
++  string (REGEX MATCH "[3-9]\\.[0-9]\\.[0-9]*"
+ _gcc_version "${_gcc_version_info}")
+   if(NOT _gcc_version)
+ string (REGEX REPLACE ".*\\(GCC\\).*([34]\\.[0-9]).*" "\\1.0"


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 16:25:57
  Author: bpiotrowski
Revision: 277872

upgpkg: boost 1.62.0-1

new upstream release

Modified:
  boost/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 14:53:18 UTC (rev 277871)
+++ PKGBUILD2016-10-07 16:25:57 UTC (rev 277872)
@@ -9,15 +9,15 @@
 
 pkgbase=boost
 pkgname=('boost-libs' 'boost')
-pkgver=1.61.0
+pkgver=1.62.0
 _boostver=${pkgver//./_}
-pkgrel=2
+pkgrel=1
 url='http://www.boost.org/'
 arch=('i686' 'x86_64')
 license=('custom')
 makedepends=('icu>=55.1' 'python>=3.5' 'python<3.6' 'python2' 'bzip2' 'zlib' 
'openmpi')
 
source=(https://downloads.sourceforge.net/project/${pkgbase}/${pkgbase}/${pkgver}/${pkgbase}_${_boostver}.tar.bz2)
-sha1sums=('f84b1a1ce764108ec3c2b7bd7704cf8dfd3c9d01')
+sha1sums=('5fd97433c3f859d8cbab1eaed4156d3068ae3648')
 
 build() {
export _stagedir="${srcdir}/stagedir"


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

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 16:26:03
  Author: bpiotrowski
Revision: 277873

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

Added:
  boost/repos/staging-i686/
  boost/repos/staging-i686/PKGBUILD
(from rev 277872, boost/trunk/PKGBUILD)
  boost/repos/staging-x86_64/
  boost/repos/staging-x86_64/PKGBUILD
(from rev 277872, boost/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   99 ++
 staging-x86_64/PKGBUILD |   99 ++
 2 files changed, 198 insertions(+)

Copied: boost/repos/staging-i686/PKGBUILD (from rev 277872, 
boost/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-07 16:26:03 UTC (rev 277873)
@@ -0,0 +1,99 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Ionut Biru 
+# Contributor: Stéphane Gaudreault 
+# Contributor: kevin 
+# Contributor: Giovanni Scafora 
+# Contributor: Kritoke 
+# Contributor: Luca Roccia 
+
+pkgbase=boost
+pkgname=('boost-libs' 'boost')
+pkgver=1.62.0
+_boostver=${pkgver//./_}
+pkgrel=1
+url='http://www.boost.org/'
+arch=('i686' 'x86_64')
+license=('custom')
+makedepends=('icu>=55.1' 'python>=3.5' 'python<3.6' 'python2' 'bzip2' 'zlib' 
'openmpi')
+source=(https://downloads.sourceforge.net/project/${pkgbase}/${pkgbase}/${pkgver}/${pkgbase}_${_boostver}.tar.bz2)
+sha1sums=('5fd97433c3f859d8cbab1eaed4156d3068ae3648')
+
+build() {
+   export _stagedir="${srcdir}/stagedir"
+   local JOBS="$(sed -e 's/.*\(-j *[0-9]\+\).*/\1/' <<< ${MAKEFLAGS})"
+
+   cd ${pkgbase}_${_boostver}
+
+   ./bootstrap.sh --with-toolset=gcc --with-icu --with-python=/usr/bin/python2
+
+   _bindir="bin.linuxx86"
+   [[ "${CARCH}" = "x86_64" ]] && _bindir="bin.linuxx86_64"
+   install -Dm755 tools/build/src/engine/$_bindir/b2 "${_stagedir}"/bin/b2
+
+   # Add an extra python version. This does not replace anything and python 2.x
+   # need to be the default.
+   echo "using python : 3.5 : /usr/bin/python3 : /usr/include/python3.5m : 
/usr/lib ;" \
+  >> project-config.jam
+
+   # Support for OpenMPI
+   echo "using mpi ;" >> project-config.jam
+
+   # boostbook is needed by quickbook
+   install -dm755 "${_stagedir}"/share/boostbook
+   cp -a tools/boostbook/{xsl,dtd} "${_stagedir}"/share/boostbook/
+
+   # default "minimal" install: "release link=shared,static
+   # runtime-link=shared threading=single,multi"
+   # --layout=tagged will add the "-mt" suffix for multithreaded libraries
+   # and installs includes in /usr/include/boost.
+   # --layout=system no longer adds the -mt suffix for multi-threaded libs.
+   # install to ${_stagedir} in preparation for split packaging
+   "${_stagedir}"/bin/b2 \
+  variant=release \
+  debug-symbols=off \
+  threading=multi \
+  runtime-link=shared \
+  link=shared,static \
+  toolset=gcc \
+  python=2.7 \
+  cflags="${CPPFLAGS} ${CFLAGS} -fPIC -O3" \
+  cxxflags="${CPPFLAGS} ${CXXFLAGS} -std=c++14 -fPIC -O3" \
+  linkflags="${LDFLAGS}" \
+  --layout=system \
+  --prefix="${_stagedir}" \
+  ${JOBS} \
+  install
+}
+
+package_boost() {
+   pkgdesc='Free peer-reviewed portable C++ source libraries - development 
headers'
+   depends=("boost-libs=${pkgver}")
+   optdepends=('python: for python bindings'
+   'python2: for python2 bindings')
+   options=('staticlibs')
+
+   install -dm755 "${pkgdir}"/usr
+   cp -a "${_stagedir}"/{bin,include,share} "${pkgdir}"/usr
+
+   install -d "${pkgdir}"/usr/lib
+   cp -a "${_stagedir}"/lib/*.a "${pkgdir}"/usr/lib/
+
+   install -Dm644 "${srcdir}/"${pkgbase}_${_boostver}/LICENSE_1_0.txt \
+  "${pkgdir}"/usr/share/licenses/boost/LICENSE_1_0.txt
+
+   ln -s /usr/bin/b2 "$pkgdir"/usr/bin/bjam
+}
+
+package_boost-libs() {
+   pkgdesc='Free peer-reviewed portable C++ source libraries - runtime 
libraries'
+   depends=('bzip2' 'zlib' 'icu')
+   optdepends=('openmpi: for mpi support')
+
+   install -dm755 "${pkgdir}"/usr
+   cp -a "${_stagedir}"/lib "${pkgdir}"/usr
+   rm "${pkgdir}"/usr/lib/*.a
+
+   install -Dm644 "${srcdir}/"${pkgbase}_${_boostver}/LICENSE_1_0.txt \
+  "${pkgdir}"/usr/share/licenses/boost-libs/LICENSE_1_0.txt
+}

Copied: boost/repos/staging-x86_64/PKGBUILD (from rev 277872, 
boost/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-10-07 16:26:03 UTC (rev 277873)
@@ -0,0 +1,99 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Ionut Biru 
+# Contributor: Stéphane Gaudreault 
+# 

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

2016-10-07 Thread Felix Yan
Date: Friday, October 7, 2016 @ 16:15:37
  Author: felixonmars
Revision: 191567

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

Added:
  tuntox/repos/community-i686/PKGBUILD
(from rev 191566, tuntox/trunk/PKGBUILD)
  tuntox/repos/community-i686/shared-build.patch
(from rev 191566, tuntox/trunk/shared-build.patch)
  tuntox/repos/community-x86_64/PKGBUILD
(from rev 191566, tuntox/trunk/PKGBUILD)
  tuntox/repos/community-x86_64/shared-build.patch
(from rev 191566, tuntox/trunk/shared-build.patch)
Deleted:
  tuntox/repos/community-i686/PKGBUILD
  tuntox/repos/community-i686/shared-build.patch
  tuntox/repos/community-x86_64/PKGBUILD
  tuntox/repos/community-x86_64/shared-build.patch

-+
 /PKGBUILD   |   64 ++
 /shared-build.patch |   44 +++
 community-i686/PKGBUILD |   32 -
 community-i686/shared-build.patch   |   22 ---
 community-x86_64/PKGBUILD   |   32 -
 community-x86_64/shared-build.patch |   22 ---
 6 files changed, 108 insertions(+), 108 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-07 16:05:50 UTC (rev 191566)
+++ community-i686/PKGBUILD 2016-10-07 16:15:37 UTC (rev 191567)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=tuntox
-pkgver=0.0.4
-pkgrel=3
-pkgdesc='Tunnel TCP connections over the Tox protocol'
-arch=('i686' 'x86_64')
-url='http://tuntox.pl/'
-license=('GPL3')
-depends=('toxcore')
-makedepends=('git' 'cscope')
-source=("git+https://github.com/gjedeer/tuntox.git#tag=$pkgver;
-shared-build.patch)
-sha512sums=('SKIP'
-
'e5bbcdf14103c1d4cdd6bb4e142c14bd1ebc9130b8fa50cd5f50f99dbf54b1796f31adc78c21378d129e5c7ea9986d59e63ddb423bf3473c34f635f59dc19d8c')
-
-prepare() {
-  cd $pkgname
-  patch -p1 -i ../shared-build.patch
-}
-
-build() {
-  cd $pkgname
-  make
-}
-
-package() {
-  cd $pkgname
-  install -Dm755 tuntox "$pkgdir/usr/bin/tuntox"
-  install -Dm644 scripts/tuntox.service 
"$pkgdir/usr/lib/systemd/system/tuntox.service"
-}

Copied: tuntox/repos/community-i686/PKGBUILD (from rev 191566, 
tuntox/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-07 16:15:37 UTC (rev 191567)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=tuntox
+pkgver=0.0.5
+pkgrel=1
+pkgdesc='Tunnel TCP connections over the Tox protocol'
+arch=('i686' 'x86_64')
+url='http://tuntox.pl/'
+license=('GPL3')
+depends=('toxcore')
+makedepends=('git' 'cscope')
+source=("git+https://github.com/gjedeer/tuntox.git#tag=$pkgver;
+shared-build.patch)
+sha512sums=('SKIP'
+
'e5bbcdf14103c1d4cdd6bb4e142c14bd1ebc9130b8fa50cd5f50f99dbf54b1796f31adc78c21378d129e5c7ea9986d59e63ddb423bf3473c34f635f59dc19d8c')
+
+prepare() {
+  cd $pkgname
+  patch -p1 -i ../shared-build.patch
+}
+
+build() {
+  cd $pkgname
+  make
+}
+
+package() {
+  cd $pkgname
+  install -Dm755 tuntox "$pkgdir/usr/bin/tuntox"
+  install -Dm644 scripts/tuntox.service 
"$pkgdir/usr/lib/systemd/system/tuntox.service"
+}

Deleted: community-i686/shared-build.patch
===
--- community-i686/shared-build.patch   2016-10-07 16:05:50 UTC (rev 191566)
+++ community-i686/shared-build.patch   2016-10-07 16:15:37 UTC (rev 191567)
@@ -1,22 +0,0 @@
-diff --git a/Makefile b/Makefile
-index 5e19d0a..96c6ff3 100644
 a/Makefile
-+++ b/Makefile
-@@ -3,7 +3,7 @@ DEPS=libtoxcore
- CC=gcc
- CFLAGS=-g #-std=c99
- CFLAGS += $(shell pkg-config --cflags $(DEPS))
--LDFLAGS=-g -pthread -lm -static -lrt
-+LDFLAGS=-g -pthread -lm -lrt
- LDFLAGS += $(shell pkg-config --libs $(DEPS))
- OBJECTS=$(SOURCES:.c=.o)
- INCLUDES = $(wildcard *.h)
-@@ -19,7 +19,7 @@ gitversion.c: gitversion.h
-   $(CC) $(CFLAGS) $< -c -o $@
- 
- tuntox: $(OBJECTS) $(INCLUDES)
--  $(CC) -o $@ $(OBJECTS) -ltoxcore -lpthread $(LDFLAGS) 
/usr/local/lib/libsodium.a /usr/local/lib/libtoxcore.a
-+  $(CC) -o $@ $(OBJECTS) -ltoxcore -lpthread $(LDFLAGS) -lsodium
- 
- cscope.out:
-   cscope -bv ./*.[ch] 

Copied: tuntox/repos/community-i686/shared-build.patch (from rev 191566, 
tuntox/trunk/shared-build.patch)
===
--- community-i686/shared-build.patch   (rev 0)
+++ community-i686/shared-build.patch   2016-10-07 16:15:37 UTC (rev 191567)
@@ -0,0 +1,22 @@
+diff --git a/Makefile b/Makefile
+index 5e19d0a..96c6ff3 100644
+--- a/Makefile
 b/Makefile
+@@ -3,7 +3,7 @@ DEPS=libtoxcore
+ CC=gcc
+ CFLAGS=-g #-std=c99
+ CFLAGS += $(shell pkg-config --cflags $(DEPS))
+-LDFLAGS=-g -pthread 

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

2016-10-07 Thread Felix Yan
Date: Friday, October 7, 2016 @ 16:02:04
  Author: felixonmars
Revision: 191565

archrelease: copy trunk to multilib-x86_64

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

---+
 30-win32-aliases.conf |   40 ++---
 PKGBUILD  |  356 
 2 files changed, 198 insertions(+), 198 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2016-10-07 15:50:39 UTC (rev 191564)
+++ 30-win32-aliases.conf   2016-10-07 16:02:04 UTC (rev 191565)
@@ -1,20 +0,0 @@
-
-
-
-  
-MS Shell Dlg
-Microsoft Sans Serif
-sans-serif
-  
-  
-MS Shell Dlg 2
-Tahoma
-sans-serif
-  
-
-  
-MS Sans Serif
-Microsoft Sans Serif
-sans-serif
-  
-

Copied: wine/repos/multilib-x86_64/30-win32-aliases.conf (from rev 191564, 
wine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2016-10-07 16:02:04 UTC (rev 191565)
@@ -0,0 +1,20 @@
+
+
+
+  
+MS Shell Dlg
+Microsoft Sans Serif
+sans-serif
+  
+  
+MS Shell Dlg 2
+Tahoma
+sans-serif
+  
+
+  
+MS Sans Serif
+Microsoft Sans Serif
+sans-serif
+  
+

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-07 15:50:39 UTC (rev 191564)
+++ PKGBUILD2016-10-07 16:02:04 UTC (rev 191565)
@@ -1,178 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine
-pkgver=1.9.19
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(https://dl.winehq.org/wine/source/1.9/$pkgname-$_pkgbasever.tar.bz2{,.sign}
-30-win32-aliases.conf)
-sha1sums=('bc14e74430a360a208bbb959e9d2d6867b2791db'
-  'SKIP'
-  '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7
-  DA23579A74D4AD9AF9D3F945CEFAC8EAAF17519D)
-
-pkgdesc="A compatibility layer for running Windows programs"
-url="http://www.winehq.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-_depends=(
-  fontconfig  lib32-fontconfig
-  lcms2   lib32-lcms2
-  libxml2 lib32-libxml2
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  libpcap lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'  'gcc-multilib>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  libcl lib32-libcl
-  libxslt   lib32-libxslt
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  samba
-  opencl-headers
-)
-  
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  alsa-lib  lib32-alsa-lib
-  libjpeg-turbo lib32-libjpeg-turbo
-  libxcomposite lib32-libxcomposite
-  libxinerama   lib32-libxinerama
-  ncurses   lib32-ncurses
-  libcl lib32-libcl
-  libxslt   lib32-libxslt
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  cups
-  samba   dosbox
-)
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  _depends=(${_depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/} ${_depends[@]})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  

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

2016-10-07 Thread Felix Yan
Date: Friday, October 7, 2016 @ 16:05:50
  Author: felixonmars
Revision: 191566

upgpkg: tuntox 0.0.5-1

Modified:
  tuntox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 16:02:04 UTC (rev 191565)
+++ PKGBUILD2016-10-07 16:05:50 UTC (rev 191566)
@@ -2,8 +2,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=tuntox
-pkgver=0.0.4
-pkgrel=3
+pkgver=0.0.5
+pkgrel=1
 pkgdesc='Tunnel TCP connections over the Tox protocol'
 arch=('i686' 'x86_64')
 url='http://tuntox.pl/'


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

2016-10-07 Thread Felix Yan
Date: Friday, October 7, 2016 @ 15:37:42
  Author: felixonmars
Revision: 191559

upgpkg: wine-staging 1.9.20-1

Modified:
  wine-staging/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 15:17:43 UTC (rev 191558)
+++ PKGBUILD2016-10-07 15:37:42 UTC (rev 191559)
@@ -6,7 +6,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine-staging
-pkgver=1.9.19
+pkgver=1.9.20
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
@@ -13,7 +13,7 @@
 
 
source=("https://github.com/wine-compholio/wine-patched/archive/staging-$_pkgbasever.tar.gz;
 30-win32-aliases.conf)
-sha1sums=('8b581ec3582e0f68b923f683425d7cc55ea92c49'
+sha1sums=('1322112de8dee5111647ab3ac285afc5ca6fcce9'
   '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
 
 pkgdesc="A compatibility layer for running Windows programs - Staging branch"


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

2016-10-07 Thread Felix Yan
Date: Friday, October 7, 2016 @ 15:50:39
  Author: felixonmars
Revision: 191564

upgpkg: wine 1.9.20-1

Modified:
  wine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 15:41:29 UTC (rev 191563)
+++ PKGBUILD2016-10-07 15:50:39 UTC (rev 191564)
@@ -5,7 +5,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine
-pkgver=1.9.19
+pkgver=1.9.20
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
@@ -12,7 +12,7 @@
 
 
source=(https://dl.winehq.org/wine/source/1.9/$pkgname-$_pkgbasever.tar.bz2{,.sign}
 30-win32-aliases.conf)
-sha1sums=('bc14e74430a360a208bbb959e9d2d6867b2791db'
+sha1sums=('4d6eaff5090b960c079ebcb239c9898aedfbd145'
   'SKIP'
   '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
 validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7


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

2016-10-07 Thread Felix Yan
Date: Friday, October 7, 2016 @ 15:39:10
  Author: felixonmars
Revision: 191560

archrelease: copy trunk to multilib-x86_64

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

--+
 PKGBUILD |  368 ++---
 1 file changed, 184 insertions(+), 184 deletions(-)

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-07 15:37:42 UTC (rev 191559)
+++ PKGBUILD2016-10-07 15:39:10 UTC (rev 191560)
@@ -1,184 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging
-pkgver=1.9.19
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=("https://github.com/wine-compholio/wine-patched/archive/staging-$_pkgbasever.tar.gz;
-30-win32-aliases.conf)
-sha1sums=('8b581ec3582e0f68b923f683425d7cc55ea92c49'
-  '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch"
-url="http://www.wine-staging.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-_depends=(
-  attr lib32-attr
-  fontconfig   lib32-fontconfig
-  lcms2lib32-lcms2
-  libxml2  lib32-libxml2
-  libxcursor   lib32-libxcursor
-  libxrandrlib32-libxrandr
-  libxdamage   lib32-libxdamage
-  libxilib32-libxi
-  gettext  lib32-gettext
-  freetype2lib32-freetype2
-  glu  lib32-glu
-  libsmlib32-libsm
-  gcc-libs lib32-gcc-libs
-  libpcap  lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'   'gcc-multilib>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  libcl lib32-libcl
-  libxslt   lib32-libxslt
-  libpulse  lib32-libpulse
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  samba
-  opencl-headers
-)
-  
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  alsa-lib  lib32-alsa-lib
-  libjpeg-turbo lib32-libjpeg-turbo
-  libxcomposite lib32-libxcomposite
-  libxinerama   lib32-libxinerama
-  ncurses   lib32-ncurses
-  libcl lib32-libcl
-  libxslt   lib32-libxslt
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  cups
-  samba   dosbox
-)
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  _depends=(${_depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/} ${_depends[@]})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  optdepends=(${optdepends[@]/*32-*/})
-  provides=("wine=$pkgver")
-  conflicts=('wine')
-else
-  makedepends=(${makedepends[@]} ${_depends[@]})
-  provides=("wine=$pkgver" "wine-wow64=$pkgver")
-  conflicts=('wine' 'wine-wow64')
-fi
-
-prepare() {
-  # Allow ccache to work
-  mv wine-patched-staging-$_pkgbasever $pkgname
-
-  sed 's|OpenCL/opencl.h|CL/opencl.h|g' -i $pkgname/configure*
-
-  # Get rid of old build dirs
-  rm -rf $pkgname-{32,64}-build
-  mkdir 

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

2016-10-07 Thread Jakob Gruber
Date: Friday, October 7, 2016 @ 15:41:29
  Author: schuay
Revision: 191563

archrelease: copy trunk to community-x86_64

Added:
  mc/repos/community-x86_64/PKGBUILD
(from rev 191562, mc/trunk/PKGBUILD)
Deleted:
  mc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-07 15:41:23 UTC (rev 191562)
+++ PKGBUILD2016-10-07 15:41:29 UTC (rev 191563)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: schuay 
-# Contributor: Daniel J Griffiths 
-
-pkgname=mc
-pkgver=4.8.17
-pkgrel=2
-pkgdesc="Midnight Commander is a text based filemanager/shell that emulates 
Norton Commander"
-arch=('i686' 'x86_64')
-url="http://www.ibiblio.org/mc/;
-license=('GPL')
-depends=('e2fsprogs' 'glib2' 'gpm' 'libssh2' 'slang')
-makedepends=('libxt' 'libx11' 'unzip')
-optdepends=('aspell: spelling corrections'
-'cabextract: ucab extfs'
-'cdparanoia: audio extfs'
-'cdrkit: iso9660 extfs'
-'cvs: CVS support'
-'gawk: hp48+ extfs'
-'mtools: a+ extfs'
-'p7zip: support for 7zip archives'
-'perl: needed by several extfs scripts'
-'python2-boto: s3+ extfs'
-'python2-pytz: s3+ extfs'
-'samba: VFS support'
-'unace: uace extfs'
-'unarj: uarj extfs'
-'unrar: urar extfs'
-'zip: uzip extfs')
-backup=('etc/mc/edit.indent.rc'
-'etc/mc/filehighlight.ini'
-'etc/mc/mc.ext'
-'etc/mc/mc.keymap'
-'etc/mc/mc.menu'
-'etc/mc/mcedit.menu'
-'etc/mc/sfs.ini')
-options=('!emptydirs')
-source=("http://ftp.midnight-commander.org/${pkgname}-${pkgver}.tar.xz;
-"0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch"
-"0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch")
-sha256sums=('0447bdddc0baa81866e66f50f9a545d29d6eebb68b0ab46c98d8fddd2bf4e44d'
-'9a3639ff068dfddee0342d631b56d8df6c0240105802fb00edb0fa3a265e95d6'
-'2a5ab735226ce41b0ebbb4bcedb0e04e82ea3cb14e2776acede1e58816f3d787')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -Np1 < 
${srcdir}/0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch
-  patch -Np1 < 
${srcdir}/0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch
-}
-
-build() {
-  export PYTHON=/usr/bin/python2
-
-  cd ${pkgname}-${pkgver}
-  ./configure \
-  --prefix=/usr \
-  --libexecdir=/usr/lib \
-  --sysconfdir=/etc \
-  --enable-vfs-smb \
-  --with-x
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: mc/repos/community-x86_64/PKGBUILD (from rev 191562, mc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-07 15:41:29 UTC (rev 191563)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: schuay 
+# Contributor: Daniel J Griffiths 
+
+pkgname=mc
+pkgver=4.8.18
+pkgrel=1
+pkgdesc="Midnight Commander is a text based filemanager/shell that emulates 
Norton Commander"
+arch=('i686' 'x86_64')
+url="http://www.ibiblio.org/mc/;
+license=('GPL')
+depends=('e2fsprogs' 'glib2' 'gpm' 'libssh2' 'slang')
+makedepends=('libxt' 'libx11' 'unzip')
+optdepends=('aspell: spelling corrections'
+'cabextract: ucab extfs'
+'cdparanoia: audio extfs'
+'cdrkit: iso9660 extfs'
+'cvs: CVS support'
+'gawk: hp48+ extfs'
+'mtools: a+ extfs'
+'p7zip: support for 7zip archives'
+'perl: needed by several extfs scripts'
+'python2-boto: s3+ extfs'
+'python2-pytz: s3+ extfs'
+'samba: VFS support'
+'unace: uace extfs'
+'unarj: uarj extfs'
+'unrar: urar extfs'
+'zip: uzip extfs')
+backup=('etc/mc/edit.indent.rc'
+'etc/mc/filehighlight.ini'
+'etc/mc/mc.ext'
+'etc/mc/mc.keymap'
+'etc/mc/mc.menu'
+'etc/mc/mcedit.menu'
+'etc/mc/sfs.ini')
+options=('!emptydirs')
+source=("http://ftp.midnight-commander.org/${pkgname}-${pkgver}.tar.xz;)
+sha256sums=('f7636815c987c1719c4f5de2dcd156a0e7d097b1d10e4466d2bdead343d5bece')
+
+build() {
+  export PYTHON=/usr/bin/python2
+
+  cd ${pkgname}-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --libexecdir=/usr/lib \
+  --sysconfdir=/etc \
+  --enable-vfs-smb \
+  --with-x
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # Replace mc.keymap symlink with target file to fix backup mechanism 
(FS#50889).
+  rm "${pkgdir}"/etc/mc/mc.keymap && cp "${pkgdir}"/etc/mc/mc{.default,}.keymap
+}


  1   2   >