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

2016-02-05 Thread Anatol Pomozov
Date: Friday, February 5, 2016 @ 23:16:26
  Author: anatolik
Revision: 160440

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

Added:
  vtk/repos/community-testing-i686/
  vtk/repos/community-testing-i686/.contrib
(from rev 160439, vtk/trunk/.contrib)
  vtk/repos/community-testing-i686/PKGBUILD
(from rev 160439, vtk/trunk/PKGBUILD)
  vtk/repos/community-testing-i686/gdal2.patch
(from rev 160439, vtk/trunk/gdal2.patch)
  vtk/repos/community-testing-x86_64/
  vtk/repos/community-testing-x86_64/.contrib
(from rev 160439, vtk/trunk/.contrib)
  vtk/repos/community-testing-x86_64/PKGBUILD
(from rev 160439, vtk/trunk/PKGBUILD)
  vtk/repos/community-testing-x86_64/gdal2.patch
(from rev 160439, vtk/trunk/gdal2.patch)

--+
 community-testing-i686/.contrib  |6 +
 community-testing-i686/PKGBUILD  |  122 +
 community-testing-i686/gdal2.patch   |   31 
 community-testing-x86_64/.contrib|6 +
 community-testing-x86_64/PKGBUILD|  122 +
 community-testing-x86_64/gdal2.patch |   31 
 6 files changed, 318 insertions(+)

Copied: vtk/repos/community-testing-i686/.contrib (from rev 160439, 
vtk/trunk/.contrib)
===
--- community-testing-i686/.contrib (rev 0)
+++ community-testing-i686/.contrib 2016-02-05 22:16:26 UTC (rev 160440)
@@ -0,0 +1,6 @@
+# Contributor: Christofer Bertonha 
+# Contributor: leepesjee 
+# Contributor: Olivier Medoc
+# Contributor: ignotus
+# Contributor: Fabian Moser
+# Contributor: djscholl

Copied: vtk/repos/community-testing-i686/PKGBUILD (from rev 160439, 
vtk/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-02-05 22:16:26 UTC (rev 160440)
@@ -0,0 +1,122 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Andrzej Giniewicz 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+
+pkgname=vtk
+pkgver=7.0.0
+_majorver=7.0
+pkgrel=1
+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' '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;
+# https://github.com/Kitware/VTK/pull/21
+gdal2.patch)
+options=(staticlibs)
+sha1sums=('7719fac36b36965eaf5076542166ba49bbe7afbb'
+  '1bbaa642a3e3676a58a08c956df73645326c2859'
+  '8d16a1fba15e4eb95c03fe97937488ddcdd7fbd0'
+  'c60610e7c8cf0ad93d7c02cbf8a20fc415f59b3e')
+
+prepare() {
+  cd "${srcdir}"/VTK-$pkgver
+
+  # fix compilation errors:
+  patch -Np1 -i "${srcdir}"/gdal2.patch
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  cd "${srcdir}"
+  rm -rf build
+  mkdir build
+  cd build
+
+  # to help cmake find java
+  export JAVA_HOME=/usr/lib/jvm/default
+
+  # flags to enable using system libs
+  local cmake_system_flags=""
+  # TODO: try to use system provided XDMF2, XDMF3, LIBPROJ4 NETCDF
+  # 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
+cmake_system_flags+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
+  done
+
+  # flags to use python2 instead of python which is 

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

2016-02-05 Thread Anatol Pomozov
Date: Friday, February 5, 2016 @ 23:15:44
  Author: anatolik
Revision: 160439

upgpkg: vtk 7.0.0-1

Modified:
  vtk/trunk/PKGBUILD

--+
 PKGBUILD |   22 +-
 1 file changed, 9 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 22:04:42 UTC (rev 160438)
+++ PKGBUILD2016-02-05 22:15:44 UTC (rev 160439)
@@ -4,9 +4,9 @@
 # Contributor: Thomas Dziedzic < gostrc at gmail >
 
 pkgname=vtk
-pkgver=6.3.0
-_majorver=6.3
-pkgrel=5
+pkgver=7.0.0
+_majorver=7.0
+pkgrel=1
 pkgdesc='A software system for 3D computer graphics, image processing, and 
visualization'
 arch=('i686' 'x86_64')
 url='http://www.vtk.org/'
@@ -26,20 +26,18 @@
 'unixodbc'
 'glew'
 'gdal'
-'mariadb')
+'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;
 # https://github.com/Kitware/VTK/pull/21
-
remove-vtkxdmf3.patch::https://github.com/nschloe/VTK/commit/a98527dfe9ce23beebf386fab07caef99b911ede.patch
-
find-libxml2.patch::https://github.com/nschloe/VTK/commit/6216f98a7124e12a2c1cefd113347f94b51f3c51.patch
 gdal2.patch)
 options=(staticlibs)
-sha1sums=('452efab1eedf6202f2d9a3362b5f69adfc44edda'
-  '424b138c079a688cd8c52c43d12b54e2f2b06acf'
-  '622a2bd314262961c6d96f2686f96224e8e31de3'
-  'f8c9270941707a296ff5e0ea3c73a1f0407c6f9b'
-  'baa807e4495219b3104b6245ca79b8f33ff299db'
+sha1sums=('7719fac36b36965eaf5076542166ba49bbe7afbb'
+  '1bbaa642a3e3676a58a08c956df73645326c2859'
+  '8d16a1fba15e4eb95c03fe97937488ddcdd7fbd0'
   'c60610e7c8cf0ad93d7c02cbf8a20fc415f59b3e')
 
 prepare() {
@@ -46,8 +44,6 @@
   cd "${srcdir}"/VTK-$pkgver
 
   # fix compilation errors:
-  patch -Np1 -i "${srcdir}"/remove-vtkxdmf3.patch
-  patch -Np1 -i "${srcdir}"/find-libxml2.patch
   patch -Np1 -i "${srcdir}"/gdal2.patch
 
   sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \


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

2016-02-05 Thread Felix Yan
Date: Saturday, February 6, 2016 @ 07:29:05
  Author: fyan
Revision: 160455

prepare 1.9.3 with gstreamer enabled (currently doesn't build due to 
https://bugs.archlinux.org/task/48054 )

Modified:
  wine/trunk/PKGBUILD

--+
 PKGBUILD |   84 +
 1 file changed, 41 insertions(+), 43 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-06 05:01:37 UTC (rev 160454)
+++ PKGBUILD2016-02-06 06:29:05 UTC (rev 160455)
@@ -5,7 +5,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine
-pkgver=1.9.2
+pkgver=1.9.3
 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=('49b359d445a95446ff3151745085ff4dfc7dae63'
+sha1sums=('2f9565017719ab1057907621ea5775a37023cdd7'
   'SKIP'
   '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
 validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7
@@ -44,45 +44,47 @@
 
 makedepends=(autoconf ncurses bison perl fontforge flex
   'gcc>=4.5.0-2'  'gcc-multilib>=4.5.0-2'
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  gnutls  lib32-gnutls
-  libxinerama lib32-libxinerama
-  libxcomposite   lib32-libxcomposite
-  libxmu  lib32-libxmu
-  libxxf86vm  lib32-libxxf86vm
-  libldap lib32-libldap
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  libpulselib32-libpulse
-  alsa-liblib32-alsa-lib
-  libxcomposite   lib32-libxcomposite
-  mesalib32-mesa
-  mesa-libgl  lib32-mesa-libgl
-  libcl   lib32-libcl
-  libxslt lib32-libxslt
+  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=(
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  libldap lib32-libldap
-  gnutls  lib32-gnutls
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  libpulselib32-libpulse
-  alsa-pluginslib32-alsa-plugins
-  alsa-liblib32-alsa-lib
-  libjpeg-turbo   lib32-libjpeg-turbo
-  libxcomposite   lib32-libxcomposite
-  libxinerama lib32-libxinerama
-  ncurses lib32-ncurses
-  libcl   lib32-libcl
-  libxslt lib32-libxslt
+  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
 )
@@ -106,9 +108,6 @@
 
   sed 's|OpenCL/opencl.h|CL/opencl.h|g' -i $pkgname/configure*
 
-  # These additional CPPFLAGS solve FS#27662 and FS#34195
-  export CPPFLAGS="${CPPFLAGS/-D_FORTIFY_SOURCE=2/} -D_FORTIFY_SOURCE=0"
-
   # Get rid of old build dirs
   rm -rf $pkgname-{32,64}-build
   mkdir $pkgname-32-build
@@ -126,7 +125,7 @@
   --prefix=/usr \
   --libdir=/usr/lib \
   --with-x \
-  --without-gstreamer \
+  --with-gstreamer \
   --enable-win64
 # Gstreamer was disabled for FS#33655
 
@@ -145,11 +144,10 @@
   ../$pkgname/configure \
 --prefix=/usr \
 --with-x \
---without-gstreamer \
+--with-gstreamer \
 "${_wine32opts[@]}"
 
-  # These additional flags solve FS#23277
-  make CFLAGS+="-mstackrealign -mincoming-stack-boundary=2" 
CXXFLAGS+="-mstackrealign -mincoming-stack-boundary=2"
+  make
 }
 
 package() {


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

2016-02-05 Thread Gaetan Bisson
Date: Friday, February 5, 2016 @ 18:07:02
  Author: bisson
Revision: 258907

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-02-05 17:06:24 UTC (rev 258906)
+++ extra-i686/PKGBUILD 2016-02-05 17:07:02 UTC (rev 258907)
@@ -1,30 +0,0 @@
-# $Id$
-# Contributor: Wieland Hoffmann 
-# Maintainer: Gaetan Bisson 
-
-pkgname=chromaprint
-pkgver=1.2
-pkgrel=2
-pkgdesc='Library that implements a custom algorithm for extracting 
fingerprints from any audio source'
-url='https://acoustid.org/chromaprint'
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('ffmpeg')
-makedepends=('cmake')
-source=("https://bitbucket.org/acoustid/${pkgname}/downloads/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('113415ca22298c201721b43e006824c7865afc17')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_EXAMPLES=ON \
-   .
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-}

Copied: chromaprint/repos/extra-i686/PKGBUILD (from rev 258906, 
chromaprint/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-02-05 17:07:02 UTC (rev 258907)
@@ -0,0 +1,30 @@
+# $Id$
+# Contributor: Wieland Hoffmann 
+# Maintainer: Gaetan Bisson 
+
+pkgname=chromaprint
+pkgver=1.3
+pkgrel=1
+pkgdesc='Library that implements a custom algorithm for extracting 
fingerprints from any audio source'
+url='https://acoustid.org/chromaprint'
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('ffmpeg')
+makedepends=('cmake')
+source=("https://bitbucket.org/acoustid/${pkgname}/downloads/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('39f36dc4b8b9aee0bc2488ca5cf457bceb4c1483')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_EXAMPLES=ON \
+   .
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-02-05 17:06:24 UTC (rev 258906)
+++ extra-x86_64/PKGBUILD   2016-02-05 17:07:02 UTC (rev 258907)
@@ -1,30 +0,0 @@
-# $Id$
-# Contributor: Wieland Hoffmann 
-# Maintainer: Gaetan Bisson 
-
-pkgname=chromaprint
-pkgver=1.2
-pkgrel=2
-pkgdesc='Library that implements a custom algorithm for extracting 
fingerprints from any audio source'
-url='https://acoustid.org/chromaprint'
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('ffmpeg')
-makedepends=('cmake')
-source=("https://bitbucket.org/acoustid/${pkgname}/downloads/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('113415ca22298c201721b43e006824c7865afc17')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_EXAMPLES=ON \
-   .
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-}

Copied: chromaprint/repos/extra-x86_64/PKGBUILD (from rev 258906, 
chromaprint/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-02-05 17:07:02 UTC (rev 258907)
@@ -0,0 +1,30 @@
+# $Id$
+# Contributor: Wieland Hoffmann 
+# Maintainer: Gaetan Bisson 
+
+pkgname=chromaprint
+pkgver=1.3
+pkgrel=1
+pkgdesc='Library that implements a custom algorithm for extracting 
fingerprints from any audio source'
+url='https://acoustid.org/chromaprint'
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('ffmpeg')
+makedepends=('cmake')
+source=("https://bitbucket.org/acoustid/${pkgname}/downloads/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('39f36dc4b8b9aee0bc2488ca5cf457bceb4c1483')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+ 

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

2016-02-05 Thread Antonio Rojas
Date: Friday, February 5, 2016 @ 16:32:39
  Author: arojas
Revision: 160408

Don't ship tmpfiles file (FS#48044)

Modified:
  connman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 13:52:24 UTC (rev 160407)
+++ PKGBUILD2016-02-05 15:32:39 UTC (rev 160408)
@@ -5,7 +5,7 @@
 
 pkgname=connman
 pkgver=1.31
-pkgrel=1
+pkgrel=2
 pkgdesc="Wireless LAN network manager"
 url="https://01.org/connman;
 arch=('i686' 'x86_64')
@@ -21,16 +21,16 @@
  'a8d22ee089fb0ed725130d16ad393047')
 
 prepare(){
-  cd ${pkgname}-${pkgver}
-  patch -Np1 -i "${srcdir}/allow_group_network.diff"
+  cd $pkgname-$pkgver
+  patch -Np1 -i "$srcdir/allow_group_network.diff"
 }
 
 build() {
-  cd ${pkgname}-${pkgver}
+  cd $pkgname-$pkgver
 
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
- --bindir=/usr/bin \
- --sbindir=/usr/bin \
+  --bindir=/usr/bin \
+  --sbindir=/usr/bin \
   --with-systemdunitdir=/usr/lib/systemd/system \
   --enable-pptp \
   --enable-openconnect \
@@ -42,8 +42,10 @@
   make
 }
 
-package(){
-  make -C "${srcdir}/${pkgname}-${pkgver}" DESTDIR="${pkgdir}" install
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
   install -Dm755 "$srcdir/$pkgname-$pkgver/client/${pkgname}ctl" 
"$pkgdir/usr/bin/${pkgname}ctl"
   find "$pkgdir/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
+# See FS#48044
+  rm -r "$pkgdir"/usr/lib/tmpfiles.d
 }


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

2016-02-05 Thread Gaetan Bisson
Date: Friday, February 5, 2016 @ 18:06:24
  Author: bisson
Revision: 258906

upstream update

Modified:
  chromaprint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 15:31:20 UTC (rev 258905)
+++ PKGBUILD2016-02-05 17:06:24 UTC (rev 258906)
@@ -3,8 +3,8 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=chromaprint
-pkgver=1.2
-pkgrel=2
+pkgver=1.3
+pkgrel=1
 pkgdesc='Library that implements a custom algorithm for extracting 
fingerprints from any audio source'
 url='https://acoustid.org/chromaprint'
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('ffmpeg')
 makedepends=('cmake')
 
source=("https://bitbucket.org/acoustid/${pkgname}/downloads/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('113415ca22298c201721b43e006824c7865afc17')
+sha1sums=('39f36dc4b8b9aee0bc2488ca5cf457bceb4c1483')
 
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"


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

2016-02-05 Thread Andreas Radke
Date: Friday, February 5, 2016 @ 15:51:38
  Author: andyrtr
Revision: 258904

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

Added:
  libreoffice-still/repos/extra-i686/PKGBUILD
(from rev 258903, libreoffice-still/trunk/PKGBUILD)
  libreoffice-still/repos/extra-i686/libreoffice-still.csh
(from rev 258903, libreoffice-still/trunk/libreoffice-still.csh)
  libreoffice-still/repos/extra-i686/libreoffice-still.install
(from rev 258903, libreoffice-still/trunk/libreoffice-still.install)
  libreoffice-still/repos/extra-i686/libreoffice-still.sh
(from rev 258903, libreoffice-still/trunk/libreoffice-still.sh)
  
libreoffice-still/repos/extra-i686/make-pyuno-work-with-system-wide-module-install.diff
(from rev 258903, 
libreoffice-still/trunk/make-pyuno-work-with-system-wide-module-install.diff)
  libreoffice-still/repos/extra-x86_64/PKGBUILD
(from rev 258903, libreoffice-still/trunk/PKGBUILD)
  libreoffice-still/repos/extra-x86_64/libreoffice-still.csh
(from rev 258903, libreoffice-still/trunk/libreoffice-still.csh)
  libreoffice-still/repos/extra-x86_64/libreoffice-still.install
(from rev 258903, libreoffice-still/trunk/libreoffice-still.install)
  libreoffice-still/repos/extra-x86_64/libreoffice-still.sh
(from rev 258903, libreoffice-still/trunk/libreoffice-still.sh)
  
libreoffice-still/repos/extra-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 258903, 
libreoffice-still/trunk/make-pyuno-work-with-system-wide-module-install.diff)
Deleted:
  libreoffice-still/repos/extra-i686/PKGBUILD
  libreoffice-still/repos/extra-i686/libreoffice-still.csh
  libreoffice-still/repos/extra-i686/libreoffice-still.install
  libreoffice-still/repos/extra-i686/libreoffice-still.sh
  
libreoffice-still/repos/extra-i686/make-pyuno-work-with-system-wide-module-install.diff
  libreoffice-still/repos/extra-x86_64/PKGBUILD
  libreoffice-still/repos/extra-x86_64/libreoffice-still.csh
  libreoffice-still/repos/extra-x86_64/libreoffice-still.install
  libreoffice-still/repos/extra-x86_64/libreoffice-still.sh
  
libreoffice-still/repos/extra-x86_64/make-pyuno-work-with-system-wide-module-install.diff

---+
 /PKGBUILD |  768 
++
 /libreoffice-still.csh|   12 
 /libreoffice-still.install|   26 
 /libreoffice-still.sh |   12 
 /make-pyuno-work-with-system-wide-module-install.diff |   88 +
 extra-i686/PKGBUILD   |  385 -
 extra-i686/libreoffice-still.csh  |6 
 extra-i686/libreoffice-still.install  |   13 
 extra-i686/libreoffice-still.sh   |6 
 extra-i686/make-pyuno-work-with-system-wide-module-install.diff   |   44 
 extra-x86_64/PKGBUILD |  385 -
 extra-x86_64/libreoffice-still.csh|6 
 extra-x86_64/libreoffice-still.install|   13 
 extra-x86_64/libreoffice-still.sh |6 
 extra-x86_64/make-pyuno-work-with-system-wide-module-install.diff |   44 
 15 files changed, 906 insertions(+), 908 deletions(-)

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


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

2016-02-05 Thread Antonio Rojas
Date: Friday, February 5, 2016 @ 16:33:12
  Author: arojas
Revision: 160409

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

Added:
  connman/repos/community-i686/PKGBUILD
(from rev 160408, connman/trunk/PKGBUILD)
  connman/repos/community-i686/allow_group_network.diff
(from rev 160408, connman/trunk/allow_group_network.diff)
  connman/repos/community-x86_64/PKGBUILD
(from rev 160408, connman/trunk/PKGBUILD)
  connman/repos/community-x86_64/allow_group_network.diff
(from rev 160408, connman/trunk/allow_group_network.diff)
Deleted:
  connman/repos/community-i686/PKGBUILD
  connman/repos/community-i686/allow_group_network.diff
  connman/repos/community-x86_64/PKGBUILD
  connman/repos/community-x86_64/allow_group_network.diff

---+
 /PKGBUILD |  102 
 /allow_group_network.diff |   24 ++
 community-i686/PKGBUILD   |   49 -
 community-i686/allow_group_network.diff   |   12 ---
 community-x86_64/PKGBUILD |   49 -
 community-x86_64/allow_group_network.diff |   12 ---
 6 files changed, 126 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-05 15:32:39 UTC (rev 160408)
+++ community-i686/PKGBUILD 2016-02-05 15:33:12 UTC (rev 160409)
@@ -1,49 +0,0 @@
-#$Id$
-# Maintainer:
-# Contributor: Daniel Wallace 
-# Contributor: Lucas De Marchi 
-
-pkgname=connman
-pkgver=1.31
-pkgrel=1
-pkgdesc="Wireless LAN network manager"
-url="https://01.org/connman;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('dbus' 'iptables' 'gnutls' 'glib2')
-optdepends=('bluez: Support for Bluetooth devices'
-'wpa_supplicant: For WiFi devices'
-'pptpclient: for ppp support')
-makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
-source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
-'allow_group_network.diff')
-md5sums=('cb1c413fcc4f49430294bbd7a92f5f3c'
- 'a8d22ee089fb0ed725130d16ad393047')
-
-prepare(){
-  cd ${pkgname}-${pkgver}
-  patch -Np1 -i "${srcdir}/allow_group_network.diff"
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
- --bindir=/usr/bin \
- --sbindir=/usr/bin \
-  --with-systemdunitdir=/usr/lib/systemd/system \
-  --enable-pptp \
-  --enable-openconnect \
-  --enable-vpnc \
-  --enable-openvpn \
-  --enable-polkit \
-  --enable-client
-
-  make
-}
-
-package(){
-  make -C "${srcdir}/${pkgname}-${pkgver}" DESTDIR="${pkgdir}" install
-  install -Dm755 "$srcdir/$pkgname-$pkgver/client/${pkgname}ctl" 
"$pkgdir/usr/bin/${pkgname}ctl"
-  find "$pkgdir/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
-}

Copied: connman/repos/community-i686/PKGBUILD (from rev 160408, 
connman/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-05 15:33:12 UTC (rev 160409)
@@ -0,0 +1,51 @@
+#$Id$
+# Maintainer:
+# Contributor: Daniel Wallace 
+# Contributor: Lucas De Marchi 
+
+pkgname=connman
+pkgver=1.31
+pkgrel=2
+pkgdesc="Wireless LAN network manager"
+url="https://01.org/connman;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus' 'iptables' 'gnutls' 'glib2')
+optdepends=('bluez: Support for Bluetooth devices'
+'wpa_supplicant: For WiFi devices'
+'pptpclient: for ppp support')
+makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
+source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
+'allow_group_network.diff')
+md5sums=('cb1c413fcc4f49430294bbd7a92f5f3c'
+ 'a8d22ee089fb0ed725130d16ad393047')
+
+prepare(){
+  cd $pkgname-$pkgver
+  patch -Np1 -i "$srcdir/allow_group_network.diff"
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --bindir=/usr/bin \
+  --sbindir=/usr/bin \
+  --with-systemdunitdir=/usr/lib/systemd/system \
+  --enable-pptp \
+  --enable-openconnect \
+  --enable-vpnc \
+  --enable-openvpn \
+  --enable-polkit \
+  --enable-client
+
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+  install -Dm755 "$srcdir/$pkgname-$pkgver/client/${pkgname}ctl" 
"$pkgdir/usr/bin/${pkgname}ctl"
+  find "$pkgdir/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
+# See FS#48044
+  rm -r "$pkgdir"/usr/lib/tmpfiles.d
+}

Deleted: community-i686/allow_group_network.diff
===
--- community-i686/allow_group_network.diff 2016-02-05 

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

2016-02-05 Thread Felix Yan
Date: Friday, February 5, 2016 @ 16:33:15
  Author: fyan
Revision: 160410

upgpkg: dart 1.14.1-1

Modified:
  dart/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 15:33:12 UTC (rev 160409)
+++ PKGBUILD2016-02-05 15:33:15 UTC (rev 160410)
@@ -7,7 +7,7 @@
 # Contributor: Julien Nicoulaud 
 
 pkgname=dart
-pkgver=1.14.0
+pkgver=1.14.1
 pkgrel=1
 pkgdesc='The dart programming language SDK'
 arch=('x86_64' 'i686')
@@ -17,8 +17,8 @@
 options=('!strip')
 
source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip;)
 
source_i686+=("$pkgname-$pkgver-32.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-ia32-release.zip;)
-sha512sums_x86_64=('f3f7ec6eeb43078abd55c8652a238491831ca7d4cc0ee6ebde1d8ad988fac62b6bca2dbad313fd2ea17036190954e543a306c8110c3275227aa5043e8c36bc40')
-sha512sums_i686=('8d76aa41e01bc462bc4c62aad42f822272105c2e56f0ce6ec0b54a79dd0ba72a17eb9b8c46a5234a1060b91f01fc936e3747f4ab921857543d13258b15fb03da')
+sha512sums_x86_64=('2a3e3b5c8e8ffc016e2a840680ec9e8b2cab12f619d8a467680448e09b72b9949bacd55a17d72371f3d6ff3f578d8b48b926d20edd8c36acc9343b8a7a95951f')
+sha512sums_i686=('b8987776adbe73110a94cd4e1cd150cb3de13d297abfbcde28ee46f8d3517caae9dc1783fac638921b22fa58eb93da7b3d1542d3dff3e29b8b0f64cabf3d0e6e')
 
 prepare() {
   # Fix permissions


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

2016-02-05 Thread Felix Yan
Date: Friday, February 5, 2016 @ 16:33:46
  Author: fyan
Revision: 160411

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-05 15:33:15 UTC (rev 160410)
+++ community-i686/PKGBUILD 2016-02-05 15:33:46 UTC (rev 160411)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Maintainer: Felix Yan 
-# Contributor: T. Jameson Little 
-# Contributor: Usagi Ito 
-# Contributor: siasia 
-# Contributor: Julien Nicoulaud 
-
-pkgname=dart
-pkgver=1.14.0
-pkgrel=1
-pkgdesc='The dart programming language SDK'
-arch=('x86_64' 'i686')
-url='http://www.dartlang.org/'
-license=('BSD')
-makedepends=('setconf')
-options=('!strip')
-source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip;)
-source_i686+=("$pkgname-$pkgver-32.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-ia32-release.zip;)
-sha512sums_x86_64=('f3f7ec6eeb43078abd55c8652a238491831ca7d4cc0ee6ebde1d8ad988fac62b6bca2dbad313fd2ea17036190954e543a306c8110c3275227aa5043e8c36bc40')
-sha512sums_i686=('8d76aa41e01bc462bc4c62aad42f822272105c2e56f0ce6ec0b54a79dd0ba72a17eb9b8c46a5234a1060b91f01fc936e3747f4ab921857543d13258b15fb03da')
-
-prepare() {
-  # Fix permissions
-  find "$pkgname-sdk" -type d -exec chmod 0755 '{}' + \
--or -type f -exec chmod 0644 '{}' +
-  chmod +x "$pkgname-sdk/bin/"*
-
-  cd "$pkgname-sdk/bin"
-
-  # Configure paths
-  setconf dart2js BIN_DIR "/opt/$pkgname-sdk/bin"
-  setconf dart2js PROG_NAME "/opt/$pkgname-sdk/bin/dart2js"
-  setconf dartanalyzer SCRIPT_DIR "/opt/$pkgname-sdk/bin"
-  setconf pub BIN_DIR "/opt/$pkgname-sdk/bin"
-  setconf pub SDK_DIR "/opt/$pkgname-sdk/"
-  setconf dartfmt BIN_DIR "/opt/$pkgname-sdk/bin"
-  setconf dartfmt SDK_DIR "/opt/$pkgname-sdk/"
-
-  # Extract license (AUTHORS and LICENSE files are missing)
-  head -n5 "../include/dart_api.h" > ../../LICENSE
-}
-
-package() {
-  # Create directories
-  install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname-sdk"}}
-
-  # Package the files
-  cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/"
-
-  # Set up symbolic links for the executables
-  for f in dart dart2js dartanalyzer pub dartfmt; do
-ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
-  done
-
-  # Package samples and documentation
-  for f in samples about.html about_files; do
-echo mv "$pkgdir/opt/$pkgname-sdk/$f" "$pkgdir/usr/share/doc/$pkgname/"
-  done
-
-  # BSD License
-  install -Dm644 LICENSE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dart/repos/community-i686/PKGBUILD (from rev 160410, 
dart/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-05 15:33:46 UTC (rev 160411)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Maintainer: Felix Yan 
+# Contributor: T. Jameson Little 
+# Contributor: Usagi Ito 
+# Contributor: siasia 
+# Contributor: Julien Nicoulaud 
+
+pkgname=dart
+pkgver=1.14.1
+pkgrel=1
+pkgdesc='The dart programming language SDK'
+arch=('x86_64' 'i686')
+url='http://www.dartlang.org/'
+license=('BSD')
+makedepends=('setconf')
+options=('!strip')
+source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip;)
+source_i686+=("$pkgname-$pkgver-32.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-ia32-release.zip;)
+sha512sums_x86_64=('2a3e3b5c8e8ffc016e2a840680ec9e8b2cab12f619d8a467680448e09b72b9949bacd55a17d72371f3d6ff3f578d8b48b926d20edd8c36acc9343b8a7a95951f')
+sha512sums_i686=('b8987776adbe73110a94cd4e1cd150cb3de13d297abfbcde28ee46f8d3517caae9dc1783fac638921b22fa58eb93da7b3d1542d3dff3e29b8b0f64cabf3d0e6e')
+
+prepare() {
+  # Fix permissions
+  find "$pkgname-sdk" -type d -exec chmod 0755 '{}' + \
+-or -type f -exec chmod 0644 '{}' +

[arch-commits] Commit in haskell-math-functions/repos (6 files)

2016-02-05 Thread Felix Yan
Date: Saturday, February 6, 2016 @ 08:51:42
  Author: fyan
Revision: 160457

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

Added:
  haskell-math-functions/repos/community-i686/
  haskell-math-functions/repos/community-i686/PKGBUILD
(from rev 160456, haskell-math-functions/trunk/PKGBUILD)
  haskell-math-functions/repos/community-i686/haskell-math-functions.install
(from rev 160456, 
haskell-math-functions/trunk/haskell-math-functions.install)
  haskell-math-functions/repos/community-x86_64/
  haskell-math-functions/repos/community-x86_64/PKGBUILD
(from rev 160456, haskell-math-functions/trunk/PKGBUILD)
  haskell-math-functions/repos/community-x86_64/haskell-math-functions.install
(from rev 160456, 
haskell-math-functions/trunk/haskell-math-functions.install)

-+
 community-i686/PKGBUILD |   42 ++
 community-i686/haskell-math-functions.install   |   18 +
 community-x86_64/PKGBUILD   |   42 ++
 community-x86_64/haskell-math-functions.install |   18 +
 4 files changed, 120 insertions(+)

Copied: haskell-math-functions/repos/community-i686/PKGBUILD (from rev 160456, 
haskell-math-functions/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-06 07:51:42 UTC (rev 160457)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=math-functions
+pkgname=haskell-math-functions
+pkgver=0.1.5.2
+pkgrel=1
+pkgdesc="Special functions and Chebyshev polynomials"
+url="https://github.com/bos/math-functions;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-erf" "haskell-vector" "haskell-vector-th-unbox")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('9ec9b809d33c3b4deebc07d8e776cb3f81866e99906ed84f9c4145fe8eb39f89')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-math-functions/repos/community-i686/haskell-math-functions.install 
(from rev 160456, haskell-math-functions/trunk/haskell-math-functions.install)
===
--- community-i686/haskell-math-functions.install   
(rev 0)
+++ community-i686/haskell-math-functions.install   2016-02-06 07:51:42 UTC 
(rev 160457)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-math-functions
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-math-functions/repos/community-x86_64/PKGBUILD (from rev 
160456, haskell-math-functions/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-06 07:51:42 UTC (rev 160457)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=math-functions
+pkgname=haskell-math-functions
+pkgver=0.1.5.2
+pkgrel=1
+pkgdesc="Special functions and Chebyshev polynomials"
+url="https://github.com/bos/math-functions;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-erf" "haskell-vector" "haskell-vector-th-unbox")
+options=('staticlibs')

[arch-commits] Commit in (5 files)

2016-02-05 Thread Felix Yan
Date: Saturday, February 6, 2016 @ 08:51:13
  Author: fyan
Revision: 160456

addpkg: haskell-math-functions 0.1.5.2-1

Added:
  haskell-math-functions/
  haskell-math-functions/repos/
  haskell-math-functions/trunk/
  haskell-math-functions/trunk/PKGBUILD
  haskell-math-functions/trunk/haskell-math-functions.install

+
 PKGBUILD   |   42 +++
 haskell-math-functions.install |   18 
 2 files changed, 60 insertions(+)

Added: haskell-math-functions/trunk/PKGBUILD
===
--- haskell-math-functions/trunk/PKGBUILD   (rev 0)
+++ haskell-math-functions/trunk/PKGBUILD   2016-02-06 07:51:13 UTC (rev 
160456)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=math-functions
+pkgname=haskell-math-functions
+pkgver=0.1.5.2
+pkgrel=1
+pkgdesc="Special functions and Chebyshev polynomials"
+url="https://github.com/bos/math-functions;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-erf" "haskell-vector" "haskell-vector-th-unbox")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('9ec9b809d33c3b4deebc07d8e776cb3f81866e99906ed84f9c4145fe8eb39f89')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-math-functions/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-math-functions/trunk/haskell-math-functions.install
===
--- haskell-math-functions/trunk/haskell-math-functions.install 
(rev 0)
+++ haskell-math-functions/trunk/haskell-math-functions.install 2016-02-06 
07:51:13 UTC (rev 160456)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-math-functions
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


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

2016-02-05 Thread Felix Yan
Date: Saturday, February 6, 2016 @ 08:59:07
  Author: fyan
Revision: 160458

upgpkg: python-wheel 0.28.0-1

Modified:
  python-wheel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-06 07:51:42 UTC (rev 160457)
+++ PKGBUILD2016-02-06 07:59:07 UTC (rev 160458)
@@ -5,7 +5,7 @@
 _pypiname=wheel
 pkgbase=python-wheel
 pkgname=('python-wheel' 'python2-wheel')
-pkgver=0.27.0
+pkgver=0.28.0
 pkgrel=1
 pkgdesc="A built-package format for Python"
 arch=(any)
@@ -15,7 +15,7 @@
 checkdepends=('python-jsonschema' 'python2-jsonschema' 'python-pytest-cov' 
'python2-pytest-cov'
   'python-keyring' 'python2-keyring' 'python-keyrings-alt' 
'python2-keyrings-alt')
 
source=("https://pypi.python.org/packages/source/w/wheel/$_pypiname-$pkgver.tar.gz;)
-md5sums=('ab8490eeb11e30a01d60bf7f156eac37')
+md5sums=('6d6b7e87dd744c6fac77ca9b43479207')
 
 prepare() {
   cp -a wheel-$pkgver{,-py2}


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

2016-02-05 Thread Andreas Radke
Date: Friday, February 5, 2016 @ 19:20:30
  Author: andyrtr
Revision: 258910

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

Added:
  libinput/repos/extra-i686/PKGBUILD
(from rev 258909, libinput/trunk/PKGBUILD)
  libinput/repos/extra-i686/libinput.install
(from rev 258909, libinput/trunk/libinput.install)
  libinput/repos/extra-x86_64/PKGBUILD
(from rev 258909, libinput/trunk/PKGBUILD)
  libinput/repos/extra-x86_64/libinput.install
(from rev 258909, libinput/trunk/libinput.install)
Deleted:
  libinput/repos/extra-i686/PKGBUILD
  libinput/repos/extra-i686/libinput.install
  libinput/repos/extra-x86_64/PKGBUILD
  libinput/repos/extra-x86_64/libinput.install

---+
 /PKGBUILD |   78 
 /libinput.install |   22 +++
 extra-i686/PKGBUILD   |   39 
 extra-i686/libinput.install   |   11 -
 extra-x86_64/PKGBUILD |   39 
 extra-x86_64/libinput.install |   11 -
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-02-05 18:20:12 UTC (rev 258909)
+++ extra-i686/PKGBUILD 2016-02-05 18:20:30 UTC (rev 258910)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Maintainer: Jan de Groot
-
-pkgname=libinput
-pkgver=1.1.5
-pkgrel=1
-pkgdesc="library that handles input devices for display servers and other 
applications that need to directly deal with input devices."
-arch=(i686 x86_64)
-url="http://www.freedesktop.org/wiki/Software/libinput/;
-license=(custom:X11)
-depends=('mtdev' 'systemd' 'libevdev')
-install=libinput.install
-options=('!libtool')
-source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('5e08c45dbb8bf32490cc6cd626da098564d646d161a07cba2e3adbd9745c0622'
-'SKIP')
-validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
-
-prepare() {
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: libinput/repos/extra-i686/PKGBUILD (from rev 258909, 
libinput/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-02-05 18:20:30 UTC (rev 258910)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=1.1.6
+pkgrel=1
+pkgdesc="library that handles input devices for display servers and other 
applications that need to directly deal with input devices."
+arch=(i686 x86_64)
+url="http://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'systemd' 'libevdev')
+install=libinput.install
+options=('!libtool')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('f26f5e02c4942775cfa5f143562cf4ed9fc3be8bc2c3c461acc8de1b114a1c63'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
+
+prepare() {
+  cd $pkgname-$pkgver
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Deleted: extra-i686/libinput.install
===
--- extra-i686/libinput.install 2016-02-05 18:20:12 UTC (rev 258909)
+++ extra-i686/libinput.install 2016-02-05 18:20:30 UTC (rev 258910)
@@ -1,11 +0,0 @@
-post_install() {
-  udevadm hwdb --update >/dev/null 2>&1
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: libinput/repos/extra-i686/libinput.install (from rev 258909, 
libinput/trunk/libinput.install)
===
--- extra-i686/libinput.install (rev 0)
+++ extra-i686/libinput.install 2016-02-05 18:20:30 UTC (rev 258910)
@@ -0,0 +1,11 @@
+post_install() {
+  udevadm hwdb --update >/dev/null 2>&1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-02-05 18:20:12 UTC (rev 258909)
+++ extra-x86_64/PKGBUILD   2016-02-05 18:20:30 UTC (rev 258910)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# 

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

2016-02-05 Thread Andreas Radke
Date: Friday, February 5, 2016 @ 19:20:12
  Author: andyrtr
Revision: 258909

upgpkg: libinput 1.1.6-1

upstream update 1.1.6

Modified:
  libinput/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 17:39:50 UTC (rev 258908)
+++ PKGBUILD2016-02-05 18:20:12 UTC (rev 258909)
@@ -3,7 +3,7 @@
 # Maintainer: Jan de Groot
 
 pkgname=libinput
-pkgver=1.1.5
+pkgver=1.1.6
 pkgrel=1
 pkgdesc="library that handles input devices for display servers and other 
applications that need to directly deal with input devices."
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 install=libinput.install
 options=('!libtool')
 
source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('5e08c45dbb8bf32490cc6cd626da098564d646d161a07cba2e3adbd9745c0622'
+sha256sums=('f26f5e02c4942775cfa5f143562cf4ed9fc3be8bc2c3c461acc8de1b114a1c63'
 'SKIP')
 validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
 


[arch-commits] Commit in cups/repos (36 files)

2016-02-05 Thread Andreas Radke
Date: Friday, February 5, 2016 @ 19:28:36
  Author: andyrtr
Revision: 258912

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

Added:
  cups/repos/extra-i686/PKGBUILD
(from rev 258911, cups/trunk/PKGBUILD)
  cups/repos/extra-i686/cups-1.6.0-fix-install-perms.patch
(from rev 258911, cups/trunk/cups-1.6.0-fix-install-perms.patch)
  cups/repos/extra-i686/cups-1.6.2-statedir.patch
(from rev 258911, cups/trunk/cups-1.6.2-statedir.patch)
  cups/repos/extra-i686/cups-no-export-ssllibs.patch
(from rev 258911, cups/trunk/cups-no-export-ssllibs.patch)
  cups/repos/extra-i686/cups-no-gcrypt.patch
(from rev 258911, cups/trunk/cups-no-gcrypt.patch)
  cups/repos/extra-i686/cups-no-gzip-man.patch
(from rev 258911, cups/trunk/cups-no-gzip-man.patch)
  cups/repos/extra-i686/cups.install
(from rev 258911, cups/trunk/cups.install)
  cups/repos/extra-i686/cups.logrotate
(from rev 258911, cups/trunk/cups.logrotate)
  cups/repos/extra-i686/cups.pam
(from rev 258911, cups/trunk/cups.pam)
  cups/repos/extra-x86_64/PKGBUILD
(from rev 258911, cups/trunk/PKGBUILD)
  cups/repos/extra-x86_64/cups-1.6.0-fix-install-perms.patch
(from rev 258911, cups/trunk/cups-1.6.0-fix-install-perms.patch)
  cups/repos/extra-x86_64/cups-1.6.2-statedir.patch
(from rev 258911, cups/trunk/cups-1.6.2-statedir.patch)
  cups/repos/extra-x86_64/cups-no-export-ssllibs.patch
(from rev 258911, cups/trunk/cups-no-export-ssllibs.patch)
  cups/repos/extra-x86_64/cups-no-gcrypt.patch
(from rev 258911, cups/trunk/cups-no-gcrypt.patch)
  cups/repos/extra-x86_64/cups-no-gzip-man.patch
(from rev 258911, cups/trunk/cups-no-gzip-man.patch)
  cups/repos/extra-x86_64/cups.install
(from rev 258911, cups/trunk/cups.install)
  cups/repos/extra-x86_64/cups.logrotate
(from rev 258911, cups/trunk/cups.logrotate)
  cups/repos/extra-x86_64/cups.pam
(from rev 258911, cups/trunk/cups.pam)
Deleted:
  cups/repos/extra-i686/PKGBUILD
  cups/repos/extra-i686/cups-1.6.0-fix-install-perms.patch
  cups/repos/extra-i686/cups-1.6.2-statedir.patch
  cups/repos/extra-i686/cups-no-export-ssllibs.patch
  cups/repos/extra-i686/cups-no-gcrypt.patch
  cups/repos/extra-i686/cups-no-gzip-man.patch
  cups/repos/extra-i686/cups.install
  cups/repos/extra-i686/cups.logrotate
  cups/repos/extra-i686/cups.pam
  cups/repos/extra-x86_64/PKGBUILD
  cups/repos/extra-x86_64/cups-1.6.0-fix-install-perms.patch
  cups/repos/extra-x86_64/cups-1.6.2-statedir.patch
  cups/repos/extra-x86_64/cups-no-export-ssllibs.patch
  cups/repos/extra-x86_64/cups-no-gcrypt.patch
  cups/repos/extra-x86_64/cups-no-gzip-man.patch
  cups/repos/extra-x86_64/cups.install
  cups/repos/extra-x86_64/cups.logrotate
  cups/repos/extra-x86_64/cups.pam

-+
 /PKGBUILD   |  338 ++
 /cups-1.6.0-fix-install-perms.patch |   50 +++
 /cups-1.6.2-statedir.patch  |   24 +
 /cups-no-export-ssllibs.patch   |   24 +
 /cups-no-gcrypt.patch   |   22 +
 /cups-no-gzip-man.patch |   36 ++
 /cups.install   |   56 +++
 /cups.logrotate |   10 
 /cups.pam   |6 
 extra-i686/PKGBUILD |  169 ---
 extra-i686/cups-1.6.0-fix-install-perms.patch   |   25 -
 extra-i686/cups-1.6.2-statedir.patch|   12 
 extra-i686/cups-no-export-ssllibs.patch |   12 
 extra-i686/cups-no-gcrypt.patch |   11 
 extra-i686/cups-no-gzip-man.patch   |   18 -
 extra-i686/cups.install |   28 -
 extra-i686/cups.logrotate   |5 
 extra-i686/cups.pam |3 
 extra-x86_64/PKGBUILD   |  169 ---
 extra-x86_64/cups-1.6.0-fix-install-perms.patch |   25 -
 extra-x86_64/cups-1.6.2-statedir.patch  |   12 
 extra-x86_64/cups-no-export-ssllibs.patch   |   12 
 extra-x86_64/cups-no-gcrypt.patch   |   11 
 extra-x86_64/cups-no-gzip-man.patch |   18 -
 extra-x86_64/cups.install   |   28 -
 extra-x86_64/cups.logrotate |5 
 extra-x86_64/cups.pam   |3 
 27 files changed, 566 insertions(+), 566 deletions(-)

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


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

2016-02-05 Thread Andreas Radke
Date: Friday, February 5, 2016 @ 19:28:12
  Author: andyrtr
Revision: 258911

upgpkg: cups 2.1.3-1

upstream update 2.1.3

Modified:
  cups/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 18:20:30 UTC (rev 258910)
+++ PKGBUILD2016-02-05 18:28:12 UTC (rev 258911)
@@ -3,8 +3,8 @@
 
 pkgbase="cups"
 pkgname=('libcups' 'cups')
-pkgver=2.1.2
-pkgrel=3
+pkgver=2.1.3
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL')
 url="http://www.cups.org/;
@@ -21,7 +21,7 @@
 cups-1.6.0-fix-install-perms.patch
 # bugfixes
 )
-md5sums=('b3ba0ca676d56857bbd9b182ef4b14b3'
+md5sums=('62b8fafd590e75f72316915790b0850a'
  'SKIP'
  'fc8286f185e2cc5f7e1f6843bf193e2b'
  '96f82c38f3f540b53f3e5144900acf17'


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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 19:34:59
  Author: spupykin
Revision: 160421

Modified:
  mapnik/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 17:48:50 UTC (rev 160420)
+++ PKGBUILD2016-02-05 18:34:59 UTC (rev 160421)
@@ -33,7 +33,7 @@
 PREFIX="/usr" \
 INPUT_PLUGINS=all \
 DESTDIR="$pkgdir"
-  scons -j2
+  scons $MAKEFLAGS
 }
 
 package(){


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

2016-02-05 Thread Anatol Pomozov
Date: Friday, February 5, 2016 @ 19:41:57
  Author: anatolik
Revision: 160422

upgpkg: rethinkdb 2.2.4-1

Modified:
  rethinkdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 18:34:59 UTC (rev 160421)
+++ PKGBUILD2016-02-05 18:41:57 UTC (rev 160422)
@@ -4,8 +4,8 @@
 # Contributor: Sigmund Lahn 
 
 pkgname=rethinkdb
-pkgver=2.2.3
-_tag=rethinkdb-$pkgver-1
+pkgver=2.2.4
+_tag=rethinkdb-$pkgver
 pkgrel=1
 pkgdesc='Distributed powerful and scalable NoSQL database'
 arch=(i686 x86_64)
@@ -21,7 +21,7 @@
   rethinkdb-tmpfile.conf
   rethinkdb.service
 )
-sha256sums=('d2d59532bd46da8d1f947e3ec9028746b4f4bbbc13f215b8314852ab1cd0db95'
+sha256sums=('3562816790b408cd1b8e261363b9c2a588f6be776e2e5c0baa3be7acce3b407f'
 '656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
 'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2')
 


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

2016-02-05 Thread Jan Steffens
Date: Friday, February 5, 2016 @ 20:07:40
  Author: heftig
Revision: 258913

3.14.1

Modified:
  libwnck3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 18:28:36 UTC (rev 258912)
+++ PKGBUILD2016-02-05 19:07:40 UTC (rev 258913)
@@ -3,7 +3,7 @@
 
 pkgname=libwnck3
 _pkgbasename=libwnck
-pkgver=3.14.0
+pkgver=3.14.1
 pkgrel=1
 pkgdesc="Window Navigator Construction Kit (GTK+3)"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('intltool' 'gobject-introspection' 'python2')
 url="http://www.gnome.org/;
 
source=(https://download.gnome.org/sources/$_pkgbasename/${pkgver%.*}/$_pkgbasename-$pkgver.tar.xz)
-sha256sums=('f5080076346609b4c36394b879f3a86b92ced3b90a37cb54c8e9a14f00e7921c')
+sha256sums=('bb643c9c423c8aa79c59973ce27ce91d3b180d1e9907902278fb79391f52befa')
 
 build() {
 cd "$_pkgbasename-$pkgver"


[arch-commits] Commit in libreoffice-fresh/repos (24 files)

2016-02-05 Thread Andreas Radke
Date: Friday, February 5, 2016 @ 18:39:50
  Author: andyrtr
Revision: 258908

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

Added:
  libreoffice-fresh/repos/extra-i686/PKGBUILD
(from rev 258907, libreoffice-fresh/trunk/PKGBUILD)
  libreoffice-fresh/repos/extra-i686/PKGBUILD.51
(from rev 258907, libreoffice-fresh/trunk/PKGBUILD.51)
  libreoffice-fresh/repos/extra-i686/libreoffice-fresh.csh
(from rev 258907, libreoffice-fresh/trunk/libreoffice-fresh.csh)
  libreoffice-fresh/repos/extra-i686/libreoffice-fresh.install
(from rev 258907, libreoffice-fresh/trunk/libreoffice-fresh.install)
  libreoffice-fresh/repos/extra-i686/libreoffice-fresh.sh
(from rev 258907, libreoffice-fresh/trunk/libreoffice-fresh.sh)
  
libreoffice-fresh/repos/extra-i686/make-pyuno-work-with-system-wide-module-install.diff
(from rev 258907, 
libreoffice-fresh/trunk/make-pyuno-work-with-system-wide-module-install.diff)
  libreoffice-fresh/repos/extra-x86_64/PKGBUILD
(from rev 258907, libreoffice-fresh/trunk/PKGBUILD)
  libreoffice-fresh/repos/extra-x86_64/PKGBUILD.51
(from rev 258907, libreoffice-fresh/trunk/PKGBUILD.51)
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.csh
(from rev 258907, libreoffice-fresh/trunk/libreoffice-fresh.csh)
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.install
(from rev 258907, libreoffice-fresh/trunk/libreoffice-fresh.install)
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.sh
(from rev 258907, libreoffice-fresh/trunk/libreoffice-fresh.sh)
  
libreoffice-fresh/repos/extra-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 258907, 
libreoffice-fresh/trunk/make-pyuno-work-with-system-wide-module-install.diff)
Deleted:
  libreoffice-fresh/repos/extra-i686/PKGBUILD
  libreoffice-fresh/repos/extra-i686/PKGBUILD.51
  libreoffice-fresh/repos/extra-i686/libreoffice-fresh.csh
  libreoffice-fresh/repos/extra-i686/libreoffice-fresh.install
  libreoffice-fresh/repos/extra-i686/libreoffice-fresh.sh
  
libreoffice-fresh/repos/extra-i686/make-pyuno-work-with-system-wide-module-install.diff
  libreoffice-fresh/repos/extra-x86_64/PKGBUILD
  libreoffice-fresh/repos/extra-x86_64/PKGBUILD.51
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.csh
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.install
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.sh
  
libreoffice-fresh/repos/extra-x86_64/make-pyuno-work-with-system-wide-module-install.diff

---+
 /PKGBUILD |  764 
++
 /PKGBUILD.51  |  762 
+
 /libreoffice-fresh.csh|   12 
 /libreoffice-fresh.install|   34 
 /libreoffice-fresh.sh |   12 
 /make-pyuno-work-with-system-wide-module-install.diff |   88 +
 extra-i686/PKGBUILD   |  383 -
 extra-i686/PKGBUILD.51|  382 -
 extra-i686/libreoffice-fresh.csh  |6 
 extra-i686/libreoffice-fresh.install  |   17 
 extra-i686/libreoffice-fresh.sh   |6 
 extra-i686/make-pyuno-work-with-system-wide-module-install.diff   |   44 
 extra-x86_64/PKGBUILD |  383 -
 extra-x86_64/PKGBUILD.51  |  382 -
 extra-x86_64/libreoffice-fresh.csh|6 
 extra-x86_64/libreoffice-fresh.install|   17 
 extra-x86_64/libreoffice-fresh.sh |6 
 extra-x86_64/make-pyuno-work-with-system-wide-module-install.diff |   44 
 18 files changed, 1672 insertions(+), 1676 deletions(-)

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


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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 18:48:08
  Author: spupykin
Revision: 160417

upgpkg: mapnik 3.0.9-1

upd

Modified:
  mapnik/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 17:19:15 UTC (rev 160416)
+++ PKGBUILD2016-02-05 17:48:08 UTC (rev 160417)
@@ -4,8 +4,8 @@
 # Contributor: orbisvicis 
 
 pkgname=mapnik
-pkgver=2.2.0.655.g1b0f4d6
-pkgrel=4
+pkgver=3.0.9
+pkgrel=1
 pkgdesc="Free Toolkit for developing mapping applications. Above all Mapnik is 
about rendering beautiful maps"
 arch=('i686' 'x86_64')
 url="http://mapnik.org/;
@@ -23,31 +23,20 @@
 'mod_wsgi2:   Web Map Service')
 makedepends=('scons' 'boost' 'git')
 install="mapnik.install"
-#source=("$pkgname-$pkgver.tar.gz::https://github.com/mapnik/mapnik/archive/v$pkgver.tar.gz;)
-source=("git://github.com/mapnik/mapnik.git#branch=2.3.x")
-md5sums=('SKIP')
+source=("https://mapnik.s3.amazonaws.com/dist/v$pkgver/mapnik-v$pkgver.tar.bz2;)
+md5sums=('13e8b6ad763172d56731e610a59b3681')
 
-pkgver() {
-  cd "$srcdir/$pkgname"
-
-  git describe --long | cut -c2- | sed 's/-/./g'
-}
-
 build() {
-  cd "$srcdir/$pkgname"
-
-  sed -i 's|lib64|lib|g' SConstruct
-  sed -i 's|python|python2|' \
-   utils/performance/mapnik-speed-check \
-   utils/upgrade_map_xml/*.py
+  cd "$srcdir/$pkgname-v$pkgver"
+  PYTHON=python2
   scons configure \
 PREFIX="/usr" \
 INPUT_PLUGINS=all \
 DESTDIR="$pkgdir"
-  scons $MAKEFLAGS
+  scons -j2
 }
 
 package(){
-  cd "$srcdir/$pkgname"
+  cd "$srcdir/$pkgname-v$pkgver"
   scons install
 }


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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 18:48:34
  Author: spupykin
Revision: 160419

upgpkg: viking 1.6.2-2

upd

Modified:
  viking/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 17:48:26 UTC (rev 160418)
+++ PKGBUILD2016-02-05 17:48:34 UTC (rev 160419)
@@ -5,7 +5,7 @@
 
 pkgname=viking
 pkgver=1.6.2
-pkgrel=1
+pkgrel=2
 pkgdesc="GTK+2 application to manage GPS data"
 arch=('i686' 'x86_64')
 url="http://viking.sourceforge.net/;


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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 18:48:50
  Author: spupykin
Revision: 160420

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

Added:
  viking/repos/community-i686/PKGBUILD
(from rev 160419, viking/trunk/PKGBUILD)
  viking/repos/community-i686/viking.changelog
(from rev 160419, viking/trunk/viking.changelog)
  viking/repos/community-i686/viking.install
(from rev 160419, viking/trunk/viking.install)
  viking/repos/community-x86_64/PKGBUILD
(from rev 160419, viking/trunk/PKGBUILD)
  viking/repos/community-x86_64/viking.changelog
(from rev 160419, viking/trunk/viking.changelog)
  viking/repos/community-x86_64/viking.install
(from rev 160419, viking/trunk/viking.install)
Deleted:
  viking/repos/community-i686/PKGBUILD
  viking/repos/community-i686/viking.changelog
  viking/repos/community-i686/viking.install
  viking/repos/community-x86_64/PKGBUILD
  viking/repos/community-x86_64/viking.changelog
  viking/repos/community-x86_64/viking.install

---+
 /PKGBUILD |   66 +
 /viking.changelog |   92 
 /viking.install   |   24 +
 community-i686/PKGBUILD   |   33 
 community-i686/viking.changelog   |   46 --
 community-i686/viking.install |   12 
 community-x86_64/PKGBUILD |   33 
 community-x86_64/viking.changelog |   46 --
 community-x86_64/viking.install   |   12 
 9 files changed, 182 insertions(+), 182 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-05 17:48:34 UTC (rev 160419)
+++ community-i686/PKGBUILD 2016-02-05 17:48:50 UTC (rev 160420)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Nick Østergaard 
-# Contributor: Jonny Gerold 
-
-pkgname=viking
-pkgver=1.6.2
-pkgrel=1
-pkgdesc="GTK+2 application to manage GPS data"
-arch=('i686' 'x86_64')
-url="http://viking.sourceforge.net/;
-license=('GPL2')
-depends=('curl' 'gpsd' 'gtk2' 'hicolor-icon-theme' 'libgexiv2' 'gpsbabel' 
'mapnik')
-makedepends=('intltool' 'gnome-doc-utils' 'boost')
-optdepends=('geo: for geocaches')
-options=('!emptydirs')
-install=$pkgname.install
-changelog=$pkgname.changelog
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-sha256sums=('dfe223b1cd3a1fed3616a70e732321db9013c89df3fd6e1ad0f733a1bb067826')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  ./configure --prefix=/usr --enable-expedia --enable-geocaches 
--includedir=/usr/include
-  make
-}
-
-package(){
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: viking/repos/community-i686/PKGBUILD (from rev 160419, 
viking/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-05 17:48:50 UTC (rev 160420)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Nick Østergaard 
+# Contributor: Jonny Gerold 
+
+pkgname=viking
+pkgver=1.6.2
+pkgrel=2
+pkgdesc="GTK+2 application to manage GPS data"
+arch=('i686' 'x86_64')
+url="http://viking.sourceforge.net/;
+license=('GPL2')
+depends=('curl' 'gpsd' 'gtk2' 'hicolor-icon-theme' 'libgexiv2' 'gpsbabel' 
'mapnik')
+makedepends=('intltool' 'gnome-doc-utils' 'boost')
+optdepends=('geo: for geocaches')
+options=('!emptydirs')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
+sha256sums=('dfe223b1cd3a1fed3616a70e732321db9013c89df3fd6e1ad0f733a1bb067826')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --enable-expedia --enable-geocaches 
--includedir=/usr/include
+  make
+}
+
+package(){
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/viking.changelog
===
--- community-i686/viking.changelog 2016-02-05 17:48:34 UTC (rev 160419)
+++ community-i686/viking.changelog 2016-02-05 17:48:50 UTC (rev 160420)
@@ -1,46 +0,0 @@
-2015-12-24 Jaroslav Lichtblau 
-   * viking 1.6.2-1
-
-2015-11-25 Jaroslav Lichtblau 
-   * viking 1.6.1-1
-
-2015-05-21 Jaroslav Lichtblau 
-   * viking 1.6-3
-   * gpsd 3.14 rebuild
-
-2015-04-26 Jaroslav Lichtblau 
-   * viking 1.6-2
-   * boost rebuild
-
-2015-03-31 Jaroslav Lichtblau 
-   * viking 1.6-1
-
-2014-09-02 Jaroslav Lichtblau 
-   * viking 

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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 18:48:26
  Author: spupykin
Revision: 160418

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

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

-+
 /PKGBUILD   |   84 ++
 /mapnik.install |   22 +
 community-i686/PKGBUILD |   53 ---
 community-i686/mapnik.install   |   11 
 community-x86_64/PKGBUILD   |   53 ---
 community-x86_64/mapnik.install |   11 
 6 files changed, 106 insertions(+), 128 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-05 17:48:08 UTC (rev 160417)
+++ community-i686/PKGBUILD 2016-02-05 17:48:26 UTC (rev 160418)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: David Dent 
-# Contributor: orbisvicis 
-
-pkgname=mapnik
-pkgver=2.2.0.655.g1b0f4d6
-pkgrel=4
-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=("$pkgname-$pkgver.tar.gz::https://github.com/mapnik/mapnik/archive/v$pkgver.tar.gz;)
-source=("git://github.com/mapnik/mapnik.git#branch=2.3.x")
-md5sums=('SKIP')
-
-pkgver() {
-  cd "$srcdir/$pkgname"
-
-  git describe --long | cut -c2- | sed 's/-/./g'
-}
-
-build() {
-  cd "$srcdir/$pkgname"
-
-  sed -i 's|lib64|lib|g' SConstruct
-  sed -i 's|python|python2|' \
-   utils/performance/mapnik-speed-check \
-   utils/upgrade_map_xml/*.py
-  scons configure \
-PREFIX="/usr" \
-INPUT_PLUGINS=all \
-DESTDIR="$pkgdir"
-  scons $MAKEFLAGS
-}
-
-package(){
-  cd "$srcdir/$pkgname"
-  scons install
-}

Copied: mapnik/repos/community-i686/PKGBUILD (from rev 160417, 
mapnik/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-05 17:48:26 UTC (rev 160418)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: David Dent 
+# Contributor: orbisvicis 
+
+pkgname=mapnik
+pkgver=3.0.9
+pkgrel=1
+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://mapnik.s3.amazonaws.com/dist/v$pkgver/mapnik-v$pkgver.tar.bz2;)
+md5sums=('13e8b6ad763172d56731e610a59b3681')
+
+build() {
+  cd "$srcdir/$pkgname-v$pkgver"
+  PYTHON=python2
+  scons configure \
+PREFIX="/usr" \
+INPUT_PLUGINS=all \
+DESTDIR="$pkgdir"
+  scons -j2
+}
+
+package(){
+  cd "$srcdir/$pkgname-v$pkgver"
+  scons install
+}

Deleted: community-i686/mapnik.install
===
--- community-i686/mapnik.install   2016-02-05 17:48:08 UTC (rev 160417)
+++ 

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

2016-02-05 Thread Anatol Pomozov
Date: Friday, February 5, 2016 @ 19:42:44
  Author: anatolik
Revision: 160423

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

Added:
  rethinkdb/repos/community-testing-i686/
  rethinkdb/repos/community-testing-i686/PKGBUILD
(from rev 160422, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-testing-i686/rethinkdb-tmpfile.conf
(from rev 160422, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-testing-i686/rethinkdb.install
(from rev 160422, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-testing-i686/rethinkdb.service
(from rev 160422, rethinkdb/trunk/rethinkdb.service)
  rethinkdb/repos/community-testing-x86_64/
  rethinkdb/repos/community-testing-x86_64/PKGBUILD
(from rev 160422, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-testing-x86_64/rethinkdb-tmpfile.conf
(from rev 160422, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-testing-x86_64/rethinkdb.install
(from rev 160422, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-testing-x86_64/rethinkdb.service
(from rev 160422, rethinkdb/trunk/rethinkdb.service)

-+
 community-testing-i686/PKGBUILD |   69 ++
 community-testing-i686/rethinkdb-tmpfile.conf   |1 
 community-testing-i686/rethinkdb.install|   22 +++
 community-testing-i686/rethinkdb.service|   12 +++
 community-testing-x86_64/PKGBUILD   |   69 ++
 community-testing-x86_64/rethinkdb-tmpfile.conf |1 
 community-testing-x86_64/rethinkdb.install  |   22 +++
 community-testing-x86_64/rethinkdb.service  |   12 +++
 8 files changed, 208 insertions(+)

Copied: rethinkdb/repos/community-testing-i686/PKGBUILD (from rev 160422, 
rethinkdb/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-02-05 18:42:44 UTC (rev 160423)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Sigmund Lahn 
+
+pkgname=rethinkdb
+pkgver=2.2.4
+_tag=rethinkdb-$pkgver
+pkgrel=1
+pkgdesc='Distributed powerful and scalable NoSQL database'
+arch=(i686 x86_64)
+url='http://www.rethinkdb.com/'
+license=(AGPL)
+depends=(protobuf ncurses curl)
+makedepends=(boost python2 wget)
+backup=(etc/rethinkdb/instances.d/default.conf)
+install=rethinkdb.install
+options=(!emptydirs)
+source=(
+  http://download.rethinkdb.com/dist/$_tag.tgz
+  rethinkdb-tmpfile.conf
+  rethinkdb.service
+)
+sha256sums=('3562816790b408cd1b8e261363b9c2a588f6be776e2e5c0baa3be7acce3b407f'
+'656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
+'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2')
+
+prepare() {
+  cd $_tag
+
+  sed \
+-e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
+-e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+-i scripts/*.py external/v8_*/tools/*.py
+  sed -e 's|exec python|exec python2|g' -i external/v8_*/build/gyp/gyp
+  sed -e 's|\bpython\b|python2|g' -i 
external/v8_*/{Makefile,*/*.gyp,*/*.gypi,*/*/*.gyp}
+}
+
+build() {
+  cd $_tag
+  export PYTHON=/usr/bin/python2
+  ./configure --fetch v8 --fetch jemalloc --dynamic all 
--enable-precompiled-web --prefix=/usr --sysconfdir=/etc
+  make ALLOW_WARNINGS=1
+}
+
+check() {
+  cd $_tag
+
+  # these tests are flaky and extremely slow in Arch chroot
+  # make build/release/rethinkdb-unittest
+  # ./build/release/rethinkdb-unittest 
--gtest_filter=-RDBBtree.*:RDBInterrupt.*
+  # some tests might be flaky on btrfs filesystem
+}
+
+package() {
+  cd $_tag
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir"/rethinkdb-tmpfile.conf 
"$pkgdir"/usr/lib/tmpfiles.d/rethinkdb.conf
+  install -Dm644 "$srcdir"/rethinkdb.service 
"$pkgdir"/usr/lib/systemd/system/rethinkdb@.service
+
+  # create 'default' database instance
+  mv "$pkgdir"/etc/rethinkdb/default.conf.sample 
"$pkgdir"/etc/rethinkdb/instances.d/default.conf
+  sed -e 's|# directory=/var/lib/rethinkdb|directory=/var/lib/rethinkdb|' \
+  -i "$pkgdir"/etc/rethinkdb/instances.d/default.conf
+
+  # Arch uses systemd, no need for init.d scripts
+  rm -r "$pkgdir"/etc/init.d
+}

Copied: rethinkdb/repos/community-testing-i686/rethinkdb-tmpfile.conf (from rev 
160422, rethinkdb/trunk/rethinkdb-tmpfile.conf)
===
--- community-testing-i686/rethinkdb-tmpfile.conf   
(rev 0)
+++ community-testing-i686/rethinkdb-tmpfile.conf   2016-02-05 18:42:44 UTC 
(rev 160423)
@@ -0,0 +1 @@
+d /run/rethinkdb 0755 rethinkdb rethinkdb -
\ No newline at end of file

Copied: 

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

2016-02-05 Thread Felix Yan
Date: Friday, February 5, 2016 @ 18:19:15
  Author: fyan
Revision: 160416

archrelease: copy trunk to community-any

Added:
  you-get/repos/community-any/PKGBUILD
(from rev 160415, you-get/trunk/PKGBUILD)
Deleted:
  you-get/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-05 17:18:53 UTC (rev 160415)
+++ PKGBUILD2016-02-05 17:19:15 UTC (rev 160416)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=you-get
-pkgver=0.4.266
-pkgrel=1
-pkgdesc="A YouTube/Youku/Niconico video downloader written in Python 3."
-url="http://www.soimort.org/you-get/;
-arch=('any')
-license=('MIT')
-depends=('python-setuptools')
-makedepends=('git')
-source=("git+https://github.com/soimort/you-get.git#tag=v$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd "${srcdir}"/${pkgname}
-  python setup.py build
-}
-
-check() {
-  cd "${srcdir}"/${pkgname}
-  LC_CTYPE=en_US.UTF-8 python setup.py test
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}
-  python setup.py install --root="$pkgdir"
-
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}

Copied: you-get/repos/community-any/PKGBUILD (from rev 160415, 
you-get/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-05 17:19:15 UTC (rev 160416)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=you-get
+pkgver=0.4.272
+pkgrel=1
+pkgdesc="A YouTube/Youku/Niconico video downloader written in Python 3."
+url="http://www.soimort.org/you-get/;
+arch=('any')
+license=('MIT')
+depends=('python-setuptools')
+makedepends=('git')
+source=("git+https://github.com/soimort/you-get.git#tag=v$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd "${srcdir}"/${pkgname}
+  python setup.py build
+}
+
+check() {
+  cd "${srcdir}"/${pkgname}
+  LC_CTYPE=en_US.UTF-8 python setup.py test
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}
+  python setup.py install --root="$pkgdir"
+
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}


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

2016-02-05 Thread Felix Yan
Date: Friday, February 5, 2016 @ 18:18:53
  Author: fyan
Revision: 160415

upgpkg: you-get 0.4.272-1

Modified:
  you-get/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 16:41:40 UTC (rev 160414)
+++ PKGBUILD2016-02-05 17:18:53 UTC (rev 160415)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=you-get
-pkgver=0.4.266
+pkgver=0.4.272
 pkgrel=1
 pkgdesc="A YouTube/Youku/Niconico video downloader written in Python 3."
 url="http://www.soimort.org/you-get/;


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

2016-02-05 Thread Jan Steffens
Date: Friday, February 5, 2016 @ 20:10:25
  Author: heftig
Revision: 258914

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-02-05 19:07:40 UTC (rev 258913)
+++ extra-i686/PKGBUILD 2016-02-05 19:10:25 UTC (rev 258914)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=libwnck3
-_pkgbasename=libwnck
-pkgver=3.14.0
-pkgrel=1
-pkgdesc="Window Navigator Construction Kit (GTK+3)"
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('gtk3' 'startup-notification' 'libxres')
-makedepends=('intltool' 'gobject-introspection' 'python2')
-url="http://www.gnome.org/;
-source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver%.*}/$_pkgbasename-$pkgver.tar.xz)
-sha256sums=('f5080076346609b4c36394b879f3a86b92ced3b90a37cb54c8e9a14f00e7921c')
-
-build() {
-cd "$_pkgbasename-$pkgver"
-./configure --prefix=/usr --sysconfdir=/etc \
---localstatedir=/var --disable-static
-make
-}
-
-package() {
-cd "$_pkgbasename-$pkgver"
-make DESTDIR="$pkgdir" install
-}

Copied: libwnck3/repos/extra-i686/PKGBUILD (from rev 258913, 
libwnck3/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-02-05 19:10:25 UTC (rev 258914)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=libwnck3
+_pkgbasename=libwnck
+pkgver=3.14.1
+pkgrel=1
+pkgdesc="Window Navigator Construction Kit (GTK+3)"
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('gtk3' 'startup-notification' 'libxres')
+makedepends=('intltool' 'gobject-introspection' 'python2')
+url="http://www.gnome.org/;
+source=(https://download.gnome.org/sources/$_pkgbasename/${pkgver%.*}/$_pkgbasename-$pkgver.tar.xz)
+sha256sums=('bb643c9c423c8aa79c59973ce27ce91d3b180d1e9907902278fb79391f52befa')
+
+build() {
+cd "$_pkgbasename-$pkgver"
+./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --disable-static
+make
+}
+
+package() {
+cd "$_pkgbasename-$pkgver"
+make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-02-05 19:07:40 UTC (rev 258913)
+++ extra-x86_64/PKGBUILD   2016-02-05 19:10:25 UTC (rev 258914)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=libwnck3
-_pkgbasename=libwnck
-pkgver=3.14.0
-pkgrel=1
-pkgdesc="Window Navigator Construction Kit (GTK+3)"
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('gtk3' 'startup-notification' 'libxres')
-makedepends=('intltool' 'gobject-introspection' 'python2')
-url="http://www.gnome.org/;
-source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver%.*}/$_pkgbasename-$pkgver.tar.xz)
-sha256sums=('f5080076346609b4c36394b879f3a86b92ced3b90a37cb54c8e9a14f00e7921c')
-
-build() {
-cd "$_pkgbasename-$pkgver"
-./configure --prefix=/usr --sysconfdir=/etc \
---localstatedir=/var --disable-static
-make
-}
-
-package() {
-cd "$_pkgbasename-$pkgver"
-make DESTDIR="$pkgdir" install
-}

Copied: libwnck3/repos/extra-x86_64/PKGBUILD (from rev 258913, 
libwnck3/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-02-05 19:10:25 UTC (rev 258914)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=libwnck3
+_pkgbasename=libwnck
+pkgver=3.14.1
+pkgrel=1
+pkgdesc="Window Navigator Construction Kit (GTK+3)"
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('gtk3' 'startup-notification' 'libxres')
+makedepends=('intltool' 'gobject-introspection' 'python2')
+url="http://www.gnome.org/;
+source=(https://download.gnome.org/sources/$_pkgbasename/${pkgver%.*}/$_pkgbasename-$pkgver.tar.xz)
+sha256sums=('bb643c9c423c8aa79c59973ce27ce91d3b180d1e9907902278fb79391f52befa')
+
+build() {
+cd "$_pkgbasename-$pkgver"
+./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --disable-static
+make
+}
+
+package() {
+cd "$_pkgbasename-$pkgver"
+make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in (5 files)

2016-02-05 Thread Felix Yan
Date: Friday, February 5, 2016 @ 09:13:33
  Author: fyan
Revision: 160388

addpkg: python-nose-show-skipped 0.1-1

Added:
  python-nose-show-skipped/
  python-nose-show-skipped/repos/
  python-nose-show-skipped/trunk/
  python-nose-show-skipped/trunk/LICENSE
  python-nose-show-skipped/trunk/PKGBUILD

--+
 LICENSE  |   27 +++
 PKGBUILD |   44 
 2 files changed, 71 insertions(+)

Added: python-nose-show-skipped/trunk/LICENSE
===
--- python-nose-show-skipped/trunk/LICENSE  (rev 0)
+++ python-nose-show-skipped/trunk/LICENSE  2016-02-05 08:13:33 UTC (rev 
160388)
@@ -0,0 +1,27 @@
+Copyright (c) 2013, Phillip Cloud
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without 
modification,
+are permitted provided that the following conditions are met:
+
+  Redistributions of source code must retain the above copyright notice, this
+  list of conditions and the following disclaimer.
+
+  Redistributions in binary form must reproduce the above copyright notice, 
this
+  list of conditions and the following disclaimer in the documentation and/or
+  other materials provided with the distribution.
+
+  Neither the name of the {organization} nor the names of its
+  contributors may be used to endorse or promote products derived from
+  this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Added: python-nose-show-skipped/trunk/PKGBUILD
===
--- python-nose-show-skipped/trunk/PKGBUILD (rev 0)
+++ python-nose-show-skipped/trunk/PKGBUILD 2016-02-05 08:13:33 UTC (rev 
160388)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-nose-show-skipped
+pkgname=("python-nose-show-skipped" "python2-nose-show-skipped")
+pkgver=0.1
+pkgrel=1
+pkgdesc="A nose plugin to show skipped tests and their messages"
+arch=('any')
+url="https://github.com/cpcloud/nose-show-skipped;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-nose' 
'python2-nose')
+source=("https://pypi.python.org/packages/source/n/nose-show-skipped/nose-show-skipped-$pkgver.tar.gz;
+'LICENSE')
+sha512sums=('b6f3cbc8fdc6af7f6298ad54a5b06bd053d27197368eef1e006aff438d517dba549154eb3be35996b0bd1c291537729438f52709b76c507e20c496b6e504f5df'
+
'3f9813adb48ca13f52ef119a6c313da4863ff02a8fabe37d48b1b2aa91b13ba672b21d7e7737a74e9c1a7647896bec0181237aa0ca693780419f49ef280a5082')
+
+prepare() {
+  cp -a "nose-show-skipped-$pkgver"{,-py2}
+}
+
+build() {
+  cd "$srcdir/nose-show-skipped-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/nose-show-skipped-$pkgver-py2"
+  python2 setup.py build
+}
+
+package_python-nose-show-skipped() {
+  depends=('python-nose')
+
+  cd nose-show-skipped-$pkgver
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 ../LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-nose-show-skipped() {
+  depends=('python2-nose')
+
+  cd nose-show-skipped-$pkgver-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 ../LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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


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

2016-02-05 Thread Felix Yan
Date: Friday, February 5, 2016 @ 09:24:43
  Author: fyan
Revision: 258895

upgpkg: python-pycurl 7.43.0-1

Modified:
  python-pycurl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 07:50:21 UTC (rev 258894)
+++ PKGBUILD2016-02-05 08:24:43 UTC (rev 258895)
@@ -6,13 +6,14 @@
 _pypiname=pycurl
 pkgbase=python-$_pypiname
 pkgname=('python-pycurl' 'python2-pycurl')
-pkgver=7.21.5
+pkgver=7.43.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://pycurl.sourceforge.net/;
 license=('LGPL' 'MIT')
 makedepends=('python' 'python2' 'curl' 'git')
-checkdepends=('python-bottle' 'python2-bottle' 'python-nose' 'python2-nose' 
'vsftpd' 'python-flaky' 'python2-flaky' 'python-pyflakes' 'python2-pyflakes')
+checkdepends=('python-bottle' 'python2-bottle' 'python-nose-show-skipped' 
'python2-nose-show-skipped'
+  'vsftpd' 'python-flaky' 'python2-flaky' 'python-pyflakes' 
'python2-pyflakes')
 source=("git+https://github.com/pycurl/pycurl.git#tag=REL_${pkgver//./_};)
 sha1sums=('SKIP')
 
@@ -43,13 +44,13 @@
 
 check() {
   export PYCURL_VSFTPD_PATH=vsftpd
+  # We don't have HTTP2 enabled
 
   cd "$srcdir/$_pypiname"
-  # Failure reported: https://github.com/pycurl/pycurl/issues/357
   PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH" make test || 
warning "Tests failed"
 
   cd "$srcdir/$_pypiname-py2"
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" make PYTHON=python2 
NOSETESTS=nosetests2 test
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" make PYTHON=python2 
NOSETESTS=nosetests2 test || warning "Tests failed"
 }
 
 package_python-pycurl() {


[arch-commits] Commit in (5 files)

2016-02-05 Thread Felix Yan
Date: Friday, February 5, 2016 @ 09:01:56
  Author: fyan
Revision: 160386

addpkg: haskell-monad-par 0.3.4.7-1

Added:
  haskell-monad-par/
  haskell-monad-par/repos/
  haskell-monad-par/trunk/
  haskell-monad-par/trunk/PKGBUILD
  haskell-monad-par/trunk/haskell-monad-par.install

---+
 PKGBUILD  |   45 
 haskell-monad-par.install |   18 +
 2 files changed, 63 insertions(+)

Added: haskell-monad-par/trunk/PKGBUILD
===
--- haskell-monad-par/trunk/PKGBUILD(rev 0)
+++ haskell-monad-par/trunk/PKGBUILD2016-02-05 08:01:56 UTC (rev 160386)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=monad-par
+pkgname=haskell-monad-par
+pkgver=0.3.4.7
+pkgrel=1
+pkgdesc="A library for parallel programming based on a monad"
+url="https://github.com/simonmar/monad-par;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-abstract-deque" "haskell-abstract-par"
+ "haskell-monad-par-extras" "haskell-mtl" "haskell-mwc-random"
+ "haskell-parallel")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('23b8a68719b4c5848ce9a3381ce9efdc1c96677ba043a3ee74d99223343cc28a')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-newgeneric -f-chaselev
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-monad-par/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-monad-par/trunk/haskell-monad-par.install
===
--- haskell-monad-par/trunk/haskell-monad-par.install   
(rev 0)
+++ haskell-monad-par/trunk/haskell-monad-par.install   2016-02-05 08:01:56 UTC 
(rev 160386)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-monad-par
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


[arch-commits] Commit in haskell-monad-par/repos (6 files)

2016-02-05 Thread Felix Yan
Date: Friday, February 5, 2016 @ 09:02:30
  Author: fyan
Revision: 160387

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

Added:
  haskell-monad-par/repos/community-i686/
  haskell-monad-par/repos/community-i686/PKGBUILD
(from rev 160386, haskell-monad-par/trunk/PKGBUILD)
  haskell-monad-par/repos/community-i686/haskell-monad-par.install
(from rev 160386, haskell-monad-par/trunk/haskell-monad-par.install)
  haskell-monad-par/repos/community-x86_64/
  haskell-monad-par/repos/community-x86_64/PKGBUILD
(from rev 160386, haskell-monad-par/trunk/PKGBUILD)
  haskell-monad-par/repos/community-x86_64/haskell-monad-par.install
(from rev 160386, haskell-monad-par/trunk/haskell-monad-par.install)

+
 community-i686/PKGBUILD|   45 +++
 community-i686/haskell-monad-par.install   |   18 ++
 community-x86_64/PKGBUILD  |   45 +++
 community-x86_64/haskell-monad-par.install |   18 ++
 4 files changed, 126 insertions(+)

Copied: haskell-monad-par/repos/community-i686/PKGBUILD (from rev 160386, 
haskell-monad-par/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-05 08:02:30 UTC (rev 160387)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=monad-par
+pkgname=haskell-monad-par
+pkgver=0.3.4.7
+pkgrel=1
+pkgdesc="A library for parallel programming based on a monad"
+url="https://github.com/simonmar/monad-par;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-abstract-deque" "haskell-abstract-par"
+ "haskell-monad-par-extras" "haskell-mtl" "haskell-mwc-random"
+ "haskell-parallel")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('23b8a68719b4c5848ce9a3381ce9efdc1c96677ba043a3ee74d99223343cc28a')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-newgeneric -f-chaselev
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-monad-par/repos/community-i686/haskell-monad-par.install (from 
rev 160386, haskell-monad-par/trunk/haskell-monad-par.install)
===
--- community-i686/haskell-monad-par.install(rev 0)
+++ community-i686/haskell-monad-par.install2016-02-05 08:02:30 UTC (rev 
160387)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-monad-par
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-monad-par/repos/community-x86_64/PKGBUILD (from rev 160386, 
haskell-monad-par/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-05 08:02:30 UTC (rev 160387)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=monad-par
+pkgname=haskell-monad-par
+pkgver=0.3.4.7
+pkgrel=1
+pkgdesc="A library for parallel programming based on a monad"
+url="https://github.com/simonmar/monad-par;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-abstract-deque" "haskell-abstract-par"
+ "haskell-monad-par-extras" "haskell-mtl" "haskell-mwc-random"
+ 

[arch-commits] Commit in python-nose-show-skipped/repos (3 files)

2016-02-05 Thread Felix Yan
Date: Friday, February 5, 2016 @ 09:14:05
  Author: fyan
Revision: 160389

archrelease: copy trunk to community-any

Added:
  python-nose-show-skipped/repos/community-any/
  python-nose-show-skipped/repos/community-any/LICENSE
(from rev 160388, python-nose-show-skipped/trunk/LICENSE)
  python-nose-show-skipped/repos/community-any/PKGBUILD
(from rev 160388, python-nose-show-skipped/trunk/PKGBUILD)

--+
 LICENSE  |   27 +++
 PKGBUILD |   44 
 2 files changed, 71 insertions(+)

Copied: python-nose-show-skipped/repos/community-any/LICENSE (from rev 160388, 
python-nose-show-skipped/trunk/LICENSE)
===
--- community-any/LICENSE   (rev 0)
+++ community-any/LICENSE   2016-02-05 08:14:05 UTC (rev 160389)
@@ -0,0 +1,27 @@
+Copyright (c) 2013, Phillip Cloud
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without 
modification,
+are permitted provided that the following conditions are met:
+
+  Redistributions of source code must retain the above copyright notice, this
+  list of conditions and the following disclaimer.
+
+  Redistributions in binary form must reproduce the above copyright notice, 
this
+  list of conditions and the following disclaimer in the documentation and/or
+  other materials provided with the distribution.
+
+  Neither the name of the {organization} nor the names of its
+  contributors may be used to endorse or promote products derived from
+  this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Copied: python-nose-show-skipped/repos/community-any/PKGBUILD (from rev 160388, 
python-nose-show-skipped/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-02-05 08:14:05 UTC (rev 160389)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-nose-show-skipped
+pkgname=("python-nose-show-skipped" "python2-nose-show-skipped")
+pkgver=0.1
+pkgrel=1
+pkgdesc="A nose plugin to show skipped tests and their messages"
+arch=('any')
+url="https://github.com/cpcloud/nose-show-skipped;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-nose' 
'python2-nose')
+source=("https://pypi.python.org/packages/source/n/nose-show-skipped/nose-show-skipped-$pkgver.tar.gz;
+'LICENSE')
+sha512sums=('b6f3cbc8fdc6af7f6298ad54a5b06bd053d27197368eef1e006aff438d517dba549154eb3be35996b0bd1c291537729438f52709b76c507e20c496b6e504f5df'
+
'3f9813adb48ca13f52ef119a6c313da4863ff02a8fabe37d48b1b2aa91b13ba672b21d7e7737a74e9c1a7647896bec0181237aa0ca693780419f49ef280a5082')
+
+prepare() {
+  cp -a "nose-show-skipped-$pkgver"{,-py2}
+}
+
+build() {
+  cd "$srcdir/nose-show-skipped-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/nose-show-skipped-$pkgver-py2"
+  python2 setup.py build
+}
+
+package_python-nose-show-skipped() {
+  depends=('python-nose')
+
+  cd nose-show-skipped-$pkgver
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 ../LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-nose-show-skipped() {
+  depends=('python2-nose')
+
+  cd nose-show-skipped-$pkgver-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 ../LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2016-02-05 Thread Felix Yan
Date: Friday, February 5, 2016 @ 09:25:08
  Author: fyan
Revision: 258896

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

Added:
  python-pycurl/repos/extra-i686/PKGBUILD
(from rev 258895, python-pycurl/trunk/PKGBUILD)
  python-pycurl/repos/extra-x86_64/PKGBUILD
(from rev 258895, python-pycurl/trunk/PKGBUILD)
Deleted:
  python-pycurl/repos/extra-i686/PKGBUILD
  python-pycurl/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  144 
 extra-i686/PKGBUILD   |   71 ---
 extra-x86_64/PKGBUILD |   71 ---
 3 files changed, 144 insertions(+), 142 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-02-05 08:24:43 UTC (rev 258895)
+++ extra-i686/PKGBUILD 2016-02-05 08:25:08 UTC (rev 258896)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Sergej Pupykin 
-# Contributor: Angel 'angvp' Velasquez  
-
-_pypiname=pycurl
-pkgbase=python-$_pypiname
-pkgname=('python-pycurl' 'python2-pycurl')
-pkgver=7.21.5
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://pycurl.sourceforge.net/;
-license=('LGPL' 'MIT')
-makedepends=('python' 'python2' 'curl' 'git')
-checkdepends=('python-bottle' 'python2-bottle' 'python-nose' 'python2-nose' 
'vsftpd' 'python-flaky' 'python2-flaky' 'python-pyflakes' 'python2-pyflakes')
-source=("git+https://github.com/pycurl/pycurl.git#tag=REL_${pkgver//./_};)
-sha1sums=('SKIP')
-
-prepare() {
-  cp -a $_pypiname{,-py2}
-
-  cd "$srcdir/$_pypiname"
-  find . -name '*.py' -exec sed -i -e "s|#! /usr/bin/env python|#!/usr/bin/env 
python3|" {} +
-sed -i 's/"share", "doc", PACKAGE/"share", "doc", "python-pycurl"/' 
setup.py
-  sed -e "s/nosetests/nosetests3/" -e "s/python/python3/" -i tests/run.sh
-
-  cd "$srcdir/$_pypiname-py2"
-  find . -name '*.py' -exec sed -i -e "s|#! /usr/bin/env python|#!/usr/bin/env 
python2|" {} +
-sed -i 's/"share", "doc", PACKAGE/"share", "doc", "python2-pycurl"/' 
setup.py
-  sed -e "s/nosetests/nosetests2/" -e "s/python/python2/" -i tests/run.sh
-  sed -e "s/pyflakes/pyflakes-python2/" -i Makefile
-}
-
-build() {
-  cd "$srcdir/$_pypiname"
-  make
-  python3 setup.py build --with-ssl
-
-  cd "$srcdir/$_pypiname-py2"
-  make
-  python2 setup.py build --with-ssl
-}
-
-check() {
-  export PYCURL_VSFTPD_PATH=vsftpd
-
-  cd "$srcdir/$_pypiname"
-  # Failure reported: https://github.com/pycurl/pycurl/issues/357
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH" make test || 
warning "Tests failed"
-
-  cd "$srcdir/$_pypiname-py2"
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" make PYTHON=python2 
NOSETESTS=nosetests2 test
-}
-
-package_python-pycurl() {
-  pkgdesc="A Python 3.x interface to libcurl"
-  depends=('python' 'curl')
-
-  cd $_pypiname
-  python setup.py install -O1 --root="${pkgdir}"
-  install -D -m644 COPYING-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-pycurl() {
-  pkgdesc="A Python 2.x interface to libcurl"
-  depends=('python2' 'curl')
-
-  cd $_pypiname-py2
-  python2 setup.py install -O1 --root="${pkgdir}"
-  install -D -m644 COPYING-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-pycurl/repos/extra-i686/PKGBUILD (from rev 258895, 
python-pycurl/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-02-05 08:25:08 UTC (rev 258896)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Sergej Pupykin 
+# Contributor: Angel 'angvp' Velasquez  
+
+_pypiname=pycurl
+pkgbase=python-$_pypiname
+pkgname=('python-pycurl' 'python2-pycurl')
+pkgver=7.43.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://pycurl.sourceforge.net/;
+license=('LGPL' 'MIT')
+makedepends=('python' 'python2' 'curl' 'git')
+checkdepends=('python-bottle' 'python2-bottle' 'python-nose-show-skipped' 
'python2-nose-show-skipped'
+  'vsftpd' 'python-flaky' 'python2-flaky' 'python-pyflakes' 
'python2-pyflakes')
+source=("git+https://github.com/pycurl/pycurl.git#tag=REL_${pkgver//./_};)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a $_pypiname{,-py2}
+
+  cd "$srcdir/$_pypiname"
+  find . -name '*.py' -exec sed -i -e "s|#! /usr/bin/env python|#!/usr/bin/env 
python3|" {} +
+sed -i 's/"share", "doc", PACKAGE/"share", "doc", "python-pycurl"/' 
setup.py
+  sed -e "s/nosetests/nosetests3/" -e "s/python/python3/" -i tests/run.sh
+
+  cd "$srcdir/$_pypiname-py2"
+  find . -name '*.py' -exec sed -i -e "s|#! /usr/bin/env python|#!/usr/bin/env 
python2|" {} +
+sed -i 's/"share", "doc", PACKAGE/"share", "doc", "python2-pycurl"/' 
setup.py
+  sed -e "s/nosetests/nosetests2/" -e "s/python/python2/" -i 

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

2016-02-05 Thread Sébastien Luttringer
Date: Friday, February 5, 2016 @ 21:26:18
  Author: seblu
Revision: 160430

archrelease: copy trunk to community-any

Added:
  salt/repos/community-any/PKGBUILD
(from rev 160429, salt/trunk/PKGBUILD)
  salt/repos/community-any/salt.install
(from rev 160429, salt/trunk/salt.install)
Deleted:
  salt/repos/community-any/PKGBUILD
  salt/repos/community-any/salt.install

--+
 PKGBUILD |  194 -
 salt.install |   30 
 2 files changed, 112 insertions(+), 112 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-05 20:26:08 UTC (rev 160429)
+++ PKGBUILD2016-02-05 20:26:18 UTC (rev 160430)
@@ -1,97 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Maintainer: Daniel Wallace 
-# Contibutor: Christer Edwards 
-
-pkgbase=salt
-pkgname=(salt-zmq salt-raet)
-pkgver=2015.8.3
-pkgrel=1
-pkgdesc='Central system and configuration manager'
-arch=('any')
-url='http://saltstack.org/'
-license=('Apache')
-makedepends=('python2'
- 'python2-jinja'
- 'python2-msgpack'
- 'python2-yaml'
- 'python2-markupsafe'
- 'python2-requests'
- 'python2-libnacl'
- 'python2-ioflo'
- 'python2-raet'
- 'python2-pyzmq'
- 'python2-crypto'
- 'python2-m2crypto'
- 'python2-systemd'
- 'python2-tornado')
-optdepends=('dmidecode: decode SMBIOS/DMI tables'
-'python2-pygit2: gitfs support')
-backup=('etc/salt/master'
-'etc/salt/minion')
-install=salt.install
-conflicts=('salt')
-source=("http://pypi.python.org/packages/source/s/salt/salt-$pkgver.tar.gz;)
-md5sums=('5919fcb6be4deeafab9746febd7da1ef')
-
-package_salt-zmq() {
-  cd $pkgbase-$pkgver
-  provides=('salt' 'salt-api')
-  replaces=('salt<=2014.1.13' 'salt-api<2014.7')
-  depends=('python2-jinja'
-   'python2-msgpack'
-   'python2-yaml'
-   'python2-markupsafe'
-   'python2-requests'
-   'python2-pyzmq'
-   'python2-crypto'
-   'python2-m2crypto'
-   'python2-systemd'
-   'python2-tornado')
-  python2 setup.py clean
-  python2 setup.py --salt-pidfile-dir="/run/salt" install --root="$pkgdir" 
--optimize=1
-
-  # default config
-  install -Dm644 conf/master "$pkgdir/etc/salt/master"
-  install -Dm644 conf/minion "$pkgdir/etc/salt/minion"
-
-  # systemd services
-  for _svc in salt-master.service salt-syndic.service salt-minion.service 
salt-api.service; do
-install -Dm644 pkg/$_svc "$pkgdir/usr/lib/systemd/system/$_svc"
-  done
-  install -Dm644 pkg/salt.bash 
"$pkgdir/usr/share/bash-completion/completions/salt"
-  install -Dm644 pkg/zsh_completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_salt"
-}
-
-package_salt-raet() {
-  cd $pkgbase-$pkgver
-  provides=('salt' 'salt-api')
-  depends=('python2-jinja'
-   'python2-msgpack'
-   'python2-yaml'
-   'python2-markupsafe'
-   'python2-requests'
-   'python2-libnacl'
-   'python2-ioflo'
-   'python2-raet'
-   'python2-tornado'
-   'python2-systemd')
-  python2 setup.py clean
-  python2 setup.py --salt-pidfile-dir="/run/salt" --salt-transport=raet 
install --root="$pkgdir" --optimize=1
-
-  # default config
-  install -Dm644 conf/master "$pkgdir/etc/salt/master"
-  install -Dm644 conf/minion "$pkgdir/etc/salt/minion"
-  install -d "$pkgdir/etc/salt/master.d/" "$pkgdir/etc/salt/minion.d/"
-  echo 'transport: raet' > "$pkgdir/etc/salt/master.d/transport.conf"
-  echo 'transport: raet' > "$pkgdir/etc/salt/minion.d/transport.conf"
-
-  # systemd services
-  for _svc in salt-master.service salt-syndic.service salt-minion.service 
salt-api.service; do
-install -Dm644 pkg/$_svc "$pkgdir/usr/lib/systemd/system/$_svc"
-  done
-  install -Dm644 pkg/salt.bash 
"$pkgdir/usr/share/bash-completion/completions/salt"
-  install -Dm644 pkg/zsh_completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_salt"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: salt/repos/community-any/PKGBUILD (from rev 160429, salt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-05 20:26:18 UTC (rev 160430)
@@ -0,0 +1,97 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Maintainer: Daniel Wallace 
+# Contibutor: Christer Edwards 
+
+pkgbase=salt
+pkgname=(salt-zmq salt-raet)
+pkgver=2015.8.5
+pkgrel=1
+pkgdesc='Central system and configuration manager'
+arch=('any')
+url='http://saltstack.org/'
+license=('Apache')
+makedepends=('python2'
+ 'python2-jinja'
+ 'python2-msgpack'
+ 'python2-yaml'
+ 'python2-markupsafe'
+ 'python2-requests'
+ 'python2-libnacl'
+ 'python2-ioflo'
+   

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

2016-02-05 Thread Johannes Löthberg
Date: Friday, February 5, 2016 @ 23:56:11
  Author: demize
Revision: 160443

db-remove: vim-netrw removed by demize

Deleted:
  vim-netrw/repos/community-any/


[arch-commits] Commit in (vim-netrw)

2016-02-05 Thread Johannes Löthberg
Date: Friday, February 5, 2016 @ 23:57:32
  Author: demize
Revision: 160444

Drop vim-netrw

Outdated and useless since it's part of vim upstream.

Deleted:
  vim-netrw/


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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 23:04:00
  Author: spupykin
Revision: 160434

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-05 22:03:46 UTC (rev 160433)
+++ community-i686/PKGBUILD 2016-02-05 22:04:00 UTC (rev 160434)
@@ -1,29 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Sandy Carter 
-
-pkgname=openmw
-pkgver=0.38.0
-pkgrel=2
-pkgdesc="An open-source engine reimplementation for the role-playing game 
Morrowind"
-arch=('i686' 'x86_64')
-url="http://www.openmw.org;
-license=('GPL3' 'MIT' 'custom')
-depends=('openal' 'openscenegraph' 'mygui' 'bullet' 'qt5-base' 'ffmpeg' 'sdl2' 
'unshield')
-makedepends=('cmake' 'boost' 'doxygen')
-source=("https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
-sha1sums=('0df078426503bdb22d4773c0e611894d25f990ad')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DDESIRED_QT_VERSION=5
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: openmw/repos/community-i686/PKGBUILD (from rev 160433, 
openmw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-05 22:04:00 UTC (rev 160434)
@@ -0,0 +1,29 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Sandy Carter 
+
+pkgname=openmw
+pkgver=0.38.0
+pkgrel=3
+pkgdesc="An open-source engine reimplementation for the role-playing game 
Morrowind"
+arch=('i686' 'x86_64')
+url="http://www.openmw.org;
+license=('GPL3' 'MIT' 'custom')
+depends=('openal' 'openscenegraph' 'mygui' 'bullet' 'qt5-base' 'ffmpeg' 'sdl2' 
'unshield')
+makedepends=('cmake' 'boost' 'doxygen')
+source=("https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
+sha1sums=('0df078426503bdb22d4773c0e611894d25f990ad')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DDESIRED_QT_VERSION=5
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-05 22:03:46 UTC (rev 160433)
+++ community-x86_64/PKGBUILD   2016-02-05 22:04:00 UTC (rev 160434)
@@ -1,29 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Sandy Carter 
-
-pkgname=openmw
-pkgver=0.38.0
-pkgrel=2
-pkgdesc="An open-source engine reimplementation for the role-playing game 
Morrowind"
-arch=('i686' 'x86_64')
-url="http://www.openmw.org;
-license=('GPL3' 'MIT' 'custom')
-depends=('openal' 'openscenegraph' 'mygui' 'bullet' 'qt5-base' 'ffmpeg' 'sdl2' 
'unshield')
-makedepends=('cmake' 'boost' 'doxygen')
-source=("https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
-sha1sums=('0df078426503bdb22d4773c0e611894d25f990ad')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DDESIRED_QT_VERSION=5
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: openmw/repos/community-x86_64/PKGBUILD (from rev 160433, 
openmw/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-05 22:04:00 UTC (rev 160434)
@@ -0,0 +1,29 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Sandy Carter 
+
+pkgname=openmw
+pkgver=0.38.0
+pkgrel=3
+pkgdesc="An open-source engine reimplementation for the role-playing game 
Morrowind"
+arch=('i686' 'x86_64')
+url="http://www.openmw.org;
+license=('GPL3' 'MIT' 'custom')
+depends=('openal' 'openscenegraph' 'mygui' 'bullet' 'qt5-base' 'ffmpeg' 'sdl2' 
'unshield')
+makedepends=('cmake' 'boost' 'doxygen')

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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 23:03:40
  Author: spupykin
Revision: 160432

archrelease: copy trunk to community-i686

Added:
  flightgear/repos/community-i686/PKGBUILD
(from rev 160431, flightgear/trunk/PKGBUILD)
  flightgear/repos/community-i686/explicitely-link-with-libX11.patch
(from rev 160431, flightgear/trunk/explicitely-link-with-libX11.patch)
Deleted:
  flightgear/repos/community-i686/PKGBUILD
  flightgear/repos/community-i686/explicitely-link-with-libX11.patch

+
 PKGBUILD   |   98 +--
 explicitely-link-with-libX11.patch |   72 -
 2 files changed, 84 insertions(+), 86 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-05 22:03:29 UTC (rev 160431)
+++ PKGBUILD2016-02-05 22:03:40 UTC (rev 160432)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: William Rea 
-# Contributor: Hans Janssen 
-
-pkgname=flightgear
-pkgver=3.4.0
-pkgrel=3
-pkgdesc="An open-source, multi-platform flight simulator"
-arch=(i686 x86_64)
-depends=('libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion' 'libxrandr' 
'glu' 'openal')
-makedepends=('boost' 'cmake' 'mesa' 'sharutils' 'simgear')
-license=("GPL")
-url="http://www.flightgear.org;
-options=('!makeflags')
-#source=("$pkgname-$pkgver.tar.gz::https://gitorious.org/fg/flightgear/archive-tarball/release/$pkgver;)
-#source=("ftp://ftp.de.flightgear.org/pub/fgfs/Source/flightgear-$pkgver.tar.bz2;)
-source=("http://mirrors.ibiblio.org/pub/mirrors/flightgear/ftp/Source/flightgear-$pkgver.tar.bz2;
-"explicitely-link-with-libX11.patch")
-md5sums=('0a6f4c27baf64f3e7d58fd44612118df'
- 'fc264184d88afdc12c669f1eabb5bbea')
-
-prepare() {
-  cd $srcdir/flightgear-$pkgver
-  patch -Np1 -i ../explicitely-link-with-libX11.patch
-}
-
-build() {
-  cd $srcdir/flightgear-$pkgver
-  cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib \
-   -DFG_DATA_DIR:STRING="/usr/share/flightgear/data" .
-  uudecode -o package/flightgear.png package/flightgear.png.uue
-  make
-  sed -i 's|Exec=.*|Exec=fgfs --fg-root=/usr/share/flightgear/data|' 
package/flightgear.desktop
-}
-
-package() {
-  depends=(${depends[@]} 'flightgear-data')
-
-  cd $srcdir/flightgear-$pkgver
-  make DESTDIR=$pkgdir install
-
-  install -Dm0644 package/flightgear.desktop 
$pkgdir/usr/share/applications/flightgear.desktop
-  install -Dm0644 package/flightgear.ico $pkgdir/usr/share/icons/flightgear.ico
-  install -Dm0644 package/flightgear.png $pkgdir/usr/share/icons/flightgear.png
-  install -Dm0644 scripts/completion/fg-completion.bash 
$pkgdir/usr/share/bash-completion/completions/fgfs
-  ln -sf flightgear $pkgdir/usr/share/FlightGear
-}

Copied: flightgear/repos/community-i686/PKGBUILD (from rev 160431, 
flightgear/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-05 22:03:40 UTC (rev 160432)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: William Rea 
+# Contributor: Hans Janssen 
+
+pkgname=flightgear
+pkgver=3.5.0git
+pkgrel=1
+pkgdesc="An open-source, multi-platform flight simulator"
+arch=(i686 x86_64)
+depends=('libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion' 'libxrandr' 
'glu' 'openal')
+makedepends=('boost' 'cmake' 'mesa' 'sharutils' 'simgear' 'git')
+license=("GPL")
+url="https://github.com/FlightGear/flightgear;
+options=('!makeflags')
+source=("git://github.com/FlightGear/flightgear.git#commit=b61904a7a1093d5cfffac9a7262171db7dd16df"
+"explicitely-link-with-libX11.patch")
+md5sums=('SKIP'
+ 'fc264184d88afdc12c669f1eabb5bbea')
+
+prepare() {
+  cd $srcdir/flightgear
+#  patch -Np1 -i ../explicitely-link-with-libX11.patch
+}
+
+build() {
+  cd $srcdir/flightgear
+  cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DFG_DATA_DIR:STRING="/usr/share/flightgear/data" .
+  uudecode -o package/flightgear.png package/flightgear.png.uue
+  make
+  sed -i 's|Exec=.*|Exec=fgfs --fg-root=/usr/share/flightgear/data|' 
package/flightgear.desktop
+}
+
+package() {
+  depends=(${depends[@]} 'flightgear-data')
+
+  cd $srcdir/flightgear
+  make DESTDIR=$pkgdir install
+
+  install -Dm0644 package/flightgear.desktop 
$pkgdir/usr/share/applications/flightgear.desktop
+  install -Dm0644 package/flightgear.ico $pkgdir/usr/share/icons/flightgear.ico
+  install -Dm0644 package/flightgear.png $pkgdir/usr/share/icons/flightgear.png
+  install -Dm0644 scripts/completion/fg-completion.bash 
$pkgdir/usr/share/bash-completion/completions/fgfs
+  ln -sf flightgear $pkgdir/usr/share/FlightGear
+}

Deleted: explicitely-link-with-libX11.patch

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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 23:03:29
  Author: spupykin
Revision: 160431

upgpkg: flightgear 3.5.0git-1

upd

Modified:
  flightgear/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 20:26:18 UTC (rev 160430)
+++ PKGBUILD2016-02-05 22:03:29 UTC (rev 160431)
@@ -4,29 +4,27 @@
 # Contributor: Hans Janssen 
 
 pkgname=flightgear
-pkgver=3.4.0
-pkgrel=3
+pkgver=3.5.0git
+pkgrel=1
 pkgdesc="An open-source, multi-platform flight simulator"
 arch=(i686 x86_64)
 depends=('libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion' 'libxrandr' 
'glu' 'openal')
-makedepends=('boost' 'cmake' 'mesa' 'sharutils' 'simgear')
+makedepends=('boost' 'cmake' 'mesa' 'sharutils' 'simgear' 'git')
 license=("GPL")
-url="http://www.flightgear.org;
+url="https://github.com/FlightGear/flightgear;
 options=('!makeflags')
-#source=("$pkgname-$pkgver.tar.gz::https://gitorious.org/fg/flightgear/archive-tarball/release/$pkgver;)
-#source=("ftp://ftp.de.flightgear.org/pub/fgfs/Source/flightgear-$pkgver.tar.bz2;)
-source=("http://mirrors.ibiblio.org/pub/mirrors/flightgear/ftp/Source/flightgear-$pkgver.tar.bz2;
+source=("git://github.com/FlightGear/flightgear.git#commit=b61904a7a1093d5cfffac9a7262171db7dd16df"
 "explicitely-link-with-libX11.patch")
-md5sums=('0a6f4c27baf64f3e7d58fd44612118df'
+md5sums=('SKIP'
  'fc264184d88afdc12c669f1eabb5bbea')
 
 prepare() {
-  cd $srcdir/flightgear-$pkgver
-  patch -Np1 -i ../explicitely-link-with-libX11.patch
+  cd $srcdir/flightgear
+#  patch -Np1 -i ../explicitely-link-with-libX11.patch
 }
 
 build() {
-  cd $srcdir/flightgear-$pkgver
+  cd $srcdir/flightgear
   cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
@@ -39,7 +37,7 @@
 package() {
   depends=(${depends[@]} 'flightgear-data')
 
-  cd $srcdir/flightgear-$pkgver
+  cd $srcdir/flightgear
   make DESTDIR=$pkgdir install
 
   install -Dm0644 package/flightgear.desktop 
$pkgdir/usr/share/applications/flightgear.desktop


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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 23:03:46
  Author: spupykin
Revision: 160433

upgpkg: openmw 0.38.0-3

upd

Modified:
  openmw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 22:03:40 UTC (rev 160432)
+++ PKGBUILD2016-02-05 22:03:46 UTC (rev 160433)
@@ -3,7 +3,7 @@
 
 pkgname=openmw
 pkgver=0.38.0
-pkgrel=2
+pkgrel=3
 pkgdesc="An open-source engine reimplementation for the role-playing game 
Morrowind"
 arch=('i686' 'x86_64')
 url="http://www.openmw.org;


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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 23:18:06
  Author: spupykin
Revision: 160441

archrelease: copy trunk to community-x86_64

Added:
  flightgear/repos/community-x86_64/PKGBUILD
(from rev 160440, flightgear/trunk/PKGBUILD)
  flightgear/repos/community-x86_64/explicitely-link-with-libX11.patch
(from rev 160440, flightgear/trunk/explicitely-link-with-libX11.patch)
Deleted:
  flightgear/repos/community-x86_64/PKGBUILD
  flightgear/repos/community-x86_64/explicitely-link-with-libX11.patch

+
 PKGBUILD   |   98 +--
 explicitely-link-with-libX11.patch |   72 -
 2 files changed, 84 insertions(+), 86 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-05 22:16:26 UTC (rev 160440)
+++ PKGBUILD2016-02-05 22:18:06 UTC (rev 160441)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: William Rea 
-# Contributor: Hans Janssen 
-
-pkgname=flightgear
-pkgver=3.4.0
-pkgrel=3
-pkgdesc="An open-source, multi-platform flight simulator"
-arch=(i686 x86_64)
-depends=('libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion' 'libxrandr' 
'glu' 'openal')
-makedepends=('boost' 'cmake' 'mesa' 'sharutils' 'simgear')
-license=("GPL")
-url="http://www.flightgear.org;
-options=('!makeflags')
-#source=("$pkgname-$pkgver.tar.gz::https://gitorious.org/fg/flightgear/archive-tarball/release/$pkgver;)
-#source=("ftp://ftp.de.flightgear.org/pub/fgfs/Source/flightgear-$pkgver.tar.bz2;)
-source=("http://mirrors.ibiblio.org/pub/mirrors/flightgear/ftp/Source/flightgear-$pkgver.tar.bz2;
-"explicitely-link-with-libX11.patch")
-md5sums=('0a6f4c27baf64f3e7d58fd44612118df'
- 'fc264184d88afdc12c669f1eabb5bbea')
-
-prepare() {
-  cd $srcdir/flightgear-$pkgver
-  patch -Np1 -i ../explicitely-link-with-libX11.patch
-}
-
-build() {
-  cd $srcdir/flightgear-$pkgver
-  cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib \
-   -DFG_DATA_DIR:STRING="/usr/share/flightgear/data" .
-  uudecode -o package/flightgear.png package/flightgear.png.uue
-  make
-  sed -i 's|Exec=.*|Exec=fgfs --fg-root=/usr/share/flightgear/data|' 
package/flightgear.desktop
-}
-
-package() {
-  depends=(${depends[@]} 'flightgear-data')
-
-  cd $srcdir/flightgear-$pkgver
-  make DESTDIR=$pkgdir install
-
-  install -Dm0644 package/flightgear.desktop 
$pkgdir/usr/share/applications/flightgear.desktop
-  install -Dm0644 package/flightgear.ico $pkgdir/usr/share/icons/flightgear.ico
-  install -Dm0644 package/flightgear.png $pkgdir/usr/share/icons/flightgear.png
-  install -Dm0644 scripts/completion/fg-completion.bash 
$pkgdir/usr/share/bash-completion/completions/fgfs
-  ln -sf flightgear $pkgdir/usr/share/FlightGear
-}

Copied: flightgear/repos/community-x86_64/PKGBUILD (from rev 160440, 
flightgear/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-05 22:18:06 UTC (rev 160441)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: William Rea 
+# Contributor: Hans Janssen 
+
+pkgname=flightgear
+pkgver=3.5.0git
+pkgrel=1
+pkgdesc="An open-source, multi-platform flight simulator"
+arch=(i686 x86_64)
+depends=('libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion' 'libxrandr' 
'glu' 'openal')
+makedepends=('boost' 'cmake' 'mesa' 'sharutils' 'simgear' 'git')
+license=("GPL")
+url="https://github.com/FlightGear/flightgear;
+options=('!makeflags')
+source=("git://github.com/FlightGear/flightgear.git#commit=b61904a7a1093d5cfffac9a7262171db7dd16df"
+"explicitely-link-with-libX11.patch")
+md5sums=('SKIP'
+ 'fc264184d88afdc12c669f1eabb5bbea')
+
+prepare() {
+  cd $srcdir/flightgear
+#  patch -Np1 -i ../explicitely-link-with-libX11.patch
+}
+
+build() {
+  cd $srcdir/flightgear
+  cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DFG_DATA_DIR:STRING="/usr/share/flightgear/data" .
+  uudecode -o package/flightgear.png package/flightgear.png.uue
+  make
+  sed -i 's|Exec=.*|Exec=fgfs --fg-root=/usr/share/flightgear/data|' 
package/flightgear.desktop
+}
+
+package() {
+  depends=(${depends[@]} 'flightgear-data')
+
+  cd $srcdir/flightgear
+  make DESTDIR=$pkgdir install
+
+  install -Dm0644 package/flightgear.desktop 
$pkgdir/usr/share/applications/flightgear.desktop
+  install -Dm0644 package/flightgear.ico $pkgdir/usr/share/icons/flightgear.ico
+  install -Dm0644 package/flightgear.png $pkgdir/usr/share/icons/flightgear.png
+  install -Dm0644 scripts/completion/fg-completion.bash 
$pkgdir/usr/share/bash-completion/completions/fgfs
+  ln -sf flightgear $pkgdir/usr/share/FlightGear
+}

Deleted: 

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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 23:18:55
  Author: spupykin
Revision: 160442

Modified:
  flightgear/trunk/PKGBUILD
Deleted:
  flightgear/trunk/explicitely-link-with-libX11.patch

+
 PKGBUILD   |   11 +-
 explicitely-link-with-libX11.patch |   36 ---
 2 files changed, 2 insertions(+), 45 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 22:18:06 UTC (rev 160441)
+++ PKGBUILD2016-02-05 22:18:55 UTC (rev 160442)
@@ -13,16 +13,9 @@
 license=("GPL")
 url="https://github.com/FlightGear/flightgear;
 options=('!makeflags')
-source=("git://github.com/FlightGear/flightgear.git#commit=b61904a7a1093d5cfffac9a7262171db7dd16df"
-"explicitely-link-with-libX11.patch")
-md5sums=('SKIP'
- 'fc264184d88afdc12c669f1eabb5bbea')
+source=("git://github.com/FlightGear/flightgear.git#commit=b61904a7a1093d5cfffac9a7262171db7dd16df")
+md5sums=('SKIP')
 
-prepare() {
-  cd $srcdir/flightgear
-#  patch -Np1 -i ../explicitely-link-with-libX11.patch
-}
-
 build() {
   cd $srcdir/flightgear
   cmake \

Deleted: explicitely-link-with-libX11.patch
===
--- explicitely-link-with-libX11.patch  2016-02-05 22:18:06 UTC (rev 160441)
+++ explicitely-link-with-libX11.patch  2016-02-05 22:18:55 UTC (rev 160442)
@@ -1,36 +0,0 @@
-From 04ca64edc46cfb54ecff5bddf12370b2c7a0f192 Mon Sep 17 00:00:00 2001
-From: Fabrice Bellet 
-Date: Tue, 17 Feb 2015 22:49:50 +0100
-Subject: [PATCH] explicitely link with libX11
-

- src/Main/CMakeLists.txt   | 1 +
- utils/fgviewer/CMakeLists.txt | 1 +
- 2 files changed, 2 insertions(+)
-
-diff --git a/src/Main/CMakeLists.txt b/src/Main/CMakeLists.txt
-index 12c0961..78c4163 100644
 a/src/Main/CMakeLists.txt
-+++ b/src/Main/CMakeLists.txt
-@@ -142,6 +142,7 @@ target_link_libraries(fgfs
-   ${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
-   ${SIMGEAR_SCENE_LIBRARY_DEPENDENCIES}
-   ${PLATFORM_LIBS}
-+${X11_X11_LIB}
- )
- 
- if(ENABLE_FLITE)
-diff --git a/utils/fgviewer/CMakeLists.txt b/utils/fgviewer/CMakeLists.txt
-index 165be74..065b8f1 100644
 a/utils/fgviewer/CMakeLists.txt
-+++ b/utils/fgviewer/CMakeLists.txt
-@@ -48,5 +48,6 @@ target_link_libraries(fgviewer
-   ${OPENGL_LIBRARIES}
-   ${FGVIEWER_RTI_LIBRARIES}
- ${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
-+${X11_X11_LIB}
- )
- install(TARGETS fgviewer RUNTIME DESTINATION bin)
--- 
-2.1.0
-


[arch-commits] Commit in openscenegraph/trunk (PKGBUILD giflib.patch)

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 23:04:07
  Author: spupykin
Revision: 160435

upgpkg: openscenegraph 3.4.0-1

upd

Modified:
  openscenegraph/trunk/PKGBUILD
Deleted:
  openscenegraph/trunk/giflib.patch

--+
 PKGBUILD |   41 -
 giflib.patch |   12 
 2 files changed, 8 insertions(+), 45 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 22:04:00 UTC (rev 160434)
+++ PKGBUILD2016-02-05 22:04:07 UTC (rev 160435)
@@ -5,7 +5,7 @@
 # Contributor: Colin Pitrat 
 
 pkgname=openscenegraph
-pkgver=3.2.3
+pkgver=3.4.0
 pkgrel=1
 pkgdesc="An Open Source, high performance real-time graphics toolkit"
 arch=('i686' 'x86_64')
@@ -12,45 +12,20 @@
 license=('custom:OSGPL')
 url="http://www.openscenegraph.org;
 depends=('giflib' 'jasper' 'librsvg' 'xine-lib' 'curl' 'pth')
-makedepends=('cmake' 'libvncserver' 'qt5-base' 'ffmpeg-compat' 'mesa')
-optdepends=('libvncserver' 'gdal' 'openexr' 'poppler-glib' 'qt5-base' 
'ffmpeg-compat')
+makedepends=('cmake' 'libvncserver' 'qt5-base' 'ffmpeg' 'mesa')
+optdepends=('libvncserver' 'gdal' 'openexr' 'poppler-glib' 'qt5-base' 'ffmpeg')
 conflicts=('openthreads')
 provides=('openthreads')
-#source=(http://www.openscenegraph.org/downloads/stable_releases/OpenSceneGraph-$pkgver/source/OpenSceneGraph-$pkgver.zip
-source=(http://trac.openscenegraph.org/downloads/developer_releases/OpenSceneGraph-$pkgver.zip
-   
https://github.com/openscenegraph/osg/commit/49d560f4d9d0641c98df67264b7ace4733c6b9a9.patch
-   giflib.patch)
-md5sums=('02ffdad7744c747d8fad0d7babb58427'
- '6e3c75677f87113f18912916352c6cbd'
- '8c06c8410e8840e83c242b8b401cdad7')
+source=(http://trac.openscenegraph.org/downloads/developer_releases/OpenSceneGraph-$pkgver.zip)
+md5sums=('a5e762c64373a46932e444f6f7332496')
 
-prepare() {
-  cd OpenSceneGraph-$pkgver
-#  patch -p1 <$srcdir/giflib.patch
-#  patch -p1 <$srcdir/49d560f4d9d0641c98df67264b7ace4733c6b9a9.patch
-}
-
 build() {
   cd OpenSceneGraph-$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"
+#  CFLAGS="$CFLAGS -D__STDC_CONSTANT_MACROS"
+#  CXXFLAGS="$CXXFLAGS -D__STDC_CONSTANT_MACROS"
   [ $NOEXTRACT -eq 1 ] || cmake . \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DFFMPEG_LIBAVCODEC_INCLUDE_DIRS=/usr/include/ffmpeg-compat \
--DFFMPEG_LIBAVCODEC_LIBRARIES=/usr/lib/ffmpeg-compat/libavcodec.so \
--DFFMPEG_LIBAVDEVICE_INCLUDE_DIRS=/usr/include/ffmpeg-compat \
--DFFMPEG_LIBAVDEVICE_LIBRARIES=/usr/lib/ffmpeg-compat/libavdevice.so \
--DFFMPEG_LIBAVFORMAT_INCLUDE_DIRS=/usr/include/ffmpeg-compat \
--DFFMPEG_LIBAVFORMAT_LIBRARIES=/usr/lib/ffmpeg-compat/libavformat.so \
--DFFMPEG_LIBAVUTIL_INCLUDE_DIRS=/usr/include/ffmpeg-compat \
--DFFMPEG_LIBAVUTIL_LIBRARIES=/usr/lib/ffmpeg-compat/libavutil.so \
--DFFMPEG_LIBSWSCALE_INCLUDE_DIRS=/usr/include/ffmpeg-compat \
--DFFMPEG_LIBSWSCALE_LIBRARIES=/usr/lib/ffmpeg-compat/libswscale.so
-
-#  sed -i 's|#include |//#include |' 
src/osgPlugins/curl/ReaderWriterCURL.cpp
+-DCMAKE_BUILD_TYPE=Release
   make
 }
 

Deleted: giflib.patch
===
--- giflib.patch2016-02-05 22:04:00 UTC (rev 160434)
+++ giflib.patch2016-02-05 22:04:07 UTC (rev 160435)
@@ -1,12 +0,0 @@
-diff -wbBur OpenSceneGraph-3.2.0/src/osgPlugins/gif/ReaderWriterGIF.cpp 
OpenSceneGraph-3.2.0.q/src/osgPlugins/gif/ReaderWriterGIF.cpp
 OpenSceneGraph-3.2.0/src/osgPlugins/gif/ReaderWriterGIF.cpp
2013-06-03 18:04:02.0 +0400
-+++ OpenSceneGraph-3.2.0.q/src/osgPlugins/gif/ReaderWriterGIF.cpp  
2014-05-29 19:00:40.163985068 +0400
-@@ -561,7 +561,7 @@
- *width_ret = giffile->SWidth;
- *height_ret = giffile->SHeight;
- *numComponents_ret = 4;
--DGifCloseFile(giffile);
-+DGifCloseFile(giffile, NULL);
- return buffer;
- }
- 


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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 23:04:42
  Author: spupykin
Revision: 160438

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

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

---+
 /PKGBUILD |   58 
 community-i686/PKGBUILD   |   30 --
 community-x86_64/PKGBUILD |   30 --
 3 files changed, 58 insertions(+), 60 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-05 22:04:28 UTC (rev 160437)
+++ community-i686/PKGBUILD 2016-02-05 22:04:42 UTC (rev 160438)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: William Rea 
-# Contributor: Hans Janssen 
-
-pkgname=simgear
-pkgver=3.4.0
-pkgrel=3
-pkgdesc="A set of open-source libraries designed to be used as building blocks 
for quickly assembling 3d simulations, games, and visualization applications."
-arch=(i686 x86_64)
-depends=('glu' 'glut' 'freealut' 'plib' 'openscenegraph')
-makedepends=('boost' 'cmake' 'mesa')
-license=("GPL")
-#url="http://www.simgear.org;
-url="https://gitorious.org/fg;
-options=('!makeflags' 'staticlibs')
-#source=("SimGear-$pkgver.tar.gz::https://gitorious.org/fg/simgear/archive-tarball/release/$pkgver;)
-source=("http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/simgear-$pkgver.tar.bz2;)
-md5sums=('4db6c80a7f5e23f53361e3ef6d36835e')
-
-build() {
-  cd $srcdir/simgear-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
-  make
-}
-
-package() {
-  cd $srcdir/simgear-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: simgear/repos/community-i686/PKGBUILD (from rev 160437, 
simgear/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-05 22:04:42 UTC (rev 160438)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: William Rea 
+# Contributor: Hans Janssen 
+
+pkgname=simgear
+pkgver=3.5.0git
+pkgrel=1
+pkgdesc="A set of open-source libraries designed to be used as building blocks 
for quickly assembling 3d simulations, games, and visualization applications."
+arch=(i686 x86_64)
+depends=('glu' 'glut' 'freealut' 'plib' 'openscenegraph')
+makedepends=('boost' 'cmake' 'mesa' 'git')
+license=("GPL")
+url="https://github.com/FlightGear/simgear;
+options=('!makeflags' 'staticlibs')
+#source=("$pkgname-$pkgver.tar.gz::https://github.com/FlightGear/simgear/archive/version/$pkgver.tar.gz;)
+source=("git://github.com/FlightGear/simgear.git#commit=b91d1a3f6a1ab144c8c63566853691860b0a9cd4")
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/simgear
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
+  make
+}
+
+package() {
+  cd $srcdir/simgear
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-05 22:04:28 UTC (rev 160437)
+++ community-x86_64/PKGBUILD   2016-02-05 22:04:42 UTC (rev 160438)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: William Rea 
-# Contributor: Hans Janssen 
-
-pkgname=simgear
-pkgver=3.4.0
-pkgrel=3
-pkgdesc="A set of open-source libraries designed to be used as building blocks 
for quickly assembling 3d simulations, games, and visualization applications."
-arch=(i686 x86_64)
-depends=('glu' 'glut' 'freealut' 'plib' 'openscenegraph')
-makedepends=('boost' 'cmake' 'mesa')
-license=("GPL")
-#url="http://www.simgear.org;
-url="https://gitorious.org/fg;
-options=('!makeflags' 'staticlibs')
-#source=("SimGear-$pkgver.tar.gz::https://gitorious.org/fg/simgear/archive-tarball/release/$pkgver;)
-source=("http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/simgear-$pkgver.tar.bz2;)
-md5sums=('4db6c80a7f5e23f53361e3ef6d36835e')
-
-build() {
-  cd $srcdir/simgear-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
-  make
-}
-
-package() {
-  cd $srcdir/simgear-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: simgear/repos/community-x86_64/PKGBUILD (from rev 160437, 
simgear/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-05 22:04:42 UTC (rev 160438)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# 

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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 23:04:21
  Author: spupykin
Revision: 160436

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

Added:
  openscenegraph/repos/community-i686/PKGBUILD
(from rev 160435, openscenegraph/trunk/PKGBUILD)
  openscenegraph/repos/community-x86_64/PKGBUILD
(from rev 160435, openscenegraph/trunk/PKGBUILD)
Deleted:
  openscenegraph/repos/community-i686/PKGBUILD
  openscenegraph/repos/community-i686/giflib.patch
  openscenegraph/repos/community-x86_64/PKGBUILD
  openscenegraph/repos/community-x86_64/giflib.patch

---+
 /PKGBUILD |   74 
 community-i686/PKGBUILD   |   62 -
 community-i686/giflib.patch   |   12 --
 community-x86_64/PKGBUILD |   62 -
 community-x86_64/giflib.patch |   12 --
 5 files changed, 74 insertions(+), 148 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-05 22:04:07 UTC (rev 160435)
+++ community-i686/PKGBUILD 2016-02-05 22:04:21 UTC (rev 160436)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Hans Janssen 
-# Contributor: my64 
-# Contributor: Colin Pitrat 
-
-pkgname=openscenegraph
-pkgver=3.2.3
-pkgrel=1
-pkgdesc="An Open Source, high performance real-time graphics toolkit"
-arch=('i686' 'x86_64')
-license=('custom:OSGPL')
-url="http://www.openscenegraph.org;
-depends=('giflib' 'jasper' 'librsvg' 'xine-lib' 'curl' 'pth')
-makedepends=('cmake' 'libvncserver' 'qt5-base' 'ffmpeg-compat' 'mesa')
-optdepends=('libvncserver' 'gdal' 'openexr' 'poppler-glib' 'qt5-base' 
'ffmpeg-compat')
-conflicts=('openthreads')
-provides=('openthreads')
-#source=(http://www.openscenegraph.org/downloads/stable_releases/OpenSceneGraph-$pkgver/source/OpenSceneGraph-$pkgver.zip
-source=(http://trac.openscenegraph.org/downloads/developer_releases/OpenSceneGraph-$pkgver.zip
-   
https://github.com/openscenegraph/osg/commit/49d560f4d9d0641c98df67264b7ace4733c6b9a9.patch
-   giflib.patch)
-md5sums=('02ffdad7744c747d8fad0d7babb58427'
- '6e3c75677f87113f18912916352c6cbd'
- '8c06c8410e8840e83c242b8b401cdad7')
-
-prepare() {
-  cd OpenSceneGraph-$pkgver
-#  patch -p1 <$srcdir/giflib.patch
-#  patch -p1 <$srcdir/49d560f4d9d0641c98df67264b7ace4733c6b9a9.patch
-}
-
-build() {
-  cd OpenSceneGraph-$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"
-  [ $NOEXTRACT -eq 1 ] || cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DFFMPEG_LIBAVCODEC_INCLUDE_DIRS=/usr/include/ffmpeg-compat \
--DFFMPEG_LIBAVCODEC_LIBRARIES=/usr/lib/ffmpeg-compat/libavcodec.so \
--DFFMPEG_LIBAVDEVICE_INCLUDE_DIRS=/usr/include/ffmpeg-compat \
--DFFMPEG_LIBAVDEVICE_LIBRARIES=/usr/lib/ffmpeg-compat/libavdevice.so \
--DFFMPEG_LIBAVFORMAT_INCLUDE_DIRS=/usr/include/ffmpeg-compat \
--DFFMPEG_LIBAVFORMAT_LIBRARIES=/usr/lib/ffmpeg-compat/libavformat.so \
--DFFMPEG_LIBAVUTIL_INCLUDE_DIRS=/usr/include/ffmpeg-compat \
--DFFMPEG_LIBAVUTIL_LIBRARIES=/usr/lib/ffmpeg-compat/libavutil.so \
--DFFMPEG_LIBSWSCALE_INCLUDE_DIRS=/usr/include/ffmpeg-compat \
--DFFMPEG_LIBSWSCALE_LIBRARIES=/usr/lib/ffmpeg-compat/libswscale.so
-
-#  sed -i 's|#include |//#include |' 
src/osgPlugins/curl/ReaderWriterCURL.cpp
-  make
-}
-
-package() {
-  cd OpenSceneGraph-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -D -m644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  [ -d "$pkgdir/usr/lib64" ] && mv "$pkgdir/usr/lib64" "$pkgdir/usr/lib" || 
true
-}

Copied: openscenegraph/repos/community-i686/PKGBUILD (from rev 160435, 
openscenegraph/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-05 22:04:21 UTC (rev 160436)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Hans Janssen 
+# Contributor: my64 
+# Contributor: Colin Pitrat 
+
+pkgname=openscenegraph
+pkgver=3.4.0
+pkgrel=1
+pkgdesc="An Open Source, high performance real-time graphics toolkit"
+arch=('i686' 'x86_64')
+license=('custom:OSGPL')
+url="http://www.openscenegraph.org;
+depends=('giflib' 'jasper' 'librsvg' 'xine-lib' 'curl' 'pth')
+makedepends=('cmake' 'libvncserver' 'qt5-base' 'ffmpeg' 'mesa')
+optdepends=('libvncserver' 'gdal' 'openexr' 'poppler-glib' 'qt5-base' 'ffmpeg')
+conflicts=('openthreads')
+provides=('openthreads')

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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 23:04:28
  Author: spupykin
Revision: 160437

upgpkg: simgear 3.5.0git-1

upd

Modified:
  simgear/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 22:04:21 UTC (rev 160436)
+++ PKGBUILD2016-02-05 22:04:28 UTC (rev 160437)
@@ -4,27 +4,26 @@
 # Contributor: Hans Janssen 
 
 pkgname=simgear
-pkgver=3.4.0
-pkgrel=3
+pkgver=3.5.0git
+pkgrel=1
 pkgdesc="A set of open-source libraries designed to be used as building blocks 
for quickly assembling 3d simulations, games, and visualization applications."
 arch=(i686 x86_64)
 depends=('glu' 'glut' 'freealut' 'plib' 'openscenegraph')
-makedepends=('boost' 'cmake' 'mesa')
+makedepends=('boost' 'cmake' 'mesa' 'git')
 license=("GPL")
-#url="http://www.simgear.org;
-url="https://gitorious.org/fg;
+url="https://github.com/FlightGear/simgear;
 options=('!makeflags' 'staticlibs')
-#source=("SimGear-$pkgver.tar.gz::https://gitorious.org/fg/simgear/archive-tarball/release/$pkgver;)
-source=("http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/simgear-$pkgver.tar.bz2;)
-md5sums=('4db6c80a7f5e23f53361e3ef6d36835e')
+#source=("$pkgname-$pkgver.tar.gz::https://github.com/FlightGear/simgear/archive/version/$pkgver.tar.gz;)
+source=("git://github.com/FlightGear/simgear.git#commit=b91d1a3f6a1ab144c8c63566853691860b0a9cd4")
+md5sums=('SKIP')
 
 build() {
-  cd $srcdir/simgear-$pkgver
+  cd $srcdir/simgear
   cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
   make
 }
 
 package() {
-  cd $srcdir/simgear-$pkgver
+  cd $srcdir/simgear
   make DESTDIR=$pkgdir install
 }


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

2016-02-05 Thread Sébastien Luttringer
Date: Friday, February 5, 2016 @ 21:15:03
  Author: seblu
Revision: 160428

archrelease: copy trunk to community-x86_64

Added:
  docker/repos/community-x86_64/PKGBUILD
(from rev 160427, docker/trunk/PKGBUILD)
  docker/repos/community-x86_64/docker.install
(from rev 160427, docker/trunk/docker.install)
  docker/repos/community-x86_64/docker.sysusers
(from rev 160427, docker/trunk/docker.sysusers)
Deleted:
  docker/repos/community-x86_64/01-golang15.patch
  docker/repos/community-x86_64/02-fix-unified-cgroup.patch
  docker/repos/community-x86_64/PKGBUILD
  docker/repos/community-x86_64/docker.install
  docker/repos/community-x86_64/docker.sysusers

-+
 01-golang15.patch   |   87 
 02-fix-unified-cgroup.patch |   13 
 PKGBUILD|  130 --
 docker.install  |   26 
 docker.sysusers |2 
 5 files changed, 78 insertions(+), 180 deletions(-)

Deleted: 01-golang15.patch
===
--- 01-golang15.patch   2016-02-05 20:14:53 UTC (rev 160427)
+++ 01-golang15.patch   2016-02-05 20:15:03 UTC (rev 160428)
@@ -1,87 +0,0 @@
-From 0a426878b52e9eaa243df117ece0608804c28d29 Mon Sep 17 00:00:00 2001
-From: Vincent Batts 
-Date: Fri, 7 Aug 2015 10:18:20 -0400
-Subject: [PATCH] devicemapper: fix zero-sized field access
-
-Fixes: #15279
-
-Due to
-https://github.com/golang/go/commit/7904946eeb35faece61bbf6f5b3cc8be2f519c17
-the devices field is dropped.
-
-This solution works on go1.4 and go1.5
-
-Signed-off-by: Vincent Batts 
-
-Vincent Batts 

- daemon/graphdriver/devmapper/deviceset.go | 14 +-
- pkg/devicemapper/devmapper_wrapper.go | 18 +++---
- 2 files changed, 24 insertions(+), 8 deletions(-)
-
-diff --git a/daemon/graphdriver/devmapper/deviceset.go 
b/daemon/graphdriver/devmapper/deviceset.go
-index 3c90fed..e3106fc 100644
 a/daemon/graphdriver/devmapper/deviceset.go
-+++ b/daemon/graphdriver/devmapper/deviceset.go
-@@ -1485,12 +1485,16 @@ func (devices *DeviceSet) deactivatePool() error {
-   if err != nil {
-   return err
-   }
--  if d, err := devicemapper.GetDeps(devname); err == nil {
--  // Access to more Debug output
--  logrus.Debugf("[devmapper] devicemapper.GetDeps() %s: %#v", 
devname, d)
-+
-+  if devinfo.Exists == 0 {
-+  return nil
-   }
--  if devinfo.Exists != 0 {
--  return devicemapper.RemoveDevice(devname)
-+  if err := devicemapper.RemoveDevice(devname); err != nil {
-+  return err
-+  }
-+
-+  if d, err := devicemapper.GetDeps(devname); err == nil {
-+  logrus.Warnf("[devmapper] device %s still has %d active 
dependents", devname, d.Count)
-   }
- 
-   return nil
-diff --git a/pkg/devicemapper/devmapper_wrapper.go 
b/pkg/devicemapper/devmapper_wrapper.go
-index 87c2003..44ca772 100644
 a/pkg/devicemapper/devmapper_wrapper.go
-+++ b/pkg/devicemapper/devmapper_wrapper.go
-@@ -38,7 +38,10 @@ static void log_with_errno_init()
- */
- import "C"
- 
--import "unsafe"
-+import (
-+  "reflect"
-+  "unsafe"
-+)
- 
- type (
-   CDmTask C.struct_dm_task
-@@ -184,12 +187,21 @@ func dmTaskGetDepsFct(task *CDmTask) *Deps {
-   if Cdeps == nil {
-   return nil
-   }
-+
-+  // golang issue: https://github.com/golang/go/issues/11925
-+  hdr := reflect.SliceHeader{
-+  Data: uintptr(unsafe.Pointer(uintptr(unsafe.Pointer(Cdeps)) + 
unsafe.Sizeof(*Cdeps))),
-+  Len:  int(Cdeps.count),
-+  Cap:  int(Cdeps.count),
-+  }
-+  devices := *(*[]C.uint64_t)(unsafe.Pointer())
-+
-   deps := {
-   Count:  uint32(Cdeps.count),
-   Filler: uint32(Cdeps.filler),
-   }
--  for _, device := range Cdeps.device {
--  deps.Device = append(deps.Device, (uint64)(device))
-+  for _, device := range devices {
-+  deps.Device = append(deps.Device, uint64(device))
-   }
-   return deps
- }

Deleted: 02-fix-unified-cgroup.patch
===
--- 02-fix-unified-cgroup.patch 2016-02-05 20:14:53 UTC (rev 160427)
+++ 02-fix-unified-cgroup.patch 2016-02-05 20:15:03 UTC (rev 160428)
@@ -1,13 +0,0 @@
-diff --git a/contrib/init/systemd/docker.service 
b/contrib/init/systemd/docker.service
-index f09c2d3..ab5bc8f 100644
 a/contrib/init/systemd/docker.service
-+++ b/contrib/init/systemd/docker.service
-@@ -6,7 +6,7 @@ Requires=docker.socket
- 
- [Service]
- Type=notify
--ExecStart=/usr/bin/docker daemon -H fd://
-+ExecStart=/usr/bin/docker daemon -H fd:// --exec-opt 
native.cgroupdriver=cgroupfs
- MountFlags=slave
- LimitNOFILE=1048576
- LimitNPROC=1048576

Deleted: PKGBUILD

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

2016-02-05 Thread Sébastien Luttringer
Date: Friday, February 5, 2016 @ 21:14:53
  Author: seblu
Revision: 160427

upgpkg: docker 1:1.10.0-3

Modified:
  docker/trunk/PKGBUILD
Deleted:
  docker/trunk/01-golang15.patch
  docker/trunk/02-fix-unified-cgroup.patch

-+
 01-golang15.patch   |   87 --
 02-fix-unified-cgroup.patch |   13 --
 PKGBUILD|8 +--
 3 files changed, 3 insertions(+), 105 deletions(-)

Deleted: 01-golang15.patch
===
--- 01-golang15.patch   2016-02-05 19:51:21 UTC (rev 160426)
+++ 01-golang15.patch   2016-02-05 20:14:53 UTC (rev 160427)
@@ -1,87 +0,0 @@
-From 0a426878b52e9eaa243df117ece0608804c28d29 Mon Sep 17 00:00:00 2001
-From: Vincent Batts 
-Date: Fri, 7 Aug 2015 10:18:20 -0400
-Subject: [PATCH] devicemapper: fix zero-sized field access
-
-Fixes: #15279
-
-Due to
-https://github.com/golang/go/commit/7904946eeb35faece61bbf6f5b3cc8be2f519c17
-the devices field is dropped.
-
-This solution works on go1.4 and go1.5
-
-Signed-off-by: Vincent Batts 
-
-Vincent Batts 

- daemon/graphdriver/devmapper/deviceset.go | 14 +-
- pkg/devicemapper/devmapper_wrapper.go | 18 +++---
- 2 files changed, 24 insertions(+), 8 deletions(-)
-
-diff --git a/daemon/graphdriver/devmapper/deviceset.go 
b/daemon/graphdriver/devmapper/deviceset.go
-index 3c90fed..e3106fc 100644
 a/daemon/graphdriver/devmapper/deviceset.go
-+++ b/daemon/graphdriver/devmapper/deviceset.go
-@@ -1485,12 +1485,16 @@ func (devices *DeviceSet) deactivatePool() error {
-   if err != nil {
-   return err
-   }
--  if d, err := devicemapper.GetDeps(devname); err == nil {
--  // Access to more Debug output
--  logrus.Debugf("[devmapper] devicemapper.GetDeps() %s: %#v", 
devname, d)
-+
-+  if devinfo.Exists == 0 {
-+  return nil
-   }
--  if devinfo.Exists != 0 {
--  return devicemapper.RemoveDevice(devname)
-+  if err := devicemapper.RemoveDevice(devname); err != nil {
-+  return err
-+  }
-+
-+  if d, err := devicemapper.GetDeps(devname); err == nil {
-+  logrus.Warnf("[devmapper] device %s still has %d active 
dependents", devname, d.Count)
-   }
- 
-   return nil
-diff --git a/pkg/devicemapper/devmapper_wrapper.go 
b/pkg/devicemapper/devmapper_wrapper.go
-index 87c2003..44ca772 100644
 a/pkg/devicemapper/devmapper_wrapper.go
-+++ b/pkg/devicemapper/devmapper_wrapper.go
-@@ -38,7 +38,10 @@ static void log_with_errno_init()
- */
- import "C"
- 
--import "unsafe"
-+import (
-+  "reflect"
-+  "unsafe"
-+)
- 
- type (
-   CDmTask C.struct_dm_task
-@@ -184,12 +187,21 @@ func dmTaskGetDepsFct(task *CDmTask) *Deps {
-   if Cdeps == nil {
-   return nil
-   }
-+
-+  // golang issue: https://github.com/golang/go/issues/11925
-+  hdr := reflect.SliceHeader{
-+  Data: uintptr(unsafe.Pointer(uintptr(unsafe.Pointer(Cdeps)) + 
unsafe.Sizeof(*Cdeps))),
-+  Len:  int(Cdeps.count),
-+  Cap:  int(Cdeps.count),
-+  }
-+  devices := *(*[]C.uint64_t)(unsafe.Pointer())
-+
-   deps := {
-   Count:  uint32(Cdeps.count),
-   Filler: uint32(Cdeps.filler),
-   }
--  for _, device := range Cdeps.device {
--  deps.Device = append(deps.Device, (uint64)(device))
-+  for _, device := range devices {
-+  deps.Device = append(deps.Device, uint64(device))
-   }
-   return deps
- }

Deleted: 02-fix-unified-cgroup.patch
===
--- 02-fix-unified-cgroup.patch 2016-02-05 19:51:21 UTC (rev 160426)
+++ 02-fix-unified-cgroup.patch 2016-02-05 20:14:53 UTC (rev 160427)
@@ -1,13 +0,0 @@
-diff --git a/contrib/init/systemd/docker.service 
b/contrib/init/systemd/docker.service
-index f09c2d3..ab5bc8f 100644
 a/contrib/init/systemd/docker.service
-+++ b/contrib/init/systemd/docker.service
-@@ -6,7 +6,7 @@ Requires=docker.socket
- 
- [Service]
- Type=notify
--ExecStart=/usr/bin/docker daemon -H fd://
-+ExecStart=/usr/bin/docker daemon -H fd:// --exec-opt 
native.cgroupdriver=cgroupfs
- MountFlags=slave
- LimitNOFILE=1048576
- LimitNPROC=1048576

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 19:51:21 UTC (rev 160426)
+++ PKGBUILD2016-02-05 20:14:53 UTC (rev 160427)
@@ -3,7 +3,7 @@
 
 pkgname=docker
 pkgver=1.10.0
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc='Pack, ship and run any application as a lightweight container'
 arch=('x86_64')
@@ -17,11 +17,9 @@
 options=('!strip')
 install=$pkgname.install
 source=("git+https://github.com/docker/docker.git#tag=v$pkgver;
-"$pkgname.sysusers"
-'02-fix-unified-cgroup.patch')
+"$pkgname.sysusers")
 

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

2016-02-05 Thread Sébastien Luttringer
Date: Friday, February 5, 2016 @ 20:51:21
  Author: seblu
Revision: 160426

upgpkg: docker 1:1.10.0-2

Modified:
  docker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 19:51:01 UTC (rev 160425)
+++ PKGBUILD2016-02-05 19:51:21 UTC (rev 160426)
@@ -3,7 +3,7 @@
 
 pkgname=docker
 pkgver=1.10.0
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc='Pack, ship and run any application as a lightweight container'
 arch=('x86_64')


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

2016-02-05 Thread Sébastien Luttringer
Date: Friday, February 5, 2016 @ 20:51:01
  Author: seblu
Revision: 160425

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

Added:
  go-md2man/repos/community-i686/PKGBUILD
(from rev 160424, go-md2man/trunk/PKGBUILD)
  go-md2man/repos/community-x86_64/PKGBUILD
(from rev 160424, go-md2man/trunk/PKGBUILD)
Deleted:
  go-md2man/repos/community-i686/PKGBUILD
  go-md2man/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   62 
 community-i686/PKGBUILD   |   30 -
 community-x86_64/PKGBUILD |   30 -
 3 files changed, 62 insertions(+), 60 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-05 19:50:45 UTC (rev 160424)
+++ community-i686/PKGBUILD 2016-02-05 19:51:01 UTC (rev 160425)
@@ -1,30 +0,0 @@
-# $Id$
-# Contributor: Sébastien "Seblu" Luttringer 
-
-pkgname=go-md2man
-pkgver=1.0.2
-pkgrel=1
-pkgdesc='A markdown to manpage generator'
-arch=('x86_64' 'i686')
-url='https://github.com/cpuguy83/go-md2man'
-license=('MIT')
-makedepends=('git' 'go')
-source=("$pkgname.tar.gz::https://github.com/cpuguy83/go-md2man/archive/v$pkgver.tar.gz;)
-sha256sums=('bbb936fbaba460200d0fe97181ba5a64c511d8aa9a647f76587f283a8cc6398f')
-
-build() {
-  export GOPATH=$(readlink -f .)
-  local repo=src/github.com/cpuguy83
-  mkdir -p "$repo"
-  ln -sf "../../../go-md2man-$pkgver" "$repo/go-md2man"
-  cd "$repo/go-md2man"
-  go get -v ./...
-  "$srcdir/bin/go-md2man" -in=go-md2man.1.md -out=go-md2man.1
-}
-
-package() {
-  install -Dm755 "$srcdir/bin/go-md2man" "$pkgdir/usr/bin/go-md2man"
-  install -Dm755 "$srcdir/go-md2man-$pkgver/go-md2man.1" 
"$pkgdir/usr/share/man/man1/go-md2man.1"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: go-md2man/repos/community-i686/PKGBUILD (from rev 160424, 
go-md2man/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-05 19:51:01 UTC (rev 160425)
@@ -0,0 +1,31 @@
+# $Id$
+# Contributor: Sébastien "Seblu" Luttringer 
+
+pkgname=go-md2man
+pkgver=1.0.5
+pkgrel=1
+pkgdesc='A markdown to manpage generator'
+arch=('x86_64' 'i686')
+url='https://github.com/cpuguy83/go-md2man'
+license=('MIT')
+makedepends=('git' 'go')
+source=(git+https://github.com/cpuguy83/go-md2man.git)
+md5sums=('SKIP')
+
+build() {
+  export GOPATH=$(readlink -f .)
+  local repo=src/github.com/cpuguy83
+  mkdir -p "$repo"
+  ln -sf "../../../go-md2man" "$repo/go-md2man"
+  cd "$repo/go-md2man"
+  go get -v ./...
+  "$srcdir/bin/go-md2man" -in=go-md2man.1.md -out=go-md2man.1
+}
+
+package() {
+  install -Dm755 "$srcdir/bin/go-md2man" "$pkgdir/usr/bin/go-md2man"
+  install -Dm755 "$srcdir/go-md2man/go-md2man.1" 
"$pkgdir/usr/share/man/man1/go-md2man.1"
+  install -Dm755 "$srcdir/go-md2man/LICENSE.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-05 19:50:45 UTC (rev 160424)
+++ community-x86_64/PKGBUILD   2016-02-05 19:51:01 UTC (rev 160425)
@@ -1,30 +0,0 @@
-# $Id$
-# Contributor: Sébastien "Seblu" Luttringer 
-
-pkgname=go-md2man
-pkgver=1.0.2
-pkgrel=1
-pkgdesc='A markdown to manpage generator'
-arch=('x86_64' 'i686')
-url='https://github.com/cpuguy83/go-md2man'
-license=('MIT')
-makedepends=('git' 'go')
-source=("$pkgname.tar.gz::https://github.com/cpuguy83/go-md2man/archive/v$pkgver.tar.gz;)
-sha256sums=('bbb936fbaba460200d0fe97181ba5a64c511d8aa9a647f76587f283a8cc6398f')
-
-build() {
-  export GOPATH=$(readlink -f .)
-  local repo=src/github.com/cpuguy83
-  mkdir -p "$repo"
-  ln -sf "../../../go-md2man-$pkgver" "$repo/go-md2man"
-  cd "$repo/go-md2man"
-  go get -v ./...
-  "$srcdir/bin/go-md2man" -in=go-md2man.1.md -out=go-md2man.1
-}
-
-package() {
-  install -Dm755 "$srcdir/bin/go-md2man" "$pkgdir/usr/bin/go-md2man"
-  install -Dm755 "$srcdir/go-md2man-$pkgver/go-md2man.1" 
"$pkgdir/usr/share/man/man1/go-md2man.1"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: go-md2man/repos/community-x86_64/PKGBUILD (from rev 160424, 
go-md2man/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-05 19:51:01 UTC (rev 160425)
@@ -0,0 +1,31 @@
+# $Id$
+# Contributor: Sébastien "Seblu" Luttringer 
+
+pkgname=go-md2man
+pkgver=1.0.5
+pkgrel=1
+pkgdesc='A markdown to manpage generator'
+arch=('x86_64' 'i686')
+url='https://github.com/cpuguy83/go-md2man'
+license=('MIT')
+makedepends=('git' 'go')
+source=(git+https://github.com/cpuguy83/go-md2man.git)
+md5sums=('SKIP')
+
+build() {
+  export 

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

2016-02-05 Thread Sébastien Luttringer
Date: Friday, February 5, 2016 @ 20:50:45
  Author: seblu
Revision: 160424

upgpkg: go-md2man 1.0.5-1

Modified:
  go-md2man/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 18:42:44 UTC (rev 160423)
+++ PKGBUILD2016-02-05 19:50:45 UTC (rev 160424)
@@ -2,7 +2,7 @@
 # Contributor: Sébastien "Seblu" Luttringer 
 
 pkgname=go-md2man
-pkgver=1.0.2
+pkgver=1.0.5
 pkgrel=1
 pkgdesc='A markdown to manpage generator'
 arch=('x86_64' 'i686')
@@ -9,14 +9,14 @@
 url='https://github.com/cpuguy83/go-md2man'
 license=('MIT')
 makedepends=('git' 'go')
-source=("$pkgname.tar.gz::https://github.com/cpuguy83/go-md2man/archive/v$pkgver.tar.gz;)
-sha256sums=('bbb936fbaba460200d0fe97181ba5a64c511d8aa9a647f76587f283a8cc6398f')
+source=(git+https://github.com/cpuguy83/go-md2man.git)
+md5sums=('SKIP')
 
 build() {
   export GOPATH=$(readlink -f .)
   local repo=src/github.com/cpuguy83
   mkdir -p "$repo"
-  ln -sf "../../../go-md2man-$pkgver" "$repo/go-md2man"
+  ln -sf "../../../go-md2man" "$repo/go-md2man"
   cd "$repo/go-md2man"
   go get -v ./...
   "$srcdir/bin/go-md2man" -in=go-md2man.1.md -out=go-md2man.1
@@ -24,7 +24,8 @@
 
 package() {
   install -Dm755 "$srcdir/bin/go-md2man" "$pkgdir/usr/bin/go-md2man"
-  install -Dm755 "$srcdir/go-md2man-$pkgver/go-md2man.1" 
"$pkgdir/usr/share/man/man1/go-md2man.1"
+  install -Dm755 "$srcdir/go-md2man/go-md2man.1" 
"$pkgdir/usr/share/man/man1/go-md2man.1"
+  install -Dm755 "$srcdir/go-md2man/LICENSE.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
 
 # vim:set ts=2 sw=2 et:


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

2016-02-05 Thread Sébastien Luttringer
Date: Friday, February 5, 2016 @ 21:26:08
  Author: seblu
Revision: 160429

upgpkg: salt 2015.8.5-1

Modified:
  salt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 20:15:03 UTC (rev 160428)
+++ PKGBUILD2016-02-05 20:26:08 UTC (rev 160429)
@@ -5,7 +5,7 @@
 
 pkgbase=salt
 pkgname=(salt-zmq salt-raet)
-pkgver=2015.8.3
+pkgver=2015.8.5
 pkgrel=1
 pkgdesc='Central system and configuration manager'
 arch=('any')
@@ -32,7 +32,7 @@
 install=salt.install
 conflicts=('salt')
 source=("http://pypi.python.org/packages/source/s/salt/salt-$pkgver.tar.gz;)
-md5sums=('5919fcb6be4deeafab9746febd7da1ef')
+md5sums=('80c18012849b6c784c6edc962cd977f0')
 
 package_salt-zmq() {
   cd $pkgbase-$pkgver


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

2016-02-05 Thread Bartłomiej Piotrowski
Date: Friday, February 5, 2016 @ 10:41:36
  Author: bpiotrowski
Revision: 258897

upgpkg: texlive-bin 2015.37497-10

Move libsynctex to split package to slim down Zathura dependencies.

Modified:
  texlive-bin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 08:25:08 UTC (rev 258896)
+++ PKGBUILD2016-02-05 09:41:36 UTC (rev 258897)
@@ -2,23 +2,17 @@
 # Maintainer: Rémy Oudompheng 
 # Contributor: francois 
 
-pkgname=texlive-bin
+pkgname=('texlive-bin' 'libsynctex')
 pkgver=2015.37497
-pkgrel=9
+pkgrel=10
 _biber_ver=2.2 # for biblatex 3.0 only.
-pkgdesc="TeX Live binaries"
 license=('GPL')
 arch=('i686' 'x86_64')
-depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+makedepends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
  'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
- 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper')
-makedepends=('perl' 'clisp' 'ffcall')
-optdepends=('ed: for texconfig')
-provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
-conflicts=('pdfjam')
-options=('!strip')
+ 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper'
+ 'perl' 'clisp' 'ffcall')
 url='http://tug.org/texlive/'
-install="texlive.install"
 source=('fix-fontforge-encoding.patch'
 
"http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
 
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
@@ -111,7 +105,29 @@
make
 }
 
-package() {
+package_libsynctex() {
+   pkgdesc='Library for synchronization between TeX files and resulting file'
+   depends=('glibc' 'zlib')
+
+   install -d "$pkgdir"/usr/lib
+
+   for lib in "$srcdir"/source/Work/texk/web2c/.libs/libsynctex.so*; do
+  cp -P $lib "$pkgdir"/usr/lib/
+   done
+}
+
+package_texlive-bin() {
+   pkgdesc="TeX Live binaries"
+   depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper'
+'libsynctex')
+   provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+   conflicts=('pdfjam')
+   optdepends=('ed: for texconfig')
+   install="texlive.install"
+   options=('!strip')
+
cd "$srcdir"
 
#
@@ -333,5 +349,8 @@
! readlink -e "$pkgdir"/usr/bin/$s && rm "$pkgdir"/usr/bin/$s
done
###
+
+   # remove libsynctex
+   rm -f "$pkgdir"/usr/lib/libsynctex.*
 }
 


[arch-commits] Commit in texlive-bin/repos/extra-x86_64 (6 files)

2016-02-05 Thread Bartłomiej Piotrowski
Date: Friday, February 5, 2016 @ 10:41:48
  Author: bpiotrowski
Revision: 258898

archrelease: copy trunk to extra-x86_64

Added:
  texlive-bin/repos/extra-x86_64/PKGBUILD
(from rev 258897, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/extra-x86_64/fix-fontforge-encoding.patch
(from rev 258897, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/extra-x86_64/texlive.install
(from rev 258897, texlive-bin/trunk/texlive.install)
Deleted:
  texlive-bin/repos/extra-x86_64/PKGBUILD
  texlive-bin/repos/extra-x86_64/fix-fontforge-encoding.patch
  texlive-bin/repos/extra-x86_64/texlive.install

--+
 PKGBUILD |  693 +
 fix-fontforge-encoding.patch |   24 -
 texlive.install  |   98 ++---
 3 files changed, 417 insertions(+), 398 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-05 09:41:36 UTC (rev 258897)
+++ PKGBUILD2016-02-05 09:41:48 UTC (rev 258898)
@@ -1,337 +0,0 @@
-# $Id$
-# Maintainer: Rémy Oudompheng 
-# Contributor: francois 
-
-pkgname=texlive-bin
-pkgver=2015.37497
-pkgrel=9
-_biber_ver=2.2 # for biblatex 3.0 only.
-pkgdesc="TeX Live binaries"
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
- 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
- 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper')
-makedepends=('perl' 'clisp' 'ffcall')
-optdepends=('ed: for texconfig')
-provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
-conflicts=('pdfjam')
-options=('!strip')
-url='http://tug.org/texlive/'
-install="texlive.install"
-source=('fix-fontforge-encoding.patch'
-
"http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
-
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
-
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
-)
-noextract=(biber-linux_x86_64.tar.gz
-   biber-linux_x86_32.tar.gz)
-md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
- '20be644511704910151560a4d99f6995'
- '85e762642861eb6a75798cebe5d839f3'
- '27931a5e7b3dae0ea4d3794c97c31bf3')
-
-prepare() {
-cd source
-true
-}
-
-build() {
-   cd "$srcdir"
-
-   if [ "${CARCH}" = "x86_64" ]; then
- export CFLAGS="${CFLAGS} -fPIC"
- export CXXFLAGS="${CXXFLAGS} -fPIC"
- tar xf biber-linux_x86_64.tar.gz 
-   else
- tar xf biber-linux_x86_32.tar.gz
-   fi
-
-   # this patch removes spurious error message with locale "xx_YY.utf8"
-   #patch -Np0 -i fix-fontforge-encoding.patch
-   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
-   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
-   #
-   ### configure
-   cd source
-   ## prevent compiling Xdvi with libXp
-   sed -i~ 's|-lXp ||' texk/xdvik/configure
-   test ! -d Work && mkdir Work
-   cd Work
-   echo "--> Initial configuration..."
-   # we use temporary prefix to avoid messing the existing
-   # $pkgdir/usr/share/texmf tree
-   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
-   ../configure --prefix=/usr -C \
- --sysconfdir=/etc \
- --datarootdir=/usr/share \
- --datadir=/usr/share \
- --mandir=/usr/share/man \
- --disable-native-texlive-build \
- --with-banner-add="/Arch Linux" \
- --disable-multiplatform \
- --disable-dialog \
- --disable-psutils \
- --disable-t1utils \
- --disable-bibtexu \
- --disable-xz \
- --enable-shared \
- --disable-static \
- --with-system-zlib \
- --with-system-zziplib \
- --with-system-pnglib \
- --with-system-ncurses \
- --with-system-t1lib \
- --with-system-gd \
- --with-system-poppler \
- --with-system-xpdf \
- --with-system-freetype2 \
- --with-system-pixman \
- --with-system-cairo \
- --with-system-harfbuzz \
- --with-system-graphite \
- --with-system-icu \
- --with-system-gmp \
- --with-system-mpfr \
- --with-system-potrace \
- --with-system-libpaper \
- --with-freetype2-libdir=/usr/lib \
- --with-freetype2-include=/usr/include/freetype2 \
- --with-xdvi-x-toolkit=xaw \
- --disable-dump-share \
- --disable-aleph \
- --enable-luatex \
- --with-clisp-runtime=default \
- --enable-xindy --disable-xindy-rules --disable-xindy-docs
-   #
-   ### make
-   echo "---"
-   echo "--> Building the whole beast ..."
-   echo "---"
-   make
-}
-
-package() {
-   cd "$srcdir"
-
-   

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

2016-02-05 Thread Bartłomiej Piotrowski
Date: Friday, February 5, 2016 @ 10:55:54
  Author: bpiotrowski
Revision: 258899

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

Added:
  texlive-bin/repos/extra-i686/PKGBUILD
(from rev 258898, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/extra-i686/fix-fontforge-encoding.patch
(from rev 258898, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/extra-i686/texlive.install
(from rev 258898, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/extra-x86_64/PKGBUILD
(from rev 258898, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/extra-x86_64/fix-fontforge-encoding.patch
(from rev 258898, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/extra-x86_64/texlive.install
(from rev 258898, texlive-bin/trunk/texlive.install)
Deleted:
  texlive-bin/repos/extra-i686/PKGBUILD
  texlive-bin/repos/extra-i686/fix-fontforge-encoding.patch
  texlive-bin/repos/extra-i686/texlive.install
  texlive-bin/repos/extra-x86_64/PKGBUILD
  texlive-bin/repos/extra-x86_64/fix-fontforge-encoding.patch
  texlive-bin/repos/extra-x86_64/texlive.install

---+
 /PKGBUILD |  712 
 /fix-fontforge-encoding.patch |   24 
 /texlive.install  |   98 +++
 extra-i686/PKGBUILD   |  337 -
 extra-i686/fix-fontforge-encoding.patch   |   12 
 extra-i686/texlive.install|   49 -
 extra-x86_64/PKGBUILD |  356 --
 extra-x86_64/fix-fontforge-encoding.patch |   12 
 extra-x86_64/texlive.install  |   49 -
 9 files changed, 834 insertions(+), 815 deletions(-)

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


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

2016-02-05 Thread Bartłomiej Piotrowski
Date: Friday, February 5, 2016 @ 11:18:19
  Author: bpiotrowski
Revision: 160391

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

Added:
  zathura/repos/community-i686/PKGBUILD
(from rev 160390, zathura/trunk/PKGBUILD)
  zathura/repos/community-i686/bash-completion
(from rev 160390, zathura/trunk/bash-completion)
  zathura/repos/community-i686/zathura.install
(from rev 160390, zathura/trunk/zathura.install)
  zathura/repos/community-x86_64/PKGBUILD
(from rev 160390, zathura/trunk/PKGBUILD)
  zathura/repos/community-x86_64/bash-completion
(from rev 160390, zathura/trunk/bash-completion)
  zathura/repos/community-x86_64/zathura.install
(from rev 160390, zathura/trunk/zathura.install)
Deleted:
  zathura/repos/community-i686/PKGBUILD
  zathura/repos/community-i686/bash-completion
  zathura/repos/community-i686/zathura.install
  zathura/repos/community-x86_64/PKGBUILD
  zathura/repos/community-x86_64/bash-completion
  zathura/repos/community-x86_64/zathura.install

--+
 /PKGBUILD|   82 +
 /bash-completion |   58 ++
 /zathura.install |   24 ++
 community-i686/PKGBUILD  |   41 --
 community-i686/bash-completion   |   29 -
 community-i686/zathura.install   |   12 -
 community-x86_64/PKGBUILD|   41 --
 community-x86_64/bash-completion |   29 -
 community-x86_64/zathura.install |   12 -
 9 files changed, 164 insertions(+), 164 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-05 10:18:02 UTC (rev 160390)
+++ community-i686/PKGBUILD 2016-02-05 10:18:19 UTC (rev 160391)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Johannes Löthberg 
-# Contributor: Daniel Wallace 
-# Contributor: Sergej Pupykin 
-# Contributor: ML 
-
-pkgname=zathura
-pkgver=0.3.4
-pkgrel=3
-
-pkgdesc="Minimalistic document viewer"
-url="http://pwmt.org/projects/zathura/;
-arch=('i686' 'x86_64')
-license=('custom')
-
-depends=('girara>=0.2.4' 'sqlite' 'desktop-file-utils' 'file' 'texlive-bin')
-makedepends=('python2-docutils')
-optdepends=('zathura-djvu: DjVu support'
-'zathura-pdf-poppler: PDF support using Poppler'
-'zathura-pdf-mupdf: PDF support using MuPDF'
-'zathura-ps: PostScript support')
-
-install=zathura.install
-source=(http://pwmt.org/projects/zathura/download/zathura-$pkgver.tar.gz
-bash-completion)
-
-sha1sums=('d8142ffdd9df8f04619cc823da07afb1f7694270'
-  '94a8236c483626a7f3acee053a1ea885aed45a82')
-
-build() {
-  cd zathura-$pkgver
-  make WITH_SYNCTEX=1
-}
-
-package() {
-  cd zathura-$pkgver
-
-  make install DESTDIR="$pkgdir"
-  install -D -m664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm0644 "$srcdir"/bash-completion 
"$pkgdir"/usr/share/bash-completion/completions/zathura
-}

Copied: zathura/repos/community-i686/PKGBUILD (from rev 160390, 
zathura/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-05 10:18:19 UTC (rev 160391)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Daniel Wallace 
+# Contributor: Sergej Pupykin 
+# Contributor: ML 
+
+pkgname=zathura
+pkgver=0.3.4
+pkgrel=4
+
+pkgdesc="Minimalistic document viewer"
+url="http://pwmt.org/projects/zathura/;
+arch=('i686' 'x86_64')
+license=('custom')
+
+depends=('girara>=0.2.4' 'sqlite' 'desktop-file-utils' 'file' 'libsynctex')
+makedepends=('python2-docutils' 'texlive-bin')
+optdepends=('zathura-djvu: DjVu support'
+'zathura-pdf-poppler: PDF support using Poppler'
+'zathura-pdf-mupdf: PDF support using MuPDF'
+'zathura-ps: PostScript support')
+
+install=zathura.install
+source=(http://pwmt.org/projects/zathura/download/zathura-$pkgver.tar.gz
+bash-completion)
+
+sha1sums=('d8142ffdd9df8f04619cc823da07afb1f7694270'
+  '94a8236c483626a7f3acee053a1ea885aed45a82')
+
+build() {
+  cd zathura-$pkgver
+  make WITH_SYNCTEX=1
+}
+
+package() {
+  cd zathura-$pkgver
+
+  make install DESTDIR="$pkgdir"
+  install -D -m664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm0644 "$srcdir"/bash-completion 
"$pkgdir"/usr/share/bash-completion/completions/zathura
+}

Deleted: community-i686/bash-completion
===
--- community-i686/bash-completion  2016-02-05 10:18:02 UTC (rev 160390)
+++ community-i686/bash-completion  2016-02-05 10:18:19 UTC (rev 160391)
@@ -1,29 +0,0 @@
-_zathura() {
-  _init_completion || return
-
-  EXTENTIONS=''
-  for 

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

2016-02-05 Thread Bartłomiej Piotrowski
Date: Friday, February 5, 2016 @ 11:18:02
  Author: bpiotrowski
Revision: 160390

upgpkg: zathura 0.3.4-4

depend on libsynctex instead of entire texlive-bin

Modified:
  zathura/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 08:14:05 UTC (rev 160389)
+++ PKGBUILD2016-02-05 10:18:02 UTC (rev 160390)
@@ -6,7 +6,7 @@
 
 pkgname=zathura
 pkgver=0.3.4
-pkgrel=3
+pkgrel=4
 
 pkgdesc="Minimalistic document viewer"
 url="http://pwmt.org/projects/zathura/;
@@ -13,8 +13,8 @@
 arch=('i686' 'x86_64')
 license=('custom')
 
-depends=('girara>=0.2.4' 'sqlite' 'desktop-file-utils' 'file' 'texlive-bin')
-makedepends=('python2-docutils')
+depends=('girara>=0.2.4' 'sqlite' 'desktop-file-utils' 'file' 'libsynctex')
+makedepends=('python2-docutils' 'texlive-bin')
 optdepends=('zathura-djvu: DjVu support'
 'zathura-pdf-poppler: PDF support using Poppler'
 'zathura-pdf-mupdf: PDF support using MuPDF'


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

2016-02-05 Thread Sébastien Luttringer
Date: Friday, February 5, 2016 @ 11:56:29
  Author: seblu
Revision: 160393

archrelease: copy trunk to community-x86_64

Added:
  docker/repos/community-x86_64/01-golang15.patch
(from rev 160392, docker/trunk/01-golang15.patch)
  docker/repos/community-x86_64/02-fix-unified-cgroup.patch
(from rev 160392, docker/trunk/02-fix-unified-cgroup.patch)
  docker/repos/community-x86_64/PKGBUILD
(from rev 160392, docker/trunk/PKGBUILD)
  docker/repos/community-x86_64/docker.install
(from rev 160392, docker/trunk/docker.install)
  docker/repos/community-x86_64/docker.sysusers
(from rev 160392, docker/trunk/docker.sysusers)
Deleted:
  docker/repos/community-x86_64/01-golang15.patch
  docker/repos/community-x86_64/02-fix-unified-cgroup.patch
  docker/repos/community-x86_64/PKGBUILD
  docker/repos/community-x86_64/docker.install
  docker/repos/community-x86_64/docker.sysusers

-+
 01-golang15.patch   |  174 +-
 02-fix-unified-cgroup.patch |   26 +++---
 PKGBUILD|  132 +++
 docker.install  |   26 +++---
 docker.sysusers |2 
 5 files changed, 180 insertions(+), 180 deletions(-)

Deleted: 01-golang15.patch
===
--- 01-golang15.patch   2016-02-05 10:56:17 UTC (rev 160392)
+++ 01-golang15.patch   2016-02-05 10:56:29 UTC (rev 160393)
@@ -1,87 +0,0 @@
-From 0a426878b52e9eaa243df117ece0608804c28d29 Mon Sep 17 00:00:00 2001
-From: Vincent Batts 
-Date: Fri, 7 Aug 2015 10:18:20 -0400
-Subject: [PATCH] devicemapper: fix zero-sized field access
-
-Fixes: #15279
-
-Due to
-https://github.com/golang/go/commit/7904946eeb35faece61bbf6f5b3cc8be2f519c17
-the devices field is dropped.
-
-This solution works on go1.4 and go1.5
-
-Signed-off-by: Vincent Batts 
-
-Vincent Batts 

- daemon/graphdriver/devmapper/deviceset.go | 14 +-
- pkg/devicemapper/devmapper_wrapper.go | 18 +++---
- 2 files changed, 24 insertions(+), 8 deletions(-)
-
-diff --git a/daemon/graphdriver/devmapper/deviceset.go 
b/daemon/graphdriver/devmapper/deviceset.go
-index 3c90fed..e3106fc 100644
 a/daemon/graphdriver/devmapper/deviceset.go
-+++ b/daemon/graphdriver/devmapper/deviceset.go
-@@ -1485,12 +1485,16 @@ func (devices *DeviceSet) deactivatePool() error {
-   if err != nil {
-   return err
-   }
--  if d, err := devicemapper.GetDeps(devname); err == nil {
--  // Access to more Debug output
--  logrus.Debugf("[devmapper] devicemapper.GetDeps() %s: %#v", 
devname, d)
-+
-+  if devinfo.Exists == 0 {
-+  return nil
-   }
--  if devinfo.Exists != 0 {
--  return devicemapper.RemoveDevice(devname)
-+  if err := devicemapper.RemoveDevice(devname); err != nil {
-+  return err
-+  }
-+
-+  if d, err := devicemapper.GetDeps(devname); err == nil {
-+  logrus.Warnf("[devmapper] device %s still has %d active 
dependents", devname, d.Count)
-   }
- 
-   return nil
-diff --git a/pkg/devicemapper/devmapper_wrapper.go 
b/pkg/devicemapper/devmapper_wrapper.go
-index 87c2003..44ca772 100644
 a/pkg/devicemapper/devmapper_wrapper.go
-+++ b/pkg/devicemapper/devmapper_wrapper.go
-@@ -38,7 +38,10 @@ static void log_with_errno_init()
- */
- import "C"
- 
--import "unsafe"
-+import (
-+  "reflect"
-+  "unsafe"
-+)
- 
- type (
-   CDmTask C.struct_dm_task
-@@ -184,12 +187,21 @@ func dmTaskGetDepsFct(task *CDmTask) *Deps {
-   if Cdeps == nil {
-   return nil
-   }
-+
-+  // golang issue: https://github.com/golang/go/issues/11925
-+  hdr := reflect.SliceHeader{
-+  Data: uintptr(unsafe.Pointer(uintptr(unsafe.Pointer(Cdeps)) + 
unsafe.Sizeof(*Cdeps))),
-+  Len:  int(Cdeps.count),
-+  Cap:  int(Cdeps.count),
-+  }
-+  devices := *(*[]C.uint64_t)(unsafe.Pointer())
-+
-   deps := {
-   Count:  uint32(Cdeps.count),
-   Filler: uint32(Cdeps.filler),
-   }
--  for _, device := range Cdeps.device {
--  deps.Device = append(deps.Device, (uint64)(device))
-+  for _, device := range devices {
-+  deps.Device = append(deps.Device, uint64(device))
-   }
-   return deps
- }

Copied: docker/repos/community-x86_64/01-golang15.patch (from rev 160392, 
docker/trunk/01-golang15.patch)
===
--- 01-golang15.patch   (rev 0)
+++ 01-golang15.patch   2016-02-05 10:56:29 UTC (rev 160393)
@@ -0,0 +1,87 @@
+From 0a426878b52e9eaa243df117ece0608804c28d29 Mon Sep 17 00:00:00 2001
+From: Vincent Batts 
+Date: Fri, 7 Aug 2015 10:18:20 -0400
+Subject: [PATCH] devicemapper: fix zero-sized field access
+
+Fixes: 

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

2016-02-05 Thread Sébastien Luttringer
Date: Friday, February 5, 2016 @ 11:56:17
  Author: seblu
Revision: 160392

upgpkg: docker 1:1.10.0-1

Modified:
  docker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 10:18:19 UTC (rev 160391)
+++ PKGBUILD2016-02-05 10:56:17 UTC (rev 160392)
@@ -2,8 +2,8 @@
 # Maintainer: Sébastien "Seblu" Luttringer
 
 pkgname=docker
-pkgver=1.9.1
-pkgrel=2
+pkgver=1.10.0
+pkgrel=1
 epoch=1
 pkgdesc='Pack, ship and run any application as a lightweight container'
 arch=('x86_64')


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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 12:28:39
  Author: spupykin
Revision: 160402

upgpkg: opensips 2.1.2-2

upd

Modified:
  opensips/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 11:28:36 UTC (rev 160401)
+++ PKGBUILD2016-02-05 11:28:39 UTC (rev 160402)
@@ -3,7 +3,7 @@
 
 pkgname=opensips
 pkgver=2.1.2
-pkgrel=1
+pkgrel=2
 pkgdesc="An Open Source SIP Server able to act as a SIP proxy, registrar, 
location server, redirect server ..."
 url="http://www.opensips.org;
 depends=('gcc-libs' 'openssl' 'db' 'attr' 'libxml2')


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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 12:28:56
  Author: spupykin
Revision: 160403

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

Added:
  opensips/repos/community-i686/PKGBUILD
(from rev 160402, opensips/trunk/PKGBUILD)
  opensips/repos/community-i686/opensips.install
(from rev 160402, opensips/trunk/opensips.install)
  opensips/repos/community-i686/opensips.service
(from rev 160402, opensips/trunk/opensips.service)
  opensips/repos/community-x86_64/PKGBUILD
(from rev 160402, opensips/trunk/PKGBUILD)
  opensips/repos/community-x86_64/opensips.install
(from rev 160402, opensips/trunk/opensips.install)
  opensips/repos/community-x86_64/opensips.service
(from rev 160402, opensips/trunk/opensips.service)
Deleted:
  opensips/repos/community-i686/PKGBUILD
  opensips/repos/community-i686/opensips.install
  opensips/repos/community-i686/opensips.service
  opensips/repos/community-x86_64/PKGBUILD
  opensips/repos/community-x86_64/opensips.install
  opensips/repos/community-x86_64/opensips.service

---+
 /PKGBUILD |  160 
 /opensips.install |6 +
 /opensips.service |   22 
 community-i686/PKGBUILD   |   80 --
 community-i686/opensips.install   |3 
 community-i686/opensips.service   |   11 --
 community-x86_64/PKGBUILD |   80 --
 community-x86_64/opensips.install |3 
 community-x86_64/opensips.service |   11 --
 9 files changed, 188 insertions(+), 188 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-05 11:28:39 UTC (rev 160402)
+++ community-i686/PKGBUILD 2016-02-05 11:28:56 UTC (rev 160403)
@@ -1,80 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=opensips
-pkgver=2.1.2
-pkgrel=1
-pkgdesc="An Open Source SIP Server able to act as a SIP proxy, registrar, 
location server, redirect server ..."
-url="http://www.opensips.org;
-depends=('gcc-libs' 'openssl' 'db' 'attr' 'libxml2')
-makedepends=('postgresql-libs>=8.4.1' 'unixodbc' 'libldap>=2.4.18' 
'libmariadbclient'
-'lynx' 'libxslt' 'libmicrohttpd')
-optdepends=('postgresql-libs'
-   'unixodbc'
-   'libldap'
-   'libmariadbclient'
-   'libsasl'
-   'python2'
-   'pcre')
-backup=("etc/opensips/opensips.cfg"
-   "etc/opensips/dictionary.radius"
-   "etc/opensips/opensipsctlrc")
-arch=('i686' 'x86_64')
-license=('GPL')
-install=opensips.install
-options=('!emptydirs' 'zipman' '!makeflags' 'docs')
-source=(http://opensips.org/pub/opensips/${pkgver}/opensips-${pkgver}.tar.gz
-   opensips.service)
-md5sums=('f7590fde5d99fffe05659442073d750c'
- '35cdcb3692f6925236fd5fe7e9484c58')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver/
-
-  # python2 fix
-  for file in $(find . -name '*.py' -print); do
-sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
-sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
-  done
-
-  sed -i 's|sbin|bin|g' Makefile
-  sed -i 's|bin-dir = sbin/|bin-dir = bin/|' Makefile.defs
-}
-
-_modules="ldap db_mysql db_postgres db_unixodbc presence presence_xml h350 
proto_tls tlsops db_http httpd tm rr"
-
-build() {
-  cd $srcdir/$pkgname-$pkgver/
-
-  make \
-   include_modules="${_modules}" \
-   LIBDIR=lib PREFIX=/usr
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver/
-
-  make \
-   include_modules="${_modules}" \
-   BASEDIR=$pkgdir PREFIX=/usr LIBDIR=lib install
-
-  # Conforms to the arch packaging standards 
(http://wiki.archlinux.org/index.php/Arch_Packaging_Standards)
-  mkdir -p $pkgdir/etc/
-  mv $pkgdir/usr/etc/opensips/ $pkgdir/etc/
-  sed -i 
's#mpath=".*lib/opensips/modules/"#mpath="/usr/lib/opensips/modules/"#' 
$pkgdir/etc/opensips/opensips.cfg
-
-  # fix bad paths
-  cd $pkgdir/usr/share
-  find -type f -exec sed -i "s#$pkgdir##" {} \;
-
-  cd $pkgdir/usr/lib/opensips/opensipsctl
-  find -type f -exec sed -i "s#$pkgdir##" {} \;
-
-  cd $pkgdir/usr/bin
-  sed -i "s#$pkgdir##" opensipsctl opensipsdbctl osipsconsole
-
-  cd $pkgdir/etc
-  find -type f -exec sed -i "s#$pkgdir##" {} \;
-
-  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-}

Copied: opensips/repos/community-i686/PKGBUILD (from rev 160402, 
opensips/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-05 11:28:56 UTC (rev 160403)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=opensips
+pkgver=2.1.2
+pkgrel=2
+pkgdesc="An Open Source SIP Server able to act as a SIP proxy, registrar, 
location server, redirect server ..."
+url="http://www.opensips.org;
+depends=('gcc-libs' 

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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 12:28:36
  Author: spupykin
Revision: 160401

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

Added:
  libmicrohttpd/repos/community-i686/PKGBUILD
(from rev 160400, libmicrohttpd/trunk/PKGBUILD)
  libmicrohttpd/repos/community-i686/libmicrohttpd.install
(from rev 160400, libmicrohttpd/trunk/libmicrohttpd.install)
  libmicrohttpd/repos/community-x86_64/PKGBUILD
(from rev 160400, libmicrohttpd/trunk/PKGBUILD)
  libmicrohttpd/repos/community-x86_64/libmicrohttpd.install
(from rev 160400, libmicrohttpd/trunk/libmicrohttpd.install)
Deleted:
  libmicrohttpd/repos/community-i686/PKGBUILD
  libmicrohttpd/repos/community-i686/libmicrohttpd.install
  libmicrohttpd/repos/community-x86_64/PKGBUILD
  libmicrohttpd/repos/community-x86_64/libmicrohttpd.install

+
 /PKGBUILD  |   70 +++
 /libmicrohttpd.install |   40 +
 community-i686/PKGBUILD|   35 ---
 community-i686/libmicrohttpd.install   |   20 
 community-x86_64/PKGBUILD  |   35 ---
 community-x86_64/libmicrohttpd.install |   20 
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-05 11:28:21 UTC (rev 160400)
+++ community-i686/PKGBUILD 2016-02-05 11:28:36 UTC (rev 160401)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Norberto Lopes 
-# Contributor: Kao Dome 
-# Contributor: Dmitrij D. Czarkoff 
-# Contributor: Mathias Rohnstock 
-
-pkgname=libmicrohttpd
-pkgver=0.9.44
-pkgrel=1
-pkgdesc="a small C library that is supposed to make it easy to run an HTTP 
server as part of another application."
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/libmicrohttpd/;
-license=('LGPL')
-depends=('gnutls' 'libgcrypt')
-optdepends=('file' 'curl')
-install=libmicrohttpd.install
-source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
-md5sums=('9101b5ebf8f71792938ae672da314da2')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --disable-dependency-tracking --enable-largefile \
-   --enable-curl --enable-messages --with-pic
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/include/platform.h \
-   ${pkgdir}/usr/include/$pkgname/platform.h
-  sed -i 's#Cflags: -I${includedir}#Cflags: -I${includedir} 
-I${includedir}/libmicrohttpd#' \
-   $pkgdir/usr/lib/pkgconfig/libmicrohttpd.pc
-}

Copied: libmicrohttpd/repos/community-i686/PKGBUILD (from rev 160400, 
libmicrohttpd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-05 11:28:36 UTC (rev 160401)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Norberto Lopes 
+# Contributor: Kao Dome 
+# Contributor: Dmitrij D. Czarkoff 
+# Contributor: Mathias Rohnstock 
+
+pkgname=libmicrohttpd
+pkgver=0.9.48
+pkgrel=1
+pkgdesc="a small C library that is supposed to make it easy to run an HTTP 
server as part of another application."
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/libmicrohttpd/;
+license=('LGPL')
+depends=('gnutls' 'libgcrypt')
+optdepends=('file' 'curl')
+install=libmicrohttpd.install
+source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
+md5sums=('9c298c890088a91fe0d7ac3fec9d0097')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-dependency-tracking --enable-largefile \
+   --enable-curl --enable-messages --with-pic
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/include/platform.h \
+   ${pkgdir}/usr/include/$pkgname/platform.h
+  sed -i 's#Cflags: -I${includedir}#Cflags: -I${includedir} 
-I${includedir}/libmicrohttpd#' \
+   $pkgdir/usr/lib/pkgconfig/libmicrohttpd.pc
+}

Deleted: community-i686/libmicrohttpd.install
===
--- community-i686/libmicrohttpd.install2016-02-05 11:28:21 UTC (rev 
160400)
+++ community-i686/libmicrohttpd.install2016-02-05 11:28:36 UTC (rev 
160401)
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(libmicrohttpd.info libmicrohttpd-tutorial.info)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() 

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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 12:27:09
  Author: spupykin
Revision: 160396

upgpkg: gnunet 0.10.1-6

upd

Modified:
  gnunet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 11:27:05 UTC (rev 160395)
+++ PKGBUILD2016-02-05 11:27:09 UTC (rev 160396)
@@ -4,7 +4,7 @@
 
 pkgname=gnunet
 pkgver=0.10.1
-pkgrel=5
+pkgrel=6
 pkgdesc="A framework for secure peer-to-peer networking"
 arch=('i686' 'x86_64')
 url="http://gnunet.org;


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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 12:27:31
  Author: spupykin
Revision: 160398

upgpkg: kodi 15.2-5

upd

Modified:
  kodi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 11:27:26 UTC (rev 160397)
+++ PKGBUILD2016-02-05 11:27:31 UTC (rev 160398)
@@ -13,7 +13,7 @@
 pkgname=('kodi' 'kodi-eventclients')
 pkgver=15.2
 _codename=Isengard
-pkgrel=4
+pkgrel=5
 arch=('i686' 'x86_64')
 url="http://kodi.tv;
 license=('GPL2')


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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 12:27:26
  Author: spupykin
Revision: 160397

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

Added:
  gnunet/repos/community-i686/PKGBUILD
(from rev 160396, gnunet/trunk/PKGBUILD)
  gnunet/repos/community-i686/defaults.conf
(from rev 160396, gnunet/trunk/defaults.conf)
  gnunet/repos/community-i686/gnunet.service
(from rev 160396, gnunet/trunk/gnunet.service)
  gnunet/repos/community-x86_64/PKGBUILD
(from rev 160396, gnunet/trunk/PKGBUILD)
  gnunet/repos/community-x86_64/defaults.conf
(from rev 160396, gnunet/trunk/defaults.conf)
  gnunet/repos/community-x86_64/gnunet.service
(from rev 160396, gnunet/trunk/gnunet.service)
Deleted:
  gnunet/repos/community-i686/PKGBUILD
  gnunet/repos/community-i686/defaults.conf
  gnunet/repos/community-i686/gnunet.service
  gnunet/repos/community-x86_64/PKGBUILD
  gnunet/repos/community-x86_64/defaults.conf
  gnunet/repos/community-x86_64/gnunet.service

-+
 /PKGBUILD   |   94 +++
 /defaults.conf  |  966 ++
 /gnunet.service |   20 
 community-i686/PKGBUILD |   47 -
 community-i686/defaults.conf|  483 ---
 community-i686/gnunet.service   |   10 
 community-x86_64/PKGBUILD   |   47 -
 community-x86_64/defaults.conf  |  483 ---
 community-x86_64/gnunet.service |   10 
 9 files changed, 1080 insertions(+), 1080 deletions(-)

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


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

2016-02-05 Thread Jan Steffens
Date: Friday, February 5, 2016 @ 13:42:09
  Author: heftig
Revision: 258900

3.22

Modified:
  nss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 09:55:54 UTC (rev 258899)
+++ PKGBUILD2016-02-05 12:42:09 UTC (rev 258900)
@@ -3,7 +3,7 @@
 
 pkgbase=nss
 pkgname=(nss ca-certificates-mozilla)
-pkgver=3.21
+pkgver=3.22
 pkgrel=1
 pkgdesc="Mozilla Network Security Services"
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 options=('!strip' '!makeflags' 'staticlibs')
 
source=("https://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_${pkgver//./_}_RTM/src/${pkgbase}-${pkgver}.tar.gz;
 certdata2pem.py bundle.sh nss.pc.in nss-config.in legacy-certs.patch)
-sha256sums=('3f7a5b027d7cdd5c0e4ff7544da33fdc6f56c2f8c27fff02938fd4a6fbe87239'
+sha256sums=('30ebd121c77e725a1383618eff79a6752d6e9f0f21882ad825ddab12e7227611'
 '2a2ff9131c21fa3b23ad7c7a2f069eabc783e56c6eb05419ac5f365f48dea0fc'
 '045f520403f715a4cc7f3607b4e2c9bcc88fee5bce58d462fddaa2fdb0e4c180'
 'b9f1428ca2305bf30b109507ff335fa00bce5a7ce0434b50acd26ad7c47dd5bd'


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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 12:27:49
  Author: spupykin
Revision: 160399

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

Added:
  kodi/repos/community-i686/PKGBUILD
(from rev 160398, kodi/trunk/PKGBUILD)
  kodi/repos/community-i686/kodi.install
(from rev 160398, kodi/trunk/kodi.install)
  kodi/repos/community-i686/prevent-taglib-from-crashing-kodi.patch
(from rev 160398, kodi/trunk/prevent-taglib-from-crashing-kodi.patch)
  kodi/repos/community-x86_64/PKGBUILD
(from rev 160398, kodi/trunk/PKGBUILD)
  kodi/repos/community-x86_64/kodi.install
(from rev 160398, kodi/trunk/kodi.install)
  kodi/repos/community-x86_64/prevent-taglib-from-crashing-kodi.patch
(from rev 160398, kodi/trunk/prevent-taglib-from-crashing-kodi.patch)
Deleted:
  kodi/repos/community-i686/PKGBUILD
  kodi/repos/community-i686/kodi.install
  kodi/repos/community-i686/prevent-taglib-from-crashing-kodi.patch
  kodi/repos/community-x86_64/PKGBUILD
  kodi/repos/community-x86_64/kodi.install
  kodi/repos/community-x86_64/prevent-taglib-from-crashing-kodi.patch

--+
 /PKGBUILD|  266 +
 /kodi.install|   34 +
 /prevent-taglib-from-crashing-kodi.patch |  192 +
 community-i686/PKGBUILD  |  133 --
 community-i686/kodi.install  |   17 
 community-i686/prevent-taglib-from-crashing-kodi.patch   |   96 
 community-x86_64/PKGBUILD|  133 --
 community-x86_64/kodi.install|   17 
 community-x86_64/prevent-taglib-from-crashing-kodi.patch |   96 
 9 files changed, 492 insertions(+), 492 deletions(-)

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


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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 12:27:05
  Author: spupykin
Revision: 160395

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

Added:
  bfgminer/repos/community-i686/PKGBUILD
(from rev 160394, bfgminer/trunk/PKGBUILD)
  bfgminer/repos/community-i686/remove-dangerous-rpath.patch
(from rev 160394, bfgminer/trunk/remove-dangerous-rpath.patch)
  bfgminer/repos/community-x86_64/PKGBUILD
(from rev 160394, bfgminer/trunk/PKGBUILD)
  bfgminer/repos/community-x86_64/remove-dangerous-rpath.patch
(from rev 160394, bfgminer/trunk/remove-dangerous-rpath.patch)
Deleted:
  bfgminer/repos/community-i686/PKGBUILD
  bfgminer/repos/community-i686/remove-dangerous-rpath.patch
  bfgminer/repos/community-x86_64/PKGBUILD
  bfgminer/repos/community-x86_64/remove-dangerous-rpath.patch

---+
 /PKGBUILD |   90 
 /remove-dangerous-rpath.patch |   42 +++
 community-i686/PKGBUILD   |   45 
 community-i686/remove-dangerous-rpath.patch   |   21 -
 community-x86_64/PKGBUILD |   45 
 community-x86_64/remove-dangerous-rpath.patch |   21 -
 6 files changed, 132 insertions(+), 132 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-05 11:26:44 UTC (rev 160394)
+++ community-i686/PKGBUILD 2016-02-05 11:27:05 UTC (rev 160395)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Andy Weidenbaum 
-
-pkgname=bfgminer
-pkgver=5.4.1
-pkgrel=1
-pkgdesc="Bitcoin miner featuring overclocking, monitoring, fan speed control 
and remote management. For FPGA/GPU/CPU Bitcoin mining."
-arch=('i686' 'x86_64')
-depends=('curl' 'jansson' 'libevent' 'libmicrohttpd' 'libusb' 'lm_sensors')
-makedepends=('uthash' 'yasm')
-optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
-url='http://bfgminer.org/'
-license=('GPL3')
-source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.txz
-remove-dangerous-rpath.patch)
-sha256sums=('1a0c3e43741d9061aa0b5257353a812b84632fc8ac7d5ec84d91fb134803cc0c'
-'ec5289b837cc3b5de7f08603e4ae4d75cfff969a2389fd2aee036486f4aa7420')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  patch -p1 -i "${srcdir}"/remove-dangerous-rpath.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr \
---sbindir=/usr/bin \
---enable-cpumining \
---enable-bfsb \
---enable-metabank \
---enable-scrypt \
---enable-opencl \
---with-udevrulesdir=/usr/lib/udev/rules.d
-  # --enable-knc (FS#33640)
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-}

Copied: bfgminer/repos/community-i686/PKGBUILD (from rev 160394, 
bfgminer/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-05 11:27:05 UTC (rev 160395)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Andy Weidenbaum 
+
+pkgname=bfgminer
+pkgver=5.4.1
+pkgrel=2
+pkgdesc="Bitcoin miner featuring overclocking, monitoring, fan speed control 
and remote management. For FPGA/GPU/CPU Bitcoin mining."
+arch=('i686' 'x86_64')
+depends=('curl' 'jansson' 'libevent' 'libmicrohttpd' 'libusb' 'lm_sensors')
+makedepends=('uthash' 'yasm')
+optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
+url='http://bfgminer.org/'
+license=('GPL3')
+source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.txz
+remove-dangerous-rpath.patch)
+sha256sums=('1a0c3e43741d9061aa0b5257353a812b84632fc8ac7d5ec84d91fb134803cc0c'
+'ec5289b837cc3b5de7f08603e4ae4d75cfff969a2389fd2aee036486f4aa7420')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -p1 -i "${srcdir}"/remove-dangerous-rpath.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--enable-cpumining \
+--enable-bfsb \
+--enable-metabank \
+--enable-scrypt \
+--enable-opencl \
+--with-udevrulesdir=/usr/lib/udev/rules.d
+  # --enable-knc (FS#33640)
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/remove-dangerous-rpath.patch
===
--- community-i686/remove-dangerous-rpath.patch 2016-02-05 11:26:44 UTC (rev 
160394)
+++ community-i686/remove-dangerous-rpath.patch 2016-02-05 11:27:05 UTC (rev 
160395)
@@ -1,21 +0,0 @@
-diff -Naur bfgminer-4.8.0-orig/configure bfgminer-4.8.0/configure
 bfgminer-4.8.0-orig/configure  2014-10-04 20:54:28.717071865 -0400
-+++ bfgminer-4.8.0/configure   2014-10-04 

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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 12:26:44
  Author: spupykin
Revision: 160394

upgpkg: bfgminer 5.4.1-2

upd

Modified:
  bfgminer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 10:56:29 UTC (rev 160393)
+++ PKGBUILD2016-02-05 11:26:44 UTC (rev 160394)
@@ -4,7 +4,7 @@
 
 pkgname=bfgminer
 pkgver=5.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Bitcoin miner featuring overclocking, monitoring, fan speed control 
and remote management. For FPGA/GPU/CPU Bitcoin mining."
 arch=('i686' 'x86_64')
 depends=('curl' 'jansson' 'libevent' 'libmicrohttpd' 'libusb' 'lm_sensors')


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

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 12:28:21
  Author: spupykin
Revision: 160400

upgpkg: libmicrohttpd 0.9.48-1

upd

Modified:
  libmicrohttpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 11:27:49 UTC (rev 160399)
+++ PKGBUILD2016-02-05 11:28:21 UTC (rev 160400)
@@ -6,7 +6,7 @@
 # Contributor: Mathias Rohnstock 
 
 pkgname=libmicrohttpd
-pkgver=0.9.44
+pkgver=0.9.48
 pkgrel=1
 pkgdesc="a small C library that is supposed to make it easy to run an HTTP 
server as part of another application."
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 optdepends=('file' 'curl')
 install=libmicrohttpd.install
 source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
-md5sums=('9101b5ebf8f71792938ae672da314da2')
+md5sums=('9c298c890088a91fe0d7ac3fec9d0097')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in greenbone-security-assistant/trunk (PKGBUILD)

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 13:10:27
  Author: spupykin
Revision: 160404

upgpkg: greenbone-security-assistant 6.0.6-2

upd

Modified:
  greenbone-security-assistant/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 11:28:56 UTC (rev 160403)
+++ PKGBUILD2016-02-05 12:10:27 UTC (rev 160404)
@@ -2,7 +2,7 @@
 # Maintainer: Daniel Micay 
 pkgname=greenbone-security-assistant
 pkgver=6.0.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Greenbone Security Assistant (gsa) - OpenVAS web frontend'
 url='http://www.openvas.org/'
 license=(GPL)


[arch-commits] Commit in greenbone-security-assistant/repos (4 files)

2016-02-05 Thread Sergej Pupykin
Date: Friday, February 5, 2016 @ 13:10:43
  Author: spupykin
Revision: 160405

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

Added:
  greenbone-security-assistant/repos/community-i686/PKGBUILD
(from rev 160404, greenbone-security-assistant/trunk/PKGBUILD)
  greenbone-security-assistant/repos/community-x86_64/PKGBUILD
(from rev 160404, greenbone-security-assistant/trunk/PKGBUILD)
Deleted:
  greenbone-security-assistant/repos/community-i686/PKGBUILD
  greenbone-security-assistant/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-05 12:10:27 UTC (rev 160404)
+++ community-i686/PKGBUILD 2016-02-05 12:10:43 UTC (rev 160405)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay 
-pkgname=greenbone-security-assistant
-pkgver=6.0.6
-pkgrel=1
-pkgdesc='Greenbone Security Assistant (gsa) - OpenVAS web frontend'
-url='http://www.openvas.org/'
-license=(GPL)
-arch=('i686' 'x86_64')
-depends=('libmicrohttpd' 'openvas-libraries' 'libxslt')
-makedepends=('cmake' 'doxygen' 'xmltoman')
-groups=(openvas)
-backup=(etc/openvas/gsad_log.conf)
-# These URLs need to be manually updated on every pkgver upgrade.
-# http://wald.intevation.org/frs/?group_id=29
-source=("http://wald.intevation.org/frs/download.php/2200/$pkgname-$pkgver.tar.gz;
-
"http://wald.intevation.org/frs/download.php/2201/$pkgname-$pkgver.tar.gz.asc;)
-md5sums=('42410155524762f99cf2c0a391715980'
- 'SKIP')
-validpgpkeys=(
-  'C3B468D2288C68B9D526452248479FF648DB4530' # OpenVAS Transfer 
Integrity
-)
-conflicts=(gsa)
-provides=(gsa)
-replaces=(gsa)
-
-build() {
-  cd $pkgname-$pkgver
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr \
--DSYSCONFDIR=/etc -DLOCALSTATEDIR=/var . -DSBINDIR=/usr/bin
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: greenbone-security-assistant/repos/community-i686/PKGBUILD (from rev 
160404, greenbone-security-assistant/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-05 12:10:43 UTC (rev 160405)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Daniel Micay 
+pkgname=greenbone-security-assistant
+pkgver=6.0.6
+pkgrel=2
+pkgdesc='Greenbone Security Assistant (gsa) - OpenVAS web frontend'
+url='http://www.openvas.org/'
+license=(GPL)
+arch=('i686' 'x86_64')
+depends=('libmicrohttpd' 'openvas-libraries' 'libxslt')
+makedepends=('cmake' 'doxygen' 'xmltoman')
+groups=(openvas)
+backup=(etc/openvas/gsad_log.conf)
+# These URLs need to be manually updated on every pkgver upgrade.
+# http://wald.intevation.org/frs/?group_id=29
+source=("http://wald.intevation.org/frs/download.php/2200/$pkgname-$pkgver.tar.gz;
+
"http://wald.intevation.org/frs/download.php/2201/$pkgname-$pkgver.tar.gz.asc;)
+md5sums=('42410155524762f99cf2c0a391715980'
+ 'SKIP')
+validpgpkeys=(
+  'C3B468D2288C68B9D526452248479FF648DB4530' # OpenVAS Transfer 
Integrity
+)
+conflicts=(gsa)
+provides=(gsa)
+replaces=(gsa)
+
+build() {
+  cd $pkgname-$pkgver
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr \
+-DSYSCONFDIR=/etc -DLOCALSTATEDIR=/var . -DSBINDIR=/usr/bin
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-05 12:10:27 UTC (rev 160404)
+++ community-x86_64/PKGBUILD   2016-02-05 12:10:43 UTC (rev 160405)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay 
-pkgname=greenbone-security-assistant
-pkgver=6.0.6
-pkgrel=1
-pkgdesc='Greenbone Security Assistant (gsa) - OpenVAS web frontend'
-url='http://www.openvas.org/'
-license=(GPL)
-arch=('i686' 'x86_64')
-depends=('libmicrohttpd' 'openvas-libraries' 'libxslt')
-makedepends=('cmake' 'doxygen' 'xmltoman')
-groups=(openvas)
-backup=(etc/openvas/gsad_log.conf)
-# These URLs need to be manually updated on every pkgver upgrade.
-# http://wald.intevation.org/frs/?group_id=29
-source=("http://wald.intevation.org/frs/download.php/2200/$pkgname-$pkgver.tar.gz;
-
"http://wald.intevation.org/frs/download.php/2201/$pkgname-$pkgver.tar.gz.asc;)
-md5sums=('42410155524762f99cf2c0a391715980'
- 'SKIP')
-validpgpkeys=(
-  'C3B468D2288C68B9D526452248479FF648DB4530' # OpenVAS Transfer 
Integrity
-)
-conflicts=(gsa)
-provides=(gsa)
-replaces=(gsa)
-
-build() {
-  cd $pkgname-$pkgver
-  

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

2016-02-05 Thread Jaroslav Lichtblau
Date: Friday, February 5, 2016 @ 14:52:24
  Author: jlichtblau
Revision: 160407

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

Added:
  monit/repos/community-i686/PKGBUILD
(from rev 160406, monit/trunk/PKGBUILD)
  monit/repos/community-i686/monit.changelog
(from rev 160406, monit/trunk/monit.changelog)
  monit/repos/community-x86_64/PKGBUILD
(from rev 160406, monit/trunk/PKGBUILD)
  monit/repos/community-x86_64/monit.changelog
(from rev 160406, monit/trunk/monit.changelog)
Deleted:
  monit/repos/community-i686/PKGBUILD
  monit/repos/community-i686/monit.changelog
  monit/repos/community-x86_64/PKGBUILD
  monit/repos/community-x86_64/monit.changelog

--+
 /PKGBUILD|   66 
 /monit.changelog |  152 +
 community-i686/PKGBUILD  |   33 
 community-i686/monit.changelog   |   73 -
 community-x86_64/PKGBUILD|   33 
 community-x86_64/monit.changelog |   73 -
 6 files changed, 218 insertions(+), 212 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-05 13:52:10 UTC (rev 160406)
+++ community-i686/PKGBUILD 2016-02-05 13:52:24 UTC (rev 160407)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Geoffroy Carrier 
-# Contributor: Marco Bartholomew 
-
-pkgname=monit
-pkgver=5.15
-pkgrel=1
-pkgdesc="Utility for managing and monitoring, processes, files, directories 
and devices on a *NIX system"
-arch=('i686' 'x86_64')
-url="http://mmonit.com/monit/;
-license=('GPL3')
-depends=('openssl')
-backup=('etc/monitrc')
-changelog=$pkgname.changelog
-source=(http://mmonit.com/$pkgname/dist/$pkgname-$pkgver.tar.gz)
-sha256sums=('deada8153dc7e8755f572bc4d790143a92c7a8668dccb563ae4dbd73af56697c')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm700 monitrc "${pkgdir}"/etc/monitrc
-  install -Dm644 system/startup/$pkgname.service 
"${pkgdir}"/usr/lib/systemd/system/$pkgname.service
-}

Copied: monit/repos/community-i686/PKGBUILD (from rev 160406, 
monit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-05 13:52:24 UTC (rev 160407)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Geoffroy Carrier 
+# Contributor: Marco Bartholomew 
+
+pkgname=monit
+pkgver=5.16
+pkgrel=1
+pkgdesc="Utility for managing and monitoring, processes, files, directories 
and devices on a *NIX system"
+arch=('i686' 'x86_64')
+url="http://mmonit.com/monit/;
+license=('GPL3')
+depends=('openssl')
+backup=('etc/monitrc')
+changelog=$pkgname.changelog
+source=(http://mmonit.com/$pkgname/dist/$pkgname-$pkgver.tar.gz)
+sha256sums=('5b998e796113ce244c8b575da09d3a62bac1b2765484fe6416f224b4ba8f391f')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm700 monitrc "${pkgdir}"/etc/monitrc
+  install -Dm644 system/startup/$pkgname.service 
"${pkgdir}"/usr/lib/systemd/system/$pkgname.service
+}

Deleted: community-i686/monit.changelog
===
--- community-i686/monit.changelog  2016-02-05 13:52:10 UTC (rev 160406)
+++ community-i686/monit.changelog  2016-02-05 13:52:24 UTC (rev 160407)
@@ -1,73 +0,0 @@
-2015-10-26 Jaroslav Lichtblau 
-   * monit 5.15-1
-
-2015-06-15 Jaroslav Lichtblau 
-   * monit 5.14-1
-
-2015-05-16 Jaroslav Lichtblau 
-   * monit 5.13-1
-
-2015-03-28 Jaroslav Lichtblau 
-   * monit 5.12.2-1
-
-2015-01-27 Jaroslav Lichtblau 
-   * monit 5.11-1
-
-2014-10-30 Jaroslav Lichtblau 
-   * monit 5.10-1
-
-2014-10-16 Jaroslav Lichtblau 
-   * monit 5.9-1
-
-2014-05-14 Jaroslav Lichtblau 
-   * monit 5.8.1-1
-
-2014-04-02 Jaroslav Lichtblau 
-   * monit 5.8-1
-
-2014-03-01 Jaroslav Lichtblau 
-   * monit 5.7-1
-
-2013-09-28 Jaroslav Lichtblau 
-   * monit 5.6-1
-
-2012-10-28 Jaroslav Lichtblau 
-   * monit 5.5-2 systemd 

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

2016-02-05 Thread Evangelos Foutras
Date: Friday, February 5, 2016 @ 15:17:48
  Author: foutrelis
Revision: 258902

upgpkg: systemd 228-4

- libmicrohttpd 0.9.48 rebuild.
- Backport fix to detect Virtualbox as 'oracle' even with KVM backend.

Modified:
  systemd/trunk/PKGBUILD

--+
 PKGBUILD |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 13:10:49 UTC (rev 258901)
+++ PKGBUILD2016-02-05 14:17:48 UTC (rev 258902)
@@ -4,7 +4,7 @@
 pkgbase=systemd
 pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
 pkgver=228
-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'
@@ -40,6 +40,11 @@
   # https://github.com/systemd/systemd/issues/2023
   git cherry-pick -n e5d44b34cca3
 
+  # virt: detect dmi before cpuid
+  # https://github.com/systemd/systemd/commit/050e65ada2e0
+  # https://github.com/systemd/systemd/issues/1993
+  git cherry-pick -n 050e65ada2e0
+
   ./autogen.sh
 }
 


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

2016-02-05 Thread Evangelos Foutras
Date: Friday, February 5, 2016 @ 15:18:08
  Author: foutrelis
Revision: 258903

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

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

-+
 testing-i686/PKGBUILD   |  188 +++
 testing-i686/arch.conf  |7 +
 testing-i686/initcpio-hook-udev |   22 +++
 testing-i686/initcpio-install-systemd   |  170 
 testing-i686/initcpio-install-udev  |   28 
 testing-i686/loader.conf|1 
 testing-i686/systemd.install|  205 ++
 testing-x86_64/PKGBUILD |  188 +++
 testing-x86_64/arch.conf|7 +
 testing-x86_64/initcpio-hook-udev   |   22 +++
 testing-x86_64/initcpio-install-systemd |  170 
 testing-x86_64/initcpio-install-udev|   28 
 testing-x86_64/loader.conf  |1 
 testing-x86_64/systemd.install  |  205 ++
 14 files changed, 1242 insertions(+)

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


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

2016-02-05 Thread Jan Steffens
Date: Friday, February 5, 2016 @ 14:10:49
  Author: heftig
Revision: 258901

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

Added:
  nss/repos/testing-i686/
  nss/repos/testing-i686/PKGBUILD
(from rev 258900, nss/trunk/PKGBUILD)
  nss/repos/testing-i686/bundle.sh
(from rev 258900, nss/trunk/bundle.sh)
  nss/repos/testing-i686/ca-certificates-mozilla.install
(from rev 258900, nss/trunk/ca-certificates-mozilla.install)
  nss/repos/testing-i686/certdata2pem.py
(from rev 258900, nss/trunk/certdata2pem.py)
  nss/repos/testing-i686/legacy-certs.patch
(from rev 258900, nss/trunk/legacy-certs.patch)
  nss/repos/testing-i686/nss-config.in
(from rev 258900, nss/trunk/nss-config.in)
  nss/repos/testing-i686/nss.install
(from rev 258900, nss/trunk/nss.install)
  nss/repos/testing-i686/nss.pc.in
(from rev 258900, nss/trunk/nss.pc.in)
  nss/repos/testing-x86_64/
  nss/repos/testing-x86_64/PKGBUILD
(from rev 258900, nss/trunk/PKGBUILD)
  nss/repos/testing-x86_64/bundle.sh
(from rev 258900, nss/trunk/bundle.sh)
  nss/repos/testing-x86_64/ca-certificates-mozilla.install
(from rev 258900, nss/trunk/ca-certificates-mozilla.install)
  nss/repos/testing-x86_64/certdata2pem.py
(from rev 258900, nss/trunk/certdata2pem.py)
  nss/repos/testing-x86_64/legacy-certs.patch
(from rev 258900, nss/trunk/legacy-certs.patch)
  nss/repos/testing-x86_64/nss-config.in
(from rev 258900, nss/trunk/nss-config.in)
  nss/repos/testing-x86_64/nss.install
(from rev 258900, nss/trunk/nss.install)
  nss/repos/testing-x86_64/nss.pc.in
(from rev 258900, nss/trunk/nss.pc.in)

+
 testing-i686/PKGBUILD  |  120 ++
 testing-i686/bundle.sh |   54 +
 testing-i686/ca-certificates-mozilla.install   |   11 
 testing-i686/certdata2pem.py   |  200 
 testing-i686/legacy-certs.patch| 1137 +++
 testing-i686/nss-config.in |  145 ++
 testing-i686/nss.install   |   13 
 testing-i686/nss.pc.in |   11 
 testing-x86_64/PKGBUILD|  120 ++
 testing-x86_64/bundle.sh   |   54 +
 testing-x86_64/ca-certificates-mozilla.install |   11 
 testing-x86_64/certdata2pem.py |  200 
 testing-x86_64/legacy-certs.patch  | 1137 +++
 testing-x86_64/nss-config.in   |  145 ++
 testing-x86_64/nss.install |   13 
 testing-x86_64/nss.pc.in   |   11 
 16 files changed, 3382 insertions(+)

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


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

2016-02-05 Thread Jaroslav Lichtblau
Date: Friday, February 5, 2016 @ 14:52:10
  Author: jlichtblau
Revision: 160406

upgpkg: monit 5.16-1 - new upstream release

Modified:
  monit/trunk/PKGBUILD
  monit/trunk/monit.changelog

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 12:10:43 UTC (rev 160405)
+++ PKGBUILD2016-02-05 13:52:10 UTC (rev 160406)
@@ -4,7 +4,7 @@
 # Contributor: Marco Bartholomew 
 
 pkgname=monit
-pkgver=5.15
+pkgver=5.16
 pkgrel=1
 pkgdesc="Utility for managing and monitoring, processes, files, directories 
and devices on a *NIX system"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 backup=('etc/monitrc')
 changelog=$pkgname.changelog
 source=(http://mmonit.com/$pkgname/dist/$pkgname-$pkgver.tar.gz)
-sha256sums=('deada8153dc7e8755f572bc4d790143a92c7a8668dccb563ae4dbd73af56697c')
+sha256sums=('5b998e796113ce244c8b575da09d3a62bac1b2765484fe6416f224b4ba8f391f')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver

Modified: monit.changelog
===
--- monit.changelog 2016-02-05 12:10:43 UTC (rev 160405)
+++ monit.changelog 2016-02-05 13:52:10 UTC (rev 160406)
@@ -1,3 +1,6 @@
+2016-02-05 Jaroslav Lichtblau 
+   * monit 5.16-1
+
 2015-10-26 Jaroslav Lichtblau 
* monit 5.15-1
 


[arch-commits] Commit in (4 files)

2016-02-05 Thread Felix Yan
Date: Saturday, February 6, 2016 @ 01:48:19
  Author: fyan
Revision: 160445

addpkg: python-keyrings-alt 1.1.20160123-1

Added:
  python-keyrings-alt/
  python-keyrings-alt/repos/
  python-keyrings-alt/trunk/
  python-keyrings-alt/trunk/PKGBUILD

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

Added: python-keyrings-alt/trunk/PKGBUILD
===
--- python-keyrings-alt/trunk/PKGBUILD  (rev 0)
+++ python-keyrings-alt/trunk/PKGBUILD  2016-02-06 00:48:19 UTC (rev 160445)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Johannes Dewender  arch at JonnyJD dot net
+# Contributor: Ivan Sichmann Freitas 
+# Contributor: Brice Maron 
+# Contributor: Nuno Araujo 
+# Contributor: Steven Allen 
+
+pkgbase=python-keyrings-alt
+pkgname=('python-keyrings-alt' 'python2-keyrings-alt')
+pkgver=1.1.20160123
+_commit=b91f7d765b8045a16cac993c6f0a5eac1322e8d8
+pkgrel=1
+pkgdesc="Alternate keyring implementations"
+arch=('any')
+url="http://pypi.python.org/pypi/keyrings.alt;
+license=('MIT')
+source=("git+https://github.com/jaraco/keyrings.alt.git#commit=$_commit;)
+makedepends=('python-setuptools_scm' 'python2-setuptools_scm' 'python-keyring' 
'python2-keyring' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock'
+  'python-fs' 'python2-fs' 'python-crypto' 'python2-crypto' 
'libgnome-keyring' 
+  'python-gobject' 'python2-gobject' 'python2-gdata')
+md5sums=('SKIP')
+
+prepare() {
+  # Remove it from test_requirements
+  sed -i '/python-keyczar/d' keyrings.alt/setup.py
+
+  cp -a keyrings.alt{,-py2}
+}
+
+build() {
+  cd "$srcdir/keyrings.alt"
+  python setup.py build
+
+  cd "$srcdir/keyrings.alt-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/keyrings.alt"
+  python setup.py ptr
+
+  cd "$srcdir/keyrings.alt-py2"
+  python2 setup.py ptr
+}
+
+package_python-keyrings-alt() {
+  depends=('python-keyring')
+  optdepends=('libgnome-keyring: GNOME Integration'
+  'python-gobject: GNOME Integration'
+  'python-fs'
+  'python-crypto: Encrypted file storage')
+
+  cd "$srcdir/keyrings.alt"
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-keyrings-alt() {
+  depends=('python2-keyring')
+  optdepends=('libgnome-keyring: GNOME Integration'
+  'python2-gobject: GNOME Integration'
+  'python2-fs'
+  'python2-gdata: Google Docs Integration'
+  'python2-crypto: Encrypted file storage')
+
+  cd "$srcdir/keyrings.alt-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2016-02-05 Thread Felix Yan
Date: Saturday, February 6, 2016 @ 01:49:18
  Author: fyan
Revision: 160446

archrelease: copy trunk to community-any

Added:
  python-keyrings-alt/repos/community-any/
  python-keyrings-alt/repos/community-any/PKGBUILD
(from rev 160445, python-keyrings-alt/trunk/PKGBUILD)

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

Copied: python-keyrings-alt/repos/community-any/PKGBUILD (from rev 160445, 
python-keyrings-alt/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-02-06 00:49:18 UTC (rev 160446)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Johannes Dewender  arch at JonnyJD dot net
+# Contributor: Ivan Sichmann Freitas 
+# Contributor: Brice Maron 
+# Contributor: Nuno Araujo 
+# Contributor: Steven Allen 
+
+pkgbase=python-keyrings-alt
+pkgname=('python-keyrings-alt' 'python2-keyrings-alt')
+pkgver=1.1.20160123
+_commit=b91f7d765b8045a16cac993c6f0a5eac1322e8d8
+pkgrel=1
+pkgdesc="Alternate keyring implementations"
+arch=('any')
+url="http://pypi.python.org/pypi/keyrings.alt;
+license=('MIT')
+source=("git+https://github.com/jaraco/keyrings.alt.git#commit=$_commit;)
+makedepends=('python-setuptools_scm' 'python2-setuptools_scm' 'python-keyring' 
'python2-keyring' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock'
+  'python-fs' 'python2-fs' 'python-crypto' 'python2-crypto' 
'libgnome-keyring' 
+  'python-gobject' 'python2-gobject' 'python2-gdata')
+md5sums=('SKIP')
+
+prepare() {
+  # Remove it from test_requirements
+  sed -i '/python-keyczar/d' keyrings.alt/setup.py
+
+  cp -a keyrings.alt{,-py2}
+}
+
+build() {
+  cd "$srcdir/keyrings.alt"
+  python setup.py build
+
+  cd "$srcdir/keyrings.alt-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/keyrings.alt"
+  python setup.py ptr
+
+  cd "$srcdir/keyrings.alt-py2"
+  python2 setup.py ptr
+}
+
+package_python-keyrings-alt() {
+  depends=('python-keyring')
+  optdepends=('libgnome-keyring: GNOME Integration'
+  'python-gobject: GNOME Integration'
+  'python-fs'
+  'python-crypto: Encrypted file storage')
+
+  cd "$srcdir/keyrings.alt"
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-keyrings-alt() {
+  depends=('python2-keyring')
+  optdepends=('libgnome-keyring: GNOME Integration'
+  'python2-gobject: GNOME Integration'
+  'python2-fs'
+  'python2-gdata: Google Docs Integration'
+  'python2-crypto: Encrypted file storage')
+
+  cd "$srcdir/keyrings.alt-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-02-05 Thread Felix Yan
Date: Saturday, February 6, 2016 @ 01:53:06
  Author: fyan
Revision: 160447

upgpkg: python-wheel 0.27.0-1

Modified:
  python-wheel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-06 00:49:18 UTC (rev 160446)
+++ PKGBUILD2016-02-06 00:53:06 UTC (rev 160447)
@@ -5,8 +5,8 @@
 _pypiname=wheel
 pkgbase=python-wheel
 pkgname=('python-wheel' 'python2-wheel')
-pkgver=0.26.0
-pkgrel=2
+pkgver=0.27.0
+pkgrel=1
 pkgdesc="A built-package format for Python"
 arch=(any)
 url="https://pypi.python.org/pypi/wheel;
@@ -13,9 +13,9 @@
 license=('MIT')
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-jsonschema' 'python2-jsonschema' 'python-pytest-cov' 
'python2-pytest-cov'
-  'python-keyring' 'python2-keyring')
+  'python-keyring' 'python2-keyring' 'python-keyrings-alt' 
'python2-keyrings-alt')
 
source=("https://pypi.python.org/packages/source/w/wheel/$_pypiname-$pkgver.tar.gz;)
-md5sums=('4cfc6e7e3dc7377d0164914623922a10')
+md5sums=('ab8490eeb11e30a01d60bf7f156eac37')
 
 prepare() {
   cp -a wheel-$pkgver{,-py2}


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

2016-02-05 Thread Evangelos Foutras
Date: Saturday, February 6, 2016 @ 02:39:35
  Author: foutrelis
Revision: 258916

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

Added:
  chromium/repos/extra-i686/PKGBUILD
(from rev 258915, chromium/trunk/PKGBUILD)
  chromium/repos/extra-i686/chromium-fix-print-preview-on-en_GB-locale.patch
(from rev 258915, 
chromium/trunk/chromium-fix-print-preview-on-en_GB-locale.patch)
  chromium/repos/extra-i686/chromium-use-non-versioned-icu-namespace.patch
(from rev 258915, 
chromium/trunk/chromium-use-non-versioned-icu-namespace.patch)
  chromium/repos/extra-i686/chromium-widevine.patch
(from rev 258915, chromium/trunk/chromium-widevine.patch)
  chromium/repos/extra-i686/chromium.desktop
(from rev 258915, chromium/trunk/chromium.desktop)
  chromium/repos/extra-i686/chromium.install
(from rev 258915, chromium/trunk/chromium.install)
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 258915, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium-fix-print-preview-on-en_GB-locale.patch
(from rev 258915, 
chromium/trunk/chromium-fix-print-preview-on-en_GB-locale.patch)
  chromium/repos/extra-x86_64/chromium-use-non-versioned-icu-namespace.patch
(from rev 258915, 
chromium/trunk/chromium-use-non-versioned-icu-namespace.patch)
  chromium/repos/extra-x86_64/chromium-widevine.patch
(from rev 258915, chromium/trunk/chromium-widevine.patch)
  chromium/repos/extra-x86_64/chromium.desktop
(from rev 258915, chromium/trunk/chromium.desktop)
  chromium/repos/extra-x86_64/chromium.install
(from rev 258915, chromium/trunk/chromium.install)
Deleted:
  chromium/repos/extra-i686/PKGBUILD
  chromium/repos/extra-i686/chromium-fix-print-preview-on-en_GB-locale.patch
  chromium/repos/extra-i686/chromium-use-non-versioned-icu-namespace.patch
  chromium/repos/extra-i686/chromium-widevine.patch
  chromium/repos/extra-i686/chromium.desktop
  chromium/repos/extra-i686/chromium.install
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium-fix-print-preview-on-en_GB-locale.patch
  chromium/repos/extra-x86_64/chromium-use-non-versioned-icu-namespace.patch
  chromium/repos/extra-x86_64/chromium-widevine.patch
  chromium/repos/extra-x86_64/chromium.desktop
  chromium/repos/extra-x86_64/chromium.install

---+
 /PKGBUILD |  440 ++
 /chromium-fix-print-preview-on-en_GB-locale.patch |   34 
 /chromium-use-non-versioned-icu-namespace.patch   |   28 
 /chromium-widevine.patch  |  106 ++
 /chromium.desktop |  224 +
 /chromium.install |   54 +
 extra-i686/PKGBUILD   |  220 -
 extra-i686/chromium-fix-print-preview-on-en_GB-locale.patch   |   17 
 extra-i686/chromium-use-non-versioned-icu-namespace.patch |   14 
 extra-i686/chromium-widevine.patch|   53 -
 extra-i686/chromium.desktop   |  112 --
 extra-i686/chromium.install   |   27 
 extra-x86_64/PKGBUILD |  220 -
 extra-x86_64/chromium-fix-print-preview-on-en_GB-locale.patch |   17 
 extra-x86_64/chromium-use-non-versioned-icu-namespace.patch   |   14 
 extra-x86_64/chromium-widevine.patch  |   53 -
 extra-x86_64/chromium.desktop |  112 --
 extra-x86_64/chromium.install |   27 
 18 files changed, 886 insertions(+), 886 deletions(-)

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


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

2016-02-05 Thread Evangelos Foutras
Date: Saturday, February 6, 2016 @ 02:39:07
  Author: foutrelis
Revision: 258915

upgpkg: chromium 48.0.2564.103-1

New upstream release.

Modified:
  chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 19:10:25 UTC (rev 258914)
+++ PKGBUILD2016-02-06 01:39:07 UTC (rev 258915)
@@ -5,7 +5,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=chromium
-pkgver=48.0.2564.97
+pkgver=48.0.2564.103
 pkgrel=1
 _launcher_ver=3
 pkgdesc="The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser"
@@ -30,7 +30,7 @@
 chromium-use-non-versioned-icu-namespace.patch
 chromium-fix-print-preview-on-en_GB-locale.patch
 chromium-widevine.patch)
-sha256sums=('7734b81a329ba9a1588a9dfb12a227b24cc227ef59bcda8aff51524c3fb252db'
+sha256sums=('1c599fc69254494ee43ff7e12d90ecf1c213ee495c6229e560d17ce2357d2299'
 '8b01fb4efe58146279858a754d90b49e5a38c9a0b36a1f84cbb7d12f92b84c28'
 '028a748a5c275de9b8f776f97909f999a8583a4b77fd1cd600b4fc5c0c3e91e9'
 'e4192446cc0ab6a5c540599c8a149f4f2208f0014da2786ada6c9544913d7426'


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

2016-02-05 Thread Felix Yan
Date: Saturday, February 6, 2016 @ 01:53:59
  Author: fyan
Revision: 160448

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-06 00:53:06 UTC (rev 160447)
+++ PKGBUILD2016-02-06 00:53:59 UTC (rev 160448)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Lance Chen 
-
-_pypiname=wheel
-pkgbase=python-wheel
-pkgname=('python-wheel' 'python2-wheel')
-pkgver=0.26.0
-pkgrel=2
-pkgdesc="A built-package format for Python"
-arch=(any)
-url="https://pypi.python.org/pypi/wheel;
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-jsonschema' 'python2-jsonschema' 'python-pytest-cov' 
'python2-pytest-cov'
-  'python-keyring' 'python2-keyring')
-source=("https://pypi.python.org/packages/source/w/wheel/$_pypiname-$pkgver.tar.gz;)
-md5sums=('4cfc6e7e3dc7377d0164914623922a10')
-
-prepare() {
-  cp -a wheel-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/wheel-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/wheel-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir/wheel-$pkgver"
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
py.test wheel
-
-  cd "$srcdir/wheel-$pkgver-py2"
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2 wheel
-}
-
-package_python-wheel() {
-  depends=('python')
-  optdepends=('python-keyring: for wheel.signatures')
-
-  cd "$srcdir/$_pypiname-$pkgver"
-  python setup.py install --root="$pkgdir/" --optimize=1
-  install -D -m644 LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-package_python2-wheel() {
-  depends=('python2')
-  optdepends=('python2-keyring: for wheel.signatures')
-
-  cd "$srcdir/$_pypiname-$pkgver"
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-  install -D -m644 LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-  mv "$pkgdir/usr/bin/wheel" "$pkgdir/usr/bin/wheel2"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-wheel/repos/community-any/PKGBUILD (from rev 160447, 
python-wheel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-06 00:53:59 UTC (rev 160448)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Lance Chen 
+
+_pypiname=wheel
+pkgbase=python-wheel
+pkgname=('python-wheel' 'python2-wheel')
+pkgver=0.27.0
+pkgrel=1
+pkgdesc="A built-package format for Python"
+arch=(any)
+url="https://pypi.python.org/pypi/wheel;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-jsonschema' 'python2-jsonschema' 'python-pytest-cov' 
'python2-pytest-cov'
+  'python-keyring' 'python2-keyring' 'python-keyrings-alt' 
'python2-keyrings-alt')
+source=("https://pypi.python.org/packages/source/w/wheel/$_pypiname-$pkgver.tar.gz;)
+md5sums=('ab8490eeb11e30a01d60bf7f156eac37')
+
+prepare() {
+  cp -a wheel-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/wheel-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/wheel-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir/wheel-$pkgver"
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
py.test wheel
+
+  cd "$srcdir/wheel-$pkgver-py2"
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2 wheel
+}
+
+package_python-wheel() {
+  depends=('python')
+  optdepends=('python-keyring: for wheel.signatures')
+
+  cd "$srcdir/$_pypiname-$pkgver"
+  python setup.py install --root="$pkgdir/" --optimize=1
+  install -D -m644 LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}
+
+package_python2-wheel() {
+  depends=('python2')
+  optdepends=('python2-keyring: for wheel.signatures')
+
+  cd "$srcdir/$_pypiname-$pkgver"
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+  install -D -m644 LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+  mv "$pkgdir/usr/bin/wheel" "$pkgdir/usr/bin/wheel2"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in haskell-vector-th-unbox/repos (6 files)

2016-02-05 Thread Felix Yan
Date: Saturday, February 6, 2016 @ 05:58:06
  Author: fyan
Revision: 160452

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

Added:
  haskell-vector-th-unbox/repos/community-i686/
  haskell-vector-th-unbox/repos/community-i686/PKGBUILD
(from rev 160451, haskell-vector-th-unbox/trunk/PKGBUILD)
  haskell-vector-th-unbox/repos/community-i686/haskell-vector-th-unbox.install
(from rev 160451, 
haskell-vector-th-unbox/trunk/haskell-vector-th-unbox.install)
  haskell-vector-th-unbox/repos/community-x86_64/
  haskell-vector-th-unbox/repos/community-x86_64/PKGBUILD
(from rev 160451, haskell-vector-th-unbox/trunk/PKGBUILD)
  haskell-vector-th-unbox/repos/community-x86_64/haskell-vector-th-unbox.install
(from rev 160451, 
haskell-vector-th-unbox/trunk/haskell-vector-th-unbox.install)

--+
 community-i686/PKGBUILD  |   42 +
 community-i686/haskell-vector-th-unbox.install   |   18 +
 community-x86_64/PKGBUILD|   42 +
 community-x86_64/haskell-vector-th-unbox.install |   18 +
 4 files changed, 120 insertions(+)

Copied: haskell-vector-th-unbox/repos/community-i686/PKGBUILD (from rev 160451, 
haskell-vector-th-unbox/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-06 04:58:06 UTC (rev 160452)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vector-th-unbox
+pkgname=haskell-vector-th-unbox
+pkgver=0.2.1.3
+pkgrel=1
+pkgdesc="Deriver for Data.Vector.Unboxed using Template Haskell"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('33db750d3d867f23d0406a7165952b030831ed610b06ef777cfae8439b382689')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-vector-th-unbox/repos/community-i686/haskell-vector-th-unbox.install 
(from rev 160451, haskell-vector-th-unbox/trunk/haskell-vector-th-unbox.install)
===
--- community-i686/haskell-vector-th-unbox.install  
(rev 0)
+++ community-i686/haskell-vector-th-unbox.install  2016-02-06 04:58:06 UTC 
(rev 160452)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-vector-th-unbox
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-vector-th-unbox/repos/community-x86_64/PKGBUILD (from rev 
160451, haskell-vector-th-unbox/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-06 04:58:06 UTC (rev 160452)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vector-th-unbox
+pkgname=haskell-vector-th-unbox
+pkgver=0.2.1.3
+pkgrel=1
+pkgdesc="Deriver for Data.Vector.Unboxed using Template Haskell"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-vector")
+options=('staticlibs')

[arch-commits] Commit in (5 files)

2016-02-05 Thread Felix Yan
Date: Saturday, February 6, 2016 @ 05:57:44
  Author: fyan
Revision: 160451

addpkg: haskell-vector-th-unbox 0.2.1.3-1

Added:
  haskell-vector-th-unbox/
  haskell-vector-th-unbox/repos/
  haskell-vector-th-unbox/trunk/
  haskell-vector-th-unbox/trunk/PKGBUILD
  haskell-vector-th-unbox/trunk/haskell-vector-th-unbox.install

-+
 PKGBUILD|   42 ++
 haskell-vector-th-unbox.install |   18 
 2 files changed, 60 insertions(+)

Added: haskell-vector-th-unbox/trunk/PKGBUILD
===
--- haskell-vector-th-unbox/trunk/PKGBUILD  (rev 0)
+++ haskell-vector-th-unbox/trunk/PKGBUILD  2016-02-06 04:57:44 UTC (rev 
160451)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vector-th-unbox
+pkgname=haskell-vector-th-unbox
+pkgver=0.2.1.3
+pkgrel=1
+pkgdesc="Deriver for Data.Vector.Unboxed using Template Haskell"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('33db750d3d867f23d0406a7165952b030831ed610b06ef777cfae8439b382689')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-vector-th-unbox/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-vector-th-unbox/trunk/haskell-vector-th-unbox.install
===
--- haskell-vector-th-unbox/trunk/haskell-vector-th-unbox.install   
(rev 0)
+++ haskell-vector-th-unbox/trunk/haskell-vector-th-unbox.install   
2016-02-06 04:57:44 UTC (rev 160451)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-vector-th-unbox
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


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

2016-02-05 Thread Felix Yan
Date: Saturday, February 6, 2016 @ 06:01:37
  Author: fyan
Revision: 160454

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

Added:
  haskell-erf/repos/community-i686/
  haskell-erf/repos/community-i686/PKGBUILD
(from rev 160453, haskell-erf/trunk/PKGBUILD)
  haskell-erf/repos/community-i686/haskell-erf.install
(from rev 160453, haskell-erf/trunk/haskell-erf.install)
  haskell-erf/repos/community-x86_64/
  haskell-erf/repos/community-x86_64/PKGBUILD
(from rev 160453, haskell-erf/trunk/PKGBUILD)
  haskell-erf/repos/community-x86_64/haskell-erf.install
(from rev 160453, haskell-erf/trunk/haskell-erf.install)

--+
 community-i686/PKGBUILD  |   40 +
 community-i686/haskell-erf.install   |   18 ++
 community-x86_64/PKGBUILD|   40 +
 community-x86_64/haskell-erf.install |   18 ++
 4 files changed, 116 insertions(+)

Copied: haskell-erf/repos/community-i686/PKGBUILD (from rev 160453, 
haskell-erf/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-06 05:01:37 UTC (rev 160454)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=erf
+pkgname=haskell-erf
+pkgver=2.0.0.0
+pkgrel=1
+pkgdesc="The error function, erf, and related functions."
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=("24f0b79c7e1d25cb2cd44c2258d7a464bf6db8079775b50b60b54a254616b337")
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+}

Copied: haskell-erf/repos/community-i686/haskell-erf.install (from rev 160453, 
haskell-erf/trunk/haskell-erf.install)
===
--- community-i686/haskell-erf.install  (rev 0)
+++ community-i686/haskell-erf.install  2016-02-06 05:01:37 UTC (rev 160454)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-erf
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-erf/repos/community-x86_64/PKGBUILD (from rev 160453, 
haskell-erf/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-06 05:01:37 UTC (rev 160454)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=erf
+pkgname=haskell-erf
+pkgver=2.0.0.0
+pkgrel=1
+pkgdesc="The error function, erf, and related functions."
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=("24f0b79c7e1d25cb2cd44c2258d7a464bf6db8079775b50b60b54a254616b337")
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell 

[arch-commits] Commit in (5 files)

2016-02-05 Thread Felix Yan
Date: Saturday, February 6, 2016 @ 06:01:14
  Author: fyan
Revision: 160453

addpkg: haskell-erf 2.0.0.0-1

Added:
  haskell-erf/
  haskell-erf/repos/
  haskell-erf/trunk/
  haskell-erf/trunk/PKGBUILD
  haskell-erf/trunk/haskell-erf.install

-+
 PKGBUILD|   40 
 haskell-erf.install |   18 ++
 2 files changed, 58 insertions(+)

Added: haskell-erf/trunk/PKGBUILD
===
--- haskell-erf/trunk/PKGBUILD  (rev 0)
+++ haskell-erf/trunk/PKGBUILD  2016-02-06 05:01:14 UTC (rev 160453)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=erf
+pkgname=haskell-erf
+pkgver=2.0.0.0
+pkgrel=1
+pkgdesc="The error function, erf, and related functions."
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=("24f0b79c7e1d25cb2cd44c2258d7a464bf6db8079775b50b60b54a254616b337")
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+}


Property changes on: haskell-erf/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-erf/trunk/haskell-erf.install
===
--- haskell-erf/trunk/haskell-erf.install   (rev 0)
+++ haskell-erf/trunk/haskell-erf.install   2016-02-06 05:01:14 UTC (rev 
160453)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-erf
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}